-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
463 lines (267 loc) · 17.5 KB
/
index.html
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
<html>
<head>
<title>csnd - Go Binding for CsoundPerformanceThread</title>
<link type="text/css" rel="stylesheet" href="style.css">
<meta charset='utf-8'>
</head>
<body>
<!--
Copyright 2009 The Go Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<!--
Note: Static (i.e., not template-generated) href and id
attributes start with "pkg-" to make it impossible for
them to conflict with generated attributes (some of which
correspond to Go identifiers).
-->
<div id="short-nav">
<dl>
<dd><code>import "github.com/fggp/go-csperfthread"</code></dd>
</dl>
<dl>
<dd><a href="#pkg-overview" class="overviewLink">Overview</a></dd>
<dd><a href="#pkg-index" class="indexLink">Index</a></dd>
</dl>
</div>
<!-- The package's Name is printed as title by the top-level template -->
<div id="pkg-overview" class="toggleVisible">
<div class="collapsed">
<h2 class="toggleButton" title="Click to show Overview section">Overview ▹</h2>
</div>
<div class="expanded">
<h2 class="toggleButton" title="Click to hide Overview section">Overview ▾</h2>
<p>
GO Binding for CsoundPerformanceThread
</p>
<p>
This wrapper is still very experimental. It has been tested only on Linux.
It needs a proper installation of Csound with header files in the include path in the csound directory
(e.g. csound/csound.h). libcsound64 and libcsnd6 have to be in the PATH.
</p>
<p>
You can install this package with go get:
</p>
<pre>go get github.com/fggp/go-csperfthread
</pre>
<p>
Or you can download a zip archive of the project using the 'Download ZIP' button on the right.
You'll get a zip file named 'go-csperfthread-master.zip'. Decompressing it you'll get a directory named 'go-csperfthread-master'.
Rename this directory to 'go-csperfthread' and move it to '$GOPATH/src/github/fggp'. Enter into
the '$GOPATH/src/github/fggp/go-csperfthread' directory. You can eventually adapt the #cgo directives
in csnd.go to your system. Finally install the package with `go install`.
</p>
<p>
This wrapper is intended to be used with a double build of Csound.
</p>
<p>
Go 1.2 is needed for the C++ support of go build
</p>
<p>
Use examples can be seen here: <a href="https://github.com/kunstmusik/csoundAPI_examples/tree/master/go">https://github.com/kunstmusik/csoundAPI_examples/tree/master/go</a>
</p>
</div>
</div>
<div id="pkg-index" class="toggleVisible">
<div class="collapsed">
<h2 class="toggleButton" title="Click to show Index section">Index ▹</h2>
</div>
<div class="expanded">
<h2 class="toggleButton" title="Click to hide Index section">Index ▾</h2>
<!-- Table of contents for API; must be named manual-nav to turn off auto nav. -->
<div id="manual-nav">
<dl>
<dd><a href="#CsoundPerformanceThread">type CsoundPerformanceThread</a></dd>
<dd> <a href="#NewCsoundPerformanceThread">func NewCsoundPerformanceThread(csound csnd.CSOUND) CsoundPerformanceThread</a></dd>
<dd> <a href="#CsoundPerformanceThread.Delete">func (pt CsoundPerformanceThread) Delete()</a></dd>
<dd> <a href="#CsoundPerformanceThread.FlushMessageQueue">func (pt CsoundPerformanceThread) FlushMessageQueue()</a></dd>
<dd> <a href="#CsoundPerformanceThread.GetCsound">func (pt CsoundPerformanceThread) GetCsound() *C.CSOUND</a></dd>
<dd> <a href="#CsoundPerformanceThread.GetStatus">func (pt CsoundPerformanceThread) GetStatus() int</a></dd>
<dd> <a href="#CsoundPerformanceThread.InputMessage">func (pt CsoundPerformanceThread) InputMessage(s string)</a></dd>
<dd> <a href="#CsoundPerformanceThread.IsRunning">func (pt CsoundPerformanceThread) IsRunning() bool</a></dd>
<dd> <a href="#CsoundPerformanceThread.Join">func (pt CsoundPerformanceThread) Join() int</a></dd>
<dd> <a href="#CsoundPerformanceThread.Pause">func (pt CsoundPerformanceThread) Pause()</a></dd>
<dd> <a href="#CsoundPerformanceThread.Play">func (pt CsoundPerformanceThread) Play()</a></dd>
<dd> <a href="#CsoundPerformanceThread.ProcessCallback">func (pt CsoundPerformanceThread) ProcessCallback() PTprocessHandler</a></dd>
<dd> <a href="#CsoundPerformanceThread.Record">func (pt CsoundPerformanceThread) Record(filename string, args ...int)</a></dd>
<dd> <a href="#CsoundPerformanceThread.ScoreEvent">func (pt CsoundPerformanceThread) ScoreEvent(absp2mode bool, opcod byte, p []csnd6.MYFLT)</a></dd>
<dd> <a href="#CsoundPerformanceThread.SetProcessCallback">func (pt CsoundPerformanceThread) SetProcessCallback(f PTprocessHandler, cbData unsafe.Pointer)</a></dd>
<dd> <a href="#CsoundPerformanceThread.SetScoreOffsetSeconds">func (pt CsoundPerformanceThread) SetScoreOffsetSeconds(timeVal float64)</a></dd>
<dd> <a href="#CsoundPerformanceThread.Stop">func (pt CsoundPerformanceThread) Stop()</a></dd>
<dd> <a href="#CsoundPerformanceThread.StopRecord">func (pt CsoundPerformanceThread) StopRecord()</a></dd>
<dd> <a href="#CsoundPerformanceThread.TogglePause">func (pt CsoundPerformanceThread) TogglePause()</a></dd>
<dd><a href="#PTprocessHandler">type PTprocessHandler</a></dd>
</dl>
</div><!-- #manual-nav -->
<h4>Package files</h4>
<p>
<span style="font-size:90%">
<a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go">cs_perf_thread.go</a>
<a href="/srchttp://golang.org/pkg/target/doc.go">doc.go</a>
</span>
</p>
</div><!-- .expanded -->
</div><!-- #pkg-index -->
<div id="pkg-callgraph" class="toggle" style="display: none">
<div class="collapsed">
<h2 class="toggleButton" title="Click to show Internal Call Graph section">Internal call graph ▹</h2>
</div> <!-- .expanded -->
<div class="expanded">
<h2 class="toggleButton" title="Click to hide Internal Call Graph section">Internal call graph ▾</h2>
<p>
In the call graph viewer below, each node
is a function belonging to this package
and its children are the functions it
calls—perhaps dynamically.
</p>
<p>
The root nodes are the entry points of the
package: functions that may be called from
outside the package.
There may be non-exported or anonymous
functions among them if they are called
dynamically from another package.
</p>
<p>
Click a node to visit that function's source code.
From there you can visit its callers by
clicking its declaring <code>func</code>
token.
</p>
<p>
Functions may be omitted if they were
determined to be unreachable in the
particular programs or tests that were
analyzed.
</p>
<!-- Zero means show all package entry points. -->
<ul style="margin-left: 0.5in" id="callgraph-0" class="treeview"></ul>
</script>
</div>
</div> <!-- #pkg-callgraph -->
<h2 id="CsoundPerformanceThread">type <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=239:291#L8">CsoundPerformanceThread</a></h2>
<pre>type CsoundPerformanceThread struct {
<span class="comment">// contains filtered or unexported fields</span>
}</pre>
<h3 id="NewCsoundPerformanceThread">func <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=341:417#L13">NewCsoundPerformanceThread</a></h3>
<pre>func NewCsoundPerformanceThread(csound <a href="http://golang.org/pkg/github.com/fggp/go-csnd/">csnd</a>.<a href="http://golang.org/pkg/github.com/fggp/go-csnd/#CSOUND">CSOUND</a>) <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a></pre>
<p>
Return a new CsoundPerformanceThread object.
</p>
<h3 id="CsoundPerformanceThread.Delete">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=576:618#L19">Delete</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) Delete()</pre>
<p>
Free the memory associated with the underlying C++ object.
</p>
<h3 id="CsoundPerformanceThread.FlushMessageQueue">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=4567:4620#L146">FlushMessageQueue</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) FlushMessageQueue()</pre>
<p>
Wait until all pending messages (pause, send score event, etc.)
are actually received by the performance thread.
</p>
<h3 id="CsoundPerformanceThread.GetCsound">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=1512:1567#L57">GetCsound</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) GetCsound() *<a href="http://golang.org/pkg/C/">C</a>.<a href="http://golang.org/pkg/C/#CSOUND">CSOUND</a></pre>
<p>
Return the Csound instance pointer.
</p>
<h3 id="CsoundPerformanceThread.GetStatus">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=1771:1820#L64">GetStatus</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) GetStatus() <a href="http://golang.org/pkg/builtin/#int">int</a></pre>
<p>
Return the current status, zero if still playing, positive if
the end of score was reached or performance was stopped, and
negative if an error occured.
</p>
<h3 id="CsoundPerformanceThread.InputMessage">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=3725:3781#L125">InputMessage</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) InputMessage(s <a href="http://golang.org/pkg/builtin/#string">string</a>)</pre>
<p>
Send a score event as a string, similarly to line events (-L).
</p>
<h3 id="CsoundPerformanceThread.IsRunning">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=1376:1426#L52">IsRunning</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) IsRunning() <a href="http://golang.org/pkg/builtin/#bool">bool</a></pre>
<p>
Tell if performance thread is running.
</p>
<h3 id="CsoundPerformanceThread.Join">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=4362:4406#L140">Join</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) Join() <a href="http://golang.org/pkg/builtin/#int">int</a></pre>
<p>
Wait until the performance is finished or fails, and return a
positive value if the end of score was reached or Stop() was called,
and a negative value if an error occured. Also releases any resources
associated with the performance thread object.
</p>
<h3 id="CsoundPerformanceThread.Pause">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=2038:2079#L74">Pause</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) Pause()</pre>
<p>
Pause performance (can be continued by calling Play()).
</p>
<h3 id="CsoundPerformanceThread.Play">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=1909:1949#L69">Play</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) Play()</pre>
<p>
Continue performance if it was paused.
</p>
<h3 id="CsoundPerformanceThread.ProcessCallback">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=867:935#L31">ProcessCallback</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) ProcessCallback() <a href="#PTprocessHandler">PTprocessHandler</a></pre>
<p>
Return the process callback as a PTprocessHandler.
</p>
<h3 id="CsoundPerformanceThread.Record">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=2675:2745#L93">Record</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) Record(filename <a href="http://golang.org/pkg/builtin/#string">string</a>, args ...<a href="http://golang.org/pkg/builtin/#int">int</a>)</pre>
<p>
Starts recording the output from Csound. The sample rate and number
of channels are taken directly from the running Csound instance.
If args are specified, they are samplebits and numbufs respectively.
If args are not specified, samplebits default to 16 and numbufs to 4.
</p>
<h3 id="CsoundPerformanceThread.ScoreEvent">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=3418:3507#L115">ScoreEvent</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) ScoreEvent(absp2mode <a href="http://golang.org/pkg/builtin/#bool">bool</a>, opcod <a href="http://golang.org/pkg/builtin/#byte">byte</a>, p []<a href="http://golang.org/pkg/github.com/fggp/go-csnd6/">csnd6</a>.<a href="http://golang.org/pkg/github.com/fggp/go-csnd6/#MYFLT">MYFLT</a>)</pre>
<p>
Send a score event of type 'opcod' (e.g. 'i' for a note event), with
p-fields in array 'p' (p[0] is p1). If absp2mode is true,
the start time of the event is measured from the beginning of
performance, instead of the default of relative to the current time.
</p>
<h3 id="CsoundPerformanceThread.SetProcessCallback">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=1112:1207#L44">SetProcessCallback</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) SetProcessCallback(f <a href="#PTprocessHandler">PTprocessHandler</a>, cbData <a href="http://golang.org/pkg/unsafe/">unsafe</a>.<a href="http://golang.org/pkg/unsafe/#Pointer">Pointer</a>)</pre>
<p>
Set the process callback.
</p>
<h3 id="CsoundPerformanceThread.SetScoreOffsetSeconds">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=3964:4036#L132">SetScoreOffsetSeconds</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) SetScoreOffsetSeconds(timeVal <a href="http://golang.org/pkg/builtin/#float64">float64</a>)</pre>
<p>
Set the playback time pointer to the specified value (in seconds).
</p>
<h3 id="CsoundPerformanceThread.Stop">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=2321:2361#L85">Stop</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) Stop()</pre>
<p>
Stop performance (cannot be continued).
</p>
<h3 id="CsoundPerformanceThread.StopRecord">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=3066:3112#L107">StopRecord</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) StopRecord()</pre>
<p>
Stops recording and closes audio file.
</p>
<h3 id="CsoundPerformanceThread.TogglePause">func (CsoundPerformanceThread) <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=2194:2241#L80">TogglePause</a></h3>
<pre>func (pt <a href="#CsoundPerformanceThread">CsoundPerformanceThread</a>) TogglePause()</pre>
<p>
Pause performance unless it is already paused, in which case
it is continued.
</p>
<h2 id="PTprocessHandler">type <a href="/srchttp://golang.org/pkg/target/cs_perf_thread.go?s=730:779#L26">PTprocessHandler</a></h2>
<pre>type PTprocessHandler func(cbData <a href="http://golang.org/pkg/unsafe/">unsafe</a>.<a href="http://golang.org/pkg/unsafe/#Pointer">Pointer</a>)</pre>
<script type="text/javascript">
var toggleButtons = document.getElementsByClassName("toggleButton");
for (var i = 0; i < toggleButtons.length; i++) {
toggleButtons[i].addEventListener("click", function() {
var elems = this.parentNode.parentNode.children;
for (var j = 0; j < elems.length; j++) {
if (elems[j].className == "collapsed")
elems[j].className = "expanded";
else if (elems[j].className == "expanded")
elems[j].className = "collapsed";
}
}, false);
}
</script>
</body>
</html>