a common lisp implementation of the Open Sound Control protocol aka OSC
Go to file

README.org

This is a lisp implementation of the Open Sound Control protocol (or more accurately “data transport specification” or “encoding”). The code should be close to ANSI standard common lisp and provides self contained code for encoding and decoding of OSC data, messages, and bundles. Since OSC describes a transport independent encoding (and does not specify a transport layer) messages can be send using TCP, UDP or other network protocols (e.g. RFC 2549). It seems UDP is more common amongst programmes that communicate using OSC and. the osc-examples.lisp file contains a few simple examples of how to send and receive OSC via UDP. The examples are 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 current version of this code is available from github

git clone https://github.com/zzkt/osc

or via quicklisp.. .

(ql:quickload "osc")

OSC 1.0 and 1.1 support

This implementation supports the OpenSoundControl Specification 1.0 and the required typetags listed in the OpenSoundControl Specification 1.1 (as described in an NIME 2009 paper ). Some optional types are supported.

Type tag type description v1.0 v1.1 cl-osc
i int32 32-bit big-endian twos complement integer R R YES
f float32 32-bit big-endian IEEE 754 floating point number R R YES
s OSC-string A sequence of non-null ASCII characters followed by a null… R
followed by 0-3 additional null characters. Total bits is a multiple of 32. R N YES
b OSC-blob An int32 size count, followed by that many 8-bit bytes of arbitrary binary data… R
followed by 0-3 additional zero bytes. Total bits is a multiple of 32. R N YES
T True No bytes are allocated in the argument data. O R
F False No bytes are allocated in the argument data. O R
N Null (aka nil, None, etc). No bytes are allocated in the argument data. O R
I Impulse (aka “bang”), used for event triggers. No bytes are allocated in the argument data. O R
t OSC-timetag an OSC timetag in NTP format, encoded in the data section O R
h int64 64 bit big-endian twos complement integer O O YES
d float64 64 bit (“double”) IEEE 754 floating point number O O YES
S OSC-string Alternate type represented as an OSC-string (e.g to differentiate “symbols” from “strings”) O O YES
c an ascii character, sent as 32 bits O O
r 32 bit RGBA color O O
m 4 byte MIDI message. Bytes from MSB to LSB are: port id, status byte, data1, data2 O O
[ Indicates the beginning of an array. The tags following are for data in the Array. O O YES?
] Indicates the end of an array. O O YES?
  • Required, Optional and Not supported (or Not required).
  • data is encoded as (vector (unsigned 8)) by cl-osc

nik gaffney 2c7076d469
Merge pull request #21 from byulparan/develop
Fix conditional build to `encode-float32` for sbcl
2024-01-27 18:00:54 +01:00
.github/workflows Update ci.yaml 2024-01-02 14:51:52 +01:00
AUTHORS LLGPL → GPLv3 #12 2023-12-28 19:29:47 +01:00
LICENSE LLGPL → GPLv3 #12 2023-12-28 19:29:47 +01:00
README.org synchroscope (part 3) 2024-01-02 00:43:53 +01:00
osc-dispatch.lisp toscanite 2006-04-05 18:33:33 +08:00
osc-examples.lisp remind user of the docs of ip addr syntax 2017-12-01 09:47:42 -08:00
osc-tests.lisp moschatels (ints) 2024-01-02 20:15:28 +01:00
osc.asd synchroscope (part 2) 2023-12-31 17:33:12 +01:00
osc.lisp fixed conditional build to encode-float32 for sbcl 2024-01-24 19:03:54 +09:00