/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-11 00:15:54 UTC
  • Revision ID: josh@9ix.org-20130611001554-tkzp73ke16buhnuy
bring indicators a little closer from edge

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)
 
114
              self:add(the.player.thrust)
111
115
 
112
116
              --self:add(Enemy:new{x=400, y=300})
113
117
 
114
118
              self:add(the.bullets)
115
 
              self:add(the.rockColliders)
 
119
              --self:add(the.rockColliders)
116
120
              self:add(the.mirrors)
117
 
              self:add(the.rocks)
 
121
              --self:add(the.rocks)
 
122
              self:add(the.indicators)
118
123
              self:add(the.interface)
119
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
 
120
142
              the.cursor = Cursor:new()
121
143
              self:add(the.cursor)
122
144
 
126
148
                 width = the.app.width,
127
149
                 --align = 'center',
128
150
                 font = 25}
129
 
              the.interface:add(the.score)
 
151
              --the.interface:add(the.score)
130
152
 
131
153
              local hs = the.storage.data.highScore
132
154
              local m = hs / 60
140
162
                 font = 25,
141
163
                 text = string.format('High Score: %d:%02d', m, s)
142
164
              }
143
 
              the.interface:add(the.highScore)
 
165
              --the.interface:add(the.highScore)
144
166
 
145
167
              the.over = Text:new{
146
168
                 y = the.app.height / 2,
174
196
              self.gameStart = love.timer.getTime()
175
197
           end,
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{
204
226
 
205
227
                 the.bullets:collide(the.rockColliders)
206
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 - 10) * util.signOf(pvec.x) + 8
 
249
                          indy = (the.app.width / 2 - 10) * pvec.y / math.abs(pvec.x)
 
250
                       else
 
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)
 
253
                       end
 
254
 
 
255
                       planet.indicator.x = the.player.x + indx
 
256
                       planet.indicator.y = the.player.y + indy
 
257
                    end
 
258
                 end
 
259
 
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())
259
312
 
260
313
              self.view = GameView:new()
 
314
 
261
315
              if DEBUG then
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')
271
326
 
272
327
                 -- back off that dark overlay a bit
274
329
              end
275
330
           end,
276
331
   onUpdate = function (self, dt)
277
 
                 if the.keys:justPressed('escape') then
278
 
                    self.quit()
 
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
279
347
                 end
280
348
              end,
281
349
   update = function (self, dt)
286
354
               end
287
355
            end
288
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'