*** empty log message ***
[chuck-blob.git] / exile / nime_workshop / examples / otf_01.ck
blob7a25e4d44f7e5da5ce5eff3f04055f76991ea796
1 //----------------------------|
2 // on-the-fly synchronization
3 // adapted from Perry's ChucK Drummin' + Ge's sine poops
4 //
5 // authors: Perry Cook (prc@cs.princeton.edu)
6 //          Ge Wang (gewang@cs.princeton.edu)
7 // --------------------|
8 // add one by one into VM (in pretty much any order):
9 //
10 // terminal-1%> chuck --loop
11 // ---
12 // terminal-2%> chuck + otf_01.ck
13 // (anytime later)
14 // terminal-2%> chuck + otf_02.ck
15 // (etc...)
16 //--------------------------------------|
18 // this synchronizes to period
19 .5::second => dur T;
20 T - (now % T) => now;
22 // construct the patch
23 sndbuf buf => gain g => dac;
24 "data/kick.wav" => buf.read;
25 .5 => g.gain;
27 // time loop
28 while( true )
30     0 => buf.pos;
31     std.rand2f(.8,.9) => buf.gain;
32     1::T => now;