UGen:
Filter:
Classes | UGens | Server > Abstractions

UGen : AbstractFunction : Object

Abstract superclass of all unit generators
Source: UGen.sc
Subclasses: AY, AbstractOut, Amplitude, AmplitudeMod, … see all

Description

UGens represent calculations with signals. They are the basic building blocks of synth definitions on the server, and are used to generate or process both audio and control signals. The many subclasses of UGen are the client-side representations of unit generators, and are used to specify their parameters when constructing synth definitions (see SynthDef).

Interface

All UGens respond to one or more of the following class methods:

They return a new instance of UGen that calculates at audio/control rate or at initialization only (ir). Some UGens, like Rand, use the *new method instead. These methods are implemented in subclasses, where argument names and their meaning depend on the case.

If any argument is an array, they return an array of UGens ( see: Multichannel Expansion ). If the combination of rates between arguments and ugen are not allowed, calling the methods will throw an error. This method adds the UGen to the current SynthDef, so it only fully works inside a UGen function.

Documentation of mul and add arguments

A great number of UGens take arguments for mul and add in their *ar and *kr methods. Because these arguments are so ubiquitous, they are not general documented in the individual help files. Mul and add simply refer to a constant or signal by which to multiply the output of the UGen, and a constant or signal to add to the output of the UGen. (mul happens before add.) They thus correspond in many cases to scaling the amplitude of the UGen signal in the case of mul, and adding a constant or DC offset in the case of add. In most cases the defaults for mul and add are 1 and 0 respectively, and they are commonly implemented using a automatically generated MulAdd UGen for efficiency. See also the range and madd methods below.

Class Methods

UGen.buildSynthDef

UGen.buildSynthDef = value

Returns:

the SynthDef in which the UGen is situated.

Discussion:

Internally used class methods

UGen.multiNew( ... args)

These methods are responsible for multichannel expansion. They call *new1(rate, ...args) for each parallel combination. Most *ar/*kr methods delegate to *multiNewList.

Arguments:

... args

The first argument is rate, then the rest of the arguments. (rate, ...args)

UGen.multiNewList(args)

See *multiNew.

Arguments:

args

An array where the first argument is rate, then the rest of the arguments. ([rate, ...args])

UGen.new1(rate ... args)

This method returns a single instance of the UGen, not multichannel expanded. It is called inside multiNewList, whenever a new single instance is needed.

UGen.methodSelectorForRate(rate)

Arguments:

rate

A Symbol, \audio, \control, \scalar

Returns:

An appropriate message selector ( Symbol like \ar, \kr, \ir ) for the given rate.

UGen.replaceZeroesWithSilence(array)

Returns:

A new Array, where every zero is replaced by a Silent UGen.

Discussion:

This is required internally sometimes for UGens like Out.

Inherited class methods

Undocumented class methods

UGen.newFromDesc(rate, numOutputs, inputs, specialIndex)

Instance Methods

Convenience Methods

.scope(name: "UGen Scope", bufsize: 4096, zoom: 1.0)

From extension in /usr/local/share/SuperCollider/SCClassLibrary/Common/GUI/PlusGUI/Control/UGen-scope.sc

Displays the output of this UGen in an individual Stethoscope window.

Arguments:

name

The name of the window

bufsize

Buffer size

zoom

Zoom factor

Discussion:

.poll(trig: 10, label, trigid: -1)

Polls the output of this UGen every interval seconds, and posts the result.

Arguments:

trig

Trig frequency

label

A symbol to label the output

trigid

Numerical ID

Discussion:

The default trig is 10, which converts to 10 triggers per second (or every 0.1 seconds). See Poll for more info on polling.

.dpoll(label, run: 1, trigid: -1)

Like poll, only that dpoll is used for Demand ugens. See Poll for more info on polling.

.range(lo: 0.0, hi: 1.0)

Scales the output of this UGen to be within the range of lo and hi.

Discussion:

Note that range expects the default output range, and thus should not be used in conjunction with mul and add arguments.

.exprange(lo: 0.01, hi: 1.0)

Maps the output of this UGen exponentially to be within the range of lo and hi using a LinExp UGen.

Discussion:

lo and hi should both be non-zero and have the same sign. Note that exprange expects the default output range, and thus should not be used in conjunction with mul and add arguments.

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

Scales the output of this UGen to be within the range of lo and hi using a curve factor of curve.

Discussion:

Note that curverange expects the default output range, and thus should not be used in conjunction with mul and add arguments.

.unipolar(mul: 1)

Scales the output of this UGen to be between (0..mul) range (default 1).

Discussion:

Note that unipolar expects the default output range, and thus should not be used in conjunction with mul and add arguments.

.bipolar(mul: 1)

Scales the output of this UGen to be between (-mul..mul) range (default 1).

Discussion:

Note that bipolar expects the default output range, and thus should not be used in conjunction with mul and add arguments.

.degrad

Converts degrees to radians. This method multiplies the receiver's output by pi/180.

.raddeg

Converts radians to degrees. This method multiplies the receiver's output by 180/pi.

.clip(lo: 0.0, hi: 1.0)

Wraps the receiver in a Clip UGen, clipping its output at lo and hi.

.fold(lo: 0.0, hi: 0.0)

Wraps the receiver in a Fold UGen, folding its output at lo and hi.

.wrap(lo: 0.0, hi: 1.0)

Wraps the receiver in a Wrap UGen, wrapping its output at lo and hi.

.blend(that, blendFrac: 0.5)

Blends this with that by wrapping the receiver in an XFade2 (if this or that are audio-rate UGens) or LinXFade2 UGen.

NOTE: The blendFrac argument is between 0 and 1

.lag(t1: 0.1, t2)

Wraps the receiver in a Lag UGen, smoothing its output by t1 seconds lagtime. If a second argument is given, it wraps it in a LagUD UGen.

.lag2(t1: 0.1, t2)

Wraps the receiver in a Lag2 UGen, smoothing its output by t1 seconds lagtime. If a second argument is given, it wraps it in a Lag2UD UGen.

.lag3(t1: 0.1, t2)

Wraps the receiver in a Lag3 UGen, smoothing its output by t1 seconds lagtime. If a second argument is given, it wraps it in a Lag3UD UGen.

.lagud(lagTimeU: 0.1, lagTimeD: 0.1)

Wraps the receiver in a LagUD UGen, smoothing its output by lagtimeU and lagtimeD.

.lag2ud(lagTimeU: 0.1, lagTimeD: 0.1)

Wraps the receiver in a Lag2UD UGen, smoothing its output by lagtimeU and lagtimeD.

.lag3ud(lagTimeU: 0.1, lagTimeD: 0.1)

Wraps the receiver in a Lag3UD UGen, smoothing its output by lagtimeU and lagtimeD.

.varlag(time: 0.1, curvature: 0, warp: 5, start)

Wraps the receiver in a VarLag UGen, smoothing its output by time seconds.

.slew(up: 1, down: 1)

Wraps the receiver in a Slew UGen, limiting the slope of its output.

.degreeToKey(scale, stepsPerOctave: 12)

Wraps the receiver in a DegreeToKey UGen.

.minNyquist

Wraps the receiver in a min BinaryOpUGen, such that the lesser of the receiver's output and the Nyquist frequency is output. This can be useful to prevent aliasing.

.snap(resolution: 1.0, margin: 0.05, strength: 1.0)

Wraps the receiver so that its values are rounded within margin distance from a multiple of resolution to a multiple of resolution. By using margin and strength you can control when values will be rounded, and by how much. See SimpleNumber: -snap for more details.

This can be used to make control signals (e.g. from sensors) "snap" to defined resolution. Example:

.softRound(resolution: 1.0, margin: 0.05, strength: 1.0)

Wraps the receiver so that its values are rounded outside of margin distance from a multiple of resolution to a multiple of resolution. By using margin and strength you can control when values will be rounded, and by how much. See SimpleNumber: -softRound for more details.

.linlin(inMin, inMax, outMin, outMax, clip: 'minmax')

Wraps the receiver so that a linear input range is mapped to a linear output range.

Discussion:

The clip argument can be one of the four:

nildo not clip at outMin or outMax
\minmaxclip at outMin or outMax
\minclip at outMin
\maxclip at outMax

Example:

.linexp(inMin, inMax, outMin, outMax, clip: 'minmax')

Wraps the receiver so that a linear inputrange is mapped to an exponential output range.

Discussion:

outMin and outMax must be nonzero and of the same sign. For clip argument, see linlin above.

.explin(inMin, inMax, outMin, outMax, clip: 'minmax')

Wraps the receiver so that an exponential inputrange is mapped to a linear output range.

Discussion:

inMin and inMax must be nonzero and of the same sign. For clip argument, see linlin above.

.expexp(inMin, inMax, outMin, outMax, clip: 'minmax')

Wraps the receiver so that an exponential inputrange is mapped to an exponential output range.

Discussion:

outMin, outMax, inMin and inMax must be nonzero and of the same sign. For clip argument, see linlin above.

.lincurve(inMin: 0, inMax: 1, outMin: 0, outMax: 1, curve: -4, clip: 'minmax')

Wraps the receiver so that a linear inputrange is mapped to a curve-like exponential output range.

Discussion:

outMin and outMax may be zero and of the different sign. For clip argument, see linlin above.

.curvelin(inMin: 0, inMax: 1, outMin: 0, outMax: 1, curve: -4, clip: 'minmax')

Wraps the receiver so that a curve-like exponential inputrange is mapped to a linear output range.

Discussion:

inMin and inMax may be zero and of the different sign. For clip argument, see linlin above.

.bilin(inCenter, inMin, inMax, outCenter, outMin, outMax, clip: 'minmax')

Map the receiver from two assumed linear input ranges (inMin..inCenter) and (inCenter..inMax) to two linear output ranges (outMin..outCenter) and (outCenter..outMax). If the input exceeds the input range, the following behaviours are specified by the clip argument.

Arguments:

inCenter
inMin

assumed input minimum

inMax

assumed input maximum

outCenter
outMin

output minimum

outMax

output maximum

clip

nil (don't clip) \max (clip ceiling) \min (clip floor) \minmax (clip both - this is default).

Discussion:

.prune(min, max, type)

Limits the receiver range to one of the four clip modes, see linlin above.

.checkBadValues(id: 0, post: 2)

Wraps the receiver in a CheckBadValues UGen with the corresponding id and post flag.

.if(trueUGen, falseUGen)

Outputs trueUGen when the receiver outputs 1, falseUGen when the receiver outputs 0. If the receiver outputs a value between 0 and 1, a mixture of both will be played.

Discussion:

This is implemented as: (this * (trueUGen - falseUGen)) + falseUGen)

Note that both trueUGen and falseUGen will be calculated regardless of whether they are output, so this may not be the most efficient approach.

@(y)

Dynamic geometry support. Returns Point(this, y).

Discussion:

.asComplex

Complex math support. Returns Complex(this, 0.0).

.dumpArgs

Posts a list of the arguments for this UGen and their values.

Other Instance Methods

The following methods and instance variables are largely used in the construction of synth definitions, synth descriptions (see SynthDesc), UGen class definitions, etc., and are usually not needed for general use. Users should not attempt to set any of these values in general code.

.synthDef

.synthDef = value

The SynthDef which contains the UGen.

.inputs

.inputs = value

The array of inputs to the UGen.

.rate

.rate = value

The output rate of the UGen which is one of the Symbols \audio, or \control.

.signalRange

Returns:

A symbol indicating the signal range of the receiver. Either \bipolar or \unipolar.

.numChannels

Returns:

The number of output channels.

Discussion:

For a UGen, this will always be 1, but Array also implements this method, so multichannel expansion is supported. See Multichannel Expansion.

.numInputs

Returns:

The number of inputs for this UGen.

.numOutputs

Returns:

The number of outputs for this UGen.

.name

Returns:

The Class name of the receiver as a String.

.madd(mul: 1.0, add: 0.0)

Wraps the receiver in a MulAdd UGen.

Discussion:

This is for the most part only used in UGen class definitions in order to allow efficient implementation of mul and add arguments.

.isValidUGenInput

Returns:

true

.asUGenInput

Returns:

the receiver

Discussion:

This method is implemented in a number of classes in order to allow objects like Nodes, Busses, and Buffers to be passed directly as UGen inputs and Synth args.

.copy

Returns:

the receiver.

Discussion:

Thus UGen-dup effectively returns a reference to the original and is a convenient way to copy a mono signal to multiple channels.

Function-dup evaluates that function multiple times, thus potentially returning distinct UGens.

Internally used instance methods

.methodSelectorForRate

See *methodSelectorForRate

.init( ... theInputs)

By default, this method stores the inputs (e.g. the arguments to *ar and *kr) in the UGen.

Discussion:

This may be overridden to do other initialisations, as long as the inputs are set correctly.

Bela

.belaScope(scopeChannel)

From extension in /usr/local/share/SuperCollider/SCClassLibrary/Common/Audio/Bela/BelaScope.sc

Send this UGen's output to Bela's Oscilloscope (see BelaScope for required setup)

Arguments:

channelOffset

Bela's oscilloscope channel to start scoping on. This has to be a non-negative number, and can't be changed after scoping starts.

(server)

The server on which BelaScope is running. If not specified, it looks for the first server for which BelaScope was already initialized. If none is found, it attempts to initialize a BelaScope instance on Server: *default.

Returns:

This UGen.

Inherited instance methods

Undocumented instance methods

.addToSynth

.antecedents

.antecedents = value

.argNameForInputAt(i)

.asControlInput

.checkNInputs(n)

.checkSameRateAsFirstInput

.checkValidInputs

.circleRamp(lagTime: 0.1, circmin: -180, circmax: 180)

From extension in /usr/local/share/SuperCollider/Extensions/SC3plugins/VBAPUGens/CircleRamp.sc

.collectConstants

.composeBinaryOp(aSelector, anInput)

.composeNAryOp(aSelector, anArgList)

.composeUnaryOp(aSelector)

.descendants

.descendants = value

.dumpName

.initTopoSort

.isUGen

.makeAvailable

.moddif(that: 0.0, mod: 1.0)

.optimizeGraph

.outputIndex

.performBinaryOpOnComplex(aSelector, aComplex)

.performDeadCodeElimination

.prReverseLazyEquals(that)

.rateNumber

.removeAntecedent(ugen)

.reverseComposeBinaryOp(aSelector, aUGen)

.sanitize

.schedule(outStack)

.specialIndex

.specialIndex = value

.synthIndex

.synthIndex = value

.widthFirstAntecedents

.widthFirstAntecedents = value

.writeDef(file)

.writeDefOld(file)

From extension in /usr/local/share/SuperCollider/SCClassLibrary/Common/Audio/SynthDefOld.sc

.writeInputSpec(file, synthDef)

.writeInputSpecOld(file, synthDef)

From extension in /usr/local/share/SuperCollider/SCClassLibrary/Common/Audio/SynthDefOld.sc

.writeOutputSpec(file)

.writeOutputSpecs(file)

.writesToBus

|==|(that)