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
98
the.interface = Group:new()
99
the.planets = Group:new()
100
the.indicators = Group:new()
100
102
the.bg = Tile:new{
101
103
image = 'data/stars3.png',
109
self:add(the.planets)
108
111
--the.player = CrystalPlayer:new{x=400,y=300}
109
112
the.player = SpacePlayer:new{x=1366,y=768}
110
113
self:add(the.player)
114
self:add(the.player.thrust)
112
116
--self:add(Enemy:new{x=400, y=300})
114
118
self:add(the.bullets)
115
self:add(the.rockColliders)
119
--self:add(the.rockColliders)
116
120
self:add(the.mirrors)
121
--self:add(the.rocks)
122
self:add(the.indicators)
118
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)
120
142
the.cursor = Cursor:new()
121
143
self:add(the.cursor)
174
196
self.gameStart = love.timer.getTime()
176
198
onUpdate = function(self, dt)
177
if the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
199
if false and the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
178
200
local unseenRock = nil
179
201
while not unseenRock do
180
202
local rock = Rock:new{
205
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
207
260
-- for _, mirror in ipairs(the.mirrors.sprites) do
208
261
-- if not mirror.of then
209
262
-- print('mirror:' .. inspect(mirror))
258
311
math.randomseed(os.time())
260
313
self.view = GameView:new()
262
316
self.console:watch('VERSION', 'VERSION')
263
317
self.console:watch('updateTook', 'the.updateTook')
267
321
self.console:watch('the.app.height', 'the.app.height')
268
322
self.console:watch('num mirrors', '#the.mirrors.sprites')
269
323
self.console:watch('num rocks', '#the.rocks.sprites')
324
self.console:watch('num planets', '#the.planets.sprites')
270
325
--self.console:watch('drawTook', 'the.drawTook')
272
327
-- back off that dark overlay a bit
276
331
onUpdate = function (self, dt)
277
if the.keys:justPressed('q') then
279
elseif the.keys:justPressed('return') then
280
self.view = GameView:new()
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()
283
349
update = function (self, dt)