diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-12-09 18:48:17 +0100 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-12-09 18:48:17 +0100 |
commit | c1d38c9c81ab0a4fa5fc669ac7806271b72e0670 (patch) | |
tree | 500dbcd57176f0b23b6ecb31e01a0e1725fdca71 /bundle | |
parent | 4149f55d01fa516f267c0fdca3ebaa766b5b09c3 (diff) | |
download | synthpod-c1d38c9c81ab0a4fa5fc669ac7806271b72e0670.tar.xz |
patcher support subtypes (MIDI, OSC, Time, Patch).
* add support for atom subtypes (MIDI, OSC, Time, Patch) in patcher
* this is based on atom:supports in plugins ttl.
Diffstat (limited to 'bundle')
-rw-r--r-- | bundle/synthpod_bundle.ttl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bundle/synthpod_bundle.ttl b/bundle/synthpod_bundle.ttl index 661ab73a..5a43cc21 100644 --- a/bundle/synthpod_bundle.ttl +++ b/bundle/synthpod_bundle.ttl @@ -28,6 +28,12 @@ @prefix omk: <http://open-music-kontrollers.ch/ventosus#> . @prefix proj: <http://open-music-kontrollers.ch/lv2/> . @prefix synthpod: <http://open-music-kontrollers.ch/lv2/synthpod#> . +@prefix osc: <http://open-music-kontrollers.ch/lv2/osc#> . + +osc:Event + a rdfs:Class ; + rdfs:subClassOf atom:Object ; + rdfs:label "OSC Event (Bundle or Message)" . # system-port definitions synthpod:systemPorts @@ -100,6 +106,7 @@ synthpod:sink atom:AtomPort ; atom:bufferType atom:Sequence ; atom:supports midi:MidiEvent ; + atom:supports osc:Event ; atom:supports atom:Object ; atom:supports time:Position ; atom:supports patch:Message ; @@ -191,6 +198,7 @@ synthpod:source atom:AtomPort ; atom:bufferType atom:Sequence ; atom:supports midi:MidiEvent ; + atom:supports osc:Event ; atom:supports atom:Object ; atom:supports time:Position ; atom:supports patch:Message ; @@ -326,6 +334,7 @@ synthpod:osc_sink synthpod:OSCPort , atom:AtomPort ; atom:bufferType atom:Sequence ; + atom:supports osc:Event ; atom:supports atom:Object ; lv2:index 0 ; lv2:symbol "osc_sink" ; @@ -349,6 +358,7 @@ synthpod:osc_source synthpod:OSCPort , atom:AtomPort ; atom:bufferType atom:Sequence ; + atom:supports osc:Event ; atom:supports atom:Object ; lv2:index 0 ; lv2:symbol "osc_source" ; |