-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameState.lua
50 lines (39 loc) · 916 Bytes
/
GameState.lua
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
-- GameState.lua
local json = require('json')
local GameState = {
level = 0,
}
GameState.__index = GameState
local filePath = system.pathForFile('gameState.json', system.DocumentsDirectory)
function GameState.new()
local o = {}
setmetatable(o, GameState)
o.level = 1
o:read()
return o
end
function GameState:read()
local file = io.open(filePath, 'r')
if file then
local contents = file:read('*a')
io.close(file)
-- print('state loaded from file', filePath, contents)
local state = json.decode(contents)
if state and state.level then
self.level = state.level
end
end
end
function GameState:write()
local file = io.open(filePath, 'w')
if file then
file:write(json.encode(self))
-- print('state written to', filePath)
io.close(file )
end
end
function GameState:advanceLevel()
self.level = self.level + 1
self:write()
end
return GameState