/[svn]/doc/docbase/instrument_scripts/nksp/reference/01_nksp_reference.html
ViewVC logotype

Diff of /doc/docbase/instrument_scripts/nksp/reference/01_nksp_reference.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2732 by schoenebeck, Sun Apr 26 20:54:00 2015 UTC revision 2937 by schoenebeck, Mon Jul 11 10:29:16 2016 UTC
# Line 28  Line 28 
28          <th>Function</th> <th>Description</th>          <th>Function</th> <th>Description</th>
29        </tr>        </tr>
30        <tr>        <tr>
31          <td><code>message()</code></td>          <td><code lang="nksp">message()</code></td>
32          <td>Prints text to the sampler's terminal.</td>          <td>Prints text to the sampler's terminal.</td>
33        </tr>        </tr>
34        <tr>        <tr>
# Line 67  Line 67 
67          <td>Triggers a new note.</td>          <td>Triggers a new note.</td>
68        </tr>        </tr>
69        <tr>        <tr>
70            <td><code>change_pan()</code></td>
71            <td>Changes panning of voices (stereo balance).</td>
72          </tr>
73          <tr>
74            <td><code>change_tune()</code></td>
75            <td>Changes the tuning of voices.</td>
76          </tr>
77          <tr>
78            <td><code>change_vol()</code></td>
79            <td>Changes the volume of voices.</td>
80          </tr>
81          <tr>
82            <td><code>change_cutoff()</code></td>
83            <td>Changes filter cutoff frequency of voices.</td>
84          </tr>
85          <tr>
86            <td><code>change_reso()</code></td>
87            <td>Changes filter resonance of voices.</td>
88          </tr>
89          <tr>
90            <td><code>event_status()</code></td>
91            <td>Checks and returns whether a particular note is still alive.</td>
92          </tr>
93          <tr>
94          <td><code>set_controller()</code></td>          <td><code>set_controller()</code></td>
95          <td>Creates a MIDI control change event.</td>          <td>Creates a MIDI control change event.</td>
96        </tr>        </tr>
# Line 160  Line 184 
184              <code>note</code> or <code>release</code> handler).</td>              <code>note</code> or <code>release</code> handler).</td>
185        </tr>        </tr>
186        <tr>        <tr>
187            <td><code>$EVENT_STATUS_INACTIVE</code></td>
188            <td>Constant bit flag used as possible return value by
189                <code>event_status()</code> in case the requested
190                note is not "alive".</td>
191          </tr>
192          <tr>
193            <td><code>$EVENT_STATUS_NOTE_QUEUE</code></td>
194            <td>Constant bit flag used as possible return value by
195                <code>event_status()</code> in case the requested
196                note is still "alive".</td>
197          </tr>
198          <tr>
199          <td><code>%KEY_DOWN[]</code></td>          <td><code>%KEY_DOWN[]</code></td>
200          <td>This can be used in any context to check whether a certain MIDI          <td>This can be used in any context to check whether a certain MIDI
201              key is currently pressed down. Use the respective MIDI note number              key is currently pressed down. Use the respective MIDI note number
202              as index to this array variable.</td>              as index to this array variable (see also <code>event_status()</code>).</td>
203        </tr>        </tr>
204        <tr>        <tr>
205          <td><code>$VCC_MONO_AT</code></td>          <td><code>$VCC_MONO_AT</code></td>
# Line 183  Line 219 
219              This is somewhat different than in the MIDI standard. With              This is somewhat different than in the MIDI standard. With
220              NKSP pitch bend is handled like an additional "regular" MIDI CC controller.              NKSP pitch bend is handled like an additional "regular" MIDI CC controller.
221              Therefore use              Therefore use
222              <code>%CC[$VCC_PITCH_BEND]</code> to obtain the current aftertouch value              <code>%CC[$VCC_PITCH_BEND]</code> to obtain the current pitch bend wheel value
223              in the context of a <code>controller</code> event handler.</td>              in the context of a <code>controller</code> event handler.</td>
224        </tr>        </tr>
225        <tr>        <tr>

Legend:
Removed from v.2732  
changed lines
  Added in v.2937

  ViewVC Help
Powered by ViewVC