summaryrefslogtreecommitdiffstats
path: root/scripts/supercollider/example.sc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-02-24 20:07:29 +0000
committerDavid Robillard <d@drobilla.net>2015-02-24 20:07:29 +0000
commitf69c75e637cc3c789a675d1811a2f632732bafc0 (patch)
treeb82b69f45d6c92ae3c7000cc465ee18bfa0bbb15 /scripts/supercollider/example.sc
parent9d7c1e971d51561c4bb28fa1064503e5f266908f (diff)
downloadingen-f69c75e637cc3c789a675d1811a2f632732bafc0.tar.gz
ingen-f69c75e637cc3c789a675d1811a2f632732bafc0.tar.bz2
ingen-f69c75e637cc3c789a675d1811a2f632732bafc0.zip
Remove crusty old internal bindings.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5608 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'scripts/supercollider/example.sc')
-rw-r--r--scripts/supercollider/example.sc27
1 files changed, 0 insertions, 27 deletions
diff --git a/scripts/supercollider/example.sc b/scripts/supercollider/example.sc
deleted file mode 100644
index 80a72a7b..00000000
--- a/scripts/supercollider/example.sc
+++ /dev/null
@@ -1,27 +0,0 @@
-// Boot Ingen (inside SC) and the scsynth server
-(
-o=Ingen.boot {
- o.loadPatch("/home/mlang/src/om-synth/src/clients/patches/303.om");
- s.boot;
-}
-)
-// Connect patch output to one SC input
-o.jackConnect("/303/output", "SuperCollider:in_3");
-// Play this input on the default output bus (most simple postprocessor)
-{AudioIn.ar(3).dup}.play;
-// A simple 303 pattern
-(
-Tempo.bpm=170;
-Ppar([
- Pbind(\type, \om, \target, o.getPatch("/303",true),
- \dur, 1/1, \octave,2,\degree, Pseq([Pshuf([0,2,4,6],16)],2)),
- Pbind(\type, \om, \target, o.getPatch("/303",true),
- \dur, Prand([Pshuf([1/2,1/4,1/4],4),Pshuf([1/3,1/3,1/6,1/6],4)],inf),
- \legato, Prand((0.5,0.55..0.9),inf),
- \octave,3,\degree, Pseq([Pshuf([0,2,4,6],2)],40)),
- Pbind(\type, \om, \omcmd, \setPortValue,
- \target, o.getPort("/303/cutoff",true),
- \dur, 1/10, \portValue, Pseq((0,0.005..1).mirror,2)),
- Pbind(\type, \om, \omcmd, \setPortValue,
- \target, o.getPort("/303/resonance",true), \portValue, 1)]).play(quant:4)
-)