Env:
Filter:
Classes | Control | Envelopes

Env : Object

Specification for a segmented envelope
Source: Env.sc
Subclasses: Penv

Description

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.

NOTE: In some situations we deal with control points or breakpoints. If these control points have associated x positions (say in an envelope GUI, see EnvelopeView) they must be converted to time differences between points to be used as nodes in a Env object. The methods *xyc and *pairs can be used to specify an envelope in terms of points.

Class Methods

Env.new(levels: [ 0, 1, 0 ], times: [ 1, 1 ], curve: 'lin', releaseNode, loopNode, offset: 0)

Create a new envelope specification.

Arguments:

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:

\stepflat segments (immediately jumps to final value)
\holdflat segments (holds initial value, jump to final value at the end of the segment)
\linear\linlinear segments, the default
\exponential\expnatural exponential growth and decay. In this case, the levels must all be nonzero and have the same sign.
\sine\sinsinusoidal S shaped segments.
\welch\welsinusoidal segments shaped like the sides of a Welch window.
\squared\sqrsquared segment
\cubed\cubcubed segment
a Floata curvature value for all segments. 0 means linear, positive and negative numbers curve the segment up and down.
an Array of symbols or floatscurvature values for each segment.
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 :

  • the starting level of the envelope is 0
  • the loop goes from nodes[5] (value : 0.5) to the nodes[1+1] (value : 0)
  • at time = 0.9, the loop is released, so the envelope goes to nodes[5+1] (value : 0.8)
offset

an offset to all time values (only applies in IEnvGen).

Discussion:

Env.newClear(numSegments: 8, numChannels: 1)

Creates a new envelope specification with numSegments and numChannels for filling in later.

Discussion:

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.

Env.shapeNames

returns the dictionary containing the available shapes for the envelopes' curves

Env.shapeNumber(shapeName)

returns the index in the dictionary of the given curve shape

Arguments:

shapeName

name of the shape. e.g. \lin, \cub ...

Standard Shape Envelope Creation Methods

The following class methods create some frequently used envelope shapes based on supplied durations.

Env.linen(attackTime: 0.01, sustainTime: 1.0, releaseTime: 1.0, level: 1.0, curve: 'lin')

Creates a new envelope specification which has a trapezoidal shape.

Arguments:

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.

Discussion:

Env.triangle(dur: 1.0, level: 1.0)

Creates a new envelope specification which has a triangle shape.

Arguments:

dur

the duration of the envelope.

level

the peak level of the envelope.

Discussion:

Env.sine(dur: 1.0, level: 1.0)

Creates a new envelope specification which has a hanning window shape.

Arguments:

dur

the duration of the envelope.

level

the peak level of the envelope.

Discussion:

Env.perc(attackTime: 0.01, releaseTime: 1.0, level: 1.0, curve: -4.0)

Creates a new envelope specification which (usually) has a percussive shape.

Arguments:

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.

Discussion:

Env.pairs(pairs, curve)

Creates a new envelope specification from coordinates / control points

Arguments:

pairs

an array of pairs [[time, level], ...]

if possible, pairs are sorted regarding their point in time

curve

the curvature of the envelope.

Discussion:

Env.xyc(xyc)

Creates a new envelope specification from coordinates / control points with curvature.

Arguments:

xyc

an array of triplets [[time, level, curve], ...]

if possible, pairs are sorted regarding their point in time

Discussion:

Sustained Envelope Creation Methods

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.

Env.step(levels: [ 0, 1 ], times: [ 1, 1 ], releaseNode, loopNode, offset: 0)

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.

Arguments:

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).

Discussion:

Env.adsr(attackTime: 0.01, decayTime: 0.3, sustainLevel: 0.5, releaseTime: 1.0, peakLevel: 1.0, curve: -4.0, bias: 0.0)

Creates a new envelope specification which is shaped like traditional analog attack-decay-sustain-release (adsr) envelopes.

Arguments:

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

Discussion:

Env.dadsr(delayTime: 0.1, attackTime: 0.01, decayTime: 0.3, sustainLevel: 0.5, releaseTime: 1.0, peakLevel: 1.0, curve: -4.0, bias: 0.0)

As *adsr above, but with its onset delayed by delayTime in seconds. The default delay is 0.1.

Env.asr(attackTime: 0.01, sustainLevel: 1.0, releaseTime: 1.0, curve: -4.0)

Creates a new envelope specification which is shaped like traditional analog attack-sustain-release (asr) envelopes.

Arguments:

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.

Discussion:

Env.cutoff(releaseTime: 0.1, level: 1.0, curve: 'lin')

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.

Arguments:

releaseTime

the duration of the release portion.

level

the peak level of the envelope.

curve

the curvature of the envelope.

Discussion:

Env.circle(levels, times, curve: 'lin')

Creates a new envelope specification which cycles through its values. For making a given envelope cyclic, you can use the instance method -circle

Arguments:

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.

Discussion:

Multichannel expansion

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.

Inherited class methods

Instance Methods

.ar(doneAction: 0, gate: 1.0, timeScale: 1.0, levelScale: 1.0, levelBias: 0.0)

.kr(doneAction: 0, gate: 1.0, timeScale: 1.0, levelScale: 1.0, levelBias: 0.0)

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.

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 -1.0 - gate. See EnvGen: Forced release example.

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.

Discussion:

.blend(argAnotherEnv, argBlendFrac: 0.5)

Blend two envelopes. Returns a new Env. See blend example below.

Arguments:

argAnotherEnv

an Env.

argBlendFrac

a number from zero to one.

.delay(delay)

Returns a new Env based on the receiver in which the start value will be held for delay number of seconds.

Arguments:

delay

The amount of time to delay the start of the envelope.

Discussion:

.duration

.duration = dur

Set the total duration of times, by stretching them.

Discussion:

.totalDuration

Get the total duration of the envelope. In multi-channel envelopes, this is the duration of the longest one.

Discussion:

.circle(timeFromLastToFirst: 0.0, curve: 'lin')

circle from end to beginning over the time specified, with the curve specified. See also the class method *circle

Discussion:

.test(releaseTime: 3.0)

Test the envelope on the default Server with a SinOsc.

Arguments:

releaseTime

If this is a sustaining envelope, it will be released after this much time in seconds. The default is 3 seconds.

.plot(size: 400, bounds, minval, maxval, name)

From extension in /usr/local/share/SuperCollider/SCClassLibrary/Common/GUI/PlusGUI/Math/PlotView.sc

Plot this envelope's shape in a window.

Arguments:

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.

.asSignal(length: 400)

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.

.asArray

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.

.asMultichannelArray

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.

.isSustained

Returns true if this is a sustaining envelope, false otherwise.

.range(lo: 0.0, hi: 1.0)

.exprange(lo: 0.01, hi: 1.0)

.curverange(lo: 0.0, hi: 1.0, curve: -4)

Returns a copy of the Env whose levels have been mapped onto the given linear, exponential or curve range.

Discussion:

Client-side Access and Stream Support

Sustain and loop settings have no effect in the methods below.

.at(time)

Returns the value of the Env at time. If the envelope has multiple channels, this method returns an array of levels.

Arguments:

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.

Discussion:

.embedInStream(inval)

Embeds this Env within an enclosing Stream. Timing is derived from thisThread.beats.

.asStream

Creates a Routine and embeds the Env in it. This allows the Env to function as a Stream.

Discussion:

Inherited instance methods

Undocumented instance methods

==(that)

.array

.asArrayForInterpolation

.asControlInput

From extension in /usr/local/share/SuperCollider/SCClassLibrary/Common/Control/extConvertToOSC.sc

.asMultichannelSignal(length: 400, class)

.asOSCArgEmbeddedArray(array)

From extension in /usr/local/share/SuperCollider/SCClassLibrary/Common/Control/extConvertToOSC.sc

.asPseg

.curveValue(curve)

.curves

.curves = z

.discretize(n: 1024)

.hash

.levels

.levels = z

.loopNode

.loopNode = z

.offset

.offset = z

.releaseNode

.releaseNode = z

.releaseTime

.times

.times = z

Examples

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:

NOTE: The starting level for an envelope segment is always the level you are at right now. For example when the gate is released and you jump to the release segment, the level does not jump to the level at the beginning of the release segment, it changes from whatever the current level is to the goal level of the release segment over the specified duration of the release segment.

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.

blend