/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 04:06:46 UTC
  • Revision ID: josh@9ix.org-20130309040646-2hvgxi5b87baez5g
make player an animation

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'
7
5
 
8
6
Player = Animation:extend {
9
7
   image = 'data/player.png',
22
20
                     -- this is all in startframe so it happens before
23
21
                     -- physics calc at beginning of update
24
22
 
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
23
                     self.velocity.x = 0
31
24
                     self.acceleration.y = 800
32
25
 
33
26
                     if the.keys:pressed('left') then
34
27
                        self.velocity.x = -200
35
 
                        if self:onGround() then self:play('walk') end
 
28
                        self:play('walk')
36
29
                     elseif the.keys:pressed('right') then
37
30
                        self.velocity.x = 200
38
 
                        if self:onGround() then self:play('walk') end
 
31
                        self:play('walk')
39
32
                     else
40
 
                        if self:onGround() then self:play('stand') end
 
33
                        self:play('stand')
41
34
                     end
42
35
 
43
 
                     if the.keys:justPressed('up') and self:onGround() then
 
36
                     if the.keys:justPressed('up') then
44
37
                        self.velocity.y = -400
45
 
                        self.jumping = true
46
 
                        self:play('jump')
47
38
                     end
48
39
                  end,
49
 
   onEndFrame = function (self)
50
 
                   --print(self.velocity.y)
51
 
                end,
52
40
   onCollide = function (self, other, xOverlap, yOverlap)
53
41
                  -- seriously, why does this even fire?
54
42
                  if other == the.view.map then return end
66
54
                     if xov ~= 0 and yov ~= 0 then
67
55
                        self.velocity.y = 0
68
56
                        other:displace(self)
69
 
                        self.jumping = false
70
57
                     end
71
58
                  else
72
59
                     print('??')
73
60
                  end
74
61
 
75
 
               end,
76
 
   onGround = function (self)
77
 
                 return (not self.jumping) and (not self.falling)
78
 
              end
 
62
               end
79
63
}
80
64
 
81
65
GameView = View:extend {
94
78
the.app = App:new {
95
79
   onRun = function (self)
96
80
              self.view = GameView:new()
97
 
              --print(inspect(_(the.app):keys()))
98
81
           end,
99
82
   onUpdate = function (self, dt)
100
 
                 -- TODO: make this not work if debug console is active
101
 
                 if the.keys:justPressed('escape') then
102
 
                    love.event.quit()
103
 
                 end
 
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
104
87
              end
105
88
}
 
 
b'\\ No newline at end of file'