supernova: fix for small audio vector sizes
[supercollider.git] / HelpSource / Tutorials / A-Practical-Guide / PG_01_Introduction.schelp
blobf7d56cab2fae6395eb216404806944d9f475b576
1 title:: PG_01_Introduction
2 summary:: Fundamental concepts of patterns and streams
3 categories:: Streams-Patterns-Events>A-Practical-Guide
5 by H. James Harkins
6 footnote::
7 Documentation licensing
9 The initial version of these documents was written December-February 2009 by H. James Harkins. As part of the SuperCollider package, they are released under the Creative Commons CC-BY-SA license. As SuperCollider is an open source project, it is expected (and encouraged) that other users will contribute to the series. Dr. Harkins, however, wishes to retain exclusive rights to revise and republish the original body of work independently of the open-source copy. This excludes material contributed into svn by others. The work may be redistributed at no charge with proper attribution:
11 Harkins, Henry James. "A Practical Guide to Patterns." SuperCollider 3.3 Documentation, 2009.
14 section::Introduction
16 Patterns are one of the most powerful elements of the SuperCollider language, but in some ways they can be difficult to approach using only the class-oriented help files. These documents seek to bridge the gap, explaining the conceptual background behind patterns, describing the usage of specific Pattern classes, and proceeding into examples of practical musical tasks written as patterns.
19 section::Contents
21 definitionList::
22 ## link::Tutorials/A-Practical-Guide/PG_01_Introduction:: || Fundamental concepts of patterns and streams
23 ## link::Tutorials/A-Practical-Guide/PG_02_Basic_Vocabulary:: || Common patterns to generate streams of single values
24 ## link::Tutorials/A-Practical-Guide/PG_03_What_Is_Pbind:: || Pattern-based musical sequencing with Pbind and cousins
25 ## link::Tutorials/A-Practical-Guide/PG_04_Words_to_Phrases:: || Nesting patterns, arranging music in terms of phrases
26 ## link::Tutorials/A-Practical-Guide/PG_05_Math_on_Patterns:: || Performing math and collection operations on patterns
27 ## link::Tutorials/A-Practical-Guide/PG_06_Filter_Patterns:: || Overview of patterns that modify the behavior of other patterns
28 ## link::Tutorials/A-Practical-Guide/PG_06a_Repetition_Contraint_Patterns:: || Patterns that repeat values, or cut other patterns off early
29 ## link::Tutorials/A-Practical-Guide/PG_06b_Time_Based_Patterns:: || Patterns using time as the basis for their evaluation
30 ## link::Tutorials/A-Practical-Guide/PG_06c_Composition_of_Patterns:: || Making multiple event patterns act as one
31 ## link::Tutorials/A-Practical-Guide/PG_06d_Parallel_Patterns:: || Running multiple event patterns simultaneously
32 ## link::Tutorials/A-Practical-Guide/PG_06e_Language_Control:: || Patterns that mimic some language-side control structures
33 ## link::Tutorials/A-Practical-Guide/PG_06f_Server_Control:: || Patterns that manage server-side resources
34 ## link::Tutorials/A-Practical-Guide/PG_06g_Data_Sharing:: || Writing patterns to use information from other patterns
35 ## link::Tutorials/A-Practical-Guide/PG_07_Value_Conversions:: || Describes the default event's conversions for pitch, rhythm and amplitude
36 ## link::Tutorials/A-Practical-Guide/PG_08_Event_Types_and_Parameters:: || Describes the event types defined in the default event, and the parameters they expect
39 subsection::Pattern Cookbook
41 The pattern cookbook is a set of examples with explanations.
43 definitionList::
44 ## link::Tutorials/A-Practical-Guide/PG_Cookbook01_Basic_Sequencing:: || list::
45         ## Playing a predefined note sequence
46         ## "Multichannel" expansion
47         ## Using custom SynthDefs (including unpitched SynthDefs)
49 ## link::Tutorials/A-Practical-Guide/PG_Cookbook02_Manipulating_Patterns:: || list::
50         ## Merging (interleaving) independent streams
51         ## Reading an array forward or backward arbitrarily
52         ## Changing Pbind value patterns on the fly
54 ## link::Tutorials/A-Practical-Guide/PG_Cookbook03_External_Control:: || list::
55         ## Control of parameters by MIDI or HID
56         ## Triggering patterns by external control
58 ## link::Tutorials/A-Practical-Guide/PG_Cookbook04_Sending_MIDI:: || list::
59         ## Sending notes under pattern control to MIDI devices
61 ## link::Tutorials/A-Practical-Guide/PG_Cookbook05_Using_Samples:: || list::
62         ## Playing a pattern in time with a sampled loop
63         ## Using audio samples to play pitched material
65 ## link::Tutorials/A-Practical-Guide/PG_Cookbook06_Phrase_Network:: || list::
66         ## Building a more complicated melody using shorter phrase patterns
67         ## Also illustrates PmonoArtic for portamento with articulation
69 ## link::Tutorials/A-Practical-Guide/PG_Cookbook07_Rhythmic_Variations:: || list::
70         ## An ever-changing drumbeat
74 subsection::Reference material
76 definitionList::
77 ## link::Tutorials/A-Practical-Guide/PG_Ref01_Pattern_Internals:: || Details of pattern implementation, with guidance on writing new pattern classes
80 section::Why patterns?
82 Patterns describe calculations without explicitly stating every step. They are a higher-level representation of a computational task. While patterns are not ideally suited for every type of calculation, when they are appropriate they free the user from worrying about every detail of the process. Using patterns, one writes emphasis::what:: is supposed to happen, rather than emphasis::how:: to accomplish it.
84 In SuperCollider, patterns are best for tasks that need to produce sequences, or streams, of information. Often these are numbers, but they don't have to be -- patterns can generate any kind of object.
86 For a simple example, let's count upward starting from 0. We don't know how high we will need to count; we just know that every time we ask for values, we should get a continually increasing series.
88 Writing everything out, it looks like this. link::Classes/Routine:: is used because this is a control structure that can interrupt what it's doing and remember where it was, so that it can pick up again at exactly that point. You can get some numbers out of it, and call it again later and it will keep counting from the last number returned. (This is an example of a link::Classes/Stream::. You can find more about Streams in link::Tutorials/Streams-Patterns-Events1::.)
90 code::
91 a = Routine {
92         var     i = 0;
93         loop {
94                 i.yield;
95                 i = i + 1;
96         };
99 a.nextN(10);
102 SuperCollider's built-in control structures allow some simplification.
104 code::
105 a = Routine {
106         (0..).do { |i|
107                 i.yield;
108         };
111 a.nextN(10);
114 But wouldn't it be nice just to say, "Give me an infinite series of numbers starting with 0, increasing by 1"? With link::Classes/Pseries::, you can. (Here, keyword addressing of the arguments is used for clarity, but code::start::, code::step:: and code::length:: can be omitted.)
116 code::
117 a = Pseries(start: 0, step: 1, length: inf).asStream;
119 a.nextN(10);
122 What are the advantages of the pattern representation?
123 list::
124 ## It's shorter.
125 ## It's tested and it works. You don't have to debug how Pseries works (whereas, if you write a Routine, you might make a mistake and then have to find it.)
126 ## With the Routine -- especially if it's complicated -- you will have to decipher it when you come back to the code later. The Pattern states the purpose right there in the code.
129 What are some disadvantages?
130 list::
131 ## Patterns are a new vocabulary to learn. Until you know a critical mass of them, it can be hard to trust them. That's the purpose of this guide!
132 ## If there isn't a pattern that does quite what you want, then it might take some ingenuity to combine patterns into new designs. (Custom behaviors can always be written using Proutine.)
135 Using patterns for sequencing might seem to be an advanced usage, but for many uses they are easier than the equivalent code written out step by step. They can serve as a bridge for new and advanced users alike, to represent a musical conception more directly with less connective tissue explicitly stated.
137 The first step in learning a new language is vocabulary, so the next chapter will concentrate on foundational patterns to generate data streams of nearly every sort.
139 section::Patterns versus Streams
141 Some context that is important to keep in mind throughout this discussion is the difference between patterns and streams. In the most general terms:
143 emphasis::Patterns define behavior; streams execute it.::
145 A pattern is like a blueprint for a building, showing how all the parts fit together. The building doesn't exist until the contractors go and do what the plans specify. When a stream is made from a pattern, it follows the plans laid out in the pattern's blueprint. Rendering the plans into a real-world result does not change the blueprint in any way, but to get the result, the stream has to go through different states.
147 A pattern is supposed to describe behavior, and in general, evaluating the pattern (by way of a stream) should not change anything in the Pattern object itself. In computer science terms, patterns are emphasis::stateless::; their definition does not change over time. The stream is what keeps track of where we are in the pattern's evaluation.
149 This explains an easy "gotcha" with patterns -- forgetting to turn the pattern into a stream doesn't get the expected result. Since a pattern doesn't have any concept of a current state, calling code::next:: on it is meaningless, so code::next:: does what it does for most objects: return the receiver object itself. The method code::asStream:: creates the stream conforming to the pattern's specification, and calling code::next:: on the stream advances to its next state and returns the new value.
151 code::
152 p = Pseries(0, 1, 10);
153 p.next; // always returns the Pseries, not actual numbers
155 q = p.asStream;
156 q.next; // calling this repeatedly gets the desired increasing integers
159 There is a concrete benefit to this strict division of labor. Since the stream does not modify the original pattern, any number of streams can be made from the same blueprint. All of those streams maintain their own independent states, and they can operate concurrently without interfering with each other.
161 code::
162 r = p.asStream;
163 r.next; // starts from zero, even though q already gave out some numbers
165 q.next; // resumes where q left off, with no effect from getting values from r
167 [q.next, r.next]        // and so on...
170 Bear these points in mind as we move to the next subject: getting basic types of data (deterministic and random) out of patterns.
173 Next: link::Tutorials/A-Practical-Guide/PG_02_Basic_Vocabulary::