Sophie

Sophie

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

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>#define</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="notequal.html" title="!=" />
    <link rel="next" href="include.html" title="#include" />
  </head>
  <body>
    <div class="navheader">
      <table width="100%" summary="Navigation header">
        <tr>
          <th colspan="3" align="center">#define</th>
        </tr>
        <tr>
          <td width="20%" align="left"><a accesskey="p" href="notequal.html">Prev</a> </td>
          <th width="60%" align="center">Orchestra Opcodes and Operators</th>
          <td width="20%" align="right"> <a accesskey="n" href="include.html">Next</a></td>
        </tr>
      </table>
      <hr />
    </div>
    <div class="refentry" title="#define">
      <a id="define"></a>
      <div class="titlepage"></div>
      <a id="IndexDefine" class="indexterm"></a>
      <a id="IndexDefineOrch" class="indexterm"></a>
      <a id="IndexDefineMacros" class="indexterm"></a>
      <div class="refnamediv">
        <h2>
          <span class="refentrytitle">#define</span>
        </h2>
        <p>#define — 
      Defines a macro.
    </p>
      </div>
      <div class="refsect1" title="Description">
        <a id="idp12262232"></a>
        <h2>Description</h2>
        <p>
      Macros are textual replacements which are made in the orchestra as it is being read.  The macro system in Csound is a very simple one, and uses the characters # and $ to define and call macros. This can save typing, and can lead to a coherent structure and consistent style.  This is similar to, but independent of, the <a class="link" href="ScoreMacros.html" title="Score Macros"><em class="citetitle">macro system in the score language</em></a>.
    </p>
        <p>
      <span class="emphasis"><em>#define NAME</em></span> -- defines a simple macro. The name of the macro must begin with a letter and can consist of any combination of letters and numbers. Case is significant. This form is limiting, in that the variable names are fixed.  More flexibility can be obtained by using a macro with arguments, described below.
    </p>
        <p>
      <span class="emphasis"><em>#define NAME</em></span>(<span class="emphasis"><em>a' b' c'</em></span>) -- defines a macro with arguments. This can be used in more complex situations. The name of the macro must begin with a letter and can consist of any combination of letters and numbers. Within the replacement text, the arguments can be substituted by the form: $A.  In fact, the implementation defines the arguments as simple macros.  There may be up to 5 arguments, and the names may be any choice of letters.  Remember that case is significant in macro names.
    </p>
      </div>
      <div class="refsect1" title="Syntax">
        <a id="idp12264928"></a>
        <h2>Syntax</h2>
        <pre class="synopsis"><span class="command"><strong>#define</strong></span> NAME # replacement text #</pre>
        <pre class="synopsis"><span class="command"><strong>#define</strong></span> NAME(a' b' c') # replacement text #</pre>
      </div>
      <div class="refsect1" title="Initialization">
        <a id="idp12267208"></a>
        <h2>Initialization</h2>
        <p>
      <span class="emphasis"><em># replacement text #</em></span> --  The replacement text is any character string (not containing a #) and can extend over mutliple lines. The replacement text is enclosed within the # characters, which ensure that additional characters are not inadvertently captured.
    </p>
      </div>
      <div class="refsect1" title="Performance">
        <a id="idp12268296"></a>
        <h2>Performance</h2>
        <p>
      Some care is needed with textual replacement macros, as they can sometimes do strange things.  They take no notice of any meaning, so spaces are significant. This is why, unlike the C programming language, the definition has the replacement text surrounded by # characters. Used carefully, this simple macro system is a powerful concept, but it can be abused.
    </p>
      </div>
      <div class="refsect1" title="Examples">
        <a id="idp12268808"></a>
        <h2>Examples</h2>
        <p>
      Here is a simple example of the defining a macro. It uses the file <a class="ulink" href="examples/define.csd" target="_top"><em class="citetitle">define.csd</em></a>.

      </p>
        <div class="example">
          <a id="idp12270184"></a>
          <p class="title">
            <strong>Example 11. Simple example of the define macro.</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="comment">; Select audio/midi flags here according to platform</span>
<span class="comment">; Audio out   Audio in    No messages</span>
-odac           -iadc     -d     <span class="comment">;;;RT audio I/O</span>
<span class="comment">; For Non-realtime ouput leave only the line below:</span>
<span class="comment">; -o define.wav -W ;;; for file output any platform</span>
<span class="csdtag">&lt;/CsOptions&gt;</span>
<span class="csdtag">&lt;CsInstruments&gt;</span>

<span class="comment">; Initialize the global variables.</span>
<span class="ohdr">sr</span> <span class="op">=</span> 44100
<span class="ohdr">kr</span> <span class="op">=</span> 4410
<span class="ohdr">ksmps</span> <span class="op">=</span> 10
<span class="ohdr">nchnls</span> <span class="op">=</span> 1

<span class="comment">; Define the macros.</span>
<span class="omacro">#define</span> VOLUME #5000#
<span class="omacro">#define</span> FREQ #440#
<span class="omacro">#define</span> TABLE #1#

<span class="comment">; Instrument #1</span>
<span class="oblock">instr</span> 1
  <span class="comment">; Use the macros.</span>
  <span class="comment">; This will be expanded to "a1 oscil 5000, 440, 1".</span>
  a1 <span class="opc">oscil</span> $VOLUME, $FREQ, $TABLE

  <span class="comment">; Send it to the output.</span>
  <span class="opc">out</span> a1
<span class="oblock">endin</span>


<span class="csdtag">&lt;/CsInstruments&gt;</span>
<span class="csdtag">&lt;CsScore&gt;</span>

<span class="comment">; Define Table #1 with an ordinary sine wave.</span>
<span class="stamnt">f</span> 1 0 32768 10 1 
         
<span class="comment">; Play Instrument #1 for two seconds.</span>
<span class="stamnt">i</span> 1 0 2
<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" />

      Its output should include lines like this:
      </p>
        <pre class="screen">
Macro definition for VOLUME
Macro definition for CPS
Macro definition for TABLE</pre>
        <p>
    </p>
        <p>
      Here is an example of the defining a macro with arguments. It uses the file <a class="ulink" href="examples/define_args.csd" target="_top"><em class="citetitle">define_args.csd</em></a>.

      </p>
        <div class="example">
          <a id="idp12273504"></a>
          <p class="title">
            <strong>Example 12. Example of the define macro with arguments.</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>
<span class="comment">; Audio out   Audio in    No messages</span>
-odac           -iadc     -d     <span class="comment">;;;RT audio I/O</span>
<span class="comment">; For Non-realtime ouput leave only the line below:</span>
<span class="comment">; -o define_args.wav -W ;;; for file output any platform</span>
<span class="csdtag">&lt;/CsOptions&gt;</span>
<span class="csdtag">&lt;CsInstruments&gt;</span>

<span class="comment">; Initialize the global variables.</span>
<span class="ohdr">sr</span> <span class="op">=</span> 44100
<span class="ohdr">kr</span> <span class="op">=</span> 4410
<span class="ohdr">ksmps</span> <span class="op">=</span> 10
<span class="ohdr">nchnls</span> <span class="op">=</span> 1

<span class="comment">; Define the oscillator macro.</span>
<span class="omacro">#define</span> OSCMACRO(VOLUME'FREQ'TABLE) #oscil $VOLUME, $FREQ, $TABLE#

<span class="comment">; Instrument #1</span>
<span class="oblock">instr</span> 1
  <span class="comment">; Use the oscillator macro.</span>
  <span class="comment">; This will be expanded to "a1 oscil 5000, 440, 1".</span>
  a1 $OSCMACRO(5000'440'1)

  <span class="comment">; Send it to the output.</span>
  <span class="opc">out</span> a1
<span class="oblock">endin</span>


<span class="csdtag">&lt;/CsInstruments&gt;</span>
<span class="csdtag">&lt;CsScore&gt;</span>

<span class="comment">; Define Table #1 with an ordinary sine wave.</span>
<span class="stamnt">f</span> 1 0 32768 10 1 
         
<span class="comment">; Play Instrument #1 for two seconds.</span>
<span class="stamnt">i</span> 1 0 2
<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" />

      Its output should include lines like this:
      </p>
        <pre class="screen">
Macro definition for OSCMACRO</pre>
        <p>
    </p>
      </div>
      <div class="refsect1" title="Predefined Math Constant Macros">
        <a id="opcodesDefineMathConstMacros"></a>
        <h2>Predefined Math Constant Macros</h2>
        <p>New in Csound 5.04 are predefined Math Constant Macros.  The values
    defined are those found in the C header math.h, and are automatically
    defined when Csound starts and available for use in orchestras.</p>
        <div class="informaltable">
          <table border="1">
            <colgroup>
              <col />
              <col />
              <col />
            </colgroup>
            <thead>
              <tr>
                <th>Macro</th>
                <th>Value</th>
                <th>Equivalent to</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td>$M_E</td>
                <td>2.7182818284590452354</td>
                <td>e</td>
              </tr>
              <tr>
                <td>$M_LOG2E</td>
                <td>1.4426950408889634074</td>
                <td>log_2(e)</td>
              </tr>
              <tr>
                <td>$M_LOG10E</td>
                <td>0.43429448190325182765</td>
                <td>log_10(e)</td>
              </tr>
              <tr>
                <td>$M_LN2</td>
                <td>0.69314718055994530942</td>
                <td>log_e(2)</td>
              </tr>
              <tr>
                <td>$M_LN10</td>
                <td>2.30258509299404568402</td>
                <td>log_e(10)</td>
              </tr>
              <tr>
                <td>$M_PI</td>
                <td>3.14159265358979323846</td>
                <td>pi</td>
              </tr>
              <tr>
                <td>$M_PI_2</td>
                <td>1.57079632679489661923</td>
                <td>pi/2</td>
              </tr>
              <tr>
                <td>$M_PI_4</td>
                <td>0.78539816339744830962</td>
                <td>pi/4</td>
              </tr>
              <tr>
                <td>$M_1_PI</td>
                <td>0.31830988618379067154</td>
                <td>1/pi</td>
              </tr>
              <tr>
                <td>$M_2_PI</td>
                <td>0.63661977236758134308</td>
                <td>2/pi</td>
              </tr>
              <tr>
                <td>$M_2_SQRTPI</td>
                <td>1.12837916709551257390</td>
                <td>2/sqrt(pi)</td>
              </tr>
              <tr>
                <td>$M_SQRT2</td>
                <td>1.41421356237309504880</td>
                <td>sqrt(2)</td>
              </tr>
              <tr>
                <td>$M_SQRT1_2</td>
                <td>0.70710678118654752440</td>
                <td>1/sqrt(2)</td>
              </tr>
            </tbody>
          </table>
        </div>
      </div>
      <div class="refsect1" title="See Also">
        <a id="idp12288880"></a>
        <h2>See Also</h2>
        <p>
      <a class="link" href="dollar.html" title="$NAME"><em class="citetitle">$NAME</em></a>,
      <a class="link" href="undef.html" title="#undef"><em class="citetitle">#undef</em></a>
    </p>
      </div>
      <div class="refsect1" title="Credits">
        <a id="idp12290416"></a>
        <h2>Credits</h2>
        <p>
      </p>
        <table border="0" summary="Simple list" class="simplelist">
          <tr>
            <td>Author: John ffitch</td>
          </tr>
          <tr>
            <td>University of Bath/Codemist Ltd.</td>
          </tr>
          <tr>
            <td>Bath, UK</td>
          </tr>
          <tr>
            <td>April 1998</td>
          </tr>
        </table>
        <p>
    </p>
        <p>Examples written by Kevin Conder.</p>
        <p>New in Csound version 3.48</p>
      </div>
    </div>
    <div class="navfooter">
      <hr />
      <table width="100%" summary="Navigation footer">
        <tr>
          <td width="40%" align="left"><a accesskey="p" href="notequal.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="include.html">Next</a></td>
        </tr>
        <tr>
          <td width="40%" align="left" valign="top">!= </td>
          <td width="20%" align="center">
            <a accesskey="h" href="index.html">Home</a>
          </td>
          <td width="40%" align="right" valign="top"> #include</td>
        </tr>
      </table>
    </div>
  </body>
</html>