CV:
Filter:
Conductor/Classes (extension) | Control

CV
ExtensionExtension

A dynamic container for a number that can be plugged into Patterns, Streams, GUIs, Synths, etc.

Description

A CV models a single floating point value or an array of such values constrained to a specific numerical range by a ControlSpec. SV is a derived class that defines an index into an array.

CV is derived from Stream so it can be used directly in Stream and Pattern definitions. CV:connect(view) will connect a CV to a GUI ControlView in both Cocoa and Swing. GUI representations. A similar set of methods have been defined that connect argument arrays consisting of keys and CVs to nodes, buses, buffers, and NodeProxys.

An SV is a CV that models an index into an array of Symbols. The array is held in the instance variable items. The symbol corresponding to the CV's current value can be accessed with the method item.

Class Methods

.new

Arguments:

spec

Any object that responds to asSpec (Nil, Symbol, ControlSpec, Array) with a ControlSpec

default

the default is constrained to lie within the range of the spec

NOTE: some common ControlSpecs include: unipolar, bipolar, freq, lofreq, midfreq, widefreq, phase, rq, audiobus, controlbus, midi, midinote, midivelocity, db, amp, boostcut, pan, detune, rate, beats, delay

Instance Methods

Setting the range of values on existing CVs

.spec

Arguments:

s

Any object that responds to asSpec (Nil, Symbol, ControlSpec, Array) with a ControlSpec

v

the initial value of the CV

.sp

Arguments:

default

inital value

lo

smallest possible value

hi

largest possible value

step

smallest incremental change in GUI

warp

either 'linear' or 'exponential'In the case of exponential warp, min and max must be non-zero and the same sign.

Discussion:

.connect

Arguments:

view

The view to connect the CV to. An Array of CVs defines connect to allow a set of CVs to be connected to a view with multiple control values (i.e., attaching two CVs to the two axes of Slider2D).

Accessing

.value

Answer the current value of the control. This is how the control is read within tasks and patterns

.input

Arguments:

in

an input value ranging form 0 to 1 results in this.value ranging from lo to hi. This method is typically used by external controls (such as MIDI) and GUI views to alter the CV.

Returns:

a number ranging form 0 to 1 that corresponds to postion of the current value between lo to hi.

.value

Set the current value of the control, irrespective of the range settings.

.windex

Interprets the value of the CV as a probability table and returns a weighted random value

.indexedBy

For use in Patterns: uses the value of key in the current Event as an index and returns the indexed value

CV connections using SimpleControllers

When a CV's value is changed a changed message (with 'synch' as the identifier) is send to update any dependant objects. For example, action_(function) creates a SimpleController which is added to the dependants of the CV and evaluated whenever the CV changes value. This same basic mechanism is used to connect the CV to GUI's, server, objects, and some other objects in the language. Most of this is more or less hidden from view.

Under normal circumstances, CV connections are automatically removed when the targeted Control, Bus, or View is deleted. If there is a program error, it is possible that connections will persist and will need to be explicitly removed.

.action

Arguments:

function

Create a dependant SimpleController that evaluates the function whenever the CV's value is altered.

.release

Remove all dependants. (This is actually a method of Object..)

GUI connections

The following methods establish connections between Views and CVs.

NOTE: At the moment, top-level abstract GUI names are not supported, so these examples use Qt GUIs directly. This will be fixed.
aCVconnect(aQSlider)
aCVconnect(aQNumberBox)
[xCV, yCV]connect(aQSlider2D)
[loCV, hiCV]connect(aQRangeSlider)
aCVconnect(aQMultiSliderView)(for CVs with an array of values)
aCVconnect(aQPopUpMenu)(for SVs, displays SV-items)
aCVconnect(aQListView)(for SVs)

One CV can be connected to many views but each view is connected to only one CV.

When a CV's value changes, it is relayed to all of its dependants including the source of the the change. That way, the GUI accurately reflects the new value of the CV. See the behavior of 'b' in the following example.

The following example provides a generic graphic interface to two CVs. Subsequent examples depend on that window, so leave it open until you are finished working through the help file. (The interpreter variables 'a' and 'b' contain the CVs used by the examples, so they should be left unaltered.)

Server connections

OSC commands (i.e., /n_set, /s_new) specify initial values of parameters as a flat array of pairs consisting of a name and its initial value:

"Extended argument arrays" allow CVs to be used in place of the initial value. This is the standard syntax for establishing connections between CVs and a server. In an extended argument array, the CV's value can be altered before being sent, multiple CV's can determine the value to be sent, and the value to be sent can be determined by a function:

value[freq: 440 ]
CV[freq: aCV ]
altered CV[freq: [ aCV, aCV.midicps ] ]
combination[freq: [ [aCV, bCV], aCV.midicps + bCV] ]
function[freq: [ aCV, { aCV.midicps.value + 33.rand }]]

For example, the method Synth-controls is identical to Synth-new except the args parameter is extended:

In the previous two examples, the modifying expression is actually a combination of Streams altered with binary and unary operators. This is concise, but in some cases, it may be necessary to use a Function to define the modification. Notice that within a Function definition it is necessary to explicitly extract the value of the CV using a value message.

Summary of Node related connection methods

Array
connectToNode(server, nodeID)
connectToNodeProxy(server, nodeID)
the receiver is a flat Array of name/value pairs
connectToBuffer(server, bufnum)
connectToBus(server, index)
the receiver is an Array of CVs.
Node
setControls(extendedArgArray)
NodeProxy
setControls(extendedArgArray)
connects CVs to the named controls
Synth
*controls(synthDef, extendedArgArray, target, addAction)
This is the same as *new, but allows CV's to be used in the args array.
Bus
*controls(arrayOfCVs, server)
setControls(arrayOfCVS)
connects CVs to consecutive buses

Reading and writing CVs in functions and patterns

Tasks
Within a function, CVs are accessed using value and input and altered using value_ and input_.
Patterns
Within a pattern definition, a CV can directly substitute for a Pattern:

Pfunc can be used to change the CV from within a Pattern.

CVs and external input

The input_(in) method makes it easy to connect a CV to any control source:

The methods input and input_ are also used by ConductorPreset to allow interpolations between settings that follow warp of the CV's ControlSpec.