OSCCore

0.12

A tiny OSC module implementation in Swift
segabor/OSCCore

What's New

Critical fix!

2022-04-07T09:20:39Z

This release fixes a breaking change made in Swift NIO back in 2019
Other notable change is the switch Swift tooling to version 5.4

OSCCore

OSCCore is a OpenSoundControl implementation in pure Swift. It is aimed to run on various platforms, including embedded systems like Raspberry Pi.

Using this module you can easily pass or receive OSC messages, communicate with SuperCollider or other great digital musical instruments. OSC is also great for implmenenting other protocols like TUIO.

Composing OSC Messages

To create a message simply instantiate OSCMessage class, assign address and parameters to it.

let msg = OSCMessage("/instr/osc1", ["frequency", 440.0])

OSC parameters can be any of the following

  • null value: nil
  • boolean values: true, false
  • characters: Character("a")
  • strings
  • numerical values: integers, floats and doubles
  • MIDI and RGBA values
  • OSC symbols: OSCSymbol(label: symbolName)
  • Array of parameters: [Int32(0x12345678), "hello"]
  • Blobs: [UInt8](0xde, 0xad, 0xfa, 0xce)

OSC Bundles

Bundles are mixed list of messages and other bundles. They also carry a time stamp or time tag.

The following bundle when received by SuperCollider will create a new synth instance with the given frequency and amplitude in parameters.

let synthID = Int32(4)

let synthBundle = OSCBundle(timetag: OSCTimeTag.immediate, content: [
    // "/s_new", name, node ID, pos, group ID
    OSCMessage(address: "/s_new", args: ["sine", synthID, Int32(1), Int32(1)]),
    // "/n_set", "amp", sine amplitude
    OSCMessage(address: "/n_set", args: [synthID, "amp", Float32(0.5)]),
    // "/n_set", "freq", sine frequency
    OSCMessage(address: "/n_set", args: [synthID, "freq", Float32(440.0)])
])

Sending and receiving OSC messages

OSCCore is built on top of SwiftNIO, a asynchronous event-driven network application framework developed by Apple.

For examples please see BasicListener and SuperColliderExample projects in Source folder.

Usage

OSCCore is currently provided as Swift PackageManager module. To include OSCCore to your project add the following dependency to your Package.swift file

.Package(url: "https://github.com/segabor/OSCCore.git", majorVersion: 0)

Other dependency managers like CocoaPods or Chartage is under consideration.

Example Code

OSC examples are located under Examples folder

  • BasicListener
  • SuperCollider Example Client

Description

  • Swift Tools 5.5.0
View More Packages from this Author

Dependencies

Last updated: Sat Apr 13 2024 16:45:46 GMT-0900 (Hawaii-Aleutian Daylight Time)