147
146
self.gameStart = love.timer.getTime()
149
148
onUpdate = function(self, dt)
150
if the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
149
if love.timer.getTime() > self.lastRock + self.rockInterval then
151
150
local unseenRock = nil
152
151
while not unseenRock do
153
152
local rock = Rock:new{
178
177
the.bullets:collide(the.rockColliders)
180
-- for _, mirror in ipairs(the.mirrors.sprites) do
181
-- if not mirror.of then
182
-- print('mirror:' .. inspect(mirror))
183
-- error('mirror OF NOTHING')
187
179
onEndFrame = function(self)
188
180
if the.player.active then
181
local t = love.timer.getTime() - self.gameStart
185
the.score.text = string.format('Score: %d:%02d', m, s)
186
the.score.y = the.player.y - the.app.height / 2 + the.player.height
187
the.score.x = the.player.x - the.app.width / 2
190
the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
191
the.highScore.x = the.player.x - the.app.width / 2
192
193
draw = function (self, x, y)
193
194
View.draw(self, x, y)
194
--love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
196
updateScore = function(self)
197
local t = love.timer.getTime() - self.gameStart
201
the.score.text = string.format('Score: %d:%02d', m, s)
202
the.score.y = the.player.y - the.app.height / 2 + the.player.height
203
the.score.x = the.player.x - the.app.width / 2 + the.player.width
205
the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
206
the.highScore.x = the.player.x - the.app.width / 2
195
love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
210
199
MenuScreen = View:extend {
235
224
self.console:watch('the.player.y', 'the.player.y')
236
225
self.console:watch('the.app.width', 'the.app.width')
237
226
self.console:watch('the.app.height', 'the.app.height')
238
self.console:watch('num mirrors', '#the.mirrors.sprites')
239
self.console:watch('num rocks', '#the.rocks.sprites')
240
227
--self.console:watch('drawTook', 'the.drawTook')
242
229
-- back off that dark overlay a bit