*** empty log message ***
[chuck-blob.git] / exile / v1 / examples / otf_02.ck
blobe96587071d8f4a8304e3c18c437a1ca27caea1c1
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/hihat.wav" => buf.read;
25 .25 => g.gain;
27 // time loop
28 while( true )
30     std.rand2f(.4,.9) => buf.gain;
31     if( std.randf() > 0.75 )
32     {
33         0 => buf.pos;
34         .5::T => now;
35     }
36     else
37     {
38         0 => buf.pos;
39         .25::T => now;
40         0 => buf.pos;
41         .25::T => now;
42     }