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}
94
--the.rockColliders = Group:new()
95
the.bullets = Group:new()
96
the.mirrors = Group:new()
97
--the.rocks = Group:new()
98
the.interface = Group:new()
99
the.planets = Group:new()
100
the.indicators = Group:new()
86
102
the.bg = Tile:new{
87
103
image = 'data/stars3.png',
109
self:add(the.planets)
94
111
--the.player = CrystalPlayer:new{x=400,y=300}
95
112
the.player = SpacePlayer:new{x=1366,y=768}
96
113
self:add(the.player)
114
self:add(the.player.thrust)
98
116
--self:add(Enemy:new{x=400, y=300})
118
self:add(the.bullets)
119
--self:add(the.rockColliders)
120
self:add(the.mirrors)
121
--self:add(the.rocks)
122
self:add(the.indicators)
123
self:add(the.interface)
125
for _ = 1, math.random(6) do
126
local planet = Tile:new{
127
image = 'data/planet1.png',
128
x = math.random(the.app.width / 2,
129
the.bg.width - the.app.width / 2),
130
y = math.random(the.app.height / 2,
131
the.bg.height - the.app.height / 2),
132
rotation = math.random() * math.pi
134
the.planets:add(planet)
136
planet.indicator = Tile:new{
137
image = 'data/planet1ind.png',
139
the.indicators:add(planet.indicator)
100
142
the.cursor = Cursor:new()
101
143
self:add(the.cursor)
145
the.score = Text:new{
148
width = the.app.width,
151
--the.interface:add(the.score)
153
local hs = the.storage.data.highScore
157
the.highScore = Text:new{
160
width = the.app.width,
163
text = string.format('High Score: %d:%02d', m, s)
165
--the.interface:add(the.highScore)
168
y = the.app.height / 2,
169
width = the.app.width,
175
the.interface:add(the.over)
178
the.instructions = Text:new{
179
y = the.app.height / 2 + 32,
180
width = the.app.width,
183
text = "Press Enter to start a new game\nPress Q to quit",
186
the.interface:add(the.instructions)
103
188
love.mouse.setGrab(true)
104
189
love.mouse.setVisible(false)
190
love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
106
192
--self:loadLayers('data/map.lua')
107
193
self.focus = the.player
222
the.rocks:add(unseenRock)
138
224
self.lastRock = love.timer.getTime()
227
the.bullets:collide(the.rockColliders)
229
-- this should really go somewhere else...
230
for _, planet in ipairs(the.planets.sprites) do
232
local pvec = vector.new(
233
planet.x - the.player.x + planet.width / 2,
234
planet.y - the.player.y + planet.height / 2 )
236
-- TODO: is there a better way to specify the
238
if planet:intersects(the.player.x - the.app.width / 2,
239
the.player.y - the.app.height / 2,
242
-- planet is on the screen
243
planet.indicator.visible = false
245
planet.indicator.visible = true
247
if math.abs(pvec.x) / math.abs(pvec.y) > the.app.width / the.app.height then
248
indx = the.app.width / 2 * util.signOf(pvec.x) + 8
249
indy = the.app.width / 2 * pvec.y / math.abs(pvec.x)
251
indy = the.app.height / 2 * util.signOf(pvec.y) + 8
252
indx = the.app.height / 2 * pvec.x / math.abs(pvec.y)
255
planet.indicator.x = the.player.x + indx
256
planet.indicator.y = the.player.y + indy
260
-- for _, mirror in ipairs(the.mirrors.sprites) do
261
-- if not mirror.of then
262
-- print('mirror:' .. inspect(mirror))
263
-- error('mirror OF NOTHING')
267
onEndFrame = function(self)
268
the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
269
the.interface.translate.y = the.player.y - the.app.height / 2 + the.player.height / 2
271
if the.player.active then
141
275
draw = function (self, x, y)
142
276
View.draw(self, x, y)
143
love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
277
--love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
279
updateScore = function(self)
280
local t = love.timer.getTime() - self.gameStart
284
the.score.text = string.format('Score: %d:%02d', m, s)
285
--the.score.y = the.player.y - the.app.height / 2 + the.player.height
286
--the.score.x = the.player.x - the.app.width / 2 + the.player.width
288
--the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
289
--the.highScore.x = the.player.x - the.app.width / 2
147
293
MenuScreen = View:extend {
165
311
math.randomseed(os.time())
167
313
self.view = GameView:new()
315
-- should fail silently if it can't go to fullscreen...
316
love.graphics.toggleFullscreen()
169
319
self.console:watch('VERSION', 'VERSION')
170
320
self.console:watch('updateTook', 'the.updateTook')
172
322
self.console:watch('the.player.y', 'the.player.y')
173
323
self.console:watch('the.app.width', 'the.app.width')
174
324
self.console:watch('the.app.height', 'the.app.height')
325
self.console:watch('num mirrors', '#the.mirrors.sprites')
326
self.console:watch('num rocks', '#the.rocks.sprites')
327
self.console:watch('num planets', '#the.planets.sprites')
175
328
--self.console:watch('drawTook', 'the.drawTook')
177
330
-- back off that dark overlay a bit
181
334
onUpdate = function (self, dt)
182
if the.keys:justPressed('escape') then
335
if not (DEBUG and the.console.visible) then
336
if the.keys:justPressed('q') then
338
elseif the.keys:justPressed('return') then
339
if the.keys:pressed('alt') then
340
love.graphics.toggleFullscreen()
342
self.view = GameView:new()
344
elseif the.keys:justPressed('f1') then
345
local ss = love.graphics.newScreenshot()
346
ss:encode('screenshot-' ..love.timer.getTime()..'.png')
347
elseif the.keys:justPressed('f11') then
348
love.graphics.toggleFullscreen()
186
352
update = function (self, dt)