/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-05-20 17:54:50 UTC
  • Revision ID: josh@9ix.org-20130520175450-1p2jpuadg24xutlk
some instructions at game over

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'
20
 
require 'trade_view'
21
19
 
22
20
util = {
23
21
   signOf = function(value)
93
91
                 the.storage.data = {highScore = 0}
94
92
              end
95
93
 
96
 
              --the.rockColliders = Group:new()
 
94
              the.rockColliders = Group:new()
97
95
              the.bullets = Group:new()
98
96
              the.mirrors = Group:new()
99
 
              --the.rocks = Group:new()
 
97
              the.rocks = Group:new()
100
98
              the.interface = Group:new()
101
 
              the.planets = Group:new()
102
 
              the.indicators = Group:new()
103
99
 
104
100
              the.bg = Tile:new{
105
101
                 image = 'data/stars3.png',
106
 
                 width = 13660,
107
 
                 height = 7680
 
102
                 -- 1366x768 * 3
 
103
                 width = 4098,
 
104
                 height = 2304
108
105
              }
109
106
              self:add(the.bg)
110
107
 
111
 
              self:add(the.planets)
112
 
 
113
108
              --the.player = CrystalPlayer:new{x=400,y=300}
114
 
              the.player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
 
109
              the.player = SpacePlayer:new{x=1366,y=768}
115
110
              self:add(the.player)
116
 
              self:add(the.player.thrust)
117
111
 
118
112
              --self:add(Enemy:new{x=400, y=300})
119
113
 
120
114
              self:add(the.bullets)
121
 
              --self:add(the.rockColliders)
 
115
              self:add(the.rockColliders)
122
116
              self:add(the.mirrors)
123
 
              --self:add(the.rocks)
124
 
              self:add(the.indicators)
 
117
              self:add(the.rocks)
125
118
              self:add(the.interface)
126
119
 
127
 
              for _ = 1, math.random(6) do
128
 
                 local planet = Planet:new{
129
 
                    x = math.random(the.app.width / 2,
130
 
                                    the.bg.width - the.app.width / 2),
131
 
                    y = math.random(the.app.height / 2,
132
 
                                    the.bg.height - the.app.height / 2),
133
 
                    rotation = math.random() * math.pi
134
 
                 }
135
 
                 the.planets:add(planet)
136
 
              end
137
 
 
138
120
              the.cursor = Cursor:new()
139
121
              self:add(the.cursor)
140
122
 
144
126
                 width = the.app.width,
145
127
                 --align = 'center',
146
128
                 font = 25}
147
 
              --the.interface:add(the.score)
 
129
              the.interface:add(the.score)
148
130
 
149
131
              local hs = the.storage.data.highScore
150
132
              local m = hs / 60
158
140
                 font = 25,
159
141
                 text = string.format('High Score: %d:%02d', m, s)
160
142
              }
161
 
              --the.interface:add(the.highScore)
 
143
              the.interface:add(the.highScore)
162
144
 
163
145
              the.over = Text:new{
164
146
                 y = the.app.height / 2,
192
174
              self.gameStart = love.timer.getTime()
193
175
           end,
194
176
   onUpdate = function(self, dt)
195
 
                 the.bullets:collide(the.planets)
196
 
 
197
 
                 -- this should really go somewhere else...
198
 
                 for _, planet in ipairs(the.planets.sprites) do
 
177
                 if the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
 
178
                    local unseenRock = nil
 
179
                    while not unseenRock do
 
180
                       local rock = Rock:new{
 
181
                          x = math.random(the.app.width / 2,
 
182
                                          the.bg.width - the.app.width / 2),
 
183
                          y = math.random(the.app.height / 2,
 
184
                                          the.bg.height - the.app.height / 2),
 
185
                          velocity = {
 
186
                             x = math.random(-300, 300),
 
187
                             y = math.random(-300, 300),
 
188
                             rotation = math.random(-7, 7)
 
189
                          },
 
190
                          scale = math.random() + 0.5
 
191
                       }
 
192
 
 
193
                       local rockToPlayer = util.shortestVector(rock, the.player)
 
194
                       if math.abs(rockToPlayer.x) > the.app.width / 2 + rock.width * rock.scale and
 
195
                           math.abs(rockToPlayer.y) > the.app.height / 2 + rock.height * rock.scale then
 
196
                         unseenRock = rock
 
197
                        end
 
198
                    end
 
199
 
 
200
                    the.rocks:add(unseenRock)
 
201
 
 
202
                    self.lastRock = love.timer.getTime()
199
203
                 end
200
204
 
 
205
                 the.bullets:collide(the.rockColliders)
 
206
 
201
207
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
202
208
                 --    if not mirror.of then
203
209
                 --       print('mirror:' .. inspect(mirror))
252
258
              math.randomseed(os.time())
253
259
 
254
260
              self.view = GameView:new()
255
 
 
256
261
              if DEBUG then
257
262
                 self.console:watch('VERSION', 'VERSION')
258
263
                 self.console:watch('updateTook', 'the.updateTook')
262
267
                 self.console:watch('the.app.height', 'the.app.height')
263
268
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
264
269
                 self.console:watch('num rocks', '#the.rocks.sprites')
265
 
                 self.console:watch('num planets', '#the.planets.sprites')
266
270
                 --self.console:watch('drawTook', 'the.drawTook')
267
271
 
268
272
                 -- back off that dark overlay a bit
270
274
              end
271
275
           end,
272
276
   onUpdate = function (self, dt)
273
 
                 if not (DEBUG and the.console.visible) then
274
 
                    if the.keys:justPressed('q') then
275
 
                       self.quit()
276
 
                    elseif the.keys:justPressed('return') then
277
 
                       if the.keys:pressed('alt') then
278
 
                          love.graphics.toggleFullscreen()
279
 
                       else
280
 
                          self.view = GameView:new()
281
 
                       end
282
 
                    elseif the.keys:justPressed('f1') then
283
 
                       local ss = love.graphics.newScreenshot()
284
 
                       ss:encode('screenshot-' ..love.timer.getTime()..'.png')
285
 
                    elseif the.keys:justPressed('f11') then
286
 
                       love.graphics.toggleFullscreen()
287
 
                    end
 
277
                 if the.keys:justPressed('escape') then
 
278
                    self.quit()
288
279
                 end
289
280
              end,
290
281
   update = function (self, dt)
295
286
               end
296
287
            end
297
288
}
298
 
 
299
 
realRun = love.run
300
 
function love.run()
301
 
   -- should fail silently if it can't go to fullscreen...
302
 
   love.graphics.toggleFullscreen()
303
 
 
304
 
   realRun()
305
 
end
 
 
b'\\ No newline at end of file'