velcrome / vvvv-Message

The Message Nodes
12 stars 8 forks source link

MsgPack #1

Closed sebllll closed 8 years ago

sebllll commented 10 years ago

https://github.com/scopely/msgpack-sharp

that could be added as alternative for OSC?

velcrome commented 10 years ago

from a first quick look, this might be possible. it's integration is more like the json serializer though.

good find!

velcrome commented 8 years ago

@sebllll i finally found the nerve to address serialisation again, and msgpack is now available for vvvv-Message.

its binary format is the briefest of all serialisations implemented yet, serialisation to Stream is crazy fast. deserialisation is quite expensive still (but a little less than OSC), but maybe utilizing the new MemoryComStream will help in the near future.

The cool thing is, msgpack (like json) fully supports nested messages and all supported Types (including raw, vectors, transform and color). Only Time is still a little bugged right now.