/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:02:20 UTC
  • Revision ID: josh@9ix.org-20130309050220-bd1ybunyhk8fhwyw
reapply jump animation after Y collision.  (there's a frame of no 
jumping no falling that I can't do anything about w/o doing better 
collision handling)

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
   onEndFrame = function (self)
 
53
                   --print(self.velocity.y)
 
54
                end,
40
55
   onCollide = function (self, other, xOverlap, yOverlap)
41
56
                  -- seriously, why does this even fire?
42
57
                  if other == the.view.map then return end
54
69
                     if xov ~= 0 and yov ~= 0 then
55
70
                        self.velocity.y = 0
56
71
                        other:displace(self)
 
72
                        self.jumping = false
57
73
                     end
58
74
                  else
59
75
                     print('??')
60
76
                  end
61
77
 
62
 
               end
 
78
               end,
 
79
   onGround = function (self)
 
80
                 return (not self.jumping) and (not self.falling)
 
81
              end
63
82
}
64
83
 
65
84
GameView = View:extend {
78
97
the.app = App:new {
79
98
   onRun = function (self)
80
99
              self.view = GameView:new()
 
100
              --print(inspect(_(the.app):keys()))
81
101
           end,
82
102
   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
 
103
                 -- TODO: make this not work if debug console is active
 
104
                 if the.keys:justPressed('escape') then
 
105
                    love.event.quit()
 
106
                 end
87
107
              end
88
108
}
 
 
b'\\ No newline at end of file'