@@ -28,7 +28,7 @@ Stage 0 - Initial problem - 2013
28
28
Stage 1 - October 2014 to September 2015
29
29
----------------------------------------
30
30
31
- ### Problem
31
+ ### Problems with Stage 0
32
32
* Don't trigger things by human interaction. Trigger them automatically.
33
33
* Could we trigger/drive stage lights in time to our music without a lighting engineer?
34
34
@@ -59,7 +59,7 @@ If we could setup a virtual midi port that then `trigger`'s a message to be sent
59
59
Stage 1.5 - October 2015 to July 2016
60
60
-------------------------------------
61
61
62
- ### Problem
62
+ ### Problem with Stage 1
63
63
* pygame MIDI ` trigger ` was a pain to constantly deploy to the music (Cuebase) machine (as it had no internet connection)
64
64
* Single message bus for all ` displays ` . All messages went to every connected device.
65
65
* If connections dropped we had to have access to computers/terminals to fix it
@@ -81,7 +81,7 @@ Stage 1.5 - October 2015 to July 2016
81
81
Stage 2 - July 2016 to November 2019
82
82
------------------------------------
83
83
84
- ### Problems
84
+ ### Problems with Stage 1.5
85
85
* ` lightingAutomation ` scripting extremely limited
86
86
* Could only tween entire lighting rig state to another state
87
87
* Overly complex nested anonymous function complexity every frame (too complex to test/debug properly)
@@ -115,6 +115,11 @@ Stage 2 - July 2016 to November 2019
115
115
* rewritten in ` es6 ` , ` webpack `
116
116
* Multiple displays in one browser instance
117
117
* ` display ` be bound to arbitrary ` div ` s
118
+ * Greensock Animation Project engine for animations
119
+ * Allows timeline seek to set animation state
120
+ * Pixi.js Particle Engine
121
+ * Realtime, Rain, Fire, Firework effects
122
+ * Can control state with GSAP to allow rain to intensify
118
123
* [ stageViewer] ( https://github.com/superLimitBreak/stageViewer ) - (two ` es6 ` components)
119
124
* 3D Stage representation
120
125
* [ three.js] ( https://threejs.org/ ) css3d component
@@ -135,4 +140,35 @@ Stage 2 - July 2016 to November 2019
135
140
### Use
136
141
* ` displayTrigger ` used at [ Hibannacon 2018] ( https://twitter.com/SuperLimitBreak/status/1059123513578135552 )
137
142
* Tech preview demoed in [ BarCamp 2019] ( http://barcampcanterbury.com ) June
138
- * Planned [ Hibanacon 2019] ( https://www.hibanacon.co.uk/ ) November
143
+ * [ Hibanacon 2019] ( https://www.hibanacon.co.uk/ ) November
144
+
145
+
146
+ Stage 3 - November 2019 to present
147
+ ----------------------------------
148
+
149
+ ### Problems with Stage 2.0
150
+ * Syncing with the cuebase music machine is still fiddly
151
+ * Individual triggers are difficult to time
152
+ * We could not trigger accurately with a _ 2 bar_ count-in as we have overlapping tracks where the clicktrack was just an audio sample
153
+ * The assumption of 2 bar countin was now invalid and defeated the purpose of automatic precaching of videos
154
+ * Difference in production ` single_triggers ` to development ` continuous_triggers ` (for visualizer)
155
+ * No ability to seek in cuebase project to visualize timing
156
+ * Calibrating sync offsets for visulisations is fiddley, complex and time consuming
157
+ * No _ live_ control of lights
158
+ * We did not implement that feature from ` lightingAutomation `
159
+ * ` multisocetServer ` was saturated with messagegs at 30fps with text floating point number number in plain text json
160
+ * each frame was hundreds of kb
161
+ * ` multisocetServer ` was unreliable and messages would get lost
162
+ * The json message system manually joined multiple messages/packets strings and scanned for ` }} ` to denote end of messages. It was a mess.
163
+
164
+ ### Solution
165
+ * The cuebase machine broadcasts timecode state continuously
166
+ * SMTPE (protocol designed to sync with analog gear)
167
+ * We can seek in cuebase project
168
+ * ` timecode_to_track_router ` translates timecode to a track position
169
+ *
170
+ * Move to ` msgpack ` for messaging
171
+ * Move to a stable profetional message bus
172
+
173
+ ### Use
174
+ * _ unknown_
0 commit comments