/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-08 01:10:00 UTC
  • Revision ID: josh@9ix.org-20130608011000-18c5io3gp1gzwebk
toggle fullscreen with f11 or alt-enter

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
              --the.player = CrystalPlayer:new{x=400,y=300}
109
109
              the.player = SpacePlayer:new{x=1366,y=768}
110
110
              self:add(the.player)
 
111
              self:add(the.player.thrust)
111
112
 
112
113
              --self:add(Enemy:new{x=400, y=300})
113
114
 
258
259
              math.randomseed(os.time())
259
260
 
260
261
              self.view = GameView:new()
 
262
 
 
263
              -- should fail silently if it can't go to fullscreen...
 
264
              love.graphics.toggleFullscreen()
 
265
 
261
266
              if DEBUG then
262
267
                 self.console:watch('VERSION', 'VERSION')
263
268
                 self.console:watch('updateTook', 'the.updateTook')
277
282
                 if the.keys:justPressed('q') then
278
283
                    self.quit()
279
284
                 elseif the.keys:justPressed('return') then
280
 
                    self.view = GameView:new()
 
285
                    if the.keys:pressed('alt') then
 
286
                       love.graphics.toggleFullscreen()
 
287
                    else
 
288
                       self.view = GameView:new()
 
289
                    end
 
290
                 elseif the.keys:justPressed('f1') then
 
291
                    local ss = love.graphics.newScreenshot()
 
292
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
 
293
                 elseif the.keys:justPressed('f11') then
 
294
                    love.graphics.toggleFullscreen()
281
295
                 end
282
296
              end,
283
297
   update = function (self, dt)