1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
Score {
var <>score, routine, isPlaying = false;
classvar <>program, <>options;
*initClass {
options = ServerOptions.new;
}
*new { arg list;
^super.new.init(list);
}
*newFromFile { arg path;
var list;
list = thisProcess.interpreter.executeFile(path);
^super.new.init(list);
}
init { arg list;
score = [[0.0, ["/g_new", 1, 0, 0]]] ++ list;
this.sort;
}
add { arg bundle;
score = score.add(bundle)
}
*playFromFile { arg path, server;
var list;
list = thisProcess.interpreter.executeFile(path);
^this.new(list).play(server);
}
*play { arg list, server;
^this.new(list).play(server);
}
sort {
score = score.sort({ arg a, b; b[0] >= a[0] });
}
play { arg server, clock, quant=0.0;
var size, osccmd, timekeep, inserver, rout;
isPlaying.not.if({
inserver = server ? Server.default;
size = score.size;
timekeep = 0;
routine = Routine({
size.do { |i|
var deltatime, msg;
osccmd = score[i];
deltatime = osccmd[0];
msg = osccmd.copyToEnd(1);
(deltatime-timekeep).wait;
inserver.listSendBundle(inserver.latency, msg);
timekeep = deltatime;
};
isPlaying = false;
});
isPlaying = true;
routine.play(clock, quant);
}, {"Score already playing".warn;}
);
}
endTime { ^score.last[0] }
startTime { ^score.first[0] }
section { arg start = 0, end, configevents;
var sectionlist;
if(end.isNil) { end = this.endTime };
sectionlist = Array.new;
score.do { arg item;
if(item[0].inclusivelyBetween(start, end)) {
item = item.copy;
item[0] = item[0] - start;
sectionlist = sectionlist.add(item);
}
};
sectionlist = sectionlist.add([end - start, [0]]); // add dummy command (cmd_none)
if(configevents.notNil,
{if(configevents.isArray,
{if(configevents[0] == 0.0,
{sectionlist = sectionlist.addFirst(configevents)},
{"Configuration events should have a timestamp of 0.0".warn; ^nil})},
{"Configuration events need to be a bundle array: [time, [events]]".warn;
^nil})});
^this.class.new(sectionlist);
}
writeOSCFile { arg path, from, to, clock;
if(to.notNil or: {from.notNil}) {
from = from ? 0.0;
to = to ? this.endTime;
this.section(from, to).write(path, clock)
} {
this.write(path, clock)
};
}
recordNRT { arg oscFilePath, outputFilePath, inputFilePath, sampleRate = 44100, headerFormat =
"AIFF", sampleFormat = "int16", options, completionString="", duration = nil, action = nil;
if(oscFilePath.isNil) {
oscFilePath = PathName.tmp +/+ "temp_oscscore" ++ UniqueID.next;
};
this.writeOSCFile(oscFilePath, 0, duration);
unixCmd(program + " -N" + oscFilePath.quote
+ if(inputFilePath.notNil, { inputFilePath.quote }, { "_" })
+ outputFilePath.quote
+ sampleRate + headerFormat + sampleFormat +
(options ? Score.options).asOptionsString
+ completionString, action);
}
*recordNRT { arg list, oscFilePath, outputFilePath, inputFilePath, sampleRate = 44100,
headerFormat = "AIFF", sampleFormat = "int16", options, completionString="", duration = nil, action = nil;
this.new(list).recordNRT(oscFilePath, outputFilePath, inputFilePath, sampleRate,
headerFormat, sampleFormat, options, completionString, duration, action);
}
stop {
isPlaying.if({routine.stop; isPlaying = false; routine = nil;}, {"Score not playing".warn;}
);
}
*writeFromFile { arg path, oscFilePath, clock;
var list;
list = thisProcess.interpreter.executeFile(path);
this.write(list, oscFilePath, clock);
}
*write { arg list, oscFilePath, clock;
var osccmd, f, tempoFactor;
f = File(oscFilePath, "w");
if(f.isOpen.not) {
Error("Failed to write OSC score file: Could not open % for writing".format(oscFilePath)).throw;
};
tempoFactor = (clock ? TempoClock.default).tempo.reciprocal;
protect {
list.size.do { |i|
var msg = list[i].copy;
msg[0] = msg[0]* tempoFactor;
osccmd = msg.asRawOSC;
f.write(osccmd.size).write(osccmd);
};
}{
f.close;
};
//"done".postln;
}
write { arg oscFilePath, clock;
this.class.write(score, oscFilePath, clock);
}
saveToFile { arg path;
var f;
f = File.new(path, "w");
if(f.isOpen.not) {
Error("Failed to write Score to text: Could not open % for writing".format(path)).throw;
};
f.putString("[ // SuperCollider Score output " ++ Date.getDate ++ "\n");
score.do{ arg me;
f.putString((me).asCompileString ++ ",\n");
};
f.putString("]");
f.close;
}
storeArgs {
^score
}
asScore {}
}
|