/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-09 23:09:16 UTC
  • Revision ID: josh@9ix.org-20130609230916-jdtvrn226f3vnijm
add planet, remove rocks

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
require 'zoetrope'
5
5
vector = require 'vector'
 
6
--inspect = require 'inspect'
6
7
 
7
8
require 'group'
8
9
 
90
91
                 the.storage.data = {highScore = 0}
91
92
              end
92
93
 
93
 
              the.rockColliders = Group:new()
 
94
              --the.rockColliders = Group:new()
94
95
              the.bullets = Group:new()
95
96
              the.mirrors = Group:new()
96
 
              the.rocks = Group:new()
 
97
              --the.rocks = Group:new()
 
98
              the.interface = Group:new()
 
99
              the.planets = Group:new()
97
100
 
98
101
              the.bg = Tile:new{
99
102
                 image = 'data/stars3.png',
103
106
              }
104
107
              self:add(the.bg)
105
108
 
 
109
              self:add(the.planets)
 
110
 
106
111
              --the.player = CrystalPlayer:new{x=400,y=300}
107
112
              the.player = SpacePlayer:new{x=1366,y=768}
108
113
              self:add(the.player)
 
114
              self:add(the.player.thrust)
109
115
 
110
116
              --self:add(Enemy:new{x=400, y=300})
111
117
 
112
118
              self:add(the.bullets)
113
 
              self:add(the.rockColliders)
 
119
              --self:add(the.rockColliders)
114
120
              self:add(the.mirrors)
115
 
              self:add(the.rocks)
 
121
              --self:add(the.rocks)
 
122
              self:add(the.interface)
 
123
 
 
124
              local planet = Tile:new{
 
125
                 image = 'data/planet1.png',
 
126
                 x = math.random(the.app.width / 2,
 
127
                                 the.bg.width - the.app.width / 2),
 
128
                 y = math.random(the.app.height / 2,
 
129
                                 the.bg.height - the.app.height / 2),
 
130
              }
 
131
              the.planets:add(planet)
116
132
 
117
133
              the.cursor = Cursor:new()
118
134
              self:add(the.cursor)
119
135
 
120
136
              the.score = Text:new{
 
137
                 x = 8,
 
138
                 y = 8,
121
139
                 width = the.app.width,
122
 
                 align = 'center',
 
140
                 --align = 'center',
123
141
                 font = 25}
124
 
              self:add(the.score)
 
142
              the.interface:add(the.score)
125
143
 
126
144
              local hs = the.storage.data.highScore
127
145
              local m = hs / 60
128
146
              local s = hs % 60
129
147
 
130
148
              the.highScore = Text:new{
 
149
                 x = -8,
 
150
                 y = 8,
131
151
                 width = the.app.width,
132
152
                 align = 'right',
133
153
                 font = 25,
134
154
                 text = string.format('High Score: %d:%02d', m, s)
135
155
              }
136
 
              self:add(the.highScore)
 
156
              the.interface:add(the.highScore)
 
157
 
 
158
              the.over = Text:new{
 
159
                 y = the.app.height / 2,
 
160
                 width = the.app.width,
 
161
                 align = 'center',
 
162
                 font = 25,
 
163
                 text = "Game Over",
 
164
                 visible = false
 
165
              }
 
166
              the.interface:add(the.over)
 
167
 
 
168
 
 
169
              the.instructions = Text:new{
 
170
                 y = the.app.height / 2 + 32,
 
171
                 width = the.app.width,
 
172
                 align = 'center',
 
173
                 font = 12,
 
174
                 text = "Press Enter to start a new game\nPress Q to quit",
 
175
                 visible = false
 
176
              }
 
177
              the.interface:add(the.instructions)
137
178
 
138
179
              love.mouse.setGrab(true)
139
180
              love.mouse.setVisible(false)
146
187
              self.gameStart = love.timer.getTime()
147
188
           end,
148
189
   onUpdate = function(self, dt)
149
 
                 if love.timer.getTime() > self.lastRock + self.rockInterval then
 
190
                 if false and the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
150
191
                    local unseenRock = nil
151
192
                    while not unseenRock do
152
193
                       local rock = Rock:new{
175
216
                 end
176
217
 
177
218
                 the.bullets:collide(the.rockColliders)
 
219
 
 
220
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
 
221
                 --    if not mirror.of then
 
222
                 --       print('mirror:' .. inspect(mirror))
 
223
                 --       error('mirror OF NOTHING')
 
224
                 --    end
 
225
                 -- end
178
226
              end,
179
227
   onEndFrame = function(self)
 
228
                   the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
 
229
                   the.interface.translate.y = the.player.y - the.app.height / 2 + the.player.height / 2
 
230
 
180
231
                   if the.player.active then
181
 
                      local t = love.timer.getTime() - self.gameStart
182
 
                      local m = t / 60
183
 
                      local s = t % 60
184
 
 
185
 
                      the.score.text = string.format('Score: %d:%02d', m, s)
186
 
                      the.score.y = the.player.y - the.app.height / 2 + the.player.height
187
 
                      the.score.x = the.player.x - the.app.width / 2
 
232
                      self:updateScore()
188
233
                   end
189
 
 
190
 
                   the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
191
 
                   the.highScore.x = the.player.x - the.app.width / 2
192
234
                end,
193
235
   draw = function (self, x, y)
194
236
             View.draw(self, x, y)
195
 
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
196
 
          end
 
237
             --love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
 
238
          end,
 
239
   updateScore = function(self)
 
240
                    local t = love.timer.getTime() - self.gameStart
 
241
                    local m = t / 60
 
242
                    local s = t % 60
 
243
 
 
244
                    the.score.text = string.format('Score: %d:%02d', m, s)
 
245
                    --the.score.y = the.player.y - the.app.height / 2 + the.player.height
 
246
                    --the.score.x = the.player.x - the.app.width / 2 + the.player.width
 
247
 
 
248
                    --the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
 
249
                    --the.highScore.x = the.player.x - the.app.width / 2
 
250
                 end
197
251
}
198
252
 
199
253
MenuScreen = View:extend {
217
271
              math.randomseed(os.time())
218
272
 
219
273
              self.view = GameView:new()
 
274
 
 
275
              -- should fail silently if it can't go to fullscreen...
 
276
              love.graphics.toggleFullscreen()
 
277
 
220
278
              if DEBUG then
221
279
                 self.console:watch('VERSION', 'VERSION')
222
280
                 self.console:watch('updateTook', 'the.updateTook')
224
282
                 self.console:watch('the.player.y', 'the.player.y')
225
283
                 self.console:watch('the.app.width', 'the.app.width')
226
284
                 self.console:watch('the.app.height', 'the.app.height')
 
285
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
 
286
                 self.console:watch('num rocks', '#the.rocks.sprites')
227
287
                 --self.console:watch('drawTook', 'the.drawTook')
228
288
 
229
289
                 -- back off that dark overlay a bit
231
291
              end
232
292
           end,
233
293
   onUpdate = function (self, dt)
234
 
                 if the.keys:justPressed('escape') then
 
294
                 if the.keys:justPressed('q') then
235
295
                    self.quit()
 
296
                 elseif the.keys:justPressed('return') then
 
297
                    if the.keys:pressed('alt') then
 
298
                       love.graphics.toggleFullscreen()
 
299
                    else
 
300
                       self.view = GameView:new()
 
301
                    end
 
302
                 elseif the.keys:justPressed('f1') then
 
303
                    local ss = love.graphics.newScreenshot()
 
304
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
 
305
                 elseif the.keys:justPressed('f11') then
 
306
                    love.graphics.toggleFullscreen()
236
307
                 end
237
308
              end,
238
309
   update = function (self, dt)