mmcwilliams 4947cbcc9d | ||
---|---|---|
.. | ||
Readme.md | ||
TODO.md | ||
index.js | ||
index.old.js | ||
package.json |
Readme.md
lib/mscript
lib/mscript~Mscript
class Mscript
Kind: inner class of lib/mscript
mscript.clear()
Clear the state of the script
Kind: instance method of Mscript
mscript.interpret()
Main function, accepts multi-line string, parses into lines and interprets the instructions from the text. Returns an array of steps to be fed into the mcopy.
Kind: instance method of Mscript
mscript.basic_cmd()
Apply a basic two character command
Kind: instance method of Mscript
mscript.new_loop()
Start a new loop
Kind: instance method of Mscript
mscript.end_loop()
Close the most recent loop
Kind: instance method of Mscript
mscript.move_cam()
Move camera to explicitly-defined frame
Kind: instance method of Mscript
mscript.move_proj()
Move projector to explicitly-defined frame
Kind: instance method of Mscript
mscript.set_state()
Set the state of either the cam or projector
Kind: instance method of Mscript
mscript.last_loop()
Return the last loop
Kind: instance method of Mscript
mscript.parent_loop()
Return the second-last loop
Kind: instance method of Mscript
mscript.loop_count()
Extract the loop count integer from a LOOP cmd
Kind: instance method of Mscript
mscript.fade()
Execute a fade of frame length, from color to another color
Kind: instance method of Mscript
mscript.fade_count()
Extract the fade length integer from a FADE cmd
Kind: instance method of Mscript
mscript.fade_start()
Extract the start color from a string
Kind: instance method of Mscript
mscript.fade_end()
Extract the end color from a string
Kind: instance method of Mscript
mscript.update()
Increase the state of a specific object, such as the camera/projector, by the value defined in val
Kind: instance method of Mscript
mscript.str_to_arr()
Split string on command, extract any integers from string
Kind: instance method of Mscript
mscript.light_to_arr()
Split a string on a command to extract data for light array
Kind: instance method of Mscript
mscript.light_state()
Split a string to extract an rgb color value
Kind: instance method of Mscript
mscript.fail()
Throw an error with specific message
Kind: instance method of Mscript
lib/mscript~startsWith()
startswith function from lodash, do not want the entire lib for this
Kind: inner method of lib/mscript