aboutsummaryrefslogtreecommitdiff
path: root/src/Actions.js
blob: 1f4e7cfed0004b6554729c014d9a4f25b369d190 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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
}