/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 22:33:14 UTC
  • Revision ID: josh@9ix.org-20131214223314-gxlkcixtm6ma1mlr
put some walls and a goal... doesn't feel quite right.

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