/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',
108
106
              --the.player = CrystalPlayer:new{x=400,y=300}
109
107
              the.player = SpacePlayer:new{x=1366,y=768}
110
108
              self:add(the.player)
111
 
              self:add(the.player.thrust)
112
109
 
113
110
              --self:add(Enemy:new{x=400, y=300})
114
111
 
116
113
              self:add(the.rockColliders)
117
114
              self:add(the.mirrors)
118
115
              self:add(the.rocks)
119
 
              self:add(the.interface)
120
116
 
121
117
              the.cursor = Cursor:new()
122
118
              self:add(the.cursor)
123
119
 
124
120
              the.score = Text:new{
125
 
                 x = 8,
126
 
                 y = 8,
127
121
                 width = the.app.width,
128
 
                 --align = 'center',
 
122
                 align = 'center',
129
123
                 font = 25}
130
 
              the.interface:add(the.score)
 
124
              self:add(the.score)
131
125
 
132
126
              local hs = the.storage.data.highScore
133
127
              local m = hs / 60
134
128
              local s = hs % 60
135
129
 
136
130
              the.highScore = Text:new{
137
 
                 x = -8,
138
 
                 y = 8,
139
131
                 width = the.app.width,
140
132
                 align = 'right',
141
133
                 font = 25,
142
134
                 text = string.format('High Score: %d:%02d', m, s)
143
135
              }
144
 
              the.interface:add(the.highScore)
145
 
 
146
 
              the.over = Text:new{
147
 
                 y = the.app.height / 2,
148
 
                 width = the.app.width,
149
 
                 align = 'center',
150
 
                 font = 25,
151
 
                 text = "Game Over",
152
 
                 visible = false
153
 
              }
154
 
              the.interface:add(the.over)
155
 
 
156
 
 
157
 
              the.instructions = Text:new{
158
 
                 y = the.app.height / 2 + 32,
159
 
                 width = the.app.width,
160
 
                 align = 'center',
161
 
                 font = 12,
162
 
                 text = "Press Enter to start a new game\nPress Q to quit",
163
 
                 visible = false
164
 
              }
165
 
              the.interface:add(the.instructions)
 
136
              self:add(the.highScore)
166
137
 
167
138
              love.mouse.setGrab(true)
168
139
              love.mouse.setVisible(false)
175
146
              self.gameStart = love.timer.getTime()
176
147
           end,
177
148
   onUpdate = function(self, dt)
178
 
                 if the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
 
149
                 if love.timer.getTime() > self.lastRock + self.rockInterval then
179
150
                    local unseenRock = nil
180
151
                    while not unseenRock do
181
152
                       local rock = Rock:new{
204
175
                 end
205
176
 
206
177
                 the.bullets:collide(the.rockColliders)
207
 
 
208
 
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
209
 
                 --    if not mirror.of then
210
 
                 --       print('mirror:' .. inspect(mirror))
211
 
                 --       error('mirror OF NOTHING')
212
 
                 --    end
213
 
                 -- end
214
178
              end,
215
179
   onEndFrame = function(self)
216
 
                   the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
217
 
                   the.interface.translate.y = the.player.y - the.app.height / 2 + the.player.height / 2
218
 
 
219
180
                   if the.player.active then
220
 
                      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
221
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
222
192
                end,
223
193
   draw = function (self, x, y)
224
194
             View.draw(self, x, y)
225
 
             --love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
226
 
          end,
227
 
   updateScore = function(self)
228
 
                    local t = love.timer.getTime() - self.gameStart
229
 
                    local m = t / 60
230
 
                    local s = t % 60
231
 
 
232
 
                    the.score.text = string.format('Score: %d:%02d', m, s)
233
 
                    --the.score.y = the.player.y - the.app.height / 2 + the.player.height
234
 
                    --the.score.x = the.player.x - the.app.width / 2 + the.player.width
235
 
 
236
 
                    --the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
237
 
                    --the.highScore.x = the.player.x - the.app.width / 2
238
 
                 end
 
195
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
 
196
          end
239
197
}
240
198
 
241
199
MenuScreen = View:extend {
259
217
              math.randomseed(os.time())
260
218
 
261
219
              self.view = GameView:new()
262
 
 
263
 
              -- should fail silently if it can't go to fullscreen...
264
 
              love.graphics.toggleFullscreen()
265
 
 
266
220
              if DEBUG then
267
221
                 self.console:watch('VERSION', 'VERSION')
268
222
                 self.console:watch('updateTook', 'the.updateTook')
270
224
                 self.console:watch('the.player.y', 'the.player.y')
271
225
                 self.console:watch('the.app.width', 'the.app.width')
272
226
                 self.console:watch('the.app.height', 'the.app.height')
273
 
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
274
 
                 self.console:watch('num rocks', '#the.rocks.sprites')
275
227
                 --self.console:watch('drawTook', 'the.drawTook')
276
228
 
277
229
                 -- back off that dark overlay a bit
279
231
              end
280
232
           end,
281
233
   onUpdate = function (self, dt)
282
 
                 if the.keys:justPressed('q') then
 
234
                 if the.keys:justPressed('escape') then
283
235
                    self.quit()
284
 
                 elseif the.keys:justPressed('return') then
285
 
                    if the.keys:pressed('alt') then
286
 
                       love.graphics.toggleFullscreen()
287
 
                    else
288
 
                       self.view = GameView:new()
289
 
                    end
290
 
                 elseif the.keys:justPressed('f1') then
291
 
                    local ss = love.graphics.newScreenshot()
292
 
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
293
 
                 elseif the.keys:justPressed('f11') then
294
 
                    love.graphics.toggleFullscreen()
295
236
                 end
296
237
              end,
297
238
   update = function (self, dt)