changeset 1256:ea2b23f59884

checkpoint show data Ignore-this: 82af460db06604de5b16ea20bfc0900e
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 13 Jun 2015 06:49:49 +0000
parents b7fb7b2649fd
children 2591ae3e9e37
files show/dance2015/sub/blue.n3 show/dance2015/sub/leds.n3 show/dance2015/sub/neo1.n3
diffstat 3 files changed, 40 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/show/dance2015/sub/blue.n3	Sat Jun 13 06:39:03 2015 +0000
+++ b/show/dance2015/sub/blue.n3	Sat Jun 13 06:49:49 2015 +0000
@@ -7,6 +7,7 @@
 <http://light9.bigasterisk.com/show/dance2013/sub/blue> a ns1:Submaster ;
     rdfs:label "blue" ;
     ns1:color "#0000ff" ;
+    ns1:drivesEffect <http://light9.bigasterisk.com/show/dance2015/blueLed> ;
     ns1:group "color" ;
     ns1:lightLevel <http://light9.bigasterisk.com/show/dance2013/sub/blue/map/285520676>,
         <http://light9.bigasterisk.com/show/dance2013/sub/blue/map/564473998>,
@@ -27,5 +28,9 @@
 
 <http://light9.bigasterisk.com/show/dance2013/sub/blue/map/754352965> a ns1:ChannelSetting ;
     ns1:channel <http://light9.bigasterisk.com/theater/piedmont/channel/blue1> ;
-    ns1:level 1e+00 .
+    ns1:level 1 .
 
+<http://light9.bigasterisk.com/show/dance2015/blueLed> a ns1:Effect ;
+    ns1:code "level = currentSubLevel(<http://light9.bigasterisk.com/show/dance2013/sub/blue>)",
+        "out = Strip.solid('LRW', (0,0,1)) * level" .
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/show/dance2015/sub/leds.n3	Sat Jun 13 06:49:49 2015 +0000
@@ -0,0 +1,34 @@
+@prefix : <http://light9.bigasterisk.com/> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xml: <http://www.w3.org/XML/1998/namespace> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix sub: <http://light9.bigasterisk.com/show/dance2015/sub/> .
+@prefix eff: <http://light9.bigasterisk.com/sub/drive/> .
+
+sub:neo1 a :Submaster ; rdfs:label "neo1" ; :drivesEffect eff:e1 .
+eff:e1 a :Effect ;
+    :code "level = currentSubLevel(<http://light9.bigasterisk.com/show/dance2015/sub/neo1>)",
+             "out = Strip.solid('L', (1,1,1)) * level" .
+
+sub:neo2 a :Submaster ; rdfs:label "neo2" ; :drivesEffect eff:e2 .
+eff:e2 a :Effect,
+        <http://light9.bigasterisk.com/effect/whiteLed> ;
+    :code "level = currentSubLevel(<http://light9.bigasterisk.com/show/dance2015/sub/neo2>)",
+             "out = Strip.solid('R', (1,1,1)) * level" .
+
+sub:wideRed a :Submaster ; rdfs:label "widered" ; :drivesEffect eff:e3 .
+eff:e3 a :Effect;
+    :code "level = currentSubLevel(<http://light9.bigasterisk.com/show/dance2015/sub/wideRed>)",
+             "out = Strip.solid('W', (1,0,0)) * level" .
+
+sub:wideGreen a :Submaster ; rdfs:label "widegreen" ; :drivesEffect eff:e4 .
+eff:e4 a :Effect;
+    :code "level = currentSubLevel(<http://light9.bigasterisk.com/show/dance2015/sub/wideGreen>)",
+             "out = Strip.solid('W', (0,1,0)) * level" .
+
+sub:wideBlue a :Submaster ; rdfs:label "wideblue" ; :drivesEffect eff:e5 .
+eff:e5 a :Effect;
+    :code "level = currentSubLevel(<http://light9.bigasterisk.com/show/dance2015/sub/wideBlue>)",
+             "out = Strip.solid('W', (0,0,1)) * level" .
+
--- a/show/dance2015/sub/neo1.n3	Sat Jun 13 06:39:03 2015 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-@prefix ns1: <http://light9.bigasterisk.com/> .
-@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-@prefix xml: <http://www.w3.org/XML/1998/namespace> .
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
-
-<http://light9.bigasterisk.com/show/dance2015/sub/neo1> a ns1:Submaster ;
-    rdfs:label "neo1" ;
-    ns1:drivesEffect <http://light9.bigasterisk.com/sub/local/1434160498.26/map/e1> .
-
-<http://light9.bigasterisk.com/sub/local/1434160498.26/map/e1> a ns1:Effect,
-        <http://light9.bigasterisk.com/effect/whiteLed> ;
-    ns1:code "level = <http://light9.bigasterisk.com/show/dance2015/sub/neo1>",
-             "out = Strip.solid('LR', (1,1,1)) * level" .