/traderous

To get this branch, use:
bzr branch http://9ix.org/bzr/traderous

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-05-20 17:54:50 UTC
  • Revision ID: josh@9ix.org-20130520175450-1p2jpuadg24xutlk
some instructions at game over

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
 
94
95
              the.bullets = Group:new()
95
96
              the.mirrors = Group:new()
96
97
              the.rocks = Group:new()
 
98
              the.interface = Group:new()
97
99
 
98
100
              the.bg = Tile:new{
99
101
                 image = 'data/stars3.png',
113
115
              self:add(the.rockColliders)
114
116
              self:add(the.mirrors)
115
117
              self:add(the.rocks)
 
118
              self:add(the.interface)
116
119
 
117
120
              the.cursor = Cursor:new()
118
121
              self:add(the.cursor)
119
122
 
120
123
              the.score = Text:new{
 
124
                 x = 8,
 
125
                 y = 8,
121
126
                 width = the.app.width,
122
 
                 align = 'center',
 
127
                 --align = 'center',
123
128
                 font = 25}
124
 
              self:add(the.score)
 
129
              the.interface:add(the.score)
125
130
 
126
131
              local hs = the.storage.data.highScore
127
132
              local m = hs / 60
128
133
              local s = hs % 60
129
134
 
130
135
              the.highScore = Text:new{
 
136
                 x = -8,
 
137
                 y = 8,
131
138
                 width = the.app.width,
132
139
                 align = 'right',
133
140
                 font = 25,
134
141
                 text = string.format('High Score: %d:%02d', m, s)
135
142
              }
136
 
              self:add(the.highScore)
 
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)
137
165
 
138
166
              love.mouse.setGrab(true)
139
167
              love.mouse.setVisible(false)
146
174
              self.gameStart = love.timer.getTime()
147
175
           end,
148
176
   onUpdate = function(self, dt)
149
 
                 if love.timer.getTime() > self.lastRock + self.rockInterval then
 
177
                 if the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
150
178
                    local unseenRock = nil
151
179
                    while not unseenRock do
152
180
                       local rock = Rock:new{
175
203
                 end
176
204
 
177
205
                 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
178
213
              end,
179
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
 
180
218
                   if the.player.active then
181
 
                      local t = love.timer.getTime() - self.gameStart
182
 
                      local m = t / 60
183
 
                      local s = t % 60
184
 
 
185
 
                      the.score.text = string.format('Score: %d:%02d', m, s)
186
 
                      the.score.y = the.player.y - the.app.height / 2 + the.player.height
187
 
                      the.score.x = the.player.x - the.app.width / 2
 
219
                      self:updateScore()
188
220
                   end
189
 
 
190
 
                   the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
191
 
                   the.highScore.x = the.player.x - the.app.width / 2
192
221
                end,
193
222
   draw = function (self, x, y)
194
223
             View.draw(self, x, y)
195
 
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
196
 
          end
 
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
197
238
}
198
239
 
199
240
MenuScreen = View:extend {
224
265
                 self.console:watch('the.player.y', 'the.player.y')
225
266
                 self.console:watch('the.app.width', 'the.app.width')
226
267
                 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')
227
270
                 --self.console:watch('drawTook', 'the.drawTook')
228
271
 
229
272
                 -- back off that dark overlay a bit