/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-15 03:05:42 UTC
  • Revision ID: josh@9ix.org-20131215030542-pneoyxj6rtm3c3hx
super hacky fix for passing through clones/goals

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
require 'version'
11
11
require 'player'
12
12
require 'clone'
 
13
require 'goal'
 
14
require 'goal_person'
 
15
 
 
16
dirs = {'left', 'right', 'up', 'down'}
13
17
 
14
18
GameView = View:extend {
15
19
   onNew = function (self)
24
28
              }
25
29
              self:add(the.player)
26
30
 
 
31
              the.goalPerson = GoalPerson:new{
 
32
                 x = math.random(2, tw-2) * 16,
 
33
                 y = math.random(2, th-2) * 16
 
34
              }
 
35
              self:add(the.goalPerson)
 
36
 
27
37
              the.clones = Group:new()
28
38
              self:add(the.clones)
29
 
              for _ = 1, 14 do
 
39
              for _ = 1, 15 do
30
40
                 the.clones:add(Clone:new {
31
41
                                   x = math.random(2, tw-2) * 16,
32
42
                                   y = math.random(2, th-2) * 16
36
46
   onUpdate = function(self, dt)
37
47
                 if the.player.moved then
38
48
                    -- this should encapsulate
 
49
 
 
50
                    the.clones:collide(the.player)
 
51
                    the.goalPerson:collide(the.player)
 
52
 
 
53
                    the.goalPerson:doMove()
 
54
 
39
55
                    for _, np in ipairs(the.clones.sprites) do
40
56
                       np:doMove()
41
57
                    end
42
58
 
 
59
                    -- yeah, again.  once for flip, twice for displace
 
60
                    the.clones:collide(the.player)
 
61
 
43
62
                    the.clones:collide(self.map)
44
63
                    the.player:collide(self.map)
 
64
                    the.goalPerson:collide(self.map)
45
65
 
46
66
                    the.clones:collide()
47
 
                    the.clones:collide(the.player)
 
67
 
 
68
                    if math.random(1,5) == 1 then
 
69
                       local c = the.clones.sprites[math.random(the.clones:count())]
 
70
                       if not c.cured then
 
71
                          c.image = 'data/goal.png'
 
72
                       end
 
73
                    end
48
74
 
49
75
                    the.player.moved = false
50
76
                 end
57
83
 
58
84
the.app = App:new {
59
85
   name = "LD28",
 
86
   fps = 30,
60
87
   onRun = function (self)
61
88
              print('Version: ' .. VERSION)
62
89