/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
16 by Josh C
moving goal, clones turning green...
53
                    the.goalPerson:doMove()
54
7 by Josh C
rename NotPlayer to Clone cuz they're clones, and it's way too early
55
                    for _, np in ipairs(the.clones.sprites) do
3 by Josh C
add a couple other clones that move randomly
56
                       np:doMove()
57
                    end
58
21 by Josh C
super hacky fix for passing through clones/goals
59
                    -- yeah, again.  once for flip, twice for displace
60
                    the.clones:collide(the.player)
61
10 by Josh C
collide w/ the map
62
                    the.clones:collide(self.map)
63
                    the.player:collide(self.map)
16 by Josh C
moving goal, clones turning green...
64
                    the.goalPerson:collide(self.map)
10 by Josh C
collide w/ the map
65
9 by Josh C
collision
66
                    the.clones:collide()
67
16 by Josh C
moving goal, clones turning green...
68
                    if math.random(1,5) == 1 then
20 by Josh C
clones you flip don't flip back
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
16 by Josh C
moving goal, clones turning green...
73
                    end
74
3 by Josh C
add a couple other clones that move randomly
75
                    the.player.moved = false
76
                 end
77
2 by Josh C
basic delayed movement
78
                 if the.keys:justPressed('escape', 'q') then
79
                    the.app:quit()
80
                 end
81
              end,
82
}
83
84
the.app = App:new {
3 by Josh C
add a couple other clones that move randomly
85
   name = "LD28",
15 by Josh C
put some walls and a goal... doesn't feel quite right.
86
   fps = 30,
2 by Josh C
basic delayed movement
87
   onRun = function (self)
88
              print('Version: ' .. VERSION)
89
90
              self.view = GameView:new()
91
92
              if DEBUG then
93
                 self.console:watch('VERSION', 'VERSION')
94
95
                 -- back off that dark overlay a bit
96
                 self.console.fill.fill[4] = 75
97
              end
98
           end,
8 by Josh C
screenshots
99
   onUpdate = function (self, dt)
100
                 if the.keys:justPressed('f1') then
101
                    local ss = love.graphics.newScreenshot()
102
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
103
                 end
104
              end
2 by Josh C
basic delayed movement
105
}