aboutsummaryrefslogtreecommitdiff
path: root/src/Actions.js
diff options
context:
space:
mode:
authorMartin Ashby <martin@martin-laptop.lan>2018-05-17 18:18:11 +0100
committerMartin Ashby <martin@martin-laptop.lan>2018-05-17 18:18:11 +0100
commitd40c7d9f09d9b012837d6060a4c598b23b19646f (patch)
tree8fa1f99664b3b6a74f7a0fd5856b7d0c41767b1f /src/Actions.js
parentaa86cb02fd95404fdfba8cf9d13cb5c18138b6b5 (diff)
downloadunicornpaint-d40c7d9f09d9b012837d6060a4c598b23b19646f.tar.gz
unicornpaint-d40c7d9f09d9b012837d6060a4c598b23b19646f.tar.bz2
unicornpaint-d40c7d9f09d9b012837d6060a4c598b23b19646f.tar.xz
unicornpaint-d40c7d9f09d9b012837d6060a4c598b23b19646f.zip
Palette, tools, load & save working
Diffstat (limited to 'src/Actions.js')
-rw-r--r--src/Actions.js51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/Actions.js b/src/Actions.js
new file mode 100644
index 0000000..1f4e7cf
--- /dev/null
+++ b/src/Actions.js
@@ -0,0 +1,51 @@
+const NO_OP = 'NO_OP'
+const SET_PIXEL = 'SET_PIXEL'
+const CLEAR = 'CLEAR'
+const SAVE = 'SAVE'
+const LOAD = 'LOAD'
+
+function sendAction(websocket, action) {
+ let actionStr = JSON.stringify(action)
+ websocket.send(actionStr)
+}
+
+function save(websocket, saveName) {
+ sendAction(websocket, {
+ type: SAVE,
+ saveName: saveName
+ })
+}
+
+function load(websocket, saveName) {
+ sendAction(websocket, {
+ type: LOAD,
+ saveName: saveName
+ })
+}
+
+function setPixel(websocket, x, y, r, g, b) {
+ sendAction(websocket, {
+ type: SET_PIXEL,
+ x: x,
+ y: y,
+ r: r,
+ g: g,
+ b: b
+ })
+}
+
+function clear(websocket) {
+ sendAction(websocket, { type: CLEAR })
+}
+
+function noop(websocket) {
+ sendAction(websocket, { type: NO_OP })
+}
+
+export {
+ setPixel,
+ clear,
+ noop,
+ save,
+ load
+} \ No newline at end of file