/ld26

To get this branch, use:
bzr branch /bzr/ld26

« back to all changes in this revision

Viewing changes to player.lua

  • Committer: Josh C
  • Date: 2013-04-29 00:35:28 UTC
  • Revision ID: josh@9ix.org-20130429003528-6o7b23zq3c4m8nxe
be moved

Show diffs side-by-side

added added

removed removed

1
1
Player = Tile:extend {
2
2
   image = 'data/player-null.png',
3
3
   minY = 0, maxY = 600,
 
4
   canMove = true,
4
5
   onNew = function(self)
5
6
              the.player = self
6
7
 
18
19
                        ms = ms * 4
19
20
                     end
20
21
 
21
 
                     if the.keys:pressed('up') then
22
 
                        self.velocity.y = -100 * ms
23
 
                     elseif the.keys:pressed('down') then
24
 
                        self.velocity.y = 100 * ms
25
 
                     else
26
 
                        self.velocity.y = 0
27
 
                     end
 
22
                     if self.canMove then
 
23
                        if the.keys:pressed('up') then
 
24
                           self.velocity.y = -100 * ms
 
25
                        elseif the.keys:pressed('down') then
 
26
                           self.velocity.y = 100 * ms
 
27
                        else
 
28
                           self.velocity.y = 0
 
29
                        end
28
30
 
29
 
                     if the.keys:pressed('right') then
30
 
                        self.velocity.x = 100 * ms
31
 
                     elseif the.keys:pressed('left') then
32
 
                        self.velocity.x = -100 * ms
33
 
                     else
34
 
                        self.velocity.x = 0
 
31
                        if the.keys:pressed('right') then
 
32
                           self.velocity.x = 100 * ms
 
33
                        elseif the.keys:pressed('left') then
 
34
                           self.velocity.x = -100 * ms
 
35
                        else
 
36
                           self.velocity.x = 0
 
37
                        end
35
38
                     end
36
39
                  end,
37
40
   onUpdate = function(self, dt)