44 lines
773 B
Python
44 lines
773 B
Python
// Class for binding to a TouchOSC interface
|
|
|
|
|
|
TouchOSC {
|
|
var <net, <controls;
|
|
|
|
*new { | ip, port |
|
|
^super.new.init(ip, port)
|
|
}
|
|
|
|
init { | ip, port |
|
|
net = NetAddr(ip, port);
|
|
controls = Dictionary();
|
|
}
|
|
|
|
send { | url ... oargs |
|
|
net.sendMsg(url, *oargs)
|
|
}
|
|
|
|
addbutton { | url, default, apply |
|
|
var ctrl = TouchOSCControl(this, url, apply, default);
|
|
ctrl.init();
|
|
controls.put(url, ctrl);
|
|
^ctrl;
|
|
}
|
|
|
|
addslider { | url, default, scale, apply |
|
|
var ctrl = TouchOSCControlScale(this, url, apply, default, scale);
|
|
ctrl.init();
|
|
controls.put(url, ctrl);
|
|
^ctrl;
|
|
}
|
|
|
|
addxy { | url, default, scale1, scale2, apply |
|
|
var ctrl = TouchOSCControlXY(this, url, apply, default, scale1, scale2);
|
|
ctrl.init();
|
|
controls.put(url, ctrl);
|
|
^ctrl;
|
|
}
|
|
|
|
|
|
}
|
|
|