Conductor:
Filter:
Classes (extension) | Conductor | Control | GUI | Libraries | Quarks | Streams-Events-Patterns

Conductor
ExtensionExtension

Conductor provides a framework for defining interactive programs in terms of a collection of related components.
Location: NOT INSTALLED!

Description

The Conductor is a kind of Dictionary and its components are stored and accessed as dictionary entries (i.e., key/value pairs). This allows the Conductor to be configured either when it is first defined or in separate code.

Class Methods

.new

Create a new Conductor object, containing a NullPreset and a ConductorPlayer instance.

Returns:

a Conductor

.make

The first argument of the function is set to the Conductor being constructed. Subsequent arguments are initalized as CVs; arguments with default values are set to instances of the class the default value specifies.

Below, the first line defines a Conductor with four CVs assigned to the arguments a,b,c,d. The second line displays that Conductor.

Arguments:

func

a Function. See explanation above.

Returns:

a Conductor

.specs

Conductor.specs is a dictionary of ControlSpecs. When an argument in the make function is initialized to a CV, its identifier is looked up in this dictionary. If that does not provide a ControlSpec, the same identifier stripped of all of its numeric characters is used once again look-up.

The specs dictionary is provided with the following defaults: amp, audiobus, beats, bipolar, boostcut, controlbus, db, dbamp, delay, detune, dur, fadeTime, fin, freq, i_out, in, lofreq, longdelay, midfreq, midi, midinote, midivelocity, out, pan, phase, rate, ratio, rq, unipolar, widefreq

Returns:

.makeCV

(describe method here)

Arguments:

name

(describe argument here)

value

(describe argument here)

Returns:

(describe returnvalue here)

.findSpec

(describe method here)

Arguments:

name

(describe argument here)

Returns:

(describe returnvalue here)

.addSpec

(describe method here)

Arguments:

name

(describe argument here)

spec

(describe argument here)

Returns:

(describe returnvalue here)

.midiMonitor

(describe method here)

Returns:

(describe returnvalue here)

.postSpecs

(describe method here)

Returns:

(describe returnvalue here)

.initClass

(describe method here)

Returns:

(describe returnvalue here)

Inherited class methods

Instance Methods

Instance Variables

.gui

An instance of ConductorGUI that defines the Conductor's GUI presentation

Returns:

.player

An instance of ConductorPlayer, which provides unified stop/play/pause/resume control for Patterns, Tasks, and, on the Servers, Synths, Groups, Buses, and Buffers. (These objects use a variant of Server: -sendBundle to guarantee correct order execution on the server.)

Returns:

.preset

An instance of CVPreset or CVInterpolator. This provides preset values for a user specified collection of CVs and Conductor's. The CVInterpolator allows interpolations between presets to be used for values

Returns:

.valueKeys

An array of keys that determine the Conductor's response to value. (Typically includes both individual CVs and the CVPreset or CVInterpolator used by the Conductor.)

Returns:

an Array of Symbols

Player related methods

.stop

.play

.pause

.resume

.action

Adds an ActionPlayer which responds to play, stop, pause, and resume by evaluating the corresponding function with the Conductor as currentEnvironment.

Arguments:

playFunc

define what shall be played the Conductor

stopFunc
pauseFunc
resumeFunc

.task

Adds a TaskPlayer which plays the function within a Task scheduled by the specified Clock and quantization. (On stop, tasks that block on a message port are also be deleted.)

Arguments:

func

a Function

clock

a Clock: e.g. a TempoClock, AppClock or SystemClock instance

quant

a Quant object: a SimpleNumber, an Array or nil

(See also: Quant: Automatic instantiation)

.pattern

Adds a PatternPlayer which plays the Pattern with the specified event, clock and quantization.

Arguments:

pat

a Pattern

clock

a Clock: e.g. a TempoClock, AppClock or SystemClock instance

event

an Event

quant

a Quant object: a SimpleNumber, an Array or nil

(See also: Quant: Automatic instantiation)

.nodeProxy

Adds a NodeProxyPlayer, which uses the following bus, numChannels, and group if specified, otherwise uses default values. See NodeProxy for details.

Arguments:

nodeProxy

a NodeProxy

args

an Array denoting the arguments to the NodeProxy

bus

a Bus

numChannels

an Integer

group

a Group

multi

a Boolean, indicating whether the NodeProxy shall keep old playback links and add a new one or not

.synth

Control a Synth through a Conductor

Arguments:

ev

an Event

cvs

an Array, denoting the controls used in the Conductor

.group

CVs assigned to a group affect all of the synths within the group. In the following example the CV only alters playing synths, new synths use the default value:

The argument cvs is an interleaved array of keys and CVs (or value). CVs can also be altered before being sent to the server and combinations of CVs can determine the value to be sent:

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

The Events use the same keys as note events in patterns. The keys server, group, and addAction and, for Synths, instrument determine the Group or Synth. As in Patterns, the default values for these keys are:

Usually the node ID of the group or synth is dynamically allocated, but the key id can be set to set the id directly. For group events, a new group or collection of groups is created with the specified id(s). For synth events, no synths are created, but the control values determined by the event are sent to the specified id(s).

Arguments:

ev

an Event, denoting the Groups to be created

cvs

an Array, denoting the controls used in the Conductor

.controlBus

Arguments:

ev

an Event, specifiing

serveraServer (defaults to Server.default),
index(optional)
cvs

an Array of CVs that are used to determine the value of consecutive Buses

.buffer

Arguments:

ev

an Event, designed primarily for small waveform buffers, specifiing:

serveraServer (defaults to Server.default)
cva CV that determines the values in the buffer
msga symbol that determines how the values are used to fill the buffer. Is is one of: \sine1, \cheby, \wave, or \signal
displayanotherCV. An optional CV used to display the contents of the buffer (as received from the server)
sizeinteger (defaults to 512 and should not exceed 1024)

Value related methods

.value

If called as a getter it returns an Array of the values of all components identified by -valueKeys.

If called as a setter (with a trailing underscore) it iterates over the Array defined in the argument kvs assigning the value to be the value of the corresponding component identified by valueKeys

Arguments:

kvs

an Array of key/value pairs. E.g.:

Returns:

an Array of key/value pairs

Settings, Preset and Interpolator related methods

A Conductor can load a set of initial settings for its contents from a file.

.noSettings

No file controls are displayed.

.useSettings

Allow a single set of settings to be saved to file and restored from file.

.path

Stores the pathname of the file that saves the Conductor's settings and attempts to load those settings.

Arguments:

path

a path to a location on the local harddisk.

Returns:

a String containing a path to a location on the local harddisk

Presets

A CVPreset saves 'presets' for an array of CVs or other objects that respond to input and input_.

.presetKeys

The objects at the keys will have their settings saved and restored by preset, which defaults to the object in the preset instance variable.

Arguments:

keys

an Array of Symbols

argPreset

a CVPreset

.usePresets

Creates a CVPreset, gives it valueKeys as its default presetKeys

Interpolator

A CVInterpolator will set a specified set of CVs to values that derived from interpolating between two presets.

.interpKeys

The objects at the keys (which must be a subset of the valueKeys of the preset) can have their settings interpolated between preset values.

Arguments:

keys

an Array of Symbols

argPreset

a CVPreset

.useInterpolator

Creates a CVInterpolator, sets valueKeys to be both presetKeys and interpKeys

An example:

Adding new CVs

.addCV

Creates a CV inserts it at key in the Conductor and appends it to valueKeys and, if it exists, preset items

Arguments:

name

a Symbol, denoting the name under which the CV will be added to the Conductor

val

a Float or an Integer, setting the initial value of the CV

argGui

a Symbol, denoting the name of the view in which the CVshall appear. The view can be determined by calling Conductor: -gui.

Returns:

a CV

MIDI related methods

.useMIDI

This will add a set of controls to enable linking individual CVs to MIDI continuous controllers

Arguments:

argKeys

an Array of Symbols

.midiKBD

The function receives a key number and velocity value and returns an object that responds to release (typically a Synth). If midiChan is nil, it responds to MIDI key commands from all channels in "omni" mode. See also: Using MIDI.

Arguments:

noteOnFunction

a Function, triggered when a key is played. E.g.:

midiChan

an Integer, denoting a MIDI channel

GUI related methods

.show

Draw the Conductor within a window named argName at x, y with size w, h.

Arguments:

argName

a Symbol or a String, denoting the name of the Window to be drawn

x

an Integer, denoting the x-position on screen

y

an Integer, denoting the y-position on screen

w

an Integer, denoting the width of the GUI to be drawn

h

an Integer, denoting the height of the GUI to be drawn

Returns:

.draw

Draw the Conductor within the specified window.

Arguments:

win

a Window within which the representation of the Conductor shall be drawn

name

a Symbol or a String

conductor

the Conductor object

More undocumented instance methods

.addActions

Arguments:

kv

(describe argument here)

Returns:

(describe returnvalue here)

.load

(describe method here)

Arguments:

argPath

(describe argument here)

Returns:

(describe returnvalue here)

.make

(describe method here)

Arguments:

func

(describe argument here)

Returns:

(describe returnvalue here)

.save

(describe method here)

Arguments:

path

(describe argument here)

Returns:

(describe returnvalue here)

.name

(describe method here)

Arguments:

name

(describe argument here)

Returns:

(describe returnvalue here)

.add

(describe method here)

Arguments:

name

(describe argument here)

obj

(describe argument here)

guiSpec

(describe argument here)

Returns:

(describe returnvalue here)

.simpleGUI

(describe method here)

Returns:

(describe returnvalue here)

.addCVs

(describe method here)

Arguments:

kv

(describe argument here)

Returns:

(describe returnvalue here)

.getFile

(describe method here)

Arguments:

argPath

(describe argument here)

Returns:

(describe returnvalue here)

.putFile

(describe method here)

Arguments:

vals

(describe argument here)

argPath

(describe argument here)

Returns:

(describe returnvalue here)

.synthDef

(describe method here)

Arguments:

function

(describe argument here)

cvs

(describe argument here)

ev

(describe argument here)

Returns:

(describe returnvalue here)

.makeArgs

(describe method here)

Arguments:

func

(describe argument here)

Returns:

(describe returnvalue here)

.init

(describe method here)

Returns:

(describe returnvalue here)

.stop

(describe method here)

Returns:

(describe returnvalue here)

.input

(describe method here)

Arguments:

kvs

(describe argument here)

Returns:

(describe returnvalue here)

.addCon

(describe method here)

Arguments:

name

(describe argument here)

func

(describe argument here)

Returns:

(describe returnvalue here)

.addCursor

(describe method here)

Arguments:

key

(describe argument here)

Returns:

(describe returnvalue here)

Conductor Internals

The basic components of a Conductor are:

  1. ConductorPlayer, which can play, stop, pause, and resume an arbitrary collection of Tasks, Synths, Patterns, and NodeProxys as well as allocate and deallocate resources such as Buffers and Buses.

    By default a Conductor has a single player, but it can be readily configured to have several.

  2. CV, which defines a control value or array of control values constrained to a specific range of values by a ControlSpec. The value of a CV can be set directly or as an input ranging from 0 to 1 rescaled to the CV's range. CVs provide methods to connect to GUI elements, server nodes, buses, and buffers and may be used directly in Pattern definitions. SV (symbolic value), EV (envelope value), and TV (text value) are classes derived from CV which provide similar interfaces.

    Typically, a Conductor has multiple CV's.

  3. ConductorGUI, which defines the GUI representation of the Conductor.
  4. CVPreset, which saves the values of a user specified collection of components into selectable presets. CVInterpolator is a preset that also provides the ability to interpolate between presets.
  5. Conductor - one Conductor can be a component of another, providing hierarchical control. Conductor has the instance variables player, gui, and preset which respectively default to a ConductorPlayer, a ConductorGUI, and a CVPreset.

    The messages spec_(specName, default) and sp(default, lo, hi, step, warp) can be used to set the range of values a CV can assume. CVs may be given a single value or an Array of values as default value. See examples below.

Inherited instance methods

Examples