/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)
97
98
              --the.rocks = Group:new()
98
99
              the.interface = Group:new()
99
100
              the.planets = Group:new()
 
101
              the.indicators = Group:new()
100
102
 
101
103
              the.bg = Tile:new{
102
104
                 image = 'data/stars3.png',
108
110
              self:add(the.planets)
109
111
 
110
112
              --the.player = CrystalPlayer:new{x=400,y=300}
111
 
              the.player = SpacePlayer:new{x=1366,y=768}
 
113
              the.player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
112
114
              self:add(the.player)
113
115
              self:add(the.player.thrust)
114
116
 
118
120
              --self:add(the.rockColliders)
119
121
              self:add(the.mirrors)
120
122
              --self:add(the.rocks)
 
123
              self:add(the.indicators)
121
124
              self:add(the.interface)
122
125
 
123
126
              for _ = 1, math.random(6) do
124
 
                 local planet = Tile:new{
125
 
                    image = 'data/planet1.png',
 
127
                 local planet = Planet:new{
126
128
                    x = math.random(the.app.width / 2,
127
129
                                    the.bg.width - the.app.width / 2),
128
130
                    y = math.random(the.app.height / 2,
141
143
                 width = the.app.width,
142
144
                 --align = 'center',
143
145
                 font = 25}
144
 
              the.interface:add(the.score)
 
146
              --the.interface:add(the.score)
145
147
 
146
148
              local hs = the.storage.data.highScore
147
149
              local m = hs / 60
155
157
                 font = 25,
156
158
                 text = string.format('High Score: %d:%02d', m, s)
157
159
              }
158
 
              the.interface:add(the.highScore)
 
160
              --the.interface:add(the.highScore)
159
161
 
160
162
              the.over = Text:new{
161
163
                 y = the.app.height / 2,
219
221
 
220
222
                 the.bullets:collide(the.rockColliders)
221
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
 
222
255
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
223
256
                 --    if not mirror.of then
224
257
                 --       print('mirror:' .. inspect(mirror))
274
307
 
275
308
              self.view = GameView:new()
276
309
 
277
 
              -- should fail silently if it can't go to fullscreen...
278
 
              love.graphics.toggleFullscreen()
279
 
 
280
310
              if DEBUG then
281
311
                 self.console:watch('VERSION', 'VERSION')
282
312
                 self.console:watch('updateTook', 'the.updateTook')
319
349
               end
320
350
            end
321
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'