File: UserFAQ.schelp

package info (click to toggle)
supercollider 1%3A3.13.0%2Brepack-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 80,296 kB
  • sloc: cpp: 476,363; lisp: 84,680; ansic: 77,685; sh: 25,509; python: 7,909; makefile: 3,440; perl: 1,964; javascript: 974; xml: 826; java: 677; yacc: 314; lex: 175; objc: 152; ruby: 136
file content (410 lines) | stat: -rw-r--r-- 15,968 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
title:: User FAQ
summary:: Some FAQ and common errors
categories:: FAQ


anchor::ERROR Primitive BasicNew failed Index not an Integer::

SECTION:: ERROR: Primitive 'BasicNew' failed. Index not an Integer

subsection:: If you're writing a SynthDef

It's quite likely that the error means you're trying to dynamically change the number of channels inside a SynthDef, which is something you can't do - SynthDefs need to have a fixed layout.
For example, this is a simple attempt to make pink noise over a variable number of channels:

code::
(
SynthDef(\thiswillfail, { |out=0, numChannels=2|
    Out.ar(out, {PinkNoise.ar}.dup(numChannels))
}).add
)
::

It fails because we're trying to make the number of pink noise generators involved, actually changeable.
You can't do that - when the SynthDef is compiled, the language needs to know strong::exactly:: how many UGens will be involved and how they are connected. This is because a SynthDef represents an efficient fixed-layout synth that the server can instantiate.

subsection:: So what to do instead?

Think of SynthDefs as tiny fixed reusable components, and design your logic to reuse them in whatever combinations are needed.

To go back to the simple example above (the pink noise generator), you could simply do:

code::
(
SynthDef(\simplepink, { |out=0|
    Out.ar(out, PinkNoise.ar)
}).add
)
::

and create one code::\simplepink:: synth for each channel. Or you could create one SynthDef for each number of channels you expect to use.
For example if you might use between 1 and 5 channels:

code::
(
(1..5).do{ |n|
SynthDef("simplepink_%".format(n).asSymbol, { |out=0|
    Out.ar(out, {PinkNoise.ar}.dup(n))
}).add
}
)
::

Then you'd need to invoke code::\simplepink_4:: or whatever, as appropriate.


anchor::Language (client) Issues::

SECTION:: Language (client) issues

subsection:: Calling gui primitives from a SystemClock routine

When calling gui primitives from a SystemClock routine will cause an error:

code::
SystemClock.sched(0,{ Window.new.front })
::

code::
ERROR: Qt: You can not use this Qt functionality in the current thread. Try scheduling on AppClock instead.
ERROR: Primitive '_QWindow_AvailableGeometry' failed.
::

To avoid this issue use the AppClock:

code::
AppClock.sched(0,{ Window.new.front })
::

or the defer method:

code::
SystemClock.sched(0,{ { Window.new.front }.defer })
::


subsection:: Binary operations order

Because of the way SuperCollider evaluates expressions, the usual order of execution of mathematical expressions is not respected.
In SuperCollider everything is an object, and evaluation happens from left to right, so:

code::
5 + 3 * 2
::

will evaluate as (5 + 3 ) * 2.

This happens because the expression becomes:

code::
5.performBinaryOpOnSimpleNumber('+',3).performBinaryOpOnSimpleNumber('*',2)
::

Therefore, in algebraic expressions parenthesis must be used when left to right orders is not what is desired:

code::
5 + (3 * 2)
::


anchor::SynthDef Issues::

SECTION:: SynthDef Issues

subsection:: "If" statements inside a SynthDef

It's only a matter of time before a user tries to write something like this in a code::SynthDef::

code::
SynthDef(\kablooie, { |x = 0|
    var signal;
    if(x > 0) {
        signal = SinOsc.ar
    } {
        signal = Saw.ar
    };
});
::

... with the disturbing result: code::ERROR: Non Boolean in test.::

"Non Boolean in test"? But strong::x > 0:: is a comparison, and surely should produce a Boolean, right?

This should be the first clue that Boolean logic in the server is a very different animal from the so-called "normal" use of conditionals on the client side (in the language).

subsection:: What is a Boolean in the server?

In fact, there is no such thing. The server handles floating-point numbers. It doesn't have strong::true:: or strong::false:: entities.

Since everything in the server is a number, the result of the comparison must also be a number. The server follows the same convention as other DSP environments (Max/MSP, pd etc.):

- code::True:: is represented by 1.0
- code::False:: is represented by 0.0

subsection:: Why is x > 0 "non-Boolean" in the "test"?

This goes back to the general issue of handling operators in the server.
Math operators in a SynthDef are not calculations to do strong::right now::.
They strong::describe:: calculations that will be done strong::in the future::, many thousands of times.

code::
var x = 1;
x > 0;
// -> true
::

code::
SynthDef(\kablooie, { |x = 0|
    "x: ".post; x.postln;
    "(x > 0): ".post; (x > 0).postln;
});
::

code::
x: an OutputProxy
(x > 0): a BinaryOpUGen
::

The precise value of strong::x:: is unknown at the time you execute the SynthDef code.
strong::x:: actually represents an unlimited number of values, which will be provided to Synths using argument lists. So, it's meaningless to determine, once and for all, whether strong::x > 0:: or not. strong::x:: may be strong::> 0:: now and strong::< 1:: a split second later. So, instead of producing a Boolean, strong::x > 0:: produces a strong::Binary Operator UGen:: that repeatedly executes the comparison.

Going back to this:

code::
if (aBinaryOpUGen) { ... } { ... };
::

To do this, the language must know which function (true or false) to execute. But there is no way to know which one the BinaryOpUGen will be.
So, SuperCollider throws an error.

subsection:: If you can't branch, what good is a comparison in the server?

Comparisons have a lot of uses, actually.

- strong::Choosing one of two signals::: This is the closest we can get to strong::if-then-else:: in the server. Both strong::then:: and strong::else:: must be running continuously. That's a requirement of how the server works: the number and arrangement of unit generators within a single Synth cannot change. Instead, you can choose strong::which of those signals makes it downstream::. One will be used and the other ignored.
Since true is 1 and false is 0, you can use a conditional to index into an array using Select.

code::
Select.kr(aKrSignal > anotherKrSignal, [false_signal, true_signal]);
::

- strong::Generating triggers::: A trigger occurs whenever a signal is <= 0, and then becomes > 0. Extending this to comparisons, it means that strong::a trigger occurs when a comparison is false for a while, and then becomes true::. Comparing a signal to a threshold may then be used anywhere that a trigger is valid.
For a simple example, take the case of sending a message to the language when the microphone input's amplitude crosses a threshold.

code::
var mic = In.ar(8, 1), amplitude = Amplitude.kr(mic);
SendTrig.kr(amplitude > 0.2, 0, amplitude);
::

- strong::Passing or suppressing triggers::: You might need to generate triggers continuously, but permit the triggers to take effect only when a condition is met. Multiplication handles this nicely:
strong::condition * trigger::. Since the condition evaluates as 0 when false, the trigger will be replaced by 0 and nothing happens, as desired.

For a simple case, let's refine the mic amplitude example by suppressing triggers that occur within 1/4 second after the previous.

code::
var mic = In.ar(8, 1),
    amplitude = Amplitude.kr(mic),
    trig = amplitude > 0.2,
    timer = Timer.kr(trig), // how long since the last trigger?
    filteredTrig = (timer > 0.25) * trig;

SendTrig.kr(filteredTrig, 0, amplitude);
::

subsection:: Logical operators: And, Or, Not, Xor

Logical operators have simple arithmetic equivalents.

- strong::And = multiplication::: strong::(x > 0) * (y > 0):: means both conditions must be true (nonzero) for the result to be nonzero.

- strong::Or = addition::: strong::(x > 0) + (y > 0):: means nonzero in either condition is enough to make the result nonzero.

NOTE::
If both are true, then the result will be 2, not 1. In some cases, the 2 may not be acceptable. That can be fixed by wrapping the Or in another comparison -- strong::((x > 0) + (y > 0)) > 0:: -- because 2 > 0 evaluates to 1!
::

-  strong::Not::: I prefer to negate a condition by comparing it to zero:
strong::condition <= 0::. 0 <= 0 is 1 (i.e., not 0), and 1 <= 0 is 0 (not 1).
If you're certain the logical expression will only ever be 0 or 1 exactly, you can also negate by subtraction: strong::1 - condition::.

- strong::Xor::: Exclusive-or is true if one or the other condition is true, but not both. We can add the two conditions and compare it to 1. The syntax is a little bit tricky because code::==:: doesn't turn into a BinaryOpUGen automatically.
We have to create the BinaryOpUGen by hand.

code::
BinaryOpUGen('==', (x > 0) + (y > 0), 1)
::


subsection:: ERROR: SynthDef not found

Sending a SynthDef to the server requires a little bit of time, which means that running a block of code with both SynthDef definitions and instances of those SynthDefs won't be guaranteed to work unless this slight delay is accounted for. There are two main ways to do this:

First way: put the SynthDefs and the main code in a Task and put some kind of code::.wait:: time between them.

code::
Task({
    // put your SynthDefs here
    0.2.wait;
    // put the rest of your code here
}).play;
::

Second way: use code::.sync:::

code::
Routine({
    // put your SynthDefs here
    s.sync; // assuming that 's' is the server
    // put the rest of your code here
}).play
::

subsection:: FAILURE /s_new alloc failed, increase server's memory allocation

strong::What it means::: While initializing the unit generators in a new Synth node, the server ran out of real-time memory.

strong::Solution::: Increase the amount of real-time memory available to the server. This size is set, as the error message says, in the
code::ServerOptions:: object associated with the server. It is a server startup option; you must quit the server and reboot it, or the new
setting will not take effect.

code::
myServer.quit;
myServer.options.memSize = 65536;  // e.g., could be different for you
myServer.boot;
::

code::myServer.options.memSize:: is given in KB. The default is 8192KB, or 8MB.

strong::What it really means::: Many unit generators require internal memory buffers, such as delay lines, comb filters, allpass delays, some FFT manipulators, reverb units etc.
These internal buffers are not allocated directly from the operating system, but rather from a "real-time memory pool."
This is because direct allocation from the OS, by functions such as code::malloc()::, is not real-time safe.
The OS may take too long to return the new block, causing glitches in the audio.
To solve this problem, the server allocates a chunk of memory when it starts up and parcels it out to unit generators as needed.

If you use a large number of delays, the server may run out of real-time memory. The default code::8192KB:: setting can support 47.55 seconds of delay at a sampling rate of 44.1 kHz.
This goes away quickly when using lots of synths with multiple channels of delay.

strong::Alternate solution::: For delay units, you may use preallocated delay buffers -- code::Buffer.alloc():: -- and the "Buf" delay units:
code::BufDelayN::, code::BufDelayL::, code::BufDelayC::, code::BufCombL:: etc.
code::Buffer.alloc():: does not use the real-time pool and is not subject to the memSize limitation. This approach will not help with FFT units.

subsection:: Array arguments

Sometimes, you need to send an array to a series of Control inputs in a SynthDef (often called "_array arguments_").

code::
Synth(\xyz, [freqs: [300, 400, 500]]);
::

There are two primary ways to do this:

- Supply a literal array -- code::\#[1, 2, 3]:: -- as the default for the argument name in the function.
This is discussed in link::Classes/SynthDef::'s help file.

code::
SynthDef(\xyz, { |freqs = #[1, 2, 3]|
    // ...
})
::

- Or, use code::NamedControl::.
This is the only way to do it if you want to construct the array's size dynamically, or based on a variable. See link::Classes/NamedControl::.

code::
SynthDef(\xyz, {
    var freqs = NamedControl.kr(\freqs, #[1, 2, 3]);
    // ...
});
::

subsection:: Why does it have to be a literal array?

The reason comes from the process of building a SynthDef:

1. First, look at the function arguments to figure out what the Control inputs should be.
2. Then create Control units (usually just one, if they're all normal arguments without prefixes or special rates). Each channel is represented by an code::OutputProxy::.
3. Then run the SynthDef function, passing the output proxies to the arguments.
4. Then sort the UGens into the right order, etc. etc.

To do steps \#1 and \#2, the SynthDef builder has to know the size of an array argument strong::before:: running the function. That's possible only if it's a literal array: code::\#[1, 2, 3, 4, 5]::. Any other array notation creates the array strong::while running the function:: (step \#3). But then it's too late -- the SynthDef builder already created a non-array control channel for it!

code::
SynthDef(\notArray, { |a = (1..5)|
    a.debug("a is");
});
::
code::a is: an OutputProxy::

code::
SynthDef(\array, { |a = #[1, 2, 3, 4, 5]|
   a.debug("a is");
});
::
code::a is: [ an OutputProxy, an OutputProxy, an OutputProxy, an OutputProxy, an OutputProxy ]::

(Note, if 'a' printed as [ 1, 2, 3, 4, 5 ], then you wouldn't be able to change the values in a Synth using code::.set::!)


anchor::Server Issues::

SECTION:: Server issues

subsection:: How to trigger a function from the server

The first and most important point: strong::Functions are client-side only::.
The server doesn't know what functions are, doesn't understand them and has no way to execute them.
strong::Only the client can execute a function::.

Therefore, if you want a function to execute when something happens in the server, the only way is for the server to tell the client to take the action.

The server can communicate messages back to the client using one of two unit generators: code::SendTrig:: and code::SendReply::.
code::SendTrig:: is simpler and less flexible (it can send only a code::/tr:: message, and only one data value).
code::SendReply:: allows you to name the message anything you like, and can send arrays with the message.
We'll use SendReply here because of its greater flexibility.

Within the language, you also need an object to receive the message and act on it. Usually this is code::OSCFunc:: or code::OSCdef::.  In this example, code::OSCdef:: filters messages not just on the name code::/bleep:: but also on the synth's ID. This way, you could have multiple triggering synths, with a different responder and a different action per synth.

code::
(
a = {
    var trig = Dust.kr(8),
    decay = Decay2.kr(trig, 0.01, 0.1),
    sig = SinOsc.ar(TExpRand.kr(200, 600, trig), 0, 0.1) * decay;
    SendReply.kr(trig, '/bleep', trig);
    sig ! 2
}.play;

o = OSCdef(\bleepResponder, { |msg|
    msg.postln;
}, '/bleep', s.addr, argTemplate: [a.nodeID]);
)

a.free; o.remove;
::

subsection:: Helpfile references:

- link::Classes/SendTrig::, link::Classes/SendReply::

- link::Classes/OSCresponderNode::, link::Classes/OSCpathResponder::, link::Classes/OSCresponder::, link::Guides/OSC_communication::


subsection:: Error: failed to open UDP socket: address in use

Sometime when booting the server one gets a message: code::Error: failed to open UDP socket: addess in use::.

This is usually caused by an instance of scsynth that as hanged but has not released the osc port, perhaps because SuperCollider crashed.
You can use SuperCollider (sclang) to kill all running servers by running code::Server.killAll::.
You can also kill scsynth using a terminal or your operating system's task manager.


anchor::Other Issues::

SECTION:: Other issues

subsection:: Error while loading shared libraries: libsclang.so: cannot open shared object file

This usually happens after building on Linux and it means that your system is unaware of newly installed shared libraries. Running ldconfig
(as root) solves the problem:

code::/sbin/ldconfig::