/spacey

To get this branch, use:
bzr branch /bzr/spacey

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-05-16 02:22:30 UTC
  • Revision ID: josh@9ix.org-20130516022230-9mqgevjra6wmt3vf
keep score, center mouse on start

Show diffs side-by-side

added added

removed removed

110
110
              the.cursor = Cursor:new()
111
111
              self:add(the.cursor)
112
112
 
 
113
              the.score = Text:new{
 
114
                 width = the.app.width,
 
115
                 align = 'center',
 
116
                 font = 25}
 
117
              self:add(the.score)
 
118
 
113
119
              love.mouse.setGrab(true)
114
120
              love.mouse.setVisible(false)
 
121
              love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
115
122
 
116
123
              --self:loadLayers('data/map.lua')
117
124
              self.focus = the.player
150
157
 
151
158
                 the.bullets:collide(the.rockColliders)
152
159
              end,
 
160
   onEndFrame = function(self)
 
161
                   if the.player.active then
 
162
                      local t = love.timer.getTime() - self.gameStart
 
163
                      local m = t / 60
 
164
                      local s = t % 60
 
165
 
 
166
                      the.score.text = string.format('Score: %d:%02d', m, s)
 
167
                      the.score.y = the.player.y - the.app.height / 2 + the.player.height
 
168
                      the.score.x = the.player.x - the.app.width / 2
 
169
                   end
 
170
                end,
153
171
   draw = function (self, x, y)
154
172
             View.draw(self, x, y)
155
173
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)