/zoeplat

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

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-04-10 23:47:59 UTC
  • Revision ID: josh@9ix.org-20130410234759-nrzne3xed1puy1v2
put sprite and player in their own files

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
require 'pepperprof'
8
8
require 'getopt_alt'
9
9
 
10
 
require 'sprite'
11
 
require 'animation'
12
 
require 'player'
13
 
require 'balloon'
14
 
 
15
10
util = {
16
11
   dim = function(dir)
17
12
      if dir == 'x' then
59
54
   record = true,
60
55
   onRun = function (self)
61
56
              self.view = GameView:new()
62
 
              if DEBUG then
63
 
                 self.console:watch('onGround', 'the.player.onGround')
64
 
                 self.console:watch('onWall', 'the.player.onWall')
65
 
                 self.console:watch('updateTook', 'the.updateTook')
66
 
                 self.console:watch('drawTook', 'the.drawTook')
67
 
                 self.console:watch('recorder state', 'the.recorder.state')
68
 
              end
 
57
              self.console:watch('onGround', 'the.player.onGround')
 
58
              self.console:watch('onWall', 'the.player.onWall')
 
59
              self.console:watch('updateTook', 'the.updateTook')
 
60
              self.console:watch('drawTook', 'the.drawTook')
 
61
              self.console:watch('recorder state', 'the.recorder.state')
69
62
 
70
63
              --the.profiler = newProfiler('time', 2000)
71
64
              --the.profiler = newProfiler()