Manual 3.1 OSC changes

The changes in OSC made in 3.1 are not documented. This should done in the next revision, or a separate manual for Show Control.

Parents Reply Children
  • Following items are generally missing:
    - explanation for /eos/filter/
    for 3.1:
    - explicit output extensions
      - /eos/out/previous/cue/text
      - /eos/out/active/wheel/ Float argument added for the value

  • also missing detailed description of implicit output when subscribed
    - /eos/out/param/<parameter> gives 3 float arguments: value, min value, max value

  • Thanks for the elaborate OSC support, Matt, much appreciated!!

    Sadly, when requesting augment3d position data I'm running into trouble.
    Sending e.g. "/eos/get/patch/1/1/augment3d/position" EOS Nomad (3.1.0 build 282, on Win10) replies:
    [with the UUID replaced for better readability]

    /eos/out/get/patch/1/1/list/0/21, -1(i), [...way more stuff...]
    /eos/out/get/patch/1/1/notes, -1(i), [UUID](s), (s)
    /eos/out/get/patch/1/1/augment3d/position, -1(i), [UUID](s), -4.000(d), 4.000(d), 2.000(d), 0.000(d), 0.000(d), 0.000(d), -1(i)
    /eos/out/get/patch/1/1//augment3d/beam, -1(i), [UUID](s), 0.000(f), (s), 4(i), 0.000(f), 0.000(f), 0.000(f), 0.000(f), 0.000(f), 0.000(f), 0.000(f), 0.000(f), (s), (s), 0.000(f), False(F)

    Issues here:
    * Only position is needed, but a massive overhead of data returned. Requesting this for some 30 fixtures is overkill.
    * Even the actual position message is rather wordy, due to the UUID
    * The "beam" information contains a double backslash (by design??).

    Would it be possible to get only the data that one can set through "/eos/set/patch/<chan>/augment3d/position" : the xyz coordinates + xyz orientations? That is really all that is needed.
    And I might be overstretching my luck here, but would it be possible to get those coordinates and orientations as Floats (f), instead of Doubles(d)? The software I'm using (vvvv) doesn't accept Double, which really is my core issue. So far anywhere floating point numbers are used in EOS those seem Float, why not have Float here too?! :)

  • OSC doesn't support Double, so I expect this is just a mistake.

    Numbers are either Float32 or Int32

  • Would it be possible to get only the data that one can set through "/eos/set/patch/<chan>/augment3d/position" : the xyz coordinates + xyz orientations? That is really all that is needed.

    Please don't change the data that's being output from this command. Thanks!

  • The use of Doubles and the '//' appear to be oversights from when this feature was implemented for v3.1.0.  They will be addressed in a future version of Eos software.

    The UUID's are always supplied so that the receiving device can keep data in sync.  The UUID is the "name" of the thing and is not changed when you change its position or channel assignment or other data.  So, if channel 1 is changed to become channel 97, its position and other data aren't changed and the receiving device can stay in sync.

  • Thanks.

    (I get the reasoning behind of the UUID and the other data, and can see the use in some scenarios. But having worked as a developer many years ago, I'm also in mortal fear of data overhead in repeating  multidimensional data :))

  • Just to clarify the record. Double is not a standard OSC type, but it is supported as a non-standard type. Many libraries don't support it though.

  • /eos/out/param/<parameter>  would be ace to have! It is dearly&surprisingly missed.

Related