Swiftpack.co - coniferprod/SugiKit as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by coniferprod.
coniferprod/SugiKit 0.14.0
Package for Sugi with support for Kawai K4 patch data model
⭐️ 0
🕓 3 weeks ago
iOS macOS
.package(url: "https://github.com/coniferprod/SugiKit.git", from: "0.14.0")

SugiKit

Patch data model and System Exclusive message parser generator for the Kawai K4 digital synthesizer.

Implementation notes

Dependencies

SyxPack

System Exclusive data generation

All types that contribute to the MIDI System Exclusive data format conform to the SystemExclusiveData protocol. Most such types also have a data property, which can be used to collect the data for inclusion into the System Exclusive data, and for calculating a checksum as necessary.

Enumerated types

Many of the synth parameter values are modeled with enumerated types. To make the parsing of System Exclusive messages easier the types have an optional initializer that takes an integer value representing the corresponding byte from SysEx. For example, the LFO.Shape type has:

init?(index: Int) {
    switch index {
    case 0: self = .triangle
    case 1: self = .sawtooth
    case 2: self = .square
    case 3: self = .random
    default: return nil
    }
}

If the value passed in represents a valid enumeration case, it is used for initializing the object. Otherwise nil is returned.

To make generating SysEx messages easier, these enumerated types conform to the CaseIterable protocol which has been extended with a method that returns the index of the enumeration value:

extension CaseIterable where Self: Equatable {
    var index: Self.AllCases.Index? {
        return Self.allCases.firstIndex { self == $0 }
    }
}

Why this instead of rawValue? Can't remember.

RangedInt

Many of the synth parameters are expressed as an immutable struct that conforms to the RangedInt protocol.

Generating System Exclusive messages

Most synth blocks have a computed property data that provides the raw bytes needed for the generated System Exclusive message. It returns the bytes in the required format as a ByteArray.

The actual SysEx message is constructed using the function asData defined in the SystemExclusiveData protocol. It collects the bytes, often using the data computed property, and adds the checksum:

public var systemExclusiveData: ByteArray {
    var buf = ByteArray()
    let d = self.data
    buf.append(contentsOf: d)
    buf.append(checksum(bytes: d))
    return buf
}

GitHub

link
Stars: 0
Last commit: 3 weeks ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics