aboutsummaryrefslogtreecommitdiff
path: root/guile/starlet/playback.scm
AgeCommit message (Collapse)Author
2021-07-03Add option to store cue list in a file, and reload itThomas White
2021-05-28Add "cut!" (cut forwards)Thomas White
2021-05-28Apply preset for running cue when the playback reverts to ready stateThomas White
2021-05-27Set the preset state when cutting between cuesThomas White
2021-05-27Calculate presets for all cues when cue list is createdThomas White
2021-05-27Calculate tracking when cue list is createdThomas White
2021-05-25Set default attribute fade time to zeroThomas White
Rationale: get the lights in position for the current cue. If you want to see them move, set the time yourself.
2021-05-24Factorise set-playback-stateThomas White
2021-05-24Move preset from fade-times to cue propertiesThomas White
2021-05-24Add hook for state changes on a playbackThomas White
2021-05-22Indicate playback paused via LEDsThomas White
2021-05-22Add 'stop!' and 'back!'Thomas White
2021-05-22Add home-fixture!/blackout!Thomas White
2021-05-16Remove newly redundant with-fade-times macroThomas White
2021-05-16Fix copy/paste errorThomas White
2021-05-16Get rid of time parameter and use clock objects for cross-fadesThomas White
Because we can stop a clock object, but not "gettimeofday".
2021-05-10Run cues as single atomic operationsThomas White
This avoids a potential situation where one parameter of a fixture is reconfigured before another, which could (in theory) lead to flickering of lights.
2021-05-10Split 'base' module up into 'fixture', 'state' and 'scanout'Thomas White
2021-05-06Add GPL boilerplate everywhereThomas White
2021-04-08Neater abstraction for fade typesThomas White
2021-04-07Fade colours nicelyThomas White
2021-04-06Initial abstraction layer for coloursThomas White
2021-04-04Actually fade attribute values (when appropriate)Thomas White
2021-03-31print-playback: Return unspecifiedThomas White
2021-03-31Remove unnecessary exportsThomas White
2021-03-31Replace playback implementationThomas White
The old version was getting too complex. As it turns out, it can be done without duplicating information in the fade-record structure. This way also allows much more flexiblity and is a more clear abstraction.
2021-03-28WIP on playbacksThomas White
2021-03-28Add some error checkingThomas White
2021-03-21Fix incorrect results when running cues out of orderThomas White
2021-03-13Store the real states in a cue list, not the functionsThomas White
This shouldn't be a big memory burden, even lots of large states. It also makes for a more consistent language by allow lighting-state to be used in cue lists, rather than cue-state.
2021-03-08Remove home state and abolish fixture-attribute use in statesThomas White
The "home state" has no reason to exist. The home values are already stored perfectly well in the attribute lists of the fixtures. Any time we need to look up a home value, we already have the fixture itself available. This also gets rid of any use of <fixture-attribute> in states. This was confusing me. Better to just pass symbols around and only get the real attribute objects when needed (which isn't very often).
2021-03-07Make playback register themselvesThomas White
2021-03-05FormattingThomas White
2021-03-05Add "auto move while dark"Thomas White
2021-01-31Replace return-unspecified with *unspecified*Thomas White
2020-12-30Make set-in-state! private, export set-attr!Thomas White
Two very similar procedures set-attr is more useful since it can handle both attribute names and objects.
2020-12-23Add separate fade time for non-intensity attributesThomas White
2020-11-22cut-to-cue-number: Copy the hash tableThomas White
This hash table will become the one which contains the cross-fade functions. Therefore, when we "emphatically" set it like this, it must not be the same table as in the cue state itself.
2020-11-22Factorise vector-refThomas White
2020-11-18Improve syntax for cue partsThomas White
2020-10-25Add set-playback-cue-list! and get-playback-cue-numberThomas White
These support re-loading a cue list for live coding
2020-10-24Match cue-part attributes by name as wellThomas White
2020-10-24Implement cue parts with different fade timesThomas White
2020-10-23fade-up -> up-time, fade-down -> down-timeThomas White
This makes everything consistent: {up,down}-{time,delay}
2020-10-23Plumbing for cue partsThomas White
2020-10-16with-fade-times macroThomas White
2020-10-15New record type for fade timesThomas White
2020-10-15s/fade-params/fade-record/Thomas White
2020-10-13New way of doing cross-fadesThomas White
2020-09-13Add intensity?Thomas White