/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)
62
16 by Josh C
moving goal, clones turning green...
63
                    if math.random(1,5) == 1 then
64
                       the.clones.sprites[math.random(the.clones:count())].fill = {0,255,0}
65
                    end
66
3 by Josh C
add a couple other clones that move randomly
67
                    the.player.moved = false
68
                 end
69
2 by Josh C
basic delayed movement
70
                 if the.keys:justPressed('escape', 'q') then
71
                    the.app:quit()
72
                 end
73
              end,
74
}
75
76
the.app = App:new {
3 by Josh C
add a couple other clones that move randomly
77
   name = "LD28",
15 by Josh C
put some walls and a goal... doesn't feel quite right.
78
   fps = 30,
2 by Josh C
basic delayed movement
79
   onRun = function (self)
80
              print('Version: ' .. VERSION)
81
82
              self.view = GameView:new()
83
84
              if DEBUG then
85
                 self.console:watch('VERSION', 'VERSION')
86
87
                 -- back off that dark overlay a bit
88
                 self.console.fill.fill[4] = 75
89
              end
90
           end,
8 by Josh C
screenshots
91
   onUpdate = function (self, dt)
92
                 if the.keys:justPressed('f1') then
93
                    local ss = love.graphics.newScreenshot()
94
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
95
                 end
96
              end
2 by Josh C
basic delayed movement
97
}