diff --git a/VERSIONS b/VERSIONS index bf008245f..7ea978d29 100644 --- a/VERSIONS +++ b/VERSIONS @@ -8,10 +8,16 @@ ChucK VERSIONS log - (added) chugin API for callback on shutdown - (added) command line query system `--query:` - (added) examples/deep/smb.ck -- a ChucK rendition of Super Mario Bros. - original theme by Koji Kondo; modeled in ChucK by Wesley Burchell in 2017 -- (added) examples/basic/blit3.ck -- lounge blit; made for svork concert lounge music + original theme by Koji Kondo; (meticulously) modeled in ChucK by + Wesley Burchell in 2017 +- (added) examples/basic/blit3.ck -- lounge blit; made for svork concert + lounge music for premiere in May 2024 +- (added) examples/special/scream-o-matic/scream-o-matic.ck -- using + multiple LiSas for granular synthesis, to make continuous + scream generator - (added) Type type added to CKDoc script and deployed online: https://chuck.stanford.edu/doc/reference/utils.html#Type +- (added) chugin DL API for setting array elements (thanks @AndrewAday) - (fixed) globals events system synchronization (FYI this fixes a long-running, elusive Chunity crashing bug involving various syncers) diff --git a/examples/special/scream-o-matic/scream-o-matic.ck b/examples/special/scream-o-matic/scream-o-matic.ck index e461b4512..effb019da 100644 --- a/examples/special/scream-o-matic/scream-o-matic.ck +++ b/examples/special/scream-o-matic/scream-o-matic.ck @@ -2,11 +2,14 @@ // name: scream-o-matic.ck // desc: using multiple LiSas for granular synthesis, to make a // continuous scream generator; based on the patch for -// the augmented FlowBee interface (2014). See: +// the augmented FlowBee interface (2014): // // "Suck-O-Phonic 6000: Augmented Flowbee Musical Interface" // https://www.youtube.com/watch?v=g3bkaljCVRs // +// sound files used in this example: +// https://chuck.stanford.edu/doc/examples/special/scream-o-matic/data/ +// // author: Alex Chechile // Spencer Salazar // Ge Wang (https://ccrma.stanford.edu/~ge/) diff --git a/src/core/ugen_xxx.cpp b/src/core/ugen_xxx.cpp index 4b5905af0..3932b3367 100644 --- a/src/core/ugen_xxx.cpp +++ b/src/core/ugen_xxx.cpp @@ -1136,6 +1136,7 @@ DLL_QUERY lisa_query( Chuck_DL_Query * QUERY ) if( !type_engine_import_add_ex( env, "special/LiSa-track4.ck" ) ) goto error; if( !type_engine_import_add_ex( env, "special/LiSa-track5.ck" ) ) goto error; if( !type_engine_import_add_ex( env, "special/LiSa-stereo.ck" ) ) goto error; + if( !type_engine_import_add_ex( env, "special/scream-o-matic/scream-o-matic.ck" ) ) goto error; if( !type_engine_import_add_ex( env, "special/twilight/twilight-granular-kb.ck" ) ) goto error; if( !type_engine_import_add_ex( env, "special/twilight/twilight-granular-kb-interp.ck" ) ) goto error;