cleaning up

This commit is contained in:
2024-05-15 11:59:52 +02:00
parent fa2936404b
commit 5bc1cd641f
4 changed files with 40 additions and 75 deletions

View File

@ -8,11 +8,8 @@ Boot {
*new {
arg configPath, samplePath, serverOptions;
var p; var c; var t; var s; var d; var e; var b;
40.do({Post.nl});
BuboUtils.banner().postln;
Server.killAll;
MIDIClient.init;
if (serverOptions == nil, {
"-> Booting using default server configuration".postln;
@ -68,12 +65,14 @@ Boot {
Safety.setLimit(1);
e = currentEnvironment;
MIDIClient.init;
});
}
*installServerTreeBehavior {
40.do({Post.nl});
CmdPeriod.add({
BuboUtils.stop().postln;
// Printing session state when the session is stopped
@ -82,19 +81,6 @@ Boot {
this.clock.numPeers,
Server.default.avgCPU.round(2),
Server.default.peakCPU.round(2)).postln;
// // This Routine prints the current server state
// Tdef(\log, {
// loop {
// "[TIME: %] | [TP: %/%] | [CPU: % ]".format(
// BuboUtils.timer(),
// TempoClock.default.bar,
// TempoClock.default.beats % TempoClock.default.beatsPerBar + 1,
// Server.default.avgCPU.asInteger
// ).postln;
// 1.0.wait;
// }
// }).play;
}, Server.default);
Event.addEventType(\buboLoopEvent, {

View File

@ -89,10 +89,6 @@
var quant = this.getQuantFromPattern(pattern);
var fade = this.getFadeFromPattern(pattern);
pattern = EventShortener.process(pattern, this.key, 'pmono', 1);
pattern.do({
arg i;
i.postln;
});
this[0] = Pmono(*pattern);
this.prepareToPlay(this, quant, fade);
^this