/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-03-05 22:06:58 UTC
  • Revision ID: josh@9ix.org-20130305220658-92yptjso9z57vzly
use zoetrope 288:a82a08660477 2013-02-23

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
Player = Tile:extend {
7
7
   image = 'data/player.png',
 
8
   onNew = function (self)
 
9
              self.velocity.y = 0
 
10
              self.maxVelocity.y = 400
 
11
           end,
 
12
   onStartFrame = function (self)
 
13
                     -- this is all in startframe so it happens before
 
14
                     -- physics calc at beginning of update
 
15
 
 
16
                     self.velocity.x = 0
 
17
                     self.acceleration.y = 800
 
18
 
 
19
                     if the.keys:pressed('left') then
 
20
                        self.velocity.x = -200
 
21
                     elseif the.keys:pressed('right') then
 
22
                        self.velocity.x = 200
 
23
                     end
 
24
 
 
25
                     if the.keys:justPressed('up') then
 
26
                        self.velocity.y = -400
 
27
                     end
 
28
                  end,
8
29
   onUpdate = function (self)
9
 
                 self.velocity.x = 0
10
 
                 self.velocity.y = 0
11
 
 
12
 
                 if the.keys:pressed('left') then
13
 
                    self.velocity.x = -200
14
 
                 elseif the.keys:pressed('right') then
15
 
                    self.velocity.x = 200
16
 
                 end
 
30
                 -- this is called after physics, so this makes sense here
 
31
                 the.view.map:subdisplace(self)
17
32
              end
18
33
}
19
34
 
22
37
              self:loadLayers('data/map.lua')
23
38
              self.focus = the.player
24
39
              self:clampTo(self.map)
25
 
           end,
26
 
 
27
 
   onUpdate = function (self, dt)
28
 
                 self.map:subdisplace(the.player)
29
 
              end
 
40
           end
30
41
}
31
42
 
32
43
the.app = App:new {