-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstate.moon
More file actions
49 lines (34 loc) · 705 Bytes
/
state.moon
File metadata and controls
49 lines (34 loc) · 705 Bytes
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
state = {
current: {}
global: {
update: {}
draw: {}
}
}
setmetatable state, state
state.new = => {}
state.set = (path, args) =>
@current.unload! if @current.unload
matches = {}
for match in string.gmatch path, "[^;]+"
matches[#matches + 1] = match
path = matches[1]
package.loaded[path] = false
@current = require path
@
state.load = =>
@current\load! if @current.load
@
state.update = (dt) =>
@current\update dt if @current.update
@
state.draw = =>
@current\draw! if @current.update
@
state.press = (key, isrepeat) =>
@current\press key, isrepeat if @current.press
@
state.wheel = (x, y) =>
@current\wheel x, y if @current.wheel
@
state