/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:59:18 UTC
  • Revision ID: josh@9ix.org-20131214205918-w846mewpjguh3soj
align to grid

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
 
18
21
              the.player = Player:new{
19
 
                 x = math.random(the.app.width),
20
 
                 y = math.random(the.app.height),
 
22
                 x = math.random(2, tw-2) * 16,
 
23
                 y = math.random(2, th-2) * 16
21
24
              }
22
25
              self:add(the.player)
23
26
 
25
28
              self:add(the.clones)
26
29
              for _ = 1, 14 do
27
30
                 the.clones:add(Clone:new {
28
 
                                       x = math.random(16, the.app.width-32),
29
 
                                       y = math.random(16, the.app.height-32),
30
 
                                    })
 
31
                                   x = math.random(2, tw-2) * 16,
 
32
                                   y = math.random(2, th-2) * 16
 
33
                                })
31
34
              end
32
35
           end,
33
36
   onUpdate = function(self, dt)