/spacey

To get this branch, use:
bzr branch http://9ix.org/bzr/spacey

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-05-16 02:41:58 UTC
  • Revision ID: josh@9ix.org-20130516024158-d5jtkfvd2qw709xo
record high scores

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'
7
6
 
8
7
require 'group'
9
8
 
95
94
              the.bullets = Group:new()
96
95
              the.mirrors = Group:new()
97
96
              the.rocks = Group:new()
98
 
              the.interface = Group:new()
99
97
 
100
98
              the.bg = Tile:new{
101
99
                 image = 'data/stars3.png',
115
113
              self:add(the.rockColliders)
116
114
              self:add(the.mirrors)
117
115
              self:add(the.rocks)
118
 
              self:add(the.interface)
119
116
 
120
117
              the.cursor = Cursor:new()
121
118
              self:add(the.cursor)
122
119
 
123
120
              the.score = Text:new{
124
 
                 x = 8,
125
 
                 y = 8,
126
121
                 width = the.app.width,
127
 
                 --align = 'center',
 
122
                 align = 'center',
128
123
                 font = 25}
129
 
              the.interface:add(the.score)
 
124
              self:add(the.score)
130
125
 
131
126
              local hs = the.storage.data.highScore
132
127
              local m = hs / 60
133
128
              local s = hs % 60
134
129
 
135
130
              the.highScore = Text:new{
136
 
                 x = -8,
137
 
                 y = 8,
138
131
                 width = the.app.width,
139
132
                 align = 'right',
140
133
                 font = 25,
141
134
                 text = string.format('High Score: %d:%02d', m, s)
142
135
              }
143
 
              the.interface:add(the.highScore)
144
 
 
145
 
              the.over = Text:new{
146
 
                 y = the.app.height / 2,
147
 
                 width = the.app.width,
148
 
                 align = 'center',
149
 
                 font = 25,
150
 
                 text = "Game Over",
151
 
                 visible = false
152
 
              }
153
 
              the.interface:add(the.over)
154
 
 
155
 
 
156
 
              the.instructions = Text:new{
157
 
                 y = the.app.height / 2 + 32,
158
 
                 width = the.app.width,
159
 
                 align = 'center',
160
 
                 font = 12,
161
 
                 text = "Press Enter to start a new game\nPress Q to quit",
162
 
                 visible = false
163
 
              }
164
 
              the.interface:add(the.instructions)
 
136
              self:add(the.highScore)
165
137
 
166
138
              love.mouse.setGrab(true)
167
139
              love.mouse.setVisible(false)
174
146
              self.gameStart = love.timer.getTime()
175
147
           end,
176
148
   onUpdate = function(self, dt)
177
 
                 if the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
 
149
                 if love.timer.getTime() > self.lastRock + self.rockInterval then
178
150
                    local unseenRock = nil
179
151
                    while not unseenRock do
180
152
                       local rock = Rock:new{
203
175
                 end
204
176
 
205
177
                 the.bullets:collide(the.rockColliders)
206
 
 
207
 
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
208
 
                 --    if not mirror.of then
209
 
                 --       print('mirror:' .. inspect(mirror))
210
 
                 --       error('mirror OF NOTHING')
211
 
                 --    end
212
 
                 -- end
213
178
              end,
214
179
   onEndFrame = function(self)
215
 
                   the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
216
 
                   the.interface.translate.y = the.player.y - the.app.height / 2 + the.player.height / 2
217
 
 
218
180
                   if the.player.active then
219
 
                      self:updateScore()
 
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
220
188
                   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
221
192
                end,
222
193
   draw = function (self, x, y)
223
194
             View.draw(self, x, y)
224
 
             --love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
225
 
          end,
226
 
   updateScore = function(self)
227
 
                    local t = love.timer.getTime() - self.gameStart
228
 
                    local m = t / 60
229
 
                    local s = t % 60
230
 
 
231
 
                    the.score.text = string.format('Score: %d:%02d', m, s)
232
 
                    --the.score.y = the.player.y - the.app.height / 2 + the.player.height
233
 
                    --the.score.x = the.player.x - the.app.width / 2 + the.player.width
234
 
 
235
 
                    --the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
236
 
                    --the.highScore.x = the.player.x - the.app.width / 2
237
 
                 end
 
195
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
 
196
          end
238
197
}
239
198
 
240
199
MenuScreen = View:extend {
265
224
                 self.console:watch('the.player.y', 'the.player.y')
266
225
                 self.console:watch('the.app.width', 'the.app.width')
267
226
                 self.console:watch('the.app.height', 'the.app.height')
268
 
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
269
 
                 self.console:watch('num rocks', '#the.rocks.sprites')
270
227
                 --self.console:watch('drawTook', 'the.drawTook')
271
228
 
272
229
                 -- back off that dark overlay a bit
274
231
              end
275
232
           end,
276
233
   onUpdate = function (self, dt)
277
 
                 if the.keys:justPressed('q') then
 
234
                 if the.keys:justPressed('escape') then
278
235
                    self.quit()
279
 
                 elseif the.keys:justPressed('return') then
280
 
                    self.view = GameView:new()
281
236
                 end
282
237
              end,
283
238
   update = function (self, dt)