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