2011-04-19 03:25:22 +00:00
# Open Sound Control
2015-08-25 19:59:32 +00:00
This is a common lisp implementation of the Open Sound Control Protocol aka OSC. The code should be close to the ansi standard, and does not rely on any external code/ffi/etc+ to do the basic encoding and decoding of packets. since OSC does not specify a transport layer, messages can be send using TCP or UDP (or carrier pigeons), however it seems UDP is more common amongst the programmes that communicate using the OSC protocol. the osc-examples.lisp file contains a few simple examples of how to send and recieve OSC via UDP, and so far seems reasonably compatible with the packets send from/to max-msp, pd, supercollider and liblo. more details about OSC can be found at https://opensoundcontrol.org/
The devices/examples/osc-device-examples.lisp contains examples of a higher-level API for sending and receiving OSC messages.
2011-04-19 03:25:22 +00:00
the current version of this code is avilable from github
2011-04-19 03:45:08 +00:00
2015-08-25 19:59:32 +00:00
`git clone https://github.com/zzkt/osc`
2011-04-19 03:25:22 +00:00
2015-09-15 14:57:57 +00:00
or via quicklisp.. .
2011-04-19 03:45:08 +00:00
2015-08-25 19:59:32 +00:00
`(ql:quickload "osc")`
2011-04-19 03:25:22 +00:00
## limitations
2011-04-19 03:45:08 +00:00
2015-08-25 19:59:32 +00:00
- will raise an exception if input is malformed
2011-04-19 04:04:51 +00:00
- doesn't do any pattern matching on addresses
2015-08-25 19:59:32 +00:00
- float en/decoding only tested on sbcl, cmucl, openmcl and allegro
2011-04-19 03:25:22 +00:00
- only supports the type(tag)s specified in the OSC spec
## things to do in :osc
2011-04-19 03:45:08 +00:00
2011-04-19 03:25:22 +00:00
- address patterns using pcre
- data checking and error handling
- portable en/decoding of floats -=> ieee754 tests
- doubles and other defacto typetags
## things to do in :osc-ex[tensions|tras]
2011-04-19 03:45:08 +00:00
2022-08-24 15:42:27 +00:00
- liblo like network wrapping
2011-04-19 03:25:22 +00:00
- add namespace exploration using cl-zeroconf
# changes
2015-08-25 19:59:32 +00:00
- 2022-08-22
- version 0.6
- further improvements from jamieforth
2019-04-02 07:35:44 +00:00
- 2019-04-02
- encoder/decoder refactoring from Javier Olaechea @PuercoPop
2017-12-10 13:24:16 +00:00
- 2017-12-10
2019-04-02 07:35:44 +00:00
- osc-examples use usocket for portability from @boqs
2015-09-15 15:04:25 +00:00
- 2015-08-25
- support for 64bit ints from Erik Ronström https://github.com/erikronstrom
2015-08-25 19:59:32 +00:00
- 2015-08-21
- implement nested bundles
2011-04-19 03:25:22 +00:00
- 2011-04-19
- converted repo from darcs->git
2015-08-25 19:59:32 +00:00
- 2010-09-25
- add osc-devices API from jamieforth
- 2010-09-10
- timetag improvements from jamieforth https://github.com/jamieforth/osc
2011-04-19 03:25:22 +00:00
- 2007-02-20
- version 0.5
2022-08-24 15:42:27 +00:00
- Allegro CL float en/decoding from vincent akkermans < vincent.akkermans @ gmail . com >
2011-04-19 03:25:22 +00:00
- 2006-02-11
- version 0.4
2022-08-24 15:42:27 +00:00
- partial timetag implementation
2011-04-19 03:25:22 +00:00
- 2005-12-05
- version 0.3
- fixed openmcl float bug (decode-uint32)
2022-08-24 15:42:27 +00:00
- 2005-11-29
2011-04-19 03:25:22 +00:00
- version 0.2
- openmcl float en/decoding
- 2005-08-12
- corrections from Matthew Kennedy < mkennedy @ gentoo . org >
- 2005-08-11
- version 0.1
- 2005-03-16
- packaged as an asdf installable lump
- 2005-03-11
- bundle and blob en/de- coding
- 2005-03-05
- 'declare' scattering and other optimisations
2022-08-24 15:42:27 +00:00
- 2005-02-08
2011-04-19 03:25:22 +00:00
- in-package'd
- basic dispatcher
- 2005-03-01
- fixed address string bug
2022-08-24 15:42:27 +00:00
- 2005-01-26
2011-04-19 03:25:22 +00:00
- fixed string handling bug
2022-08-24 15:42:27 +00:00
- 2005-01-24
2011-04-19 03:25:22 +00:00
- sends and receives multiple arguments
- tests in osc-tests.lisp
2022-08-24 15:42:27 +00:00
- 2004-12-18
2011-04-19 03:25:22 +00:00
- initial version, single args only