2 summary:: use a pattern of symbols to embed Pdefs
3 categories:: Libraries>JITLib>Patterns
7 for non-event patterns see link::Classes/Pnsym::. Overview: link::Overviews/JITLib::.
14 a pattern that returns symbols or characters. Arrays are converted to parallel patterns ( link::Classes/Ppar:: ).
17 the dictionary to be used for lookup. By default, this is code::Pdef.all::, so one can embed Pdefs by name.
22 set the dictionary to be used.
31 { |out=0, freq=440, sustain=0.05, amp=0.1, pan|
33 env = EnvGen.kr(Env.perc(0.01, sustain), doneAction:2) * amp;
34 Out.ar(out, Pan2.ar(SinOsc.ar(freq, 0, env), pan))
38 Pdef(\x, Pbind(\dur, Pn(0.25, 3), \instrument, \gpdef));
39 Pdef(\y, Pchain(Pbind(\degree, Prand([5, 9, 0], inf), \legato, Pseq([0.3, 2.2], inf)), Pdef(\x)));
40 Pdef(\z, Pchain(Pbind(\degree, Pseq([0, 2, 5, 7, 8, 9], 1)), Pn(Pdef(\y))));
42 Pdef(\play, Psym(Pseq([\x, \x, Prand([\x, \y]), \z, \y], inf).trace)).play;
44 // change root pattern:
45 Pdef(\x, Pbind(\dur, Pn(0.125, 2), \instrument, \gpdef));
46 Pdef(\x, Pbind(\dur, Pn(0.125, 3), \instrument, \gpdef, \ctranspose, 2));
47 Pdef(\x, Pbind(\dur, Pn(0.125, 2), \instrument, \gpdef, \ctranspose, 0));
50 Pdef(\play, Psym(Prand([Pseq([\x, \y], 5), Pseq([\z, \y], 5)], inf).trace)).play;
52 // use a sequence of characters:
53 Pdef(\play, Psym(Pseq("xxyxxzz", inf).trace)).play;
59 Pseq([[\x, \y], \z], 5),
60 Pseq([[\z, \y], \x, \x, \y])
66 Pdef(\z, Pchain(Pbind(\mtranspose, -5), Pdef(\y)));
67 Pdef(\y, Pchain(Pbind(\degree, Pseq([4, 3, 4, 2, 4, 1, 4, 0], 1)), Pdef(\x)));
70 Pdef(\play).stop; // stop it
71 Pdef.clear; // clear all