/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-06-16 20:20:20 UTC
  • Revision ID: josh@9ix.org-20130616202020-dcra09dhl5bdx8lc
rotate enemy ship slower

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
require 'bullet'
17
17
require 'rock'
18
18
require 'boom'
 
19
require 'planet'
 
20
require 'trade_view'
19
21
 
20
22
util = {
21
23
   signOf = function(value)
71
73
}
72
74
 
73
75
GameView = View:extend {
74
 
   lastRock = 0,
75
 
   rockInterval = 1,
76
 
   gameStart = 0,
77
76
   onNew = function (self)
78
 
              -- for x = 1,30 do
79
 
              --    for y = 1,30 do
80
 
              --       self:add(Fill:new{x=x*400, y=y*400,
81
 
              --                         width = 32, height = 32,
82
 
              --                         fill = {0,0,255}
83
 
              --                      })
84
 
              --    end
85
 
              -- end
86
 
 
87
77
              the.storage = Storage:new{filename = 'scores.lua'}
88
78
              the.storage:load()
89
 
              if not the.storage.data.highScore then
90
 
                 print('initializing storage')
91
 
                 the.storage.data = {highScore = 0}
92
 
              end
 
79
              --if not the.storage.data.highScore then
 
80
              --   print('initializing storage')
 
81
              --   the.storage.data = {highScore = 0}
 
82
              --end
93
83
 
94
 
              the.rockColliders = Group:new()
95
84
              the.bullets = Group:new()
96
 
              the.mirrors = Group:new()
97
 
              the.rocks = Group:new()
98
85
              the.interface = Group:new()
 
86
              the.planets = Group:new()
 
87
              the.indicators = Group:new()
99
88
 
100
89
              the.bg = Tile:new{
101
90
                 image = 'data/stars3.png',
102
 
                 -- 1366x768 * 3
103
 
                 width = 4098,
104
 
                 height = 2304
 
91
                 width = 13660,
 
92
                 height = 7680
105
93
              }
106
94
              self:add(the.bg)
107
95
 
 
96
              self:add(the.planets)
 
97
 
108
98
              --the.player = CrystalPlayer:new{x=400,y=300}
109
 
              the.player = SpacePlayer:new{x=1366,y=768}
 
99
              the.player = SpacePlayer:new{x=the.bg.width / 2, y=the.bg.height / 2}
110
100
              self:add(the.player)
111
101
              self:add(the.player.thrust)
112
102
 
113
 
              --self:add(Enemy:new{x=400, y=300})
 
103
              local e = Enemy:new{x=400, y=300}
 
104
              --local e = Enemy:new{x=the.bg.width / 2, y=the.bg.height / 2}
 
105
              self:add(e)
 
106
              self:add(e.thrust) -- why doesn't this work in Enemy.new?
114
107
 
115
108
              self:add(the.bullets)
116
 
              self:add(the.rockColliders)
117
 
              self:add(the.mirrors)
118
 
              self:add(the.rocks)
 
109
              self:add(the.indicators)
119
110
              self:add(the.interface)
120
111
 
 
112
              for _ = 1, math.random(6) do
 
113
                 local planet = Planet:new{
 
114
                    x = math.random(the.app.width / 2,
 
115
                                    the.bg.width - the.app.width / 2),
 
116
                    y = math.random(the.app.height / 2,
 
117
                                    the.bg.height - the.app.height / 2),
 
118
                    rotation = math.random() * math.pi
 
119
                 }
 
120
                 the.planets:add(planet)
 
121
              end
 
122
 
121
123
              the.cursor = Cursor:new()
122
124
              self:add(the.cursor)
123
125
 
124
 
              the.score = Text:new{
125
 
                 x = 8,
126
 
                 y = 8,
127
 
                 width = the.app.width,
128
 
                 --align = 'center',
129
 
                 font = 25}
130
 
              the.interface:add(the.score)
131
 
 
132
 
              local hs = the.storage.data.highScore
133
 
              local m = hs / 60
134
 
              local s = hs % 60
135
 
 
136
 
              the.highScore = Text:new{
137
 
                 x = -8,
138
 
                 y = 8,
139
 
                 width = the.app.width,
140
 
                 align = 'right',
141
 
                 font = 25,
142
 
                 text = string.format('High Score: %d:%02d', m, s)
143
 
              }
144
 
              the.interface:add(the.highScore)
145
 
 
146
 
              the.over = Text:new{
147
 
                 y = the.app.height / 2,
148
 
                 width = the.app.width,
149
 
                 align = 'center',
150
 
                 font = 25,
151
 
                 text = "Game Over",
152
 
                 visible = false
153
 
              }
154
 
              the.interface:add(the.over)
155
 
 
156
 
 
157
 
              the.instructions = Text:new{
158
 
                 y = the.app.height / 2 + 32,
159
 
                 width = the.app.width,
160
 
                 align = 'center',
161
 
                 font = 12,
162
 
                 text = "Press Enter to start a new game\nPress Q to quit",
163
 
                 visible = false
164
 
              }
165
 
              the.interface:add(the.instructions)
166
 
 
167
126
              love.mouse.setGrab(true)
168
127
              love.mouse.setVisible(false)
169
128
              love.mouse.setPosition(the.app.width / 2, the.app.height / 2)
170
129
 
171
 
              --self:loadLayers('data/map.lua')
172
130
              self.focus = the.player
173
 
              --self:clampTo(self.map)
174
 
 
175
 
              self.gameStart = love.timer.getTime()
176
131
           end,
177
132
   onUpdate = function(self, dt)
178
 
                 if the.player.active and love.timer.getTime() > self.lastRock + self.rockInterval then
179
 
                    local unseenRock = nil
180
 
                    while not unseenRock do
181
 
                       local rock = Rock:new{
182
 
                          x = math.random(the.app.width / 2,
183
 
                                          the.bg.width - the.app.width / 2),
184
 
                          y = math.random(the.app.height / 2,
185
 
                                          the.bg.height - the.app.height / 2),
186
 
                          velocity = {
187
 
                             x = math.random(-300, 300),
188
 
                             y = math.random(-300, 300),
189
 
                             rotation = math.random(-7, 7)
190
 
                          },
191
 
                          scale = math.random() + 0.5
192
 
                       }
193
 
 
194
 
                       local rockToPlayer = util.shortestVector(rock, the.player)
195
 
                       if math.abs(rockToPlayer.x) > the.app.width / 2 + rock.width * rock.scale and
196
 
                           math.abs(rockToPlayer.y) > the.app.height / 2 + rock.height * rock.scale then
197
 
                         unseenRock = rock
198
 
                        end
199
 
                    end
200
 
 
201
 
                    the.rocks:add(unseenRock)
202
 
 
203
 
                    self.lastRock = love.timer.getTime()
204
 
                 end
205
 
 
206
 
                 the.bullets:collide(the.rockColliders)
207
 
 
208
 
                 -- for _, mirror in ipairs(the.mirrors.sprites) do
209
 
                 --    if not mirror.of then
210
 
                 --       print('mirror:' .. inspect(mirror))
211
 
                 --       error('mirror OF NOTHING')
212
 
                 --    end
213
 
                 -- end
 
133
                 the.bullets:collide(the.planets)
214
134
              end,
215
135
   onEndFrame = function(self)
216
136
                   the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
217
137
                   the.interface.translate.y = the.player.y - the.app.height / 2 + the.player.height / 2
218
 
 
219
 
                   if the.player.active then
220
 
                      self:updateScore()
221
 
                   end
222
138
                end,
223
139
   draw = function (self, x, y)
224
140
             View.draw(self, x, y)
225
141
             --love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
226
142
          end,
227
 
   updateScore = function(self)
228
 
                    local t = love.timer.getTime() - self.gameStart
229
 
                    local m = t / 60
230
 
                    local s = t % 60
231
 
 
232
 
                    the.score.text = string.format('Score: %d:%02d', m, s)
233
 
                    --the.score.y = the.player.y - the.app.height / 2 + the.player.height
234
 
                    --the.score.x = the.player.x - the.app.width / 2 + the.player.width
235
 
 
236
 
                    --the.highScore.y = the.player.y - the.app.height / 2 + the.player.height
237
 
                    --the.highScore.x = the.player.x - the.app.width / 2
238
 
                 end
239
143
}
240
144
 
241
145
MenuScreen = View:extend {
259
163
              math.randomseed(os.time())
260
164
 
261
165
              self.view = GameView:new()
 
166
 
262
167
              if DEBUG then
263
168
                 self.console:watch('VERSION', 'VERSION')
264
169
                 self.console:watch('updateTook', 'the.updateTook')
268
173
                 self.console:watch('the.app.height', 'the.app.height')
269
174
                 self.console:watch('num mirrors', '#the.mirrors.sprites')
270
175
                 self.console:watch('num rocks', '#the.rocks.sprites')
 
176
                 self.console:watch('num planets', '#the.planets.sprites')
271
177
                 --self.console:watch('drawTook', 'the.drawTook')
272
178
 
273
179
                 -- back off that dark overlay a bit
275
181
              end
276
182
           end,
277
183
   onUpdate = function (self, dt)
278
 
                 if the.keys:justPressed('q') then
279
 
                    self.quit()
280
 
                 elseif the.keys:justPressed('return') then
281
 
                    self.view = GameView:new()
282
 
                 elseif the.keys:justPressed('f1') then
283
 
                    local ss = love.graphics.newScreenshot()
284
 
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
 
184
                 if not (DEBUG and the.console.visible) then
 
185
                    if the.keys:justPressed('q') then
 
186
                       self.quit()
 
187
                    elseif the.keys:justPressed('return') then
 
188
                       if the.keys:pressed('alt') then
 
189
                          love.graphics.toggleFullscreen()
 
190
                       else
 
191
                          self.view = GameView:new()
 
192
                       end
 
193
                    elseif the.keys:justPressed('f1') then
 
194
                       local ss = love.graphics.newScreenshot()
 
195
                       ss:encode('screenshot-' ..love.timer.getTime()..'.png')
 
196
                    elseif the.keys:justPressed('f11') then
 
197
                       love.graphics.toggleFullscreen()
 
198
                    end
285
199
                 end
286
200
              end,
287
201
   update = function (self, dt)
292
206
               end
293
207
            end
294
208
}
 
209
 
 
210
realRun = love.run
 
211
function love.run()
 
212
   -- should fail silently if it can't go to fullscreen...
 
213
   love.graphics.toggleFullscreen()
 
214
 
 
215
   realRun()
 
216
end
 
 
b'\\ No newline at end of file'