/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-09 05:49:40 UTC
  • Revision ID: josh@9ix.org-20130309054940-hg1a3ro2j8yj32p7
more reliable onGround calc

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
                     if self.falling then self.jumping = false end
28
28
                     --print(self.jumping, self.falling)
29
29
 
30
 
                     if not self:onGround() then
 
30
                     if not self.onGround then
31
31
                        self:play('jump')
32
32
                     end
33
33
 
36
36
 
37
37
                     if the.keys:pressed('left') then
38
38
                        self.velocity.x = -200
39
 
                        if self:onGround() then self:play('walk') end
 
39
                        if self.onGround then self:play('walk') end
40
40
                     elseif the.keys:pressed('right') then
41
41
                        self.velocity.x = 200
42
 
                        if self:onGround() then self:play('walk') end
 
42
                        if self.onGround then self:play('walk') end
43
43
                     else
44
 
                        if self:onGround() then self:play('stand') end
 
44
                        if self.onGround then self:play('stand') end
45
45
                     end
46
46
 
47
 
                     if the.keys:justPressed('up') and self:onGround() then
 
47
                     if the.keys:justPressed('up') and self.onGround then
48
48
                        self.velocity.y = -400
49
49
                        self.jumping = true
50
50
                     end
51
51
                  end,
52
 
   onEndFrame = function (self)
53
 
                   --print(self.velocity.y)
 
52
   onUpdate = function (self)
 
53
                 -- needs to happen right before collision
 
54
                 self.onGround = false
54
55
                end,
55
56
   onCollide = function (self, other, xOverlap, yOverlap)
56
57
                  -- seriously, why does this even fire?
67
68
                     local xov, yov = self:overlap(other.x, other.y,
68
69
                                                   other.width, other.height)
69
70
                     if xov ~= 0 and yov ~= 0 then
 
71
                        --print('y collision')
 
72
                        if self.velocity.y > 0 then
 
73
                           self.onGround = true
 
74
                        end
 
75
 
70
76
                        self.velocity.y = 0
71
77
                        other:displace(self)
72
78
                        self.jumping = false
76
82
                  end
77
83
 
78
84
               end,
79
 
   onGround = function (self)
80
 
                 return (not self.jumping) and (not self.falling)
81
 
              end
82
85
}
83
86
 
84
87
GameView = View:extend {
98
101
   onRun = function (self)
99
102
              self.view = GameView:new()
100
103
              --print(inspect(_(the.app):keys()))
 
104
              self.console:watch('onGround', 'the.player.onGround')
101
105
           end,
102
106
   onUpdate = function (self, dt)
103
107
                 if the.keys:justPressed('escape') and