‹ Yamaguchi Shanghai ›

SC Multiple Apps

2008-10-31 04:57 supercollider

During a recent gig, I suddenly felt a need to crossfade between two songs/patches (strange as it seems). As I'd coded my music using RedMst and it, in turn, makes heavy use of class methods, starting up a new song would disrupt the current music playing (tempo, current index, etc). I also had some global effects running on bus 0 and 1 (ReplaceOut) that belonged to a particular song and I didn't want those for the new one.

So how to isolate patches? I got the idea of running two copies of the SuperCollider application at the same time. They'd be identical, use the same soundcard and share class library. Having two apps running would also be good for safety reasons. If one crashed I could keep on playing with the other. It turned out to be quite easy. The trick is to use the internal server and find a way to visually tell the two applications apart.

Dan Stowell helped me by implementing thisProcess.pid and I got some great tips from Cylob. He used a similar setup for his live performances. Here's my take on it... (you'll need a recent version of SuperCollider (>30 Oct '08)

  1. put the code below into your startup.rtf file. It'll make the secondary app green and shift windows to the right - this only so one can tell them apart.
  2. go to SuperCollider application folder and duplicate the program file (cmd+d). Rename the copy "SuperCollider (green)". Remember to duplicate again when you've updated your main SuperCollider app.
  3. important: from now on use internal as the default server in your code. Localhost will crosstalk when running multiple apps.

So with a simple duplicate command and minimal change to SuperCollider itself (just for cosmetic difference), I can now crossfade my songs.

//put this in startup.rtf...

//--detect secondary application and colour it green
var p, l;
~green= false;
p= Pipe("ps -xw | grep 'SuperCollider (green)' | grep -v grep | awk '{print $1}'", "r");
l= p.getLine;
if(l.notNil and:{l.asInteger==thisProcess.pid}, {~green= true});
p.close;

if(~green.not, {  //for main app (red)
  GUI.skins.put(\redFrik, (
    background: Color.red.alpha_(0.8),
    foreground: Color.black,
    selection: Color.grey,
    unfocus: 0.9,
    fontSpecs: ["Monaco", 9],
    offset: Point(0, 0)
  ));
}, {  //for secondary app (green)
  GUI.skins.put(\redFrik, (
    background: Color.green.alpha_(0.8),
    foreground: Color.black,
    selection: Color.grey,
    unfocus: 0.9,
    fontSpecs: ["Monaco", 9],
    offset: Point(455, 0)
  ));
  Document.listener.background_(GUI.skins.redFrik.background.blend(Color.grey(0.9), 0.9));
  Document.initAction_{|doc| doc.background_(GUI.skins.redFrik.background.blend(Color.grey(0.9), 0.9))};
  Server.set.do{|x|
    x.window.bounds= x.window.bounds.moveBy(GUI.skins.redFrik.offset.x, 0);
    x.window.view.background_(GUI.skins.redFrik.background.blend(Color.grey(0.9), 0.9));
  };

});
Document.listener.bounds_(Rect(GUI.skins.redFrik.offset.x, GUI.window.screenBounds.height-580, 450, 580));

‹ Yamaguchi Shanghai ›