Skip to content

Instantly share code, notes, and snippets.

@mikesol
Last active December 18, 2016 16:39
Show Gist options
  • Save mikesol/a12c94612d893054f7f693c950d5908d to your computer and use it in GitHub Desktop.
Save mikesol/a12c94612d893054f7f693c950d5908d to your computer and use it in GitHub Desktop.
le ballon rouge - 1er brouillon
MIDIClient.init;
MIDIClient.sources;
MIDIIn.connect; // init for one port midi interface
MIDIIn.removeFuncFrom(\control, ~controlKludge);
~current = 0;
~controlKludge = { arg src, chan, num, val;
if (val == 127, {
[chan,num,val].postln;
if (num == 0 || num == 2, {
"stop".postln;
s.freeAll;
CmdPeriod.run;
~buildWorld.value;
~current = ~current - 1;
if (~current < 0, {~current=0});
});
if (num==2 || num==3,{
("restart or start: " ++ ~current).postln;
~redballon.at(\ORDRE)[~current][1].at(\action).value;
~current = ~current + 1;
});
m = NetAddr("192.168.0.101", 9000); // loopback
if (~current > 0, {
m.sendMsg("/1/label8/text", ~redballon.at(\ORDRE)[~current - 1][1].at(\name));
}, {
m.sendMsg("/1/label8/text", "NEANT GEANT, NUL, ZERO");
});
"current ".post;
~current.postln;
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment