Sophie

Sophie

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

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>ftgentmp</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="ftgenonce.html" title="ftgenonce" />
    <link rel="next" href="ftlen.html" title="ftlen" />
  </head>
  <body>
    <div class="navheader">
      <table width="100%" summary="Navigation header">
        <tr>
          <th colspan="3" align="center">ftgentmp</th>
        </tr>
        <tr>
          <td width="20%" align="left"><a accesskey="p" href="ftgenonce.html">Prev</a> </td>
          <th width="60%" align="center">Orchestra Opcodes and Operators</th>
          <td width="20%" align="right"> <a accesskey="n" href="ftlen.html">Next</a></td>
        </tr>
      </table>
      <hr />
    </div>
    <div class="refentry" title="ftgentmp">
      <a id="ftgentmp"></a>
      <div class="titlepage"></div>
      <a id="Indexftgentmp" class="indexterm"></a>
      <div class="refnamediv">
        <h2>
          <span class="refentrytitle">ftgentmp</span>
        </h2>
        <p>ftgentmp — 
       Generate a score function table from within the orchestra, which is deleted at the end of the note.
    </p>
      </div>
      <div class="refsect1" title="Description">
        <a id="idp24690784"></a>
        <h2>Description</h2>
        <p>
      Generate a score function table from within the orchestra,
    which is optionally deleted at the end of the note.
    </p>
      </div>
      <div class="refsect1" title="Syntax">
        <a id="idp24691512"></a>
        <h2>Syntax</h2>
        <pre class="synopsis">ifno <span class="command"><strong>ftgentmp</strong></span> ip1, ip2dummy, isize, igen, iarga, iargb, ...</pre>
      </div>
      <div class="refsect1" title="Initialization">
        <a id="idp24702016"></a>
        <h2>Initialization</h2>
        <p>
    <span class="emphasis"><em>ifno</em></span> --  either a requested or automatically
    assigned table number above 100.
    </p>
        <p>
    <span class="emphasis"><em>ip1</em></span> -- the number of the table to be
    generated or 0 if the number is to be assigned, in which case the
    table is deleted at the end of the note activation.
    </p>
        <p>

    <span class="emphasis"><em>ip2dummy</em></span> -- ignored.
    </p>
        <p>
      <span class="emphasis"><em>isize</em></span> -- table size. Corresponds to p3 of the score <span class="emphasis"><em>f statement</em></span>.
    </p>
        <p>
      <span class="emphasis"><em>igen</em></span> -- function table <span class="emphasis"><em>GEN</em></span> routine. Corresponds to p4 of the score <span class="emphasis"><em>f statement</em></span>.
    </p>
        <p>
      <span class="emphasis"><em>iarga, iargb, ...</em></span> -- function table arguments. Correspond to p5 through p<span class="emphasis"><em>n</em></span> of the score <span class="emphasis"><em>f statement</em></span>.
    </p>
        <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
          <table border="0" summary="Note">
            <tr>
              <td rowspan="2" align="center" valign="top" width="25">
                <img alt="[Note]" src="images/note.png" />
              </td>
              <th align="left">Note</th>
            </tr>
            <tr>
              <td align="left" valign="top">
                <p>Csound was originally designed to support tables with power of two sizes only. Though this has changed in recent versions (you can use any size by using a negative number), many opcodes will not accept them.</p>
              </td>
            </tr>
          </table>
        </div>
      </div>
      <div class="refsect1" title="Examples">
        <a id="idp24707136"></a>
        <h2>Examples</h2>
        <p>
      Here is an example of the ftgentmp opcode. It uses the file <a class="ulink" href="examples/ftgentmp.csd" target="_top"><em class="citetitle">ftgentmp.csd</em></a>.
      </p>
        <div class="example">
          <a id="idp24743008"></a>
          <p class="title">
            <strong>Example 308. Example of the ftgentmp opcode.</strong>
          </p>
          <div class="example-contents">
            <p>See the sections <a class="link" href="UsingRealTime.html" title="Real-Time Audio"><em class="citetitle">Real-time Audio</em></a> and <a class="link" href="CommandFlags.html" title="Csound command line"><em class="citetitle">Command Line Flags</em></a> for more information on using command line flags.</p>
            <pre class="programlisting">
<span class="csdtag">&lt;CsoundSynthesizer&gt;</span>
<span class="csdtag">&lt;CsOptions&gt;</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> 128
<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
ifno  <span class="opc">ftgentmp</span>  0, 0, 512, 10, 1
<span class="opc">print</span> ifno
<span class="oblock">endin</span>

<span class="oblock">instr</span> 2
<span class="opc">print</span> <span class="opc">ftlen</span>(p4)
<span class="oblock">endin</span>

<span class="csdtag">&lt;/CsInstruments&gt;</span>
<span class="csdtag">&lt;CsScore&gt;</span>
<span class="stamnt">i</span> 1 0 10
<span class="stamnt">i</span> 2 2 1 101
<span class="stamnt">i</span> 1 5 10
<span class="stamnt">i</span> 2 7 1 102
<span class="stamnt">i</span> 2 12 1 101 
<span class="stamnt">i</span> 2 17 1 102 
<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" />
      The output of this csd shows that the tables are destroyed after the instrument instances that created them terminates, causing an init error if the tables are queried.
</p>
        <pre class="screen">
SECTION 1:
new alloc for instr 1:
ftable 101:
instr 1:  ifno = 101.000
B  0.000 ..  2.000 T  2.000 TT  2.000 M:  0.00000  0.00000
new alloc for instr 2:
instr 2:  #i0 = 512.000
B  2.000 ..  5.000 T  5.001 TT  5.001 M:  0.00000  0.00000
new alloc for instr 1:
ftable 102:
instr 1:  ifno = 102.000
B  5.000 ..  7.000 T  7.001 TT  7.001 M:  0.00000  0.00000
instr 2:  #i0 = 512.000
B  7.000 .. 12.000 T 11.999 TT 11.999 M:  0.00000  0.00000
INIT ERROR in instr 2: Invalid ftable no. 101.000000
#i0     ftlen.i p4
instr 2:  #i0 = -1.000
         B 12.000 - note deleted.  i2 had 1 init errors
B 12.000 .. 17.000 T 17.000 TT 17.000 M:  0.00000  0.00000
INIT ERROR in instr 2: Invalid ftable no. 102.000000
#i0     ftlen.i p4
instr 2:  #i0 = -1.000
         B 17.000 - note deleted.  i2 had 1 init errors
</pre>
        <p>
    </p>
      </div>
      <div class="refsect1" title="Credits">
        <a id="idp24746552"></a>
        <h2>Credits</h2>
        <p>
      </p>
        <table border="0" summary="Simple list" class="simplelist">
          <tr>
            <td>Authors: Istvan Varga</td>
          </tr>
          <tr>
            <td>2005</td>
          </tr>
        </table>
        <p>
    </p>
      </div>
    </div>
    <div class="navfooter">
      <hr />
      <table width="100%" summary="Navigation footer">
        <tr>
          <td width="40%" align="left"><a accesskey="p" href="ftgenonce.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="ftlen.html">Next</a></td>
        </tr>
        <tr>
          <td width="40%" align="left" valign="top">ftgenonce </td>
          <td width="20%" align="center">
            <a accesskey="h" href="index.html">Home</a>
          </td>
          <td width="40%" align="right" valign="top"> ftlen</td>
        </tr>
      </table>
    </div>
  </body>
</html>