linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Tutorials / Getting-Started / 04-Functions-and-Other-Functionality.schelp
blob1cb92ceb1cc38d80c3e9ef66f41f4fbb8fe7f776
1 title:: 04. Functions and Other Functionality
2 summary:: Getting Started With SuperCollider
3 categories:: Tutorials>Getting-Started
4 related:: Tutorials/Getting-Started/00-Getting-Started-With-SC
6 The easiest way to get sound from SC is to use a Function. Below is a simple example of this. Execute this (after making sure the server is booted), and when you're sick of it, press Cmd - . (that's hold down the command key and press the period or fullstop key) to stop the sound. This will always stop all sound in SC. You'll be using it a lot, so commit it to memory.
8 code::
9 { [SinOsc.ar(440, 0, 0.2), SinOsc.ar(442, 0, 0.2)] }.play;
12 Not too inspiring? Don't worry, we're just getting started, and this is just a simple example to demonstrate Functions and sound. We'll take it apart a bit below.
14 Before we get to doing that though, let's learn a little about Functions in general.
16 A Function is just a reusable bit of code. You define a Function by enclosing code in 'curly brackets': { }. Here's an example:
18 code::
19 f = { "Function evaluated".postln; };
22 The stuff within the curly brackets is what will get executed each time you reuse, or evaluate the Function. Note that this is written like an equation, i.e. code::f = {...}::. This is not an equation in the mathematical sense, it's what's called an assignment. Basically it allows me to name the Function I've created, by storing it in a variable called code::f::. A variable is just a name representing a slot in which we can store things, such as a Function, a number, a list, etc. Execute the following lines one at a time and watch the post window:
24 code::
25 f = { "Function evaluated".postln; };
29 Both times it should say code::'a Function'::. Now whenever we want to refer to our Function we can just use the letter f. That's in fact what makes it reusable! Otherwise we'd need to type the Function in every time.
31 So how do we reuse it? Execute the following lines one at a time and watch the post window:
33 code::
34 f = { "Function evaluated".postln; };
35 f.value;
36 f.value;
37 f.value;
40 Our Function is an object, (i.e a thing that does something or represents something), which we have defined and stored in the variable code::f::. The bit of code that says code::'.value':: says evaluate this function now. This is an example of sending a message to an object. This follows the syntax someObject.someMessage. The dot must go in between.
42 Now this next bit is a little bit tricky. In a given object, each emphasis::message:: calls (calls means executes) a particular emphasis::method::. Different types of objects may have methods with the same name, and thus respond to the same message in different ways. Whoah, get that? Read it again slowly, as this is pretty important:
44 emphasis::Different types of objects may have methods with the same name, and thus respond to the same message in different ways.::
46 What's interesting about this is that the actual methods may differ in what they do, but as long as they implement a method with that name, they become interchangeable in your code.
48 A good example is 'value'. All objects in SC respond to the message 'value'. When you 'call' a method, it always 'returns' something, such as a value or a result. When you call the method 'value' on a Function it will evaluate and return the result of its last line of code. The example below will return the number 5.
50 code::
51 f = { "Evaluating...".postln; 2 + 3; };
52 f.value;
55 Often methods simply return the object itself. This is the case with most objects and the message 'value'. The example below demonstrates this. (Everything to the right of the code:://:: is a 'comment', which means that SC just ignores it. Comments are a good idea to make your code clearer.)
57 code::
58 f = 3;                  // Here I make f equal to a number
59 f.value;                // Post window says: 3, i.e it returns itself
60 f.value;                // Still says 3
62 f = { 3.0.rand; };      // Here it's a Function.
63 f.value;                // 3.0.rand means return a random value from 0 to 3.0 exclusive.
64 f.value;                // something different
65 f.value;                // something different
68 This means that by using the 'value' method Functions and other objects can be interchangeable in your code. This is an example of emphasis::polymorphism::, which is one of the powerful features of what's called Object Oriented Programming. Polymorphism just means that different objects are interchangeable (at least providing they return something sensible for what you're doing) if they respond to the same message. Object Oriented Programming (or OOP, as it's called for short) just means programming with objects. Simple, yes? Here's another short example showing this in action:
70 code::
71 f = { arg a; a.value + 3 };     // call 'value' on the arg; polymorphism awaits!
72 f.value(3);                     // 3.value = 3, so this returns 3 + 3 = 6
73 g = { 3.0.rand; };
74 f.value(g);                     // here the arg is a Function. Cool, huh?
75 f.value(g);                     // try it again, different result
78 Start to see how this could be useful?
80 Functions can also have what are called arguments. These are values which are passed into the Function when it is evaluated. The example below demonstrates how this works. See if you can guess what the result will be before executing it.
82 code::
84 f = { arg a, b;
85         a - b;
87 f.value(5, 3);
91 Arguments are declared at the beginning of the Function, using the keyword code::'arg'::. You can then refer to them just like variables. When you call value on a Function, you can pass in arguments, in order, by putting them in parentheses: code::someFunc.value(arg1, arg2)::. This is the same with any method that takes arguments, not just value.
93 You can specify different orders by using what are called keyword arguments:
95 code::
96 f = { arg a, b; a / b; };       // '/' means divide
97 f.value(10, 2);                 // regular style
98 f.value(b: 2, a: 10);           // keyword style
101 You can mix regular and keyword style if you like, but the regular args must come first:
103 code::
104 f = { arg a, b, c, d; (a + b) * c - d };
105 f.value(2, c:3, b:4, d: 1); // 2 + 4 * 3 - 1
108 (Note that SC has no operator precedence, i.e. math operations are done in order, and division and multiplication are not done first. To force an order use parentheses. e.g. 4 + (2* 8) )
110 Sometimes it's useful to set default values for arguments. You can do this like so:
112 code::
113 f = { arg a, b = 2; a + b; };
114 f.value(2);                     // 2 + 2
117 Default values must be what are called literals. Literals are basically numbers, strings, symbols (more on these later), or collections of them. Don't worry if that doesn't totally make sense, it will become clearer as we go on.
119 There is an alternate way to specify args, which is to enclose them within two vertical lines. (On most keyboards the vertical line symbol is Shift-\ ) The following two Functions are equivalent:
121 code::
122 f = { arg a, b; a + b; };
123 g = { |a, b| a + b; };
124 f.value(2, 2);
125 g.value(2, 2);
128 Why have two different ways? Well some people like the second one better and consider it a shortcut. SC has a number of syntax shortcuts like this, which can make writing code a little faster. In any case you will encounter both forms, so you need to be aware of them.
130 You can also have variables in a Function. These you need to declare at the beginning of the Function, just after the args, using the keyword code::'var'::.
132 code::
134 f = { arg a, b;
135         var firstResult, finalResult;
136         firstResult = a + b;
137         finalResult = firstResult * 2;
138         finalResult;
140 f.value(2, 3);  // this will return (2 + 3) * 2 = 10
144 Variable and argument names can consist of letters and numbers, but must begin with a lower-case letter and cannot contain spaces.
146 Variables are only valid for what is called their scope. The scope of a variable declared in a Function is that Function, i.e. the area between the two curly brackets. Execute these one at a time:
148 code::
149 f = { var foo; foo = 3; foo; };
150 f.value;
151 foo;                    // this will cause an error as 'foo' is only valid within f.
154 You can also declare variables at the top of any block of code which you execute altogether (i.e. by selecting it all). In such a case that block of code is the variable's scope. Execute the block (in parentheses) and then the last line.
156 code::
158 var myFunc;
159 myFunc = { |input| input.postln; };
160 myFunc.value("foo");    // arg is a String
161 myFunc.value("bar");
164 myFunc;                 // throws an error
167 You may be wondering why we haven't needed to declare variables like code::f::, and why they don't seem to have any particular scope (i.e. they keep there values even when executing code one line at a time). The letters a to z are what are called interpreter variables. These are pre-declared when you start up SC, and have an unlimited, or 'global', scope. This makes them useful for quick tests or examples. You've already encountered one of these, the variable 's', which you'll recall by default refers to the localhost server.
169 For more information see:
171 link::Reference/Functions::, link::Classes/Function::, link::Reference/Assignment::, link::Guides/Intro-to-Objects::, link::Reference/Literals::, link::Reference/Scope::
173 ____________________
175 This document is part of the tutorial strong::Getting Started With SuperCollider::.
177 Click here to go on to the next section: link::Tutorials/Getting-Started/05-Functions-and-Sound::
179 Click here to return to the table of Contents: link::Tutorials/Getting-Started/00-Getting-Started-With-SC::