Bus:
Filter:
Classes | Server > Abstractions

Bus : Object

Representation of a bus on the server
Source: Bus.sc

Description

The clientside representation of an audio or control bus on a server. Encapsulates all the OSC messages a Bus can receive. Manages allocation and deallocation of bus indices so that you don't need to worry about conflicts. The number of control busses, audio busses, and input and output busses is fixed and cannot be changed after the server has been booted.

For more information see Client vs Server and Server Architecture.

Note that using the Bus class to allocate a multichannel bus does not 'create' a multichannel bus, but rather simply reserves a series of adjacent bus indices with the bus' Server object's bus allocators. abus.index simply returns the first of those indices. When using a Bus with an In or Out ugen there is nothing to stop you from reading to or writing from a larger range, or from hardcoding to a bus that has been allocated. You are responsible for making sure that the number of channels match and that there are no conflicts.

Bus objects should not be created or modified within a SynthDef.

NOTE: The lowest n bus indices are reserved for hardware output and input, where

Hardware output buses
0 .. (numOutputBusChannels - 1)
Hardware input buses
numOutputBusChannels .. (numOutputBusChannels + numInputBusChannels - 1)
First private bus index
numOutputBusChannels + numInputBusChannels

Do not try to use hardware I/O buses as private buses.

Class Methods

Bus.control(server, numChannels: 1)

Allocate a control bus on the server.

Arguments:

server

The Server. Defaults to Server.default.

numChannels

Number of channels to allocate

Bus.audio(server, numChannels: 1)

Allocate an audio bus on the server.

Arguments:

server

The Server. Defaults to Server.default.

numChannels

Number of channels to allocate

Bus.alloc(rate, server, numChannels: 1)

Allocate a bus of either rate as specified by rate.

Arguments:

rate

Rate symbol: \control or \audio

server

The Server. Defaults to Server.default.

numChannels

Number of channels to allocate

Bus.new(rate: 'audio', index: 0, numChannels: 2, server)

This method does not allocate a bus index, but assumes that you already have allocated the appropriate bus index and can supply it yourself.

Bus.newFrom(bus, offset, numChannels: 1)

This method creates a new Bus that is a subset of the bus. The bus will be at the same rate as the input bus. offset is the index into the given bus. numChannels is the desired number of channels. If the combination of offset and numChannels is outside the input bus' range, an error will be thrown.

Inherited class methods

Instance Methods

.index

Get the Bus' index. Normally you should not need to do this since instances of Bus can be passed directly as UGen inputs or Synth args.

.free(clear: false)

Return the bus' indices to the server's bus allocator so they can be reallocated.

.rate

Get the Bus' rate. This is a symbol, either \control or \audio.

.numChannels

Get the Bus' number of channels.

.server

Get the Bus' server object.

.asMap

Returns:

a symbol consisting of the letter 'c' or 'a' (for control or audio) followed by the bus's index. This may be used when setting a synth node's control inputs to map the input to the control bus.

Discussion:

See the Node help file for more information on mapping controls to buses.

.subBus(offset, numChannels: 1)

Get a new Bus that is a subset of this bus (see newFrom).

Asynchronous Control Bus Methods

The following commands apply only to control buses and are asynchronous. For synchronous access to control busses please consult Synchronous Control Bus Methods.

.value

.value = value

From superclass: Object

Set all channels to this float value. This command is asynchronous.

.set( ... values)

A list of values for each channel of the control bus. The list of values supplied should not be greater than the number of channels. This command is asynchronous.

.setn(values)

As set but takes an array as an argument.

.get(action)

Get the current value of this control bus. This command is asynchronous.

Arguments:

action

a function that will be evaluated when the server responds, with the current value of the bus passed as an argument. This will be a float for a single channel bus, or an array of floats for a multichannel bus. The default action posts the bus values.

.getn(count, action)

Get the current values of this control bus. This command is asynchronous.

Arguments:

count

the number of channels to read, starting from this bus' first channel.

action

a function that will be evaluated when the server responds, with the current values of the bus in an array passed as an argument.

Synchronous Control Bus Methods

Synchronous access to control busses only works for servers with a shared memory interface. You can check with hasShmInterface if the server provides these methods.

NOTE: Before 3.5 the internal server could be controlled via shared control busses and SharedIn and SharedOut. These classes have been deprecated and will be removed.

.getSynchronous

Get the current value of this control bus. This command is synchronous.

Returns:

Value of the control bus.

.getnSynchronous(count)

Get the current values of this control bus. This command is synchronous.

Arguments:

count

The number of channels to read, starting from this bus' first channel.

Returns:

Array of values.

.setSynchronous( ... values)

A list of values for each channel of the control bus. The list of values supplied should not be greater than the number of channels. This command is synchronous.

.setnSynchronous(values)

As setSynchronous but takes an array as an argument.

Conveniences for multichannel buses

.setAt(offset ... values)

set the bus value(s) beginning at offset. asynchronous.

.setnAt(offset, values)

set the bus to the list of values supplied. asynchronous.

.setPairs( ... pairs)

set the bus values by pairs of index, value, ... asynchronous

Using Buses like UGens

.kr(numChannels, offset: 0)

.ar(numChannels, offset: 0)

use a bus like a UGen. The numChannels and offset arguments can be used to get a subset of the bus.

Discussion:

By default, all the bus channels are used. E.g. in an 8 channel bus,

OSC Bundle Methods

.getMsg

Returns a msg of the type /c_get for use in osc bundles.

.getnMsg(count)

Returns a msg of the type /c_getn for use in osc bundles.

Arguments:

count

the number of channels to read, starting from this bus' first channel. The default is this bus' numChannels.

.setMsg( ... values)

Returns a msg of the type /c_set for use in osc bundles.

.setnMsg(values)

Returns a msg of the type /c_setn for use in osc bundles.

Arguments:

values

an array of values to which adjacent channels should be set, starting at this bus' first channel.

.fillMsg(value)

Returns a msg of the type /c_fill for use in osc bundles.

Arguments:

value

the value to which this bus' channels will be set.

Monitoring with an oscilloscope

.scope(bufsize: 4096, zoom)

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

Displays a bus in a Stethoscope, using the Bus' -numChannels, -index, and -rate properties.

Bela

.belaScope(scopeChannel)

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

Scope all channels from this Bus to Bela's Oscilloscope (see BelaScope for required setup). It is required that this Bus is on Server running on a Bela, which is thus capable of using BelaScope.

Arguments:

scopeChannel

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

Returns:

A Synth, linking this Bus to BelaScope's bus.

Inherited instance methods

Undocumented instance methods

==(aBus)

.alloc

.asBus

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

.asControlInput

.asUGenInput

.fill(value, numChans)

.hash

.isAudioOut

.isSettable

.play(target: 0, outbus, fadeTime, addAction: 'addToTail')

.plot(duration: 0.01, bounds, minval, maxval, separately: false)

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

.plotAudio(duration: 0.01, minval: -1, maxval: 1, bounds)

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

.prepareForProxySynthDef(proxy)

From extension in /usr/local/share/SuperCollider/SCClassLibrary/JITLib/ProxySpace/wrapForNodeProxy.sc

.realloc

.setAll(value)

Examples