/ld26

To get this branch, use:
bzr branch http://9ix.org/bzr/ld26

« back to all changes in this revision

Viewing changes to player.lua

  • Committer: Josh C
  • Date: 2013-04-27 17:10:14 UTC
  • Revision ID: josh@9ix.org-20130427171014-d41dnj1o6dwj36tk
ignore deploy dir

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Player = Tile:extend {
2
 
   image = 'data/player-null.png',
3
 
   minY = 0, maxY = 600,
 
2
   image = 'data/player1.png',
4
3
   onNew = function(self)
5
 
              the.player = self
6
 
 
7
 
              self.movementScale = self.height / 32
8
 
              --print(self.movementScale)
9
 
 
10
 
              --self.scale = self.scaleHeight / self.height
11
 
              --self.width = self.height * .826
12
 
              --self.width = self.width * self.scale
13
 
              --self:updateQuad()
14
4
           end,
15
5
   onStartFrame = function(self)
16
 
                     local ms = self.movementScale
17
 
                     if DEBUG and the.console.visible then
18
 
                        ms = ms * 4
19
 
                     end
20
 
 
21
6
                     if the.keys:pressed('up') then
22
 
                        self.velocity.y = -100 * ms
 
7
                        self.velocity.y = -100
23
8
                     elseif the.keys:pressed('down') then
24
 
                        self.velocity.y = 100 * ms
 
9
                        self.velocity.y = 100
25
10
                     else
26
11
                        self.velocity.y = 0
27
12
                     end
28
13
 
29
14
                     if the.keys:pressed('right') then
30
 
                        self.velocity.x = 100 * ms
 
15
                        self.velocity.x = 100
31
16
                     elseif the.keys:pressed('left') then
32
 
                        self.velocity.x = -100 * ms
 
17
                        self.velocity.x = -100
33
18
                     else
34
19
                        self.velocity.x = 0
35
20
                     end
36
 
                  end,
37
 
   onUpdate = function(self, dt)
38
 
                 self:collide(the.view)
39
 
              end,
40
 
   onEndFrame = function(self)
41
 
                   if self.y < self.minY then
42
 
                      self.y = self.minY
43
 
                   end
44
 
                   if self.y > self.maxY then
45
 
                      self.y = self.maxY
46
 
                   end
47
 
                end
 
21
                  end
48
22
}
 
 
b'\\ No newline at end of file'