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