An Env
is a specification for a segmented envelope. Env
s 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 breakpoint nodes with three parameters: a level, a transition time, and a transition curve shape. The three node parameters are kept in separate arrays as explained below. Note that because the first node represents the initial level of the envelope, it has no associated transition time or curve.
In this envelope, there are four nodes :
Close attention must be paid when retriggering envelopes. Starting from the current value at the moment of a trigger, the envelope will cycle back through all of the 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 in this case), to the value of the second node by default (0.1), and then proceeds through subsequent nodes.
Create a new envelope specification.
levels |
an array of levels. The first value is the initial level of the envelope and, when used with EnvGen, is held until the | ||||||||||||||||||||||||||||||
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 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 Upon reaching the release node, the envelope will transition back to the node that follows the loop node, over that node's transition time. The envelope will loop until the EnvGen's In this example :
For an envelope that simply loops through all of its nodes, see *circle. | ||||||||||||||||||||||||||||||
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 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. The first value is the initial level of the envelope and, when used with EnvGen, is held until the |
times |
an array of durations of segments in seconds. It should be the same size as the levels array. |
releaseNode |
an Integer or |
loopNode |
an Integer or |
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 which, when used by an EnvGen, cycles through its values.
For making an already-created envelope cyclic, you can use the -circle instance method, which takes the looparound time and curve as arguments.
levels |
The levels through which the envelope passes. |
times |
The time between subsequent levels in the envelope. The last value is the looparound time. The array size of times should be the same size of the levels array. |
curve |
The curvature of the envelope segments. The last value is the looparound curve. See *new for valid values. The array size of curve should be the same size of the levels array. NOTE: If the array of times or curve is too short, it will be extended by wrapping around the given values. If a single value is given, it applies to all envelope stages. |
Env
must be instantiated inside the function used to construct the SynthDef. It will not work not work if it is instantiated outside the function, e.g. passed in as a variable.
Due to the internal initializing the cyclic behavior, there is a one-sample delay of the envelope.
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.
Declare the Env
as circular so that, when used with EnvGen, the Env
is looped through cyclically.
You can create a circular Env
directly with the *circle class method.
timeFromLastToFirst |
The time to loop around from the last to the first level of the |
curve |
The curvature of segment connecting the last and first level of the |
Env
must be instantiated inside the function used to construct the SynthDef. It will not work not work if it is instantiated outside the function, e.g. passed in as a variable.
Due to the internal initializing the cyclic behavior, there is a one-sample delay of the envelope.
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. |
parent |
Either a Window or View may be passed in - then the plot is embedded. Otherwise a new Window is created. |
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
.
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.
Returns the same output as asStream
.