/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-14 17:49:03 UTC
  • Revision ID: josh@9ix.org-20130514174903-790agtxqfvz8lnzv
player 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'
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
 
              the.mirrors = Group:new()
97
 
              the.rocks = Group:new()
98
 
              the.interface = Group:new()
99
88
 
100
89
              the.bg = Tile:new{
101
90
                 image = 'data/stars3.png',
111
100
 
112
101
              --self:add(Enemy:new{x=400, y=300})
113
102
 
114
 
              self:add(the.bullets)
115
 
              self:add(the.rockColliders)
116
 
              self:add(the.mirrors)
117
 
              self:add(the.rocks)
118
 
              self:add(the.interface)
119
 
 
120
103
              the.cursor = Cursor:new()
121
104
              self:add(the.cursor)
122
105
 
123
 
              the.score = Text:new{
124
 
                 x = 8,
125
 
                 y = 8,
126
 
                 width = the.app.width,
127
 
                 --align = 'center',
128
 
                 font = 25}
129
 
              the.interface:add(the.score)
130
 
 
131
 
              local hs = the.storage.data.highScore
132
 
              local m = hs / 60
133
 
              local s = hs % 60
134
 
 
135
 
              the.highScore = Text:new{
136
 
                 x = -8,
137
 
                 y = 8,
138
 
                 width = the.app.width,
139
 
                 align = 'right',
140
 
                 font = 25,
141
 
                 text = string.format('High Score: %d:%02d', m, s)
142
 
              }
143
 
              the.interface:add(the.highScore)
144
 
 
145
 
              the.over = Text:new{
146
 
                 y = the.app.height / 2,
147
 
                 width = the.app.width,
148
 
                 align = 'center',
149
 
                 font = 25,
150
 
                 text = "Game Over",
151
 
                 visible = false
152
 
              }
153
 
              the.interface:add(the.over)
154
 
 
155
 
 
156
 
              the.instructions = Text:new{
157
 
                 y = the.app.height / 2 + 32,
158
 
                 width = the.app.width,
159
 
                 align = 'center',
160
 
                 font = 12,
161
 
                 text = "Press Enter to start a new game\nPress Q to quit",
162
 
                 visible = false
163
 
              }
164
 
              the.interface:add(the.instructions)
165
 
 
166
106
              love.mouse.setGrab(true)
167
107
              love.mouse.setVisible(false)
168
 
              love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
169
108
 
170
109
              --self:loadLayers('data/map.lua')
171
110
              self.focus = the.player
174
113
              self.gameStart = love.timer.getTime()
175
114
           end,
176
115
   onUpdate = function(self, dt)
177
 
                 if the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
 
116
                 if love.timer.getTime() > self.lastRock + self.rockInterval then
178
117
                    local unseenRock = nil
179
118
                    while not unseenRock do
180
119
                       local rock = Rock:new{
197
136
                        end
198
137
                    end
199
138
 
200
 
                    the.rocks:add(unseenRock)
 
139
                    self:add(unseenRock)
201
140
 
202
141
                    self.lastRock = love.timer.getTime()
203
142
                 end
204
143
 
205
144
                 the.bullets:collide(the.rockColliders)
206
 
 
207
 
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
208
 
                 --    if not mirror.of then
209
 
                 --       print('mirror:' .. inspect(mirror))
210
 
                 --       error('mirror OF NOTHING')
211
 
                 --    end
212
 
                 -- end
213
145
              end,
214
 
   onEndFrame = function(self)
215
 
                   the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
216
 
                   the.interface.translate.y = the.player.y - the.app.height / 2 + the.player.height / 2
217
 
 
218
 
                   if the.player.active then
219
 
                      self:updateScore()
220
 
                   end
221
 
                end,
222
146
   draw = function (self, x, y)
223
147
             View.draw(self, x, y)
224
 
             --love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
225
 
          end,
226
 
   updateScore = function(self)
227
 
                    local t = love.timer.getTime() - self.gameStart
228
 
                    local m = t / 60
229
 
                    local s = t % 60
230
 
 
231
 
                    the.score.text = string.format('Score: %d:%02d', m, s)
232
 
                    --the.score.y = the.player.y - the.app.height / 2 + the.player.height
233
 
                    --the.score.x = the.player.x - the.app.width / 2 + the.player.width
234
 
 
235
 
                    --the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
236
 
                    --the.highScore.x = the.player.x - the.app.width / 2
237
 
                 end
 
148
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
 
149
          end
238
150
}
239
151
 
240
152
MenuScreen = View:extend {
265
177
                 self.console:watch('the.player.y', 'the.player.y')
266
178
                 self.console:watch('the.app.width', 'the.app.width')
267
179
                 self.console:watch('the.app.height', 'the.app.height')
268
 
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
269
 
                 self.console:watch('num rocks', '#the.rocks.sprites')
270
180
                 --self.console:watch('drawTook', 'the.drawTook')
271
181
 
272
182
                 -- back off that dark overlay a bit
274
184
              end
275
185
           end,
276
186
   onUpdate = function (self, dt)
277
 
                 if the.keys:justPressed('q') then
 
187
                 if the.keys:justPressed('escape') then
278
188
                    self.quit()
279
 
                 elseif the.keys:justPressed('return') then
280
 
                    self.view = GameView:new()
281
189
                 end
282
190
              end,
283
191
   update = function (self, dt)