/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:57:53 UTC
  • Revision ID: josh@9ix.org-20130520175753-yvanutc9jnm8lzbt
quit and restart

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
 
86
 
              the.rockColliders = {}
87
 
              the.bullets = {}
 
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
              the.interface = Group:new()
88
99
 
89
100
              the.bg = Tile:new{
90
101
                 image = 'data/stars3.png',
100
111
 
101
112
              --self:add(Enemy:new{x=400, y=300})
102
113
 
 
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
 
103
120
              the.cursor = Cursor:new()
104
121
              self:add(the.cursor)
105
122
 
 
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
 
106
166
              love.mouse.setGrab(true)
107
167
              love.mouse.setVisible(false)
 
168
              love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
108
169
 
109
170
              --self:loadLayers('data/map.lua')
110
171
              self.focus = the.player
113
174
              self.gameStart = love.timer.getTime()
114
175
           end,
115
176
   onUpdate = function(self, dt)
116
 
                 if love.timer.getTime() > self.lastRock + self.rockInterval then
 
177
                 if the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
117
178
                    local unseenRock = nil
118
179
                    while not unseenRock do
119
180
                       local rock = Rock:new{
136
197
                        end
137
198
                    end
138
199
 
139
 
                    self:add(unseenRock)
 
200
                    the.rocks:add(unseenRock)
140
201
 
141
202
                    self.lastRock = love.timer.getTime()
142
203
                 end
 
204
 
 
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
143
213
              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,
144
222
   draw = function (self, x, y)
145
223
             View.draw(self, x, y)
146
 
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
147
 
          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
148
238
}
149
239
 
150
240
MenuScreen = View:extend {
175
265
                 self.console:watch('the.player.y', 'the.player.y')
176
266
                 self.console:watch('the.app.width', 'the.app.width')
177
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')
178
270
                 --self.console:watch('drawTook', 'the.drawTook')
179
271
 
180
272
                 -- back off that dark overlay a bit
182
274
              end
183
275
           end,
184
276
   onUpdate = function (self, dt)
185
 
                 if the.keys:justPressed('escape') then
 
277
                 if the.keys:justPressed('q') then
186
278
                    self.quit()
 
279
                 elseif the.keys:justPressed('return') then
 
280
                    self.view = GameView:new()
187
281
                 end
188
282
              end,
189
283
   update = function (self, dt)