/ld28

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

« back to all changes in this revision

Viewing changes to player.lua

  • Committer: Josh C
  • Date: 2013-12-14 04:19:19 UTC
  • Revision ID: josh@9ix.org-20131214041919-p4awvb0gf7axmzc1
add a couple other clones that move randomly

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Player = Fill:extend {
 
2
   fill = {255,0,0},
 
3
   width = 16, height = 16,
 
4
   queue = deque.new(),
 
5
   onNew = function(self)
 
6
              for _ = 1, 2 do
 
7
                 local dirs = {'left', 'right', 'up', 'down', ''}
 
8
                 self.queue:push_right(dirs[math.random(1,5)])
 
9
              end
 
10
           end,
 
11
   onUpdate = function(self)
 
12
                 local keys = {the.keys:allJustPressed()}
 
13
                 if keys[1] then
 
14
                    self.queue:push_right(keys[1])
 
15
 
 
16
                    local inst = self.queue:pop_left()
 
17
                    if inst == 'left' then
 
18
                       self.x = self.x - self.width
 
19
                    elseif inst == 'right' then
 
20
                       self.x = self.x + self.width
 
21
                    elseif inst == 'up' then
 
22
                       self.y = self.y - self.height
 
23
                    elseif inst == 'down' then
 
24
                       self.y = self.y + self.height
 
25
                    end
 
26
 
 
27
                    self.moved = true
 
28
                 end
 
29
              end
 
30
}
 
 
b'\\ No newline at end of file'