/traderous

To get this branch, use:
bzr branch http://9ix.org/bzr/traderous

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-06-15 15:58:55 UTC
  • Revision ID: josh@9ix.org-20130615155855-3i8a1hotsohsi82g
breakĀ outĀ planet

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
require 'bullet'
17
17
require 'rock'
18
18
require 'boom'
 
19
require 'planet'
19
20
 
20
21
util = {
21
22
   signOf = function(value)
91
92
                 the.storage.data = {highScore = 0}
92
93
              end
93
94
 
94
 
              the.rockColliders = Group:new()
 
95
              --the.rockColliders = Group:new()
95
96
              the.bullets = Group:new()
96
97
              the.mirrors = Group:new()
97
 
              the.rocks = Group:new()
 
98
              --the.rocks = Group:new()
98
99
              the.interface = Group:new()
 
100
              the.planets = Group:new()
 
101
              the.indicators = Group:new()
99
102
 
100
103
              the.bg = Tile:new{
101
104
                 image = 'data/stars3.png',
102
 
                 -- 1366x768 * 3
103
 
                 width = 4098,
104
 
                 height = 2304
 
105
                 width = 13660,
 
106
                 height = 7680
105
107
              }
106
108
              self:add(the.bg)
107
109
 
 
110
              self:add(the.planets)
 
111
 
108
112
              --the.player = CrystalPlayer:new{x=400,y=300}
109
 
              the.player = SpacePlayer:new{x=1366,y=768}
 
113
              the.player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
110
114
              self:add(the.player)
111
115
              self:add(the.player.thrust)
112
116
 
113
117
              --self:add(Enemy:new{x=400, y=300})
114
118
 
115
119
              self:add(the.bullets)
116
 
              self:add(the.rockColliders)
 
120
              --self:add(the.rockColliders)
117
121
              self:add(the.mirrors)
118
 
              self:add(the.rocks)
 
122
              --self:add(the.rocks)
 
123
              self:add(the.indicators)
119
124
              self:add(the.interface)
120
125
 
 
126
              for _ = 1, math.random(6) do
 
127
                 local planet = Planet:new{
 
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
 
133
                 }
 
134
                 the.planets:add(planet)
 
135
              end
 
136
 
121
137
              the.cursor = Cursor:new()
122
138
              self:add(the.cursor)
123
139
 
127
143
                 width = the.app.width,
128
144
                 --align = 'center',
129
145
                 font = 25}
130
 
              the.interface:add(the.score)
 
146
              --the.interface:add(the.score)
131
147
 
132
148
              local hs = the.storage.data.highScore
133
149
              local m = hs / 60
141
157
                 font = 25,
142
158
                 text = string.format('High Score: %d:%02d', m, s)
143
159
              }
144
 
              the.interface:add(the.highScore)
 
160
              --the.interface:add(the.highScore)
145
161
 
146
162
              the.over = Text:new{
147
163
                 y = the.app.height / 2,
175
191
              self.gameStart = love.timer.getTime()
176
192
           end,
177
193
   onUpdate = function(self, dt)
178
 
                 if the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
 
194
                 if false and the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
179
195
                    local unseenRock = nil
180
196
                    while not unseenRock do
181
197
                       local rock = Rock:new{
205
221
 
206
222
                 the.bullets:collide(the.rockColliders)
207
223
 
 
224
                 -- this should really go somewhere else...
 
225
                 for _, planet in ipairs(the.planets.sprites) do
 
226
                    local indx, indy
 
227
                    local pvec = vector.new(
 
228
                       planet.x - the.player.x + planet.width / 2,
 
229
                       planet.y - the.player.y + planet.height / 2 )
 
230
 
 
231
                    -- TODO: is there a better way to specify the
 
232
                    -- screen rectangle?
 
233
                    if planet:intersects(the.player.x - the.app.width / 2,
 
234
                                         the.player.y - the.app.height / 2,
 
235
                                         the.app.width,
 
236
                                         the.app.height) then
 
237
                       -- planet is on the screen
 
238
                       planet.indicator.visible = false
 
239
                    else
 
240
                       planet.indicator.visible = true
 
241
 
 
242
                       if math.abs(pvec.x) / math.abs(pvec.y) > the.app.width / the.app.height then
 
243
                          indx = (the.app.width / 2 - 10) * util.signOf(pvec.x) + 8
 
244
                          indy = (the.app.width / 2 - 10) * pvec.y / math.abs(pvec.x)
 
245
                       else
 
246
                          indy = (the.app.height / 2 - 10) * util.signOf(pvec.y) + 8
 
247
                          indx = (the.app.height / 2 - 10) * pvec.x / math.abs(pvec.y)
 
248
                       end
 
249
 
 
250
                       planet.indicator.x = the.player.x + indx
 
251
                       planet.indicator.y = the.player.y + indy
 
252
                    end
 
253
                 end
 
254
 
208
255
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
209
256
                 --    if not mirror.of then
210
257
                 --       print('mirror:' .. inspect(mirror))
260
307
 
261
308
              self.view = GameView:new()
262
309
 
263
 
              -- try going fullscreen.  should fail silently if it
264
 
              -- can't go to fullscreen.
265
 
              love.graphics.toggleFullscreen()
266
 
 
267
310
              if DEBUG then
268
311
                 self.console:watch('VERSION', 'VERSION')
269
312
                 self.console:watch('updateTook', 'the.updateTook')
273
316
                 self.console:watch('the.app.height', 'the.app.height')
274
317
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
275
318
                 self.console:watch('num rocks', '#the.rocks.sprites')
 
319
                 self.console:watch('num planets', '#the.planets.sprites')
276
320
                 --self.console:watch('drawTook', 'the.drawTook')
277
321
 
278
322
                 -- back off that dark overlay a bit
280
324
              end
281
325
           end,
282
326
   onUpdate = function (self, dt)
283
 
                 if the.keys:justPressed('q') then
284
 
                    self.quit()
285
 
                 elseif the.keys:justPressed('return') then
286
 
                    self.view = GameView:new()
287
 
                 elseif the.keys:justPressed('f1') then
288
 
                    local ss = love.graphics.newScreenshot()
289
 
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
 
327
                 if not (DEBUG and the.console.visible) then
 
328
                    if the.keys:justPressed('q') then
 
329
                       self.quit()
 
330
                    elseif the.keys:justPressed('return') then
 
331
                       if the.keys:pressed('alt') then
 
332
                          love.graphics.toggleFullscreen()
 
333
                       else
 
334
                          self.view = GameView:new()
 
335
                       end
 
336
                    elseif the.keys:justPressed('f1') then
 
337
                       local ss = love.graphics.newScreenshot()
 
338
                       ss:encode('screenshot-' ..love.timer.getTime()..'.png')
 
339
                    elseif the.keys:justPressed('f11') then
 
340
                       love.graphics.toggleFullscreen()
 
341
                    end
290
342
                 end
291
343
              end,
292
344
   update = function (self, dt)
297
349
               end
298
350
            end
299
351
}
 
352
 
 
353
realRun = love.run
 
354
function love.run()
 
355
   -- should fail silently if it can't go to fullscreen...
 
356
   love.graphics.toggleFullscreen()
 
357
 
 
358
   realRun()
 
359
end
 
 
b'\\ No newline at end of file'