/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 00:14:58 UTC
  • Revision ID: josh@9ix.org-20130305001458-206jxv29dgeenj3n
jump

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
require 'zoetrope'
5
5
 
 
6
TERM_VEL = 400
 
7
 
6
8
Player = Tile:extend {
7
9
   image = 'data/player.png',
 
10
   onNew = function (self)
 
11
              self.velocity.y = 0
 
12
           end,
8
13
   onUpdate = function (self)
 
14
 
9
15
                 self.velocity.x = 0
10
 
                 self.velocity.y = 0
 
16
                 if self.velocity.y >= TERM_VEL then
 
17
                    self.velocity.y = TERM_VEL
 
18
                    self.acceleration.y = 0
 
19
                 else
 
20
                    self.acceleration.y = 800
 
21
                 end
11
22
 
12
23
                 if the.keys:pressed('left') then
13
24
                    self.velocity.x = -200
14
25
                 elseif the.keys:pressed('right') then
15
26
                    self.velocity.x = 200
16
27
                 end
 
28
 
 
29
                 if the.keys:justPressed('up') then
 
30
                    self.velocity.y = -400
 
31
                 end
 
32
 
17
33
              end
18
34
}
19
35
 
24
40
              self:clampTo(self.map)
25
41
           end,
26
42
 
27
 
   onUpdate = function (self, dt)
28
 
                 self.map:subdisplace(the.player)
29
 
              end
 
43
   onEndFrame = function (self, dt)
 
44
                   self.map:subdisplace(the.player)
 
45
                end
30
46
}
31
47
 
32
48
the.app = App:new {