/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-10 23:43:01 UTC
  • Revision ID: josh@9ix.org-20130610234301-7psv1434q7dacikh
make bullets not wrap

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
                 the.storage.data = {highScore = 0}
92
92
              end
93
93
 
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()
99
101
 
100
102
              the.bg = Tile:new{
101
103
                 image = 'data/stars3.png',
102
 
                 -- 1366x768 * 3
103
 
                 width = 4098,
104
 
                 height = 2304
 
104
                 width = 13660,
 
105
                 height = 7680
105
106
              }
106
107
              self:add(the.bg)
107
108
 
 
109
              self:add(the.planets)
 
110
 
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)
113
116
              --self:add(Enemy:new{x=400, y=300})
114
117
 
115
118
              self:add(the.bullets)
116
 
              self:add(the.rockColliders)
 
119
              --self:add(the.rockColliders)
117
120
              self:add(the.mirrors)
118
 
              self:add(the.rocks)
 
121
              --self:add(the.rocks)
 
122
              self:add(the.indicators)
119
123
              self:add(the.interface)
120
124
 
 
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
 
133
                 }
 
134
                 the.planets:add(planet)
 
135
 
 
136
                 planet.indicator = Tile:new{
 
137
                    image = 'data/planet1ind.png',
 
138
                 }
 
139
                 the.indicators:add(planet.indicator)
 
140
              end
 
141
 
121
142
              the.cursor = Cursor:new()
122
143
              self:add(the.cursor)
123
144
 
127
148
                 width = the.app.width,
128
149
                 --align = 'center',
129
150
                 font = 25}
130
 
              the.interface:add(the.score)
 
151
              --the.interface:add(the.score)
131
152
 
132
153
              local hs = the.storage.data.highScore
133
154
              local m = hs / 60
141
162
                 font = 25,
142
163
                 text = string.format('High Score: %d:%02d', m, s)
143
164
              }
144
 
              the.interface:add(the.highScore)
 
165
              --the.interface:add(the.highScore)
145
166
 
146
167
              the.over = Text:new{
147
168
                 y = the.app.height / 2,
175
196
              self.gameStart = love.timer.getTime()
176
197
           end,
177
198
   onUpdate = function(self, dt)
178
 
                 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
179
200
                    local unseenRock = nil
180
201
                    while not unseenRock do
181
202
                       local rock = Rock:new{
205
226
 
206
227
                 the.bullets:collide(the.rockColliders)
207
228
 
 
229
                 -- this should really go somewhere else...
 
230
                 for _, planet in ipairs(the.planets.sprites) do
 
231
                    local indx, indy
 
232
                    local pvec = vector.new(
 
233
                       planet.x - the.player.x + planet.width / 2,
 
234
                       planet.y - the.player.y + planet.height / 2 )
 
235
 
 
236
                    -- TODO: is there a better way to specify the
 
237
                    -- screen rectangle?
 
238
                    if planet:intersects(the.player.x - the.app.width / 2,
 
239
                                         the.player.y - the.app.height / 2,
 
240
                                         the.app.width,
 
241
                                         the.app.height) then
 
242
                       -- planet is on the screen
 
243
                       planet.indicator.visible = false
 
244
                    else
 
245
                       planet.indicator.visible = true
 
246
 
 
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)
 
250
                       else
 
251
                          indy = the.app.height / 2 * util.signOf(pvec.y) + 8
 
252
                          indx = the.app.height / 2 * pvec.x / math.abs(pvec.y)
 
253
                       end
 
254
 
 
255
                       planet.indicator.x = the.player.x + indx
 
256
                       planet.indicator.y = the.player.y + indy
 
257
                    end
 
258
                 end
 
259
 
208
260
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
209
261
                 --    if not mirror.of then
210
262
                 --       print('mirror:' .. inspect(mirror))
259
311
              math.randomseed(os.time())
260
312
 
261
313
              self.view = GameView:new()
 
314
 
262
315
              if DEBUG then
263
316
                 self.console:watch('VERSION', 'VERSION')
264
317
                 self.console:watch('updateTook', 'the.updateTook')
268
321
                 self.console:watch('the.app.height', 'the.app.height')
269
322
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
270
323
                 self.console:watch('num rocks', '#the.rocks.sprites')
 
324
                 self.console:watch('num planets', '#the.planets.sprites')
271
325
                 --self.console:watch('drawTook', 'the.drawTook')
272
326
 
273
327
                 -- back off that dark overlay a bit
275
329
              end
276
330
           end,
277
331
   onUpdate = function (self, dt)
278
 
                 if the.keys:justPressed('q') then
279
 
                    self.quit()
280
 
                 elseif the.keys:justPressed('return') then
281
 
                    self.view = GameView:new()
282
 
                 elseif the.keys:justPressed('f1') then
283
 
                    local ss = love.graphics.newScreenshot()
284
 
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
 
332
                 if not (DEBUG and the.console.visible) then
 
333
                    if the.keys:justPressed('q') then
 
334
                       self.quit()
 
335
                    elseif the.keys:justPressed('return') then
 
336
                       if the.keys:pressed('alt') then
 
337
                          love.graphics.toggleFullscreen()
 
338
                       else
 
339
                          self.view = GameView:new()
 
340
                       end
 
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()
 
346
                    end
285
347
                 end
286
348
              end,
287
349
   update = function (self, dt)
292
354
               end
293
355
            end
294
356
}
 
357
 
 
358
realRun = love.run
 
359
function love.run()
 
360
   -- should fail silently if it can't go to fullscreen...
 
361
   love.graphics.toggleFullscreen()
 
362
 
 
363
   realRun()
 
364
end
 
 
b'\\ No newline at end of file'