Skip to content

Commit

Permalink
add scream-o-matic example; update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
gewang committed Jun 16, 2024
1 parent 4e0584c commit 533030b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 8 additions & 2 deletions VERSIONS
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@ ChucK VERSIONS log
- (added) chugin API for callback on shutdown
- (added) command line query system `--query:<name>`
- (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)

Expand Down
5 changes: 4 additions & 1 deletion examples/special/scream-o-matic/scream-o-matic.ck
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
Expand Down
1 change: 1 addition & 0 deletions src/core/ugen_xxx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 533030b

Please sign in to comment.