https://github.com/zzkt/osc
a common lisp implementation of the Open Sound Control protocol aka OSC
https://github.com/zzkt/osc
opensoundcontrol osc
Last synced: 3 months ago
JSON representation
a common lisp implementation of the Open Sound Control protocol aka OSC
- Host: GitHub
- URL: https://github.com/zzkt/osc
- Owner: zzkt
- License: gpl-3.0
- Created: 2011-04-19T03:28:48.000Z (about 14 years ago)
- Default Branch: core
- Last Pushed: 2024-06-05T09:01:56.000Z (12 months ago)
- Last Synced: 2025-02-25T00:33:31.549Z (3 months ago)
- Topics: opensoundcontrol, osc
- Language: Common Lisp
- Homepage:
- Size: 196 KB
- Stars: 36
- Watchers: 4
- Forks: 9
- Open Issues: 9
-
Metadata Files:
- Readme: README.org
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
# -*- mode: org; coding: utf-8; -*-
#+title: Open Sound ControlThis 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. [[https://www.rfc-editor.org/rfc/rfc2549][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
#+BEGIN_SRC shell
git clone https://github.com/zzkt/osc
#+END_SRCor via quicklisp.. .
#+BEGIN_SRC lisp
(ql:quickload "osc")
#+END_SRCor guix
#+BEGIN_SRC shell
guix install cl-osc
#+END_SRC** OSC 1.0 and 1.1 support
This implementation supports the [[https://opensoundcontrol.stanford.edu/spec-1_0.html][OpenSoundControl Specification 1.0]] and the required typetags listed in the [[https://opensoundcontrol.stanford.edu/spec-1_1.html][OpenSoundControl Specification 1.1]] (as described in an [[https://opensoundcontrol.stanford.edu/files/2009-NIME-OSC-1.1.pdf][NIME 2009 paper]]). Some optional types are supported.
| *Type tag* | *type* | *description* | *v1.0* | *v1.1* | *cl-osc* |
| i | int32 | 32-bit big-endian two’s 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 two’s 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=
** Platform supportcurrently supported and/or tested OS and CL platforms (platform names from github CI & roswell)
| | macos-latest | ubuntu-latest | windows-latest |
| sbcl | 🟢 | 🟢 | 🟢 |
| ccl-bin | 🟡 (x86_64 only) | 🟢 | 🟢 |
| ecl | 🟢 | 🟢 | ? |
| allegro | ? | 🟡 | ? |
| other? | ? | ? | ? |