/ld28

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

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-12-14 20:52:47 UTC
  • Revision ID: josh@9ix.org-20131214205247-f42dwe3rx00da9cr
player collide w/ map

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
   onNew = function (self)
16
16
              self:loadLayers('data/map.lua')
17
17
 
18
 
              local tw = math.floor(the.app.width / 16)
19
 
              local th = math.floor(the.app.height / 16)
20
 
 
21
18
              the.player = Player:new{
22
 
                 x = math.random(2, tw-2) * 16,
23
 
                 y = math.random(2, th-2) * 16
 
19
                 x = math.random(the.app.width),
 
20
                 y = math.random(the.app.height),
24
21
              }
25
22
              self:add(the.player)
26
23
 
28
25
              self:add(the.clones)
29
26
              for _ = 1, 14 do
30
27
                 the.clones:add(Clone:new {
31
 
                                   x = math.random(2, tw-2) * 16,
32
 
                                   y = math.random(2, th-2) * 16
33
 
                                })
 
28
                                       x = math.random(16, the.app.width-32),
 
29
                                       y = math.random(16, the.app.height-32),
 
30
                                    })
34
31
              end
35
32
           end,
36
33
   onUpdate = function(self, dt)