summaryrefslogtreecommitdiffstats
path: root/bundles/ingen.lv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-04-03 17:10:58 +0000
committerDavid Robillard <d@drobilla.net>2015-04-03 17:10:58 +0000
commite1ea99192e10149e0cac7a93f98fbec20e7cedb2 (patch)
tree97d8d9e63b6d2085c2b49e71fc2183c8058b4533 /bundles/ingen.lv2
parentac888fe3cb4a7bdf0f43e9474160e3b525edf774 (diff)
downloadingen-e1ea99192e10149e0cac7a93f98fbec20e7cedb2.tar.gz
ingen-e1ea99192e10149e0cac7a93f98fbec20e7cedb2.tar.bz2
ingen-e1ea99192e10149e0cac7a93f98fbec20e7cedb2.zip
Use lv2:prototype and deprecate ingen:prototype.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5652 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'bundles/ingen.lv2')
-rw-r--r--bundles/ingen.lv2/ingen.ttl84
-rw-r--r--bundles/ingen.lv2/internals.ttl10
2 files changed, 56 insertions, 38 deletions
diff --git a/bundles/ingen.lv2/ingen.ttl b/bundles/ingen.lv2/ingen.ttl
index accc9235..3f0e16f1 100644
--- a/bundles/ingen.lv2/ingen.ttl
+++ b/bundles/ingen.lv2/ingen.ttl
@@ -13,129 +13,143 @@ ingen:
owl:imports <http://lv2plug.in/ns/lv2core> ;
doap:name "Ingen Ontology" ;
rdfs:label "Ingen Ontology" ;
- rdfs:comment """Describes graphs of signal processing blocks which process audio, MIDI, and other signals or messages. With appropriate plugins, these graphs can describe modular synthesizers, effects processors, and other signal processing devices.""" .
+ rdfs:comment "Describes graphs of signal processing blocks which process audio, MIDI, and other signals or messages. With appropriate plugins, these graphs can describe modular synthesizers, effects processors, and other signal processing devices." .
ingen:Plugin
- a owl:Class ;
+ a rdfs:Class ;
rdfs:label "Plugin" ;
rdfs:comment """A class which can be instantiated into a ingen:Block. A plugin has a set of input and output "ports". In practice this class is semantically equivalent to lv2:Plugin, it only exists to allow the ingen ontology to be useful for "plugins" that aren't semantically LV2 plugins. See the LV2 specification for details about the required properties (rdf:type, doap:name, doap:license, and lv2:port). """ .
ingen:Graph
- a owl:Class ;
+ a rdfs:Class ;
rdfs:subClassOf ingen:Plugin ;
rdfs:label "Graph" ;
- rdfs:comment """A collection of Blocks connected together. A Graph can itself be a Block within a parent Graph, and so on.""" .
+ rdfs:comment "A collection of Blocks connected together. A Graph can itself be a Block within a parent Graph, and so on." .
ingen:file
- a owl:DatatypeProperty ;
+ a rdf:Property ,
+ owl:DatatypeProperty ;
rdfs:domain ingen:Graph ;
rdfs:range xsd:anyURI ;
rdfs:label "file" ;
rdfs:comment "The file a Graph was loaded from." .
ingen:canvasX
- a owl:DatatypeProperty ;
+ a rdf:Property ,
+ owl:DatatypeProperty ;
rdfs:range xsd:decimal ;
rdfs:label "canvas X" ;
rdfs:comment "The X coordinate of an item on a canvas." .
ingen:canvasY
- a owl:DatatypeProperty ;
+ a rdf:Property ,
+ owl:DatatypeProperty ;
rdfs:range xsd:decimal ;
rdfs:label "canvas Y" ;
rdfs:comment "The Y coordinate of an item on a canvas." .
ingen:block
- a owl:ObjectProperty ;
+ a rdf:Property ,
+ owl:ObjectProperty ;
rdfs:domain ingen:Graph ;
rdfs:range ingen:Block ;
rdfs:label "block" ;
rdfs:comment "Signifies a graph contains some block." .
ingen:polyphony
- a owl:DatatypeProperty ;
+ a rdf:Property ,
+ owl:DatatypeProperty ;
rdfs:domain ingen:Graph ;
rdfs:range xsd:integer ;
rdfs:label "polyphony" ;
rdfs:comment """The amount of polyphony in a Graph. This defines the number of voices present on all :polyphonic children of this graph. Because a Graph is also a Block, a Graph may have both :polyphony and :polyphonic properties. These specify different things: :polyphony specifies the voice count of the Graph's children, and :polyphonic specifies whether the graph is seen as polyphonic to the Graph's parent.""" .
ingen:sprungLayout
- a owl:DatatypeProperty ;
+ a rdf:Property ,
+ owl:DatatypeProperty ;
rdfs:domain ingen:Graph ;
rdfs:range xsd:boolean ;
rdfs:label "sprung layout" ;
rdfs:comment """Whether or not the graph has a "sprung" force-directed layout.""" .
ingen:value
- a owl:DatatypeProperty ;
+ a rdf:Property ,
+ owl:DatatypeProperty ;
rdfs:domain lv2:Port ;
rdfs:label "value" ;
rdfs:comment "The current value of a port." .
ingen:Internal
- a owl:Class ;
+ a rdfs:Class ;
rdfs:subClassOf ingen:Plugin ;
rdfs:label "Internal" ;
- rdfs:comment "An internal 'plugin'" .
+ rdfs:comment """An internal 'plugin'""" .
ingen:Node
- a owl:Class ;
+ a rdfs:Class ;
rdfs:label "Node" ;
- rdfs:comment """An element of a Graph. A Node always has a valid path and symbol, with the possible exception of the root graph which may not have a symbol depending on context. Ingen uses restricted paths and/or URIs built from valid lv2:symbol components, so the symbol of a Node may be inferred from its URI if no explicit lv2:symbol property is given.""" .
+ rdfs:comment "An element of a Graph. A Node always has a valid path and symbol, with the possible exception of the root graph which may not have a symbol depending on context. Ingen uses restricted paths and/or URIs built from valid lv2:symbol components, so the symbol of a Node may be inferred from its URI if no explicit lv2:symbol property is given." .
ingen:uiEmbedded
- a owl:DatatypeProperty ;
+ a rdf:Property ,
+ owl:DatatypeProperty ;
rdfs:range xsd:boolean ;
rdfs:label "UI embedded" ;
- rdfs:comment "Whether or not the block's GUI is embedded." .
+ rdfs:comment """Whether or not the block's GUI is embedded.""" .
lv2:Port
a rdfs:Class ;
rdfs:subClassOf ingen:Node .
ingen:activity
- a owl:DatatypeProperty ;
+ a rdf:Property ,
+ owl:DatatypeProperty ;
rdfs:domain lv2:Port ;
rdfs:label "activity" ;
- rdfs:comment """Transient activity. This property is used in the protocol to communicate activity at ports, such as MIDI events or audio peaks. It should never be stored in persistent data.""" .
+ rdfs:comment "Transient activity. This property is used in the protocol to communicate activity at ports, such as MIDI events or audio peaks. It should never be stored in persistent data." .
ingen:broadcast
- a owl:DatatypeProperty ;
+ a rdf:Property ,
+ owl:DatatypeProperty ;
rdfs:domain lv2:Port ;
rdfs:range xsd:boolean ;
rdfs:label "broadcast" ;
rdfs:comment """Whether or not the port's value or activity should be broadcast to clients.""" .
ingen:polyphonic
- a owl:DatatypeProperty ;
+ a rdf:Property ,
+ owl:DatatypeProperty ;
rdfs:range xsd:boolean ;
rdfs:label "polyphonic" ;
rdfs:comment """Signifies this node should be replicated when it is part of a polyphonic graph. The amount of polyphony (i.e. the number of voices) is determined by the ingen:polyphony property of the containing graph. This is a boolean property which defines whether the parent can access each voice individually: All nodes within a graph are either polyphonic or not from their parent's perspective. An Node may itself have "internal" polyphony but not be polyphonic according to this property, if those voices are mixed down.""" .
ingen:Block
- a owl:Class ;
+ a rdfs:Class ;
rdfs:subClassOf ingen:Node ,
lv2:PluginBase ;
rdfs:label "Block" ;
rdfs:comment """A signal processing block, which is typically either a plugin instance, or a graph.
-A block MUST have at least one ingen:prototype property which is a subclass of lv2:Plugin. When there are many such properties, an applications SHOULD use the most specific class it understands.""" .
+A block MUST have at least one lv2:prototype property which is a subclass of lv2:Plugin. When there are many such properties, an applications SHOULD use the most specific class it understands.""" .
ingen:enabled
- a owl:DatatypeProperty ;
+ a rdf:Property ,
+ owl:DatatypeProperty ;
rdfs:domain ingen:Block ;
rdfs:range xsd:boolean ;
rdfs:label "enabled" ;
rdfs:comment "Signifies the block is or should be running." .
ingen:prototype
- a owl:ObjectProperty ;
+ a rdf:Property ,
+ owl:ObjectProperty ;
+ owl:deprecated true ;
rdfs:domain ingen:Block ;
rdfs:label "prototype" ;
- rdfs:comment """The object which this block is an instance of, or derived from.""" .
+ rdfs:comment "The object which this block is an instance of, or derived from." .
ingen:Arc
- a owl:Class ;
+ a rdfs:Class ;
rdfs:label "Arc" ;
rdfs:subClassOf [
a owl:Restriction ;
@@ -150,17 +164,19 @@ ingen:Arc
owl:cardinality 1 ;
rdfs:comment "MUST have exactly one head which is a lv2:Port."
] ;
- rdfs:comment """A connection between two ports. Graphs have a set of arcs which define how its component blocks and ports are connected.""" .
+ rdfs:comment "A connection between two ports. Graphs have a set of arcs which define how its component blocks and ports are connected." .
ingen:arc
- a owl:ObjectProperty ;
+ a rdf:Property ,
+ owl:ObjectProperty ;
rdfs:domain ingen:Graph ;
rdfs:range ingen:Arc ;
rdfs:label "arc" ;
rdfs:comment "An arc contained in this graph." .
ingen:tail
- a owl:ObjectProperty ,
+ a rdf:Property ,
+ owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ingen:Arc ;
rdfs:range lv2:Port ;
@@ -168,7 +184,8 @@ ingen:tail
rdfs:comment "The source/sending port of this arc" .
ingen:head
- a owl:ObjectProperty ,
+ a rdf:Property ,
+ owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ingen:Arc ;
rdfs:range lv2:Port ;
@@ -176,8 +193,9 @@ ingen:head
rdfs:comment "The destination/receiving/sink port of this arc" .
ingen:incidentTo
- a owl:ObjectProperty ,
+ a rdf:Property ,
+ owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain ingen:Arc ;
rdfs:label "incident to" ;
- rdfs:comment """A special property used to describe any arc incident to a port or block. This is never saved in graph files, but is used in the control protocol to completely disconnect a Block or Port.""" .
+ rdfs:comment "A special property used to describe any arc incident to a port or block. This is never saved in graph files, but is used in the control protocol to completely disconnect a Block or Port." .
diff --git a/bundles/ingen.lv2/internals.ttl b/bundles/ingen.lv2/internals.ttl
index b4e713b3..b95073ec 100644
--- a/bundles/ingen.lv2/internals.ttl
+++ b/bundles/ingen.lv2/internals.ttl
@@ -8,26 +8,26 @@
@prefix xsd: <http://www.w3.org/2001/XMLSchema> .
internals:Controller
- a ingen:Plugin ;
+ a ingen:Internal ;
rdfs:label "Controller" ;
rdfs:comment """Outputs the value of a specific MIDI control as a signal. The output value will be scaled to be between the range specified by the minimum and maximum controls.""" .
internals:Trigger
- a ingen:Plugin ;
+ a ingen:Internal ;
rdfs:label "Trigger" ;
rdfs:comment """Outputs a gate, trigger, and velocity signal whenever the specified note is received. This is particularly useful for building percussive instruments.""" .
internals:Note
- a ingen:Plugin ;
+ a ingen:Internal ;
rdfs:label "Note" ;
rdfs:comment """Outputs the attributes of a note as signals. Typically the frequency output controls an oscillator and the gate and trigger control an envelope. This plugin is special because it is internally aware of polyphony and controls voice allocation.""" .
internals:Time
- a ingen:Plugin ;
+ a ingen:Internal ;
rdfs:label "Time" ;
rdfs:comment """Emits time and transport information like tempo, time signature, and speed. The emitted events are in the standard LV2 format expected by transport-aware LV2 plugins.""" .
internals:Delay
- a ingen:Plugin ;
+ a ingen:Internal ;
rdfs:label "Delay" ;
rdfs:comment """Special internal delay block. In theory, this block can be used for sample-accurate delay loops since Ingen can specially handle this case unlike a generic LV2 plugin. However, this is not currently implemented.""" . \ No newline at end of file