/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 16:54:58 UTC
  • Revision ID: josh@9ix.org-20130305165458-1w0u0ojz1wd7f7hu
use built-in maxVelocity system

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