/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 17:35:23 UTC
  • Revision ID: josh@9ix.org-20131214173523-8g4gd5hlk4fix1r6
collision

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
require 'zoetrope'
5
5
deque = require 'deque'
6
 
--inspect = require 'inspect'
7
 
require 'sprite'
8
6
 
9
 
require 'util'
10
7
require 'version'
11
8
require 'player'
12
9
require 'clone'
13
 
require 'goal'
14
10
 
15
11
GameView = View:extend {
16
12
   onNew = function (self)
17
 
              self:loadLayers('data/map.lua')
18
 
 
19
 
              local tw = math.floor(the.app.width / 16)
20
 
              local th = math.floor(the.app.height / 16)
 
13
              --self:loadLayers('data/map.lua')
 
14
              --self.focus = the.player
 
15
              --self:clampTo(self.bg)
21
16
 
22
17
              the.player = Player:new{
23
 
                 x = math.random(2, tw-2) * 16,
24
 
                 y = math.random(2, th-2) * 16
 
18
                 x = math.random(the.app.width),
 
19
                 y = math.random(the.app.height),
25
20
              }
26
21
              self:add(the.player)
27
22
 
28
23
              the.clones = Group:new()
29
24
              self:add(the.clones)
30
 
              for _ = 1, 15 do
 
25
              for _ = 1, 14 do
31
26
                 the.clones:add(Clone:new {
32
 
                                   x = math.random(2, tw-2) * 16,
33
 
                                   y = math.random(2, th-2) * 16
34
 
                                })
 
27
                                       x = math.random(the.app.width),
 
28
                                       y = math.random(the.app.height),
 
29
                                    })
35
30
              end
36
31
           end,
37
32
   onUpdate = function(self, dt)
41
36
                       np:doMove()
42
37
                    end
43
38
 
44
 
                    the.clones:collide(self.map)
45
 
                    the.player:collide(self.map)
46
 
 
47
39
                    the.clones:collide()
48
40
                    the.clones:collide(the.player)
49
41
 
58
50
 
59
51
the.app = App:new {
60
52
   name = "LD28",
61
 
   fps = 30,
62
53
   onRun = function (self)
63
54
              print('Version: ' .. VERSION)
64
55