/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 00:15:01 UTC
  • Revision ID: josh@9ix.org-20130514001501-z14e702ncp21s0yr
try to not spawn rocks where you can see them.  not working if screen 
crosses game boundaries.

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'
5
6
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'
19
18
 
20
19
util = {
21
20
   signOf = function(value)
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
 
              the.rockColliders = Group:new()
95
 
              the.bullets = Group:new()
96
 
              the.mirrors = Group:new()
97
 
              the.rocks = Group:new()
98
 
 
99
86
              the.bg = Tile:new{
100
87
                 image = 'data/stars3.png',
101
88
                 -- 1366x768 * 3
110
97
 
111
98
              --self:add(Enemy:new{x=400, y=300})
112
99
 
113
 
              self:add(the.bullets)
114
 
              self:add(the.rockColliders)
115
 
              self:add(the.mirrors)
116
 
              self:add(the.rocks)
117
 
 
118
100
              the.cursor = Cursor:new()
119
101
              self:add(the.cursor)
120
102
 
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
 
 
139
103
              love.mouse.setGrab(true)
140
104
              love.mouse.setVisible(false)
141
 
              love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
142
105
 
143
106
              --self:loadLayers('data/map.lua')
144
107
              self.focus = the.player
147
110
              self.gameStart = love.timer.getTime()
148
111
           end,
149
112
   onUpdate = function(self, dt)
150
 
                 if the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
 
113
                 if love.timer.getTime() > self.lastRock + self.rockInterval then
151
114
                    local unseenRock = nil
152
115
                    while not unseenRock do
153
116
                       local rock = Rock:new{
170
133
                        end
171
134
                    end
172
135
 
173
 
                    the.rocks:add(unseenRock)
 
136
                    self:add(unseenRock)
174
137
 
175
138
                    self.lastRock = love.timer.getTime()
176
139
                 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
186
140
              end,
187
 
   onEndFrame = function(self)
188
 
                   if the.player.active then
189
 
                      self:updateScore()
190
 
                   end
191
 
                end,
192
141
   draw = function (self, x, y)
193
142
             View.draw(self, x, y)
194
 
             --love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
195
 
          end,
196
 
   updateScore = function(self)
197
 
                    local t = love.timer.getTime() - self.gameStart
198
 
                    local m = t / 60
199
 
                    local s = t % 60
200
 
 
201
 
                    the.score.text = string.format('Score: %d:%02d', m, s)
202
 
                    the.score.y = the.player.y - the.app.height / 2 + the.player.height
203
 
                    the.score.x = the.player.x - the.app.width / 2 + the.player.width
204
 
 
205
 
                    the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
206
 
                    the.highScore.x = the.player.x - the.app.width / 2
207
 
                 end
 
143
             love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
 
144
          end
208
145
}
209
146
 
210
147
MenuScreen = View:extend {
235
172
                 self.console:watch('the.player.y', 'the.player.y')
236
173
                 self.console:watch('the.app.width', 'the.app.width')
237
174
                 self.console:watch('the.app.height', 'the.app.height')
238
 
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
239
 
                 self.console:watch('num rocks', '#the.rocks.sprites')
240
175
                 --self.console:watch('drawTook', 'the.drawTook')
241
176
 
242
177
                 -- back off that dark overlay a bit