buzzinglight / IanniX

IanniX is a graphical open-source sequencer, based on Iannis Xenakis works, for digital art. IanniX syncs via Open Sound Control (OSC) events and curves to your real-time environment.
http://www.iannix.org
GNU General Public License v3.0
353 stars 41 forks source link

OSC messages limitations #30

Open cyberic99 opened 7 years ago

cyberic99 commented 7 years ago

I would like to use iannix to send OSC messages to another program. While testing it, I have discovered some limitations on the OSC messages: 1) Impossible to include a comma in the message 2) When sending an underscore, like in "my_arg", the underscore is replaced by a space 3) You cannot send more than 10 arguments. While it should be OK for most use cases, would it be possible to raise this limit? 4) Impossible to concatenate some variables. like for example x=cursor_value_x

gjacquemin commented 7 years ago

Hi!

  1. and 2. : yes
  2. you can send more but not with the GUI (with scripts for examples)
  3. you can insert javascript between {}, for example {cursor_value_x*2+cursor_value_y}