/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:
2
2
DEBUG = true
3
3
 
4
4
require 'zoetrope'
 
5
--inspect = require 'inspect'
 
6
--_ = require 'underscore'
5
7
 
6
8
Player = Animation:extend {
7
9
   image = 'data/player.png',
20
22
                     -- this is all in startframe so it happens before
21
23
                     -- physics calc at beginning of update
22
24
 
 
25
                     -- jumping/falling updates could go in EndFrame...
 
26
                     self.falling = self.velocity.y > 0
 
27
                     if self.falling then self.jumping = false end
 
28
                     --print(self.jumping, self.falling)
 
29
 
 
30
                     if not self.onGround then
 
31
                        self:play('jump')
 
32
                     end
 
33
 
23
34
                     self.velocity.x = 0
24
35
                     self.acceleration.y = 800
25
36
 
26
37
                     if the.keys:pressed('left') then
27
38
                        self.velocity.x = -200
28
 
                        self:play('walk')
 
39
                        if self.onGround then self:play('walk') end
29
40
                     elseif the.keys:pressed('right') then
30
41
                        self.velocity.x = 200
31
 
                        self:play('walk')
 
42
                        if self.onGround then self:play('walk') end
32
43
                     else
33
 
                        self:play('stand')
 
44
                        if self.onGround then self:play('stand') end
34
45
                     end
35
46
 
36
 
                     if the.keys:justPressed('up') then
 
47
                     if the.keys:justPressed('up') and self.onGround then
37
48
                        self.velocity.y = -400
 
49
                        self.jumping = true
38
50
                     end
39
51
                  end,
 
52
   onUpdate = function (self)
 
53
                 -- needs to happen right before collision
 
54
                 self.onGround = false
 
55
                end,
40
56
   onCollide = function (self, other, xOverlap, yOverlap)
41
57
                  -- seriously, why does this even fire?
42
58
                  if other == the.view.map then return end
52
68
                     local xov, yov = self:overlap(other.x, other.y,
53
69
                                                   other.width, other.height)
54
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
 
55
76
                        self.velocity.y = 0
56
77
                        other:displace(self)
 
78
                        self.jumping = false
57
79
                     end
58
80
                  else
59
81
                     print('??')
60
82
                  end
61
83
 
62
 
               end
 
84
               end,
63
85
}
64
86
 
65
87
GameView = View:extend {
78
100
the.app = App:new {
79
101
   onRun = function (self)
80
102
              self.view = GameView:new()
 
103
              --print(inspect(_(the.app):keys()))
 
104
              self.console:watch('onGround', 'the.player.onGround')
81
105
           end,
82
106
   onUpdate = function (self, dt)
83
 
                 -- apparently I can do this w/ C-A-q if DEBUG is on
84
 
                 -- if the.keys:justPressed('escape') then
85
 
                 --    love.event.quit()
86
 
                 -- end
 
107
                 if the.keys:justPressed('escape') and 
 
108
                   not self.console.visible then
 
109
                    love.event.quit()
 
110
                 end
87
111
              end
88
112
}
 
 
b'\\ No newline at end of file'