1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
|
title:: Understanding Streams, Patterns and Events - Part 4
summary:: Environment & Event
related:: Tutorials/Streams-Patterns-Events1, Tutorials/Streams-Patterns-Events2, Tutorials/Streams-Patterns-Events3, Tutorials/Streams-Patterns-Events5, Tutorials/Streams-Patterns-Events6, Tutorials/Streams-Patterns-Events7
categories:: Tutorials>Streams-Patterns-Events
The preceding sections showed how to use Streams and Patterns to generate complex sequences of values for a single parameter at a time.
This section covers Environments and Events, which are used to build a symbolic event framework for patterns, allowing you to control all aspects of a composition using patterns.
section::Environment
An link::Classes/Environment:: is an link::Classes/IdentityDictionary:: mapping link::Classes/Symbol::s to values. There is always one current Environment which is stored in the code::currentEnvironment:: class variable of class link::Classes/Object::.
Symbol and value pairs may be put into the current Environment as follows:
code::
currentEnvironment.put(\myvariable, 999);
::
and retrieved from the current Environment as follows:
code::
currentEnvironment.at(\myvariable).postln;
::
The compiler provides a shorthand for the two constructs above.
code::
~myvariable = 888;
::
is equivalent to:
code::
currentEnvironment.put(\myvariable, 888);
::
and:
code::
~myvariable.postln;
::
is equivalent to:
code::
currentEnvironment.at(\myvariable).postln;
::
section::Making an Environment
Environment has a class method strong::make:: which can be used to create an link::Classes/Environment:: and fill it with values. What strong::make:: does is temporarily replace the current Environment with a new one, call your function where you fill the Environment with values, then it replaces the previous current Environment and returns you the new one.
code::
(
var a;
a = Environment.make({
~a = 100;
~b = 200;
~c = 300;
});
a.postln;
)
::
section::Using an Environment
The instance method strong::use:: lets you temporarily replace the current link::Classes/Environment:: with one you have made. The strong::use:: method returns the result of your function instead of the Environment like strong::make:: does.
code::
(
var a;
a = Environment.make({
~a = 10;
~b = 200;
~c = 3000;
});
a.use({
~a + ~b + ~c
}).postln;
)
::
There is also a strong::use:: class method for when you want to make and use the result from an link::Classes/Environment:: directly.
code::
(
var a;
a = Environment.use({
~a = 10;
~b = 200;
~c = 3000;
~a + ~b + ~c
}).postln;
)
::
section::Calling Functions with arguments from the current Environment
It is possible to call a link::Classes/Function:: and have it look up any unspecified argument values from the current Environment. This is done with the strong::valueEnvir:: and strong::valueArrayEnvir:: methods. These methods will, for any unspecified argument value, look in the current Environment for a symbol with the same name as the argument. If the argument is not found then whatever the function defines as the default value for that argument is used.
code::
(
var f;
// define a function
f = { arg x, y, z; [x, y, z].postln; };
Environment.use({
~x = 7;
~y = 8;
~z = 9;
f.valueEnvir(1, 2, 3); // all values supplied
f.valueEnvir(1, 2); // z is looked up in the current Environment
f.valueEnvir(1); // y and z are looked up in the current Environment
f.valueEnvir; // all arguments are looked up in the current Environment
f.valueEnvir(z: 1); // x and y are looked up in the current Environment
});
)
::
Here is a somewhat contrived example of how the Environment might be used to manufacture SynthDefs. Even though the three functions below have the freq, amp and pan args declared in different orders it does not matter, because valueEnvir looks them up in the environment.
code::
(
var a, b, c, n;
n = 40;
a = { arg freq, amp, pan;
Pan2.ar(SinOsc.ar(freq), pan, amp);
};
b = { arg amp, pan, freq;
Pan2.ar(RLPF.ar(Saw.ar(freq), freq * 6, 0.1), pan, amp);
};
c = { arg pan, freq, amp;
Pan2.ar(Resonz.ar(GrayNoise.ar, freq * 2, 0.1), pan, amp * 2);
};
Task({
n.do({ arg i;
SynthDef("Help-SPE4-EnvirDef-" ++ i.asString, { |out|
var sound;
Environment.use({
// set values in the environment
~freq = exprand(80, 600);
~amp = 0.1 + 0.3.rand;
~pan = 1.0.rand2;
// call a randomly chosen instrument function
// with values from the environment
sound = [a,b,c].choose.valueEnvir;
});
sound = CombC.ar(sound, 0.2, 0.2, 3, 1, out);
sound = sound * EnvGen.kr(
Env.sine, doneAction: Done.freeSelf, timeScale: 1.0 + 6.0.rand, levelScale: 0.3
);
Out.ar(out, sound);
}).send(s);
0.02.wait;
});
loop({
Synth( "Help-SPE4-EnvirDef-" ++ n.rand.asString );
(0.5 + 2.0.rand).wait;
});
}).play;
)
::
section::Event
The class link::Classes/Event:: is a subclass of link::Classes/Environment::. Events are mappings of Symbols representing names of parameters for a musical event to their value. This lets you put any information you want into an event.
The class getter method strong::default:: retrieves the default prototype event which has been initialized with values for many useful parameters. It represents only one possible event model. You are free to create your own, however it would be good to understand the one provided first so that you can see what can be done.
A prototype event is a default event which will be transformed by the streams returned by patterns. Compositions produced by event patterns are created entirely from transformations of copies of a single protoEvent.
footnote::
It's all a part of the Big Note, but don't tell the pigs and ponies.
::
section::Value Patterns, Event Patterns and Pbind
The patterns discussed in parts 2 and 3 are known as "value patterns" because their streams return a single value for each call to strong::next::. Here we introduce "event patterns" which once turned into streams, return an link::Classes/Event:: for each call to strong::next::.
The class link::Classes/Pbind:: provides a bridge between value patterns and event patterns. It binds symbols in each event to values obtained from a pattern. Pbind takes arguments in pairs, the first of a pair being a link::Classes/Symbol:: and the second being a value link::Classes/Pattern::. Any object can act as a Pattern, so you can use constants as the pattern ( see code::\amp:: in the example below ).
The Pbind stream returns nil whenever the first one of its streams ends.
code::
Pbind( \freq, Pseq([440,880]) ).play
::
An event stream is created for a Pattern by sending it the code::asStream:: message. What Pbind does is to produce a stream which puts the values for its symbols into the event, possibly overwriting previous bindings to those symbols:
code::
t = Pbind( \freq, Pseq([440,880]) ).asStream;
t.next(Event.default);
t.next(Event.default);
t.next(Event.default);
::
When calling link::Classes/Pattern#-play:: an link::Classes/EventStreamPlayer:: is automatically generated which handles scheduling as well as passing the protoEvent into the event stream.
section::EventStreamPlayer
The class link::Classes/EventStreamPlayer:: is a subclass of link::Classes/PauseStream::. A PauseStream is just a wrapper for a stream allowing to play, stop, start it, etc...
EventStreamPlayers are initialized using the event stream returned by Pbind-asStream, as well as with a protoEvent. The EventStreamPlayer passes in a strong::protoEvent::, at each call to strong::next:: on the Pbind stream. The Pbind stream copies the event to pass down and back up the tree of pattern streams so that each stream can modify it.
An EventStreamPlayer is itself a stream which returns scalars (numbers) which are used by the clock to schedule its next invocation. At every call to EventStreamPlayer-next by the clock, the player gets its delta values by querying the Event after it has been returned by the Pbind stream traversal.
section::Changes in SC3
In SC2, you called asEventStream on an Pattern and you'd get a stream which actually returned events.
In SC3, if you want an event stream proper you call asStream on the Event Pattern. This will give you a stream of events which you can then use to initialize an EventStreamPlayer object. You don't however need to worry about that because it is usually done for you in Pattern's play method. Also changed is that you do not pass in your protoEvent through the asStream method. It is passed in for you by the EventStreamPlayer at each call to next on the stream.
Here you can see what the stream returned from a Pbind looks like.
code::
(
var pattern, stream;
// bind Symbol xyz to values obtained from a pattern
pattern = Pbind(
\xyz, Pseq([1, 2, 3])
);
// create a stream of events for the Pbind pattern.
stream = pattern.asStream;
// event Streams require a prototype event as input.
// this example uses an empty Event as a prototype
4.do({ stream.next(Event.new).postln; });
)
::
Here is an example with more bindings.
code::
(
var pattern, stream;
pattern = Pbind(
\abc, Prand([6, 7, 8, 9], inf ),
\xyz, Pseq([1, 2, 3], 2 ),
\uuu, 999 // a constant represents an infinite sequence of itself
);
stream = pattern.asStream;
7.do({ stream.next(Event.new).postln; });
)
::
The ListPatterns discussed in part 3 can be put around Event Streams to create sequences of Event Streams.
code::
(
var pattern, stream;
pattern =
Pseq([
Pbind( \abc, Pseq([1, 2, 3])),
Pbind( \def, Pseq([4, 5, 6])),
Pbind( \xyz, Pseq([7, 8, 9]))
]);
stream = pattern.asStream;
10.do({ stream.next(Event.new).postln; });
)
(
var pattern, stream;
pattern =
Prand([
Pbind( \abc, Pseq([1, 2, 3])),
Pbind( \def, Pseq([4, 5, 6])),
Pbind( \xyz, Pseq([7, 8, 9]))
], 3);
stream = pattern.asStream;
10.do({ stream.next(Event.new).postln; });
)
::
To go to the next file:
link::Tutorials/Streams-Patterns-Events5::
|