Skip to content

Commit 71b99ef

Browse files
committedNov 6, 2019
Updated history doc with new directions
1 parent 4756a99 commit 71b99ef

File tree

1 file changed

+40
-4
lines changed

1 file changed

+40
-4
lines changed
 

‎development_history.md

+40-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Stage 0 - Initial problem - 2013
2828
Stage 1 - October 2014 to September 2015
2929
----------------------------------------
3030

31-
### Problem
31+
### Problems with Stage 0
3232
* Don't trigger things by human interaction. Trigger them automatically.
3333
* Could we trigger/drive stage lights in time to our music without a lighting engineer?
3434

@@ -59,7 +59,7 @@ If we could setup a virtual midi port that then `trigger`'s a message to be sent
5959
Stage 1.5 - October 2015 to July 2016
6060
-------------------------------------
6161

62-
### Problem
62+
### Problem with Stage 1
6363
* pygame MIDI `trigger` was a pain to constantly deploy to the music (Cuebase) machine (as it had no internet connection)
6464
* Single message bus for all `displays`. All messages went to every connected device.
6565
* 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
8181
Stage 2 - July 2016 to November 2019
8282
------------------------------------
8383

84-
### Problems
84+
### Problems with Stage 1.5
8585
* `lightingAutomation` scripting extremely limited
8686
* Could only tween entire lighting rig state to another state
8787
* 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
115115
* rewritten in `es6`, `webpack`
116116
* Multiple displays in one browser instance
117117
* `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
118123
* [stageViewer](https://github.com/superLimitBreak/stageViewer) - (two `es6` components)
119124
* 3D Stage representation
120125
* [three.js](https://threejs.org/) css3d component
@@ -135,4 +140,35 @@ Stage 2 - July 2016 to November 2019
135140
### Use
136141
* `displayTrigger` used at [Hibannacon 2018](https://twitter.com/SuperLimitBreak/status/1059123513578135552)
137142
* 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

Comments
 (0)
Please sign in to comment.