87
the.storage = Storage:new{filename = 'scores.lua'}
89
if not the.storage.data.highScore then
90
print('initializing storage')
91
the.storage.data = {highScore = 0}
86
94
the.rockColliders = Group:new()
87
95
the.bullets = Group:new()
88
96
the.mirrors = Group:new()
89
97
the.rocks = Group:new()
98
the.interface = Group:new()
91
100
the.bg = Tile:new{
92
101
image = 'data/stars3.png',
106
115
self:add(the.rockColliders)
107
116
self:add(the.mirrors)
108
117
self:add(the.rocks)
118
self:add(the.interface)
110
120
the.cursor = Cursor:new()
111
121
self:add(the.cursor)
113
123
the.score = Text:new{
114
126
width = the.app.width,
129
the.interface:add(the.score)
131
local hs = the.storage.data.highScore
135
the.highScore = Text:new{
138
width = the.app.width,
141
text = string.format('High Score: %d:%02d', m, s)
143
the.interface:add(the.highScore)
146
y = the.app.height / 2,
147
width = the.app.width,
153
the.interface:add(the.over)
156
the.instructions = Text:new{
157
y = the.app.height / 2 + 32,
158
width = the.app.width,
161
text = "Press Enter to start a new game\nPress Q to quit",
164
the.interface:add(the.instructions)
119
166
love.mouse.setGrab(true)
120
167
love.mouse.setVisible(false)
127
174
self.gameStart = love.timer.getTime()
129
176
onUpdate = function(self, dt)
130
if love.timer.getTime() > self.lastRock + self.rockInterval then
177
if the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
131
178
local unseenRock = nil
132
179
while not unseenRock do
133
180
local rock = Rock:new{
158
205
the.bullets:collide(the.rockColliders)
207
-- for _, mirror in ipairs(the.mirrors.sprites) do
208
-- if not mirror.of then
209
-- print('mirror:' .. inspect(mirror))
210
-- error('mirror OF NOTHING')
160
214
onEndFrame = function(self)
215
the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
216
the.interface.translate.y = the.player.y - the.app.height / 2 + the.player.height / 2
161
218
if the.player.active then
162
local t = love.timer.getTime() - self.gameStart
166
the.score.text = string.format('Score: %d:%02d', m, s)
167
the.score.y = the.player.y - the.app.height / 2 + the.player.height
168
the.score.x = the.player.x - the.app.width / 2
171
222
draw = function (self, x, y)
172
223
View.draw(self, x, y)
173
love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
224
--love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
226
updateScore = function(self)
227
local t = love.timer.getTime() - self.gameStart
231
the.score.text = string.format('Score: %d:%02d', m, s)
232
--the.score.y = the.player.y - the.app.height / 2 + the.player.height
233
--the.score.x = the.player.x - the.app.width / 2 + the.player.width
235
--the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
236
--the.highScore.x = the.player.x - the.app.width / 2
177
240
MenuScreen = View:extend {
202
265
self.console:watch('the.player.y', 'the.player.y')
203
266
self.console:watch('the.app.width', 'the.app.width')
204
267
self.console:watch('the.app.height', 'the.app.height')
268
self.console:watch('num mirrors', '#the.mirrors.sprites')
269
self.console:watch('num rocks', '#the.rocks.sprites')
205
270
--self.console:watch('drawTook', 'the.drawTook')
207
272
-- back off that dark overlay a bit