Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-release > by-pkgid > b707d9a4ee443103660a75ccb6e51334 > files > 2192

csound-doc-5.19.01-10.mga5.noarch.rpm

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>midictrl</title>
    <link rel="stylesheet" type="text/css" href="csound.css" />
    <meta name="generator" content="DocBook XSL Stylesheets V1.76.1" />
    <link rel="home" href="index.html" title="The Canonical Csound Reference Manual" />
    <link rel="up" href="OpcodesTop.html" title="Orchestra Opcodes and Operators" />
    <link rel="prev" href="midicontrolchange.html" title="midicontrolchange" />
    <link rel="next" href="mididefault.html" title="mididefault" />
  </head>
  <body>
    <div class="navheader">
      <table width="100%" summary="Navigation header">
        <tr>
          <th colspan="3" align="center">midictrl</th>
        </tr>
        <tr>
          <td width="20%" align="left"><a accesskey="p" href="midicontrolchange.html">Prev</a> </td>
          <th width="60%" align="center">Orchestra Opcodes and Operators</th>
          <td width="20%" align="right"> <a accesskey="n" href="mididefault.html">Next</a></td>
        </tr>
      </table>
      <hr />
    </div>
    <div class="refentry" title="midictrl">
      <a id="midictrl"></a>
      <div class="titlepage"></div>
      <a id="IndexMidictrl" class="indexterm"></a>
      <div class="refnamediv">
        <h2>
          <span class="refentrytitle">midictrl</span>
        </h2>
        <p>midictrl — 
      Get the current value (0-127) of a specified MIDI controller.
          </p>
      </div>
      <div class="refsect1" title="Description">
        <a id="idp30952424"></a>
        <h2>Description</h2>
        <p>
      Get the current value (0-127) of a specified MIDI controller.
    </p>
      </div>
      <div class="refsect1" title="Syntax">
        <a id="idp30953096"></a>
        <h2>Syntax</h2>
        <pre class="synopsis">ival <span class="command"><strong>midictrl</strong></span> inum [, imin] [, imax]</pre>
        <pre class="synopsis">kval <span class="command"><strong>midictrl</strong></span> inum [, imin] [, imax]</pre>
      </div>
      <div class="refsect1" title="Initialization">
        <a id="idp31000520"></a>
        <h2>Initialization</h2>
        <p>
      <span class="emphasis"><em>inum</em></span> -- MIDI controller number (0-127)
    </p>
        <p>
      <span class="emphasis"><em>imin, imax</em></span> -- set minimum and maximum limits on values obtained.
    </p>
      </div>
      <div class="refsect1" title="Performance">
        <a id="idp31001840"></a>
        <h2>Performance</h2>
        <p>
      Get the current value (0-127) of a specified MIDI controller.
    </p>
      </div>
      <div class="refsect1" title="Warning">
        <a id="idp31002512"></a>
        <h2>Warning</h2>
        <p>
      <span class="emphasis"><em>midictrl</em></span> should only be used in notes that were triggered from MIDI, so that an associated channel number is available. For notes activated from the score, line events, or orchestra, the <a class="link" href="ctrl7.html" title="ctrl7"><em class="citetitle">ctrl7</em></a> opcode that takes an explicit channel number should be used instead.
    </p>
      </div>
      <div class="refsect1" title="Examples">
        <a id="idp31004040"></a>
        <h2>Examples</h2>
        <p>
      Here is an example of the midictrl opcode. It uses the file <a class="ulink" href="examples/midictrl.csd" target="_top"><em class="citetitle">midictrl.csd</em></a>
      </p>
        <div class="example">
          <a id="idp31005008"></a>
          <p class="title">
            <strong>Example 458. Example of the midictrl opcode.</strong>
          </p>
          <div class="example-contents">
            <pre class="programlisting">
<span class="csdtag">&lt;CsoundSynthesizer&gt;</span>
<span class="csdtag">&lt;CsOptions&gt;</span>
<span class="comment">; Select audio/midi flags here according to platform</span>
-odac  -+rtmidi=virtual -M0   <span class="comment">;;;realtime audio out and realtime midi in</span>
<span class="comment">;-iadc    ;;;uncomment -iadc if realtime audio input is needed too</span>
<span class="comment">; For Non-realtime ouput leave only the line below:</span>
<span class="comment">; -o midictrl.wav -W ;;; for file output any platform</span>
<span class="csdtag">&lt;/CsOptions&gt;</span>
<span class="csdtag">&lt;CsInstruments&gt;</span>

<span class="ohdr">sr</span> <span class="op">=</span> 44100
<span class="ohdr">ksmps</span> <span class="op">=</span> 32
<span class="ohdr">nchnls</span> <span class="op">=</span> 2
<span class="ohdr">0dbfs</span>  <span class="op">=</span> 1

<span class="oblock">instr</span> 1
 	 
icps	<span class="opc">cpsmidi</span>	 	 
iamp	<span class="opc">ampmidi</span>	.5
ips	<span class="opc">midictrl</span> 9, 10, 500		<span class="comment">;controller 9	 </span>
 	 	 	 
kenv	<span class="opc">madsr</span>	0.5, 0, 1, 0.5
asig	<span class="opc">pluck</span>	kenv, icps, ips, 2, 1	<span class="comment">;change tone color	 </span>
	<span class="opc">outs</span>	asig, asig			
	 
<span class="oblock">endin</span>
<span class="csdtag">&lt;/CsInstruments&gt;</span>
<span class="csdtag">&lt;CsScore&gt;</span>
<span class="stamnt">f</span> 2 0 4096 10 1	<span class="comment">;sine wave</span>
<span class="comment">; no score events allowed</span>
<span class="stamnt">f</span>0 30	<span class="comment">;runs 30 seconds</span>
<span class="stamnt">e</span>
<span class="csdtag">&lt;/CsScore&gt;</span>
<span class="csdtag">&lt;/CsoundSynthesizer&gt;</span>
</pre>
          </div>
        </div>
        <p><br class="example-break" />
    </p>
      </div>
      <div class="refsect1" title="See Also">
        <a id="idp31006024"></a>
        <h2>See Also</h2>
        <p>
      <a class="link" href="aftouch.html" title="aftouch"><em class="citetitle">aftouch</em></a>,
      <a class="link" href="ampmidi.html" title="ampmidi"><em class="citetitle">ampmidi</em></a>,
      <a class="link" href="cpsmidi.html" title="cpsmidi"><em class="citetitle">cpsmidi</em></a>,
      <a class="link" href="cpsmidib.html" title="cpsmidib"><em class="citetitle">cpsmidib</em></a>,
      <a class="link" href="notnum.html" title="notnum"><em class="citetitle">notnum</em></a>,
      <a class="link" href="octmidi.html" title="octmidi"><em class="citetitle">octmidi</em></a>,
      <a class="link" href="octmidib.html" title="octmidib"><em class="citetitle">octmidib</em></a>,
      <a class="link" href="pchbend.html" title="pchbend"><em class="citetitle">pchbend</em></a>,
      <a class="link" href="pchmidi.html" title="pchmidi"><em class="citetitle">pchmidi</em></a>,
      <a class="link" href="pchmidib.html" title="pchmidib"><em class="citetitle">pchmidib</em></a>,
      <a class="link" href="veloc.html" title="veloc"><em class="citetitle">veloc</em></a>
    </p>
      </div>
      <div class="refsect1" title="Credits">
        <a id="idp31011840"></a>
        <h2>Credits</h2>
        <p>
      </p>
        <table border="0" summary="Simple list" class="simplelist">
          <tr>
            <td>Author: Barry L. Vercoe - Mike Berry</td>
          </tr>
          <tr>
            <td>MIT - Mills</td>
          </tr>
          <tr>
            <td>May 1997</td>
          </tr>
        </table>
        <p>
    </p>
        <p>Thanks goes to Rasmus Ekman for pointing out the correct controller number range.</p>
      </div>
    </div>
    <div class="navfooter">
      <hr />
      <table width="100%" summary="Navigation footer">
        <tr>
          <td width="40%" align="left"><a accesskey="p" href="midicontrolchange.html">Prev</a> </td>
          <td width="20%" align="center">
            <a accesskey="u" href="OpcodesTop.html">Up</a>
          </td>
          <td width="40%" align="right"> <a accesskey="n" href="mididefault.html">Next</a></td>
        </tr>
        <tr>
          <td width="40%" align="left" valign="top">midicontrolchange </td>
          <td width="20%" align="center">
            <a accesskey="h" href="index.html">Home</a>
          </td>
          <td width="40%" align="right" valign="top"> mididefault</td>
        </tr>
      </table>
    </div>
  </body>
</html>