/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-18 00:09:56 UTC
  • Revision ID: josh@9ix.org-20130518000956-s9717aensfsq1b3c
fix double-removing sprites (and subsequent zombie mirror bullets).  
also lots of debug stuff.

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()
 
96
              the.mirrors = Group:new()
 
97
              the.rocks = Group:new()
88
98
 
89
99
              the.bg = Tile:new{
90
100
                 image = 'data/stars3.png',
100
110
 
101
111
              --self:add(Enemy:new{x=400, y=300})
102
112
 
 
113
              self:add(the.bullets)
 
114
              self:add(the.rockColliders)
 
115
              self:add(the.mirrors)
 
116
              self:add(the.rocks)
 
117
 
103
118
              the.cursor = Cursor:new()
104
119
              self:add(the.cursor)
105
120
 
 
121
              the.score = Text:new{
 
122
                 width = the.app.width,
 
123
                 align = 'center',
 
124
                 font = 25}
 
125
              self:add(the.score)
 
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
 
106
139
              love.mouse.setGrab(true)
107
140
              love.mouse.setVisible(false)
 
141
              love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
108
142
 
109
143
              --self:loadLayers('data/map.lua')
110
144
              self.focus = the.player
136
170
                        end
137
171
                    end
138
172
 
139
 
                    self:add(unseenRock)
 
173
                    the.rocks:add(unseenRock)
140
174
 
141
175
                    self.lastRock = love.timer.getTime()
142
176
                 end
143
177
 
144
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
145
186
              end,
 
187
   onEndFrame = function(self)
 
188
                   if the.player.active then
 
189
                      local t = love.timer.getTime() - self.gameStart
 
190
                      local m = t / 60
 
191
                      local s = t % 60
 
192
 
 
193
                      the.score.text = string.format('Score: %d:%02d', m, s)
 
194
                      the.score.y = the.player.y - the.app.height / 2 + the.player.height
 
195
                      the.score.x = the.player.x - the.app.width / 2
 
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
 
200
                end,
146
201
   draw = function (self, x, y)
147
202
             View.draw(self, x, y)
148
203
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
177
232
                 self.console:watch('the.player.y', 'the.player.y')
178
233
                 self.console:watch('the.app.width', 'the.app.width')
179
234
                 self.console:watch('the.app.height', 'the.app.height')
 
235
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
180
236
                 --self.console:watch('drawTook', 'the.drawTook')
181
237
 
182
238
                 -- back off that dark overlay a bit