/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-04 23:27:03 UTC
  • Revision ID: josh@9ix.org-20130304232703-nob2mg5wbo5co5is
basic tiles, map, player, movement

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