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.
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 |
s |
Any object that responds to asSpec (Nil, Symbol, ControlSpec, Array) with a ControlSpec |
v |
the initial value of the CV |
default |
inital value |
lo |
smallest possible value |
hi |
largest possible value |
step |
smallest incremental change in GUI |
warp |
either |
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). |
Answer the current value of the control. This is how the control is read within tasks and patterns
in |
an input value ranging form 0 to 1 results in |
a number ranging form 0 to 1 that corresponds to postion of the current value between lo to hi.
Set the current value of the control, irrespective of the range settings.
Interprets the value of the CV as a probability table and returns a weighted random value
For use in Patterns: uses the value of key in the current Event as an index and returns the indexed value
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.
function |
Create a dependant SimpleController that evaluates the function whenever the CV's value is altered. |
Remove all dependants. (This is actually a method of Object..)
The following methods establish connections between Views and CVs.
aCV | connect(aQSlider) | |
aCV | connect(aQNumberBox) | |
[xCV, yCV] | connect(aQSlider2D) | |
[loCV, hiCV] | connect(aQRangeSlider) | |
aCV | connect(aQMultiSliderView) | (for CVs with an array of values) |
aCV | connect(aQPopUpMenu) | (for SVs, displays SV-items) |
aCV | connect(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.)
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.
connectToNode(server, nodeID)
connectToNodeProxy(server, nodeID)
connectToBuffer(server, bufnum)
connectToBus(server, index)
setControls(extendedArgArray)
setControls(extendedArgArray)
*controls(synthDef, extendedArgArray, target, addAction)
*controls(arrayOfCVs, server)
setControls(arrayOfCVS)
Pfunc can be used to change the CV from within a Pattern.
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.