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.
n
bus indices are reserved for hardware output and input, where
0 .. (numOutputBusChannels - 1)
numOutputBusChannels .. (numOutputBusChannels + numInputBusChannels - 1)
numOutputBusChannels + numInputBusChannels
Do not try to use hardware I/O buses as private buses.
Allocate a control bus on the server.
server |
The Server. Defaults to Server.default. |
numChannels |
Number of channels to allocate |
Allocate an audio bus on the server.
server |
The Server. Defaults to Server.default. |
numChannels |
Number of channels to allocate |
Allocate a bus of either rate as specified by rate
.
rate |
Rate symbol: \control or \audio |
server |
The Server. Defaults to Server.default. |
numChannels |
Number of channels to allocate |
This method does not allocate a bus index, but assumes that you already have allocated the appropriate bus index and can supply it yourself.
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.
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.
Return the bus' indices to the server's bus allocator so they can be reallocated.
Get the Bus' rate. This is a symbol, either \control or \audio.
Get the Bus' number of channels.
Get the Bus' server object.
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.
See the Node help file for more information on mapping controls to buses.
Get a new Bus that is a subset of this bus (see newFrom
).
The following commands apply only to control buses and are asynchronous. For synchronous access to control busses please consult Synchronous Control Bus Methods.
Set all channels to this float value. This command is asynchronous.
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.
As set but takes an array as an argument.
Get the current value of this control bus. This command is asynchronous.
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. |
Get the current values of this control bus. This command is asynchronous.
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 access to control busses only works for servers with a shared memory interface. You can check with hasShmInterface if the server provides these methods.
Get the current value of this control bus. This command is synchronous.
Value of the control bus.
Get the current values of this control bus. This command is synchronous.
count |
The number of channels to read, starting from this bus' first channel. |
Array of 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.
As setSynchronous but takes an array as an argument.
set the bus value(s) beginning at offset. asynchronous.
set the bus to the list of values supplied. asynchronous.
set the bus values by pairs of index, value, ... asynchronous
use a bus like a UGen. The numChannels and offset arguments can be used to get a subset of the bus.
By default, all the bus channels are used. E.g. in an 8 channel bus,
b.kr
will return an In ugen reading from all the 8 channels of the bus;b.kr(4)
will return the first four channels, andb.kr(2, 5)
will return two channels, starting from the bus's channels at index 5 and 6.Returns a msg of the type /c_get for use in osc bundles.
Returns a msg of the type /c_getn for use in osc bundles.
count |
the number of channels to read, starting from this bus' first channel. The default is this bus' numChannels. |
Returns a msg of the type /c_set for use in osc bundles.
Returns a msg of the type /c_setn for use in osc bundles.
values |
an array of values to which adjacent channels should be set, starting at this bus' first channel. |
Returns a msg of the type /c_fill for use in osc bundles.
value |
the value to which this bus' channels will be set. |
Displays a bus in a Stethoscope, using the Bus' -numChannels, -index, and -rate properties.
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.
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. |
A Synth, linking this Bus to BelaScope's bus.