An Env is a specification for a segmented envelope. Envs can be used both server-side, by an EnvGen or an IEnvGen within a SynthDef, and clientside, with methods such as -at and -asStream, below.
An Env can have any number of segments which can stop at a particular value or loop several segments when sustaining. It can have several shapes for its segments.
The envelope is conceived as a sequence of nodes (not to be confused with a synthesis-Node) : the first node gives the initial level of the envelope, and the following have three parameters: a target level, a time duration from the previous node, and a shape. The three parameters for each node are kept in separate arrays as explained below.
In this envelope, there are four nodes :
Close attention must be paid when retriggering envelopes. Starting from their value at the moment of retrigger, envelopes will cycle through all of their nodes, with the exception of the first. The first node is an envelope's initial value and is only output prior to the initial trigger.
In the above example, the initial level (0) is never repeated. When retriggered, the envelope moves from its current value (0.3), to the value of the second node (0.1), and so forth.
Create a new envelope specification.
levels |
an array of levels. The first value is the initial level of the envelope. When the envelope is used with an EnvGen, levels can be any UGen (new level values are updated only when the envelope has reached that point). When the array of levels contains itself an array, the envelope returns a multichannel output (for a discussion, see Multichannel expansion) | ||||||||||||||||||||||||||||||
times |
an array of durations of segments in seconds. There should be one fewer duration than there are levels, but if shorter, the array is extended by wrapping around the given values. | ||||||||||||||||||||||||||||||
curve |
a Symbol, Float, or an Array of those. Determines the shape of the envelope segments. The possible values are:
| ||||||||||||||||||||||||||||||
releaseNode |
an Integer or nil. The envelope will sustain at the releaseNode until released. In the above example, the release node is set to the third node, which means it will sustain at the level of 0.5 until it is released. The envelope will then continue on until its last node is reached. | ||||||||||||||||||||||||||||||
loopNode |
an Integer or nil. Creates a segment of looping nodes. You must specify a releaseNode in order for loopNode to have any effect. The loopNode is the initial node of the loop and is never repeated. Upon reaching the releaseNode, the envelope will move back to the node that immediately follows loopNode. The envelope will loop until its gate is closed. When released, a looping envelope will move from its current position to the node that immediately follows releaseNode and continue until the end. In this example :
| ||||||||||||||||||||||||||||||
offset |
an offset to all time values (only applies in IEnvGen). |
Creates a new envelope specification with numSegments and numChannels for filling in later.
This can be useful when passing Env parameters as args to a Synth. Note that the maximum number of segments is fixed and cannot be changed once embedded in a SynthDef. Trying to set an Env with more segments than then this may result in other args being unexpectedly set.
returns the dictionary containing the available shapes for the envelopes' curves
returns the index in the dictionary of the given curve shape
shapeName |
name of the shape. e.g. \lin, \cub ... |
The following class methods create some frequently used envelope shapes based on supplied durations.
Creates a new envelope specification which has a trapezoidal shape.
attackTime |
the duration of the attack portion. |
sustainTime |
the duration of the sustain portion. |
releaseTime |
the duration of the release portion. |
level |
the level of the sustain portion. |
curve |
the curvature of the envelope. |
Creates a new envelope specification which has a triangle shape.
dur |
the duration of the envelope. |
level |
the peak level of the envelope. |
Creates a new envelope specification which has a hanning window shape.
dur |
the duration of the envelope. |
level |
the peak level of the envelope. |
Creates a new envelope specification which (usually) has a percussive shape.
attackTime |
the duration of the attack portion. |
releaseTime |
the duration of the release portion. |
level |
the peak level of the envelope. |
curve |
the curvature of the envelope. |
Creates a new envelope specification from coordinates / control points
pairs |
an array of pairs [[time, level], ...] if possible, pairs are sorted regarding their point in time |
curve |
the curvature of the envelope. |
Creates a new envelope specification from coordinates / control points with curvature.
xyc |
an array of triplets [[time, level, curve], ...] if possible, pairs are sorted regarding their point in time |
The following methods create some frequently used envelope shapes which have a sustain segment. They are typically used in SynthDefs in situations where at the time of starting the synth it is not known when it will end. Typical cases are external interfaces, midi input, or quickly varying TempoClock.
Creates a new envelope specification where all the segments are horizontal lines. Given n values of times only n levels need to be provided, corresponding to the fixed value of each segment.
levels |
an array of levels. Levels can be any UGen (new level values are updated only when the envelope has reached that point). When the array of levels contains itself an array, the envelope returns a multichannel output (for a discussion, see Multichannel expansion) |
times |
an array of durations of segments in seconds. It should be the same size as the levels array. |
releaseNode |
an Integer or nil. The envelope will sustain at the release node until released. |
loopNode |
an Integer or nil. If not nil the output will loop through those nodes starting at the loop node to the node immediately preceding the release node, before back to the loop node, and so on. Note that the envelope only transitions to the release node when released. Examples are below. The loop is escaped when a gate signal is sent, when the output transitions to the release node, as described below. |
offset |
an offset to all time values (only applies in IEnvGen). |
Creates a new envelope specification which is shaped like traditional analog attack-decay-sustain-release (adsr) envelopes.
attackTime |
the duration of the attack portion. |
decayTime |
the duration of the decay portion. |
sustainLevel |
the level of the sustain portion as a ratio of the peak level. |
releaseTime |
the duration of the release portion. |
peakLevel |
the peak level of the envelope. |
curve |
the curvature of the envelope. |
bias |
offset |
As *adsr above, but with its onset delayed by delayTime in seconds. The default delay is 0.1.
Creates a new envelope specification which is shaped like traditional analog attack-sustain-release (asr) envelopes.
attackTime |
the duration of the attack portion. |
sustainLevel |
the level of the sustain portion as a ratio of the peak level. |
releaseTime |
the duration of the release portion. |
curve |
the curvature of the envelope. |
Creates a new envelope specification which has no attack segment. It simply sustains at the peak level until released. Useful if you only need a fadeout, and more versatile than Line.
releaseTime |
the duration of the release portion. |
level |
the peak level of the envelope. |
curve |
the curvature of the envelope. |
Creates a new envelope specification which cycles through its values. For making a given envelope cyclic, you can use the instance method -circle
levels |
The levels through which the envelope passes. |
times |
The time between subsequent points in the envelope, which may be a single value (number), or an array of them. If too short, the array is extended. In difference to the *new method, the size of the times array is the same as that of the levels, because it includes the loop time. |
curve |
The curvature of the envelope, which may be a single value (number or symbol), or an array of them. If too short, the array is extended. In difference to the *new method, the size of the curve array is the same as that of the levels, because it includes the loop time. |
If one of the values within either levels, times, or curves is itself an array, the envelope expands to multiple channels wherever appropriate. This means that when such an envelope is passed to an EnvGen, this EnvGen will expand, and when the envelope is queried via the methods -at or -asSignal, it will return an array of values.
Instead of using an EnvGen inside a UGen graph, this message does the same implicitly for convenience. Its argument order corresponds to the most common arguments.
doneAction |
An integer representing an action to be executed when the env is finished playing. This can be used to free the enclosing synth, etc. See Done for more detail. |
gate |
This triggers the envelope and holds it open while > 0. If the Env is fixed-length (e.g. Env.linen, Env.perc), the gate argument is used as a simple trigger. If it is an sustaining envelope (e.g. Env.adsr, Env.asr), the envelope is held open until the gate becomes 0, at which point is released. If gate < 0, force release with time |
timeScale |
The durations of the segments are multiplied by this value. This value can be modulated, but is only sampled at the start of a new envelope segment. |
levelScale |
The levels of the breakpoints are multiplied by this value. This value can be modulated, but is only sampled at the start of a new envelope segment. |
levelBias |
This value is added as an offset to the levels of the breakpoints. This value can be modulated, but is only sampled at the start of a new envelope segment. |
Blend two envelopes. Returns a new Env. See blend example below.
argAnotherEnv |
an Env. |
argBlendFrac |
a number from zero to one. |
Returns a new Env based on the receiver in which the start value will be held for delay number of seconds.
delay |
The amount of time to delay the start of the envelope. |
Set the total duration of times, by stretching them.
Get the total duration of the envelope. In multi-channel envelopes, this is the duration of the longest one.
circle from end to beginning over the time specified, with the curve specified. See also the class method *circle
Test the envelope on the default Server with a SinOsc.
releaseTime |
If this is a sustaining envelope, it will be released after this much time in seconds. The default is 3 seconds. |
Plot this envelope's shape in a window.
size |
The size of the plot. The default is 400. |
bounds |
the size of the plot window. |
minval |
the minimum value in the plot. Defaults to the lowest value in the data. |
maxval |
the maximum value in the plot. Defaults to the highest value in the data. |
name |
the plot window's label name. If nil, a name will be created for you. |
Returns a Signal of size length created by sampling this Env at length number of intervals. If the envelope has multiple channels (see Multichannel expansion), this method returns an array of signals.
Converts the Env to an Array in a specially ordered format. This allows for Env parameters to be settable arguments in a SynthDef. See example under *newClear.
Converts the Env to an Array in a specially ordered format, like -asArray, however it always returns an array of these data sets, corresponding to the number of channels of the envelope.
Returns true if this is a sustaining envelope, false otherwise.
Returns a copy of the Env whose levels have been mapped onto the given linear, exponential or curve range.
Sustain and loop settings have no effect in the methods below.
Returns the value of the Env at time. If the envelope has multiple channels, this method returns an array of levels.
time |
A number or an array of numbers to specify a cut in the envelope. If time is an array, it returns the corresponding levels of each time value, and if the envelope has multiple channels, it returns an array of values. A combination of both returns a two-dimensional array. |
Embeds this Env within an enclosing Stream. Timing is derived from thisThread.beats
.
Creates a Routine and embeds the Env in it. This allows the Env to function as a Stream.
If a release node is given, and the gate input of the EnvGen is set to zero, it outputs the nodes after the release node:
If a loop node is given, the EnvGen outputs the nodes between the loop node and the release node (not including the release node itself) until it is released:
There is an extra level at the beginning of the envelope to set the initial level. After that each node is a goal level and a duration, so node zero has duration equal to times[0] and goal level equal to levels[1].
The loop jumps back to the loop node. The endpoint of that segment is the goal level for that segment and the duration of that segment will be the time over which the level changed from the current level to the goal level.