/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:
2
2
DEBUG = true
3
3
 
4
4
require 'zoetrope'
5
 
--__ = require 'underscore'
6
5
vector = require 'vector'
 
6
--inspect = require 'inspect'
7
7
 
8
8
require 'group'
9
9
 
15
15
require 'cursor'
16
16
require 'bullet'
17
17
require 'rock'
 
18
require 'boom'
18
19
 
19
20
util = {
20
21
   signOf = function(value)
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
 
 
94
              the.rockColliders = Group:new()
 
95
              the.bullets = Group:new()
 
96
              the.mirrors = Group:new()
 
97
              the.rocks = Group:new()
 
98
 
86
99
              the.bg = Tile:new{
87
100
                 image = 'data/stars3.png',
88
101
                 -- 1366x768 * 3
97
110
 
98
111
              --self:add(Enemy:new{x=400, y=300})
99
112
 
 
113
              self:add(the.bullets)
 
114
              self:add(the.rockColliders)
 
115
              self:add(the.mirrors)
 
116
              self:add(the.rocks)
 
117
 
100
118
              the.cursor = Cursor:new()
101
119
              self:add(the.cursor)
102
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
 
103
139
              love.mouse.setGrab(true)
104
140
              love.mouse.setVisible(false)
 
141
              love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
105
142
 
106
143
              --self:loadLayers('data/map.lua')
107
144
              self.focus = the.player
133
170
                        end
134
171
                    end
135
172
 
136
 
                    self:add(unseenRock)
 
173
                    the.rocks:add(unseenRock)
137
174
 
138
175
                    self.lastRock = love.timer.getTime()
139
176
                 end
 
177
 
 
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
140
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,
141
201
   draw = function (self, x, y)
142
202
             View.draw(self, x, y)
143
203
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
172
232
                 self.console:watch('the.player.y', 'the.player.y')
173
233
                 self.console:watch('the.app.width', 'the.app.width')
174
234
                 self.console:watch('the.app.height', 'the.app.height')
 
235
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
175
236
                 --self.console:watch('drawTook', 'the.drawTook')
176
237
 
177
238
                 -- back off that dark overlay a bit