[Inscore-devel] Some features on MSFT Windows
An environment for the design of INteractive augmented music Scores
Brought to you by:
dfober
From: Trad D. <tr...@ya...> - 2016-10-07 14:44:28
|
Platform Microsoft Windows 10. Using SuperCollider 3.7.2 (seems it uses OSC-1_0) to send messages and Inscore 1.17 (users oscpackwhich does not disclose which specification of OSC it implements), here are a few tests: -------------------- Minimal set up Inscore script:/ITL/scene/* del; /ITL/log show 1; /ITL/scene/cursor set ellipse 0.7 0.7;-------------------- SuperCollider: --------------------------- b = NetAddr.new("127.0.0.1", 7000); // create the NetAddr b.sendMsg("/ITL", "quit"); //Works b.sendMsg("/ITL/scene", "del"); //Works b.sendMsg("/ITL/scene1", "new"); //Works b.sendMsg("/ITL/scene1", "reset"); //Works b.sendMsg("/ITL/scene/cursor", "del");//Works b.sendMsg("/ITL/scene/cursor", "new");//incorrect address if after delete b.sendMsg("/ITL/scene/cursor", "set ellipse 0.07 0.07");//incorrect address if after delete b.sendMsg("/ITL/scene/cursor", "set ellipse 0.07 0.07");//invalid parameter if cursor exists //Attemp to pass parameters one by one. b.sendMsg("/ITL/scene/cursor", "set");//crash the application b.sendMsg("/ITL/scene/cursor", "ellipse"); b.sendMsg("/ITL/scene/cursor", "0.07"); b.sendMsg("/ITL/scene/cursor", "0.07"); In case someone in the list has an intuition. Thanks in advance, Trad. |