forked from csound/manual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactive.xml
137 lines (121 loc) · 4.62 KB
/
active.xml
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
<refentry id="active">
<indexterm id="IndexActive"><primary>active</primary></indexterm>
<refentryinfo><title>Instrument Control:Realtime Performance Control</title></refentryinfo>
<refmeta>
<refentrytitle>active</refentrytitle>
</refmeta>
<refnamediv>
<refname>active</refname>
<refpurpose>
Returns the number of active instances of an instrument.
</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<para>
Returns the number of active instances of an instrument with
options to ignore releasing instances.
</para>
</refsect1>
<refsect1>
<title>Syntax</title>
<synopsis>ir <command>active</command> insnum [,iopt [,inorel]]</synopsis>
<synopsis>ir <command>active</command> Sinsname [,iopt [,inorel]]</synopsis>
<synopsis>kres <command>active</command> kinsnum [,iopt [,inorel]]</synopsis>
</refsect1>
<refsect1>
<title>Initialization</title>
<para>
<emphasis>insnum</emphasis> -- number or string name of the instrument to be reported
</para>
<para>
<emphasis>Sinsname</emphasis> -- instrument name
</para>
<para>
<emphasis>iopt</emphasis> -- select currently active (zero, default),
or all every active (non zero)
</para>
<para>
<emphasis>inorel</emphasis> -- if non-zero ignore instruments in
release phase (zero, default), only valid if iopts is zero.
</para>
</refsect1>
<refsect1>
<title>Performance</title>
<para>
<emphasis>kinsnum</emphasis> -- number or string name of the instrument to be reported
</para>
<para>
<emphasis>active</emphasis> returns the number of active
instances of instrument number
<emphasis>insnum/kinsnum</emphasis> (or named instrument
<emphasis>Sinsname</emphasis>). As of Csound 4.17 the output is
updated at k-rate (if input arg is k-rate), to allow running
count of instr instances.
</para>
<para>
As of Csound 5.17 if the instrument number is given as zero then
all instruments are counted.
</para>
</refsect1>
<refsect1>
<title>Examples</title>
<para>
Here is a simple example of the active opcode. It uses the file
<ulink
url="examples/active.csd"><citetitle>active.csd</citetitle></ulink>.
<example>
<title>Simple example of the active opcode.</title>
<para>
See the sections <link linkend="UsingRealTime"><citetitle>Real-time
Audio</citetitle></link> and <link
linkend="CommandFlags"><citetitle>Command Line
Flags</citetitle></link> for more information on using command
line flags.
</para>
<xi:include href="examples-xml/active.csd.xml"
xmlns:xi="http://www.w3.org/2001/XInclude"/>
</example>
Its output should include lines like this:
<screen>
instr 2: icount = 1.000
instr 2: icount = 2.000
</screen>
</para>
<para>
Here is a more advanced example of the active opcode. It displays the results of the active opcode at k-rate instead of i-rate. It uses the file <ulink url="examples/active_k.csd"><citetitle>active_k.csd</citetitle></ulink>.
<example>
<title>Example of the active opcode at k-rate.</title>
<xi:include href="examples-xml/active_k.csd.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
</example>
Its output should include lines like:
<screen>
i2 1.00000
i2 2.00000
</screen>
</para>
<para>
Here is another example of the active opcode, using the number of instances to calculate gain. It uses the file <ulink url="examples/active_scale.csd"><citetitle>active_scale.csd</citetitle></ulink>.
<example>
<title>Example of the active opcode at k-rate.</title>
<xi:include href="examples-xml/active_scale.csd.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
</example>
</para>
</refsect1>
<refsect1>
<title>Credits</title>
<para>
<simplelist>
<member>Author: &namejohn;</member>
<member>University of Bath/Codemist Ltd.</member>
<member>Bath, UK</member>
<member>July, 1999</member>
</simplelist>
</para>
<para>Examples written by &namekevin;.</para>
<para>New in Csound version 3.57; named instruments added version 5.13</para>
<para>Option for all ever active new in 5.13</para>
<para>Count of all instruments new in 5.17</para>
<para>No release option new in 5.19</para>
</refsect1>
</refentry>