91
91
the.storage.data = {highScore = 0}
94
the.rockColliders = Group:new()
94
--the.rockColliders = Group:new()
95
95
the.bullets = Group:new()
96
96
the.mirrors = Group:new()
97
the.rocks = Group:new()
97
--the.rocks = Group:new()
98
the.interface = Group:new()
99
the.planets = Group:new()
99
101
the.bg = Tile:new{
100
102
image = 'data/stars3.png',
108
self:add(the.planets)
107
110
--the.player = CrystalPlayer:new{x=400,y=300}
108
111
the.player = SpacePlayer:new{x=1366,y=768}
109
112
self:add(the.player)
113
self:add(the.player.thrust)
111
115
--self:add(Enemy:new{x=400, y=300})
113
117
self:add(the.bullets)
114
self:add(the.rockColliders)
118
--self:add(the.rockColliders)
115
119
self:add(the.mirrors)
120
--self:add(the.rocks)
121
self:add(the.interface)
123
for _ = 1, math.random(6) do
124
local planet = Tile:new{
125
image = 'data/planet1.png',
126
x = math.random(the.app.width / 2,
127
the.bg.width - the.app.width / 2),
128
y = math.random(the.app.height / 2,
129
the.bg.height - the.app.height / 2),
130
rotation = math.random() * math.pi
132
the.planets:add(planet)
118
135
the.cursor = Cursor:new()
119
136
self:add(the.cursor)
121
138
the.score = Text:new{
122
141
width = the.app.width,
144
the.interface:add(the.score)
127
146
local hs = the.storage.data.highScore
128
147
local m = hs / 60
129
148
local s = hs % 60
131
150
the.highScore = Text:new{
132
153
width = the.app.width,
135
156
text = string.format('High Score: %d:%02d', m, s)
137
self:add(the.highScore)
158
the.interface:add(the.highScore)
161
y = the.app.height / 2,
162
width = the.app.width,
168
the.interface:add(the.over)
171
the.instructions = Text:new{
172
y = the.app.height / 2 + 32,
173
width = the.app.width,
176
text = "Press Enter to start a new game\nPress Q to quit",
179
the.interface:add(the.instructions)
139
181
love.mouse.setGrab(true)
140
182
love.mouse.setVisible(false)
147
189
self.gameStart = love.timer.getTime()
149
191
onUpdate = function(self, dt)
150
if love.timer.getTime() > self.lastRock + self.rockInterval then
192
if false and the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
151
193
local unseenRock = nil
152
194
while not unseenRock do
153
195
local rock = Rock:new{
187
229
onEndFrame = function(self)
230
the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
231
the.interface.translate.y = the.player.y - the.app.height / 2 + the.player.height / 2
188
233
if the.player.active then
189
local t = love.timer.getTime() - self.gameStart
193
the.score.text = string.format('Score: %d:%02d', m, s)
194
the.score.y = the.player.y - the.app.height / 2 + the.player.height
195
the.score.x = the.player.x - the.app.width / 2
198
the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
199
the.highScore.x = the.player.x - the.app.width / 2
201
237
draw = function (self, x, y)
202
238
View.draw(self, x, y)
203
love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
239
--love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
241
updateScore = function(self)
242
local t = love.timer.getTime() - self.gameStart
246
the.score.text = string.format('Score: %d:%02d', m, s)
247
--the.score.y = the.player.y - the.app.height / 2 + the.player.height
248
--the.score.x = the.player.x - the.app.width / 2 + the.player.width
250
--the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
251
--the.highScore.x = the.player.x - the.app.width / 2
207
255
MenuScreen = View:extend {
225
273
math.randomseed(os.time())
227
275
self.view = GameView:new()
277
-- should fail silently if it can't go to fullscreen...
278
love.graphics.toggleFullscreen()
229
281
self.console:watch('VERSION', 'VERSION')
230
282
self.console:watch('updateTook', 'the.updateTook')
233
285
self.console:watch('the.app.width', 'the.app.width')
234
286
self.console:watch('the.app.height', 'the.app.height')
235
287
self.console:watch('num mirrors', '#the.mirrors.sprites')
288
self.console:watch('num rocks', '#the.rocks.sprites')
289
self.console:watch('num planets', '#the.planets.sprites')
236
290
--self.console:watch('drawTook', 'the.drawTook')
238
292
-- back off that dark overlay a bit
242
296
onUpdate = function (self, dt)
243
if the.keys:justPressed('escape') then
297
if not (DEBUG and the.console.visible) then
298
if the.keys:justPressed('q') then
300
elseif the.keys:justPressed('return') then
301
if the.keys:pressed('alt') then
302
love.graphics.toggleFullscreen()
304
self.view = GameView:new()
306
elseif the.keys:justPressed('f1') then
307
local ss = love.graphics.newScreenshot()
308
ss:encode('screenshot-' ..love.timer.getTime()..'.png')
309
elseif the.keys:justPressed('f11') then
310
love.graphics.toggleFullscreen()
247
314
update = function (self, dt)