/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: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

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
 
84
83
              --    end
85
84
              -- end
86
85
 
87
 
              the.storage = Storage:new{filename = 'scores.lua'}
88
 
              the.storage:load()
89
 
              if not the.storage.data.highScore then
90
 
                 print('initializing storage')
91
 
                 the.storage.data = {highScore = 0}
92
 
              end
93
 
 
94
86
              the.rockColliders = Group:new()
95
87
              the.bullets = Group:new()
96
88
              the.mirrors = Group:new()
124
116
                 font = 25}
125
117
              self:add(the.score)
126
118
 
127
 
              local hs = the.storage.data.highScore
128
 
              local m = hs / 60
129
 
              local s = hs % 60
130
 
 
131
 
              the.highScore = Text:new{
132
 
                 width = the.app.width,
133
 
                 align = 'right',
134
 
                 font = 25,
135
 
                 text = string.format('High Score: %d:%02d', m, s)
136
 
              }
137
 
              self:add(the.highScore)
138
 
 
139
119
              love.mouse.setGrab(true)
140
120
              love.mouse.setVisible(false)
141
121
              love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
147
127
              self.gameStart = love.timer.getTime()
148
128
           end,
149
129
   onUpdate = function(self, dt)
150
 
                 if the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
 
130
                 if love.timer.getTime() > self.lastRock + self.rockInterval then
151
131
                    local unseenRock = nil
152
132
                    while not unseenRock do
153
133
                       local rock = Rock:new{
176
156
                 end
177
157
 
178
158
                 the.bullets:collide(the.rockColliders)
179
 
 
180
 
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
181
 
                 --    if not mirror.of then
182
 
                 --       print('mirror:' .. inspect(mirror))
183
 
                 --       error('mirror OF NOTHING')
184
 
                 --    end
185
 
                 -- end
186
159
              end,
187
160
   onEndFrame = function(self)
188
161
                   if the.player.active then
194
167
                      the.score.y = the.player.y - the.app.height / 2 + the.player.height
195
168
                      the.score.x = the.player.x - the.app.width / 2
196
169
                   end
197
 
 
198
 
                   the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
199
 
                   the.highScore.x = the.player.x - the.app.width / 2
200
170
                end,
201
171
   draw = function (self, x, y)
202
172
             View.draw(self, x, y)
232
202
                 self.console:watch('the.player.y', 'the.player.y')
233
203
                 self.console:watch('the.app.width', 'the.app.width')
234
204
                 self.console:watch('the.app.height', 'the.app.height')
235
 
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
236
 
                 self.console:watch('num rocks', '#the.rocks.sprites')
237
205
                 --self.console:watch('drawTook', 'the.drawTook')
238
206
 
239
207
                 -- back off that dark overlay a bit