/ld28

To get this branch, use:
bzr branch http://9ix.org/bzr/ld28
2 by Josh C
basic delayed movement
1
STRICT = true
2
DEBUG = true
3
4
require 'zoetrope'
5
deque = require 'deque'
10 by Josh C
collide w/ the map
6
--inspect = require 'inspect'
7
require 'sprite'
2 by Josh C
basic delayed movement
8
10 by Josh C
collide w/ the map
9
require 'util'
2 by Josh C
basic delayed movement
10
require 'version'
11
require 'player'
7 by Josh C
rename NotPlayer to Clone cuz they're clones, and it's way too early
12
require 'clone'
15 by Josh C
put some walls and a goal... doesn't feel quite right.
13
require 'goal'
16 by Josh C
moving goal, clones turning green...
14
require 'goal_person'
15
16
dirs = {'left', 'right', 'up', 'down'}
2 by Josh C
basic delayed movement
17
18
GameView = View:extend {
19
   onNew = function (self)
10 by Josh C
collide w/ the map
20
              self:loadLayers('data/map.lua')
2 by Josh C
basic delayed movement
21
13 by Josh C
align to grid
22
              local tw = math.floor(the.app.width / 16)
23
              local th = math.floor(the.app.height / 16)
24
3 by Josh C
add a couple other clones that move randomly
25
              the.player = Player:new{
13 by Josh C
align to grid
26
                 x = math.random(2, tw-2) * 16,
27
                 y = math.random(2, th-2) * 16
3 by Josh C
add a couple other clones that move randomly
28
              }
2 by Josh C
basic delayed movement
29
              self:add(the.player)
3 by Josh C
add a couple other clones that move randomly
30
16 by Josh C
moving goal, clones turning green...
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
7 by Josh C
rename NotPlayer to Clone cuz they're clones, and it's way too early
37
              the.clones = Group:new()
38
              self:add(the.clones)
14 by Josh C
16 is a more fun number. :D
39
              for _ = 1, 15 do
7 by Josh C
rename NotPlayer to Clone cuz they're clones, and it's way too early
40
                 the.clones:add(Clone:new {
13 by Josh C
align to grid
41
                                   x = math.random(2, tw-2) * 16,
42
                                   y = math.random(2, th-2) * 16
43
                                })
3 by Josh C
add a couple other clones that move randomly
44
              end
2 by Josh C
basic delayed movement
45
           end,
46
   onUpdate = function(self, dt)
3 by Josh C
add a couple other clones that move randomly
47
                 if the.player.moved then
48
                    -- this should encapsulate
16 by Josh C
moving goal, clones turning green...
49
21 by Josh C
super hacky fix for passing through clones/goals
50
                    the.clones:collide(the.player)
51
                    the.goalPerson:collide(the.player)
52
23 by Josh C
levels. ish.
53
                    if self.level ~= 2 then
54
                       the.goalPerson:doMove()
55
                    end
16 by Josh C
moving goal, clones turning green...
56
7 by Josh C
rename NotPlayer to Clone cuz they're clones, and it's way too early
57
                    for _, np in ipairs(the.clones.sprites) do
3 by Josh C
add a couple other clones that move randomly
58
                       np:doMove()
59
                    end
60
21 by Josh C
super hacky fix for passing through clones/goals
61
                    -- yeah, again.  once for flip, twice for displace
62
                    the.clones:collide(the.player)
63
10 by Josh C
collide w/ the map
64
                    the.clones:collide(self.map)
65
                    the.player:collide(self.map)
16 by Josh C
moving goal, clones turning green...
66
                    the.goalPerson:collide(self.map)
10 by Josh C
collide w/ the map
67
9 by Josh C
collision
68
                    the.clones:collide()
69
23 by Josh C
levels. ish.
70
                    if math.random(1,6) == 1 then
20 by Josh C
clones you flip don't flip back
71
                       local c = the.clones.sprites[math.random(the.clones:count())]
23 by Josh C
levels. ish.
72
                       if self.level == 3 and not c.cured then
20 by Josh C
clones you flip don't flip back
73
                          c.image = 'data/goal.png'
74
                       end
16 by Josh C
moving goal, clones turning green...
75
                    end
76
3 by Josh C
add a couple other clones that move randomly
77
                    the.player.moved = false
78
                 end
79
2 by Josh C
basic delayed movement
80
                 if the.keys:justPressed('escape', 'q') then
81
                    the.app:quit()
82
                 end
83
              end,
84
}
85
86
the.app = App:new {
3 by Josh C
add a couple other clones that move randomly
87
   name = "LD28",
15 by Josh C
put some walls and a goal... doesn't feel quite right.
88
   fps = 30,
2 by Josh C
basic delayed movement
89
   onRun = function (self)
90
              print('Version: ' .. VERSION)
91
23 by Josh C
levels. ish.
92
              self.view = GameView:new{level = 1}
2 by Josh C
basic delayed movement
93
94
              if DEBUG then
95
                 self.console:watch('VERSION', 'VERSION')
23 by Josh C
levels. ish.
96
                 self.console:watch('level', 'the.view.level')
2 by Josh C
basic delayed movement
97
98
                 -- back off that dark overlay a bit
99
                 self.console.fill.fill[4] = 75
100
              end
101
           end,
8 by Josh C
screenshots
102
   onUpdate = function (self, dt)
103
                 if the.keys:justPressed('f1') then
104
                    local ss = love.graphics.newScreenshot()
105
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
106
                 end
107
              end
2 by Josh C
basic delayed movement
108
}