/ld28

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

« back to all changes in this revision

Viewing changes to clone.lua

  • Committer: Josh C
  • Date: 2013-12-14 05:24:01 UTC
  • Revision ID: josh@9ix.org-20131214052401-8b2cma95lsvw7avq
rename NotPlayer to Clone cuz they're clones, and it's way too early 
for a class name like NotPlayer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Clone = Tile:extend {
2
 
   image = 'data/player.png',
 
1
local dirs = {'left', 'right', 'up', 'down'}
 
2
 
 
3
Clone = Fill:extend {
 
4
   fill = {255,0,0},
 
5
   width = 16, height = 16,
 
6
   queue = deque.new(),
3
7
   onNew = function(self)
4
8
              self.direction = dirs[math.random(1,4)]
5
9
           end,
17
21
               elseif self.direction == 'down' then
18
22
                  self.y = self.y + self.height
19
23
               end
20
 
            end,
21
 
   onCollide = function(self, other)
22
 
                  if other ~= the.view.map then
23
 
                     --print('collision')
24
 
 
25
 
                     other:displaceDir(self,
26
 
                                       util.dirToXY(self.direction),
27
 
                                       - util.dirToPosNeg(self.direction))
28
 
                  end
29
 
 
30
 
                  if other == the.player then
31
 
                     self.image = 'data/player.png'
32
 
                     self.cured = true
33
 
                  end
34
 
               end
 
24
            end
35
25
}
 
 
b'\\ No newline at end of file'