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()
98
the.interface = Group:new()
99
the.planets = Group:new()
100
the.indicators = Group:new()
97
the.rocks = Group:new()
102
99
the.bg = Tile:new{
103
100
image = 'data/stars3.png',
109
self:add(the.planets)
111
107
--the.player = CrystalPlayer:new{x=400,y=300}
112
108
the.player = SpacePlayer:new{x=1366,y=768}
113
109
self:add(the.player)
114
self:add(the.player.thrust)
116
111
--self:add(Enemy:new{x=400, y=300})
118
113
self:add(the.bullets)
119
--self:add(the.rockColliders)
114
self:add(the.rockColliders)
120
115
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)
142
118
the.cursor = Cursor:new()
143
119
self:add(the.cursor)
145
121
the.score = Text:new{
148
122
width = the.app.width,
149
123
--align = 'center',
151
--the.interface:add(the.score)
153
127
local hs = the.storage.data.highScore
154
128
local m = hs / 60
155
129
local s = hs % 60
157
131
the.highScore = Text:new{
160
132
width = the.app.width,
163
135
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)
137
self:add(the.highScore)
188
139
love.mouse.setGrab(true)
189
140
love.mouse.setVisible(false)
227
178
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 - 10) * util.signOf(pvec.x) + 8
249
indy = (the.app.width / 2 - 10) * pvec.y / math.abs(pvec.x)
251
indy = (the.app.height / 2 - 10) * util.signOf(pvec.y) + 8
252
indx = (the.app.height / 2 - 10) * pvec.x / math.abs(pvec.y)
255
planet.indicator.x = the.player.x + indx
256
planet.indicator.y = the.player.y + indy
260
180
-- for _, mirror in ipairs(the.mirrors.sprites) do
261
181
-- if not mirror.of then
262
182
-- print('mirror:' .. inspect(mirror))
284
201
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
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
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
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
321
237
self.console:watch('the.app.height', 'the.app.height')
322
238
self.console:watch('num mirrors', '#the.mirrors.sprites')
323
239
self.console:watch('num rocks', '#the.rocks.sprites')
324
self.console:watch('num planets', '#the.planets.sprites')
325
240
--self.console:watch('drawTook', 'the.drawTook')
327
242
-- back off that dark overlay a bit
331
246
onUpdate = function (self, dt)
332
if not (DEBUG and the.console.visible) then
333
if the.keys:justPressed('q') then
335
elseif the.keys:justPressed('return') then
336
if the.keys:pressed('alt') then
337
love.graphics.toggleFullscreen()
339
self.view = GameView:new()
341
elseif the.keys:justPressed('f1') then
342
local ss = love.graphics.newScreenshot()
343
ss:encode('screenshot-' ..love.timer.getTime()..'.png')
344
elseif the.keys:justPressed('f11') then
345
love.graphics.toggleFullscreen()
247
if the.keys:justPressed('escape') then
349
251
update = function (self, dt)