aboutsummaryrefslogtreecommitdiffstats
path: root/Bowelyzer.sc
diff options
context:
space:
mode:
Diffstat (limited to 'Bowelyzer.sc')
-rw-r--r--Bowelyzer.sc17
1 files changed, 9 insertions, 8 deletions
diff --git a/Bowelyzer.sc b/Bowelyzer.sc
index 5708368..3d01b1a 100644
--- a/Bowelyzer.sc
+++ b/Bowelyzer.sc
@@ -1,6 +1,6 @@
Bowelyzer{
- var gui, <server, <analyzer, <config, <hub;
+ var <gui, <server, <analyzer, <config, <hub;
*new{
arg configFile;
@@ -11,20 +11,21 @@ Bowelyzer{
//initialize with configuration, if available (else use default)
arg configFile;
config = BowelyzerConfig.new(configFile);
- server = Server.new(\bowelyzer, BowelyzerOSCHub.getNetAddr(config.config.at("synthServerAddress"), config.config.at("synthServerPort")));
+ server = Server.new(
+ \bowelyzer,
+ BowelyzerOSCHub.getNetAddr(
+ config.config.at(\synthServerAddress),
+ config.config.at(\synthServerPort)
+ )
+ );
Server.default = server;
server.waitForBoot({
hub = BowelyzerOSCHub.new(config.config);
analyzer = BowelyzerAnalyzer.new(config.config);
+ //gui = BowelyzerGUI.new(config.config);
},
5,
{"scsynth failed to start!".postln});
- //meter = ServerMeter.new(server, this.config.config.at(\channels));
- //server.meter(this.config.config.at(\channels));
- //server.makeGUI;
- //server.scope;
}
-
-
}