/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-20 01:09:55 UTC
  • Revision ID: josh@9ix.org-20130520010955-8kzcxxe7sa8pdk8e
don't keep spawning rocks after death.

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
 
83
84
              --    end
84
85
              -- end
85
86
 
 
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
 
86
94
              the.rockColliders = Group:new()
87
95
              the.bullets = Group:new()
88
96
              the.mirrors = Group:new()
116
124
                 font = 25}
117
125
              self:add(the.score)
118
126
 
 
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
 
119
139
              love.mouse.setGrab(true)
120
140
              love.mouse.setVisible(false)
121
141
              love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
127
147
              self.gameStart = love.timer.getTime()
128
148
           end,
129
149
   onUpdate = function(self, dt)
130
 
                 if love.timer.getTime() > self.lastRock + self.rockInterval then
 
150
                 if the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
131
151
                    local unseenRock = nil
132
152
                    while not unseenRock do
133
153
                       local rock = Rock:new{
156
176
                 end
157
177
 
158
178
                 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
159
186
              end,
160
187
   onEndFrame = function(self)
161
188
                   if the.player.active then
167
194
                      the.score.y = the.player.y - the.app.height / 2 + the.player.height
168
195
                      the.score.x = the.player.x - the.app.width / 2
169
196
                   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
170
200
                end,
171
201
   draw = function (self, x, y)
172
202
             View.draw(self, x, y)
202
232
                 self.console:watch('the.player.y', 'the.player.y')
203
233
                 self.console:watch('the.app.width', 'the.app.width')
204
234
                 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')
205
237
                 --self.console:watch('drawTook', 'the.drawTook')
206
238
 
207
239
                 -- back off that dark overlay a bit