/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'
2 by Josh C
basic delayed movement
14
15
GameView = View:extend {
16
   onNew = function (self)
10 by Josh C
collide w/ the map
17
              self:loadLayers('data/map.lua')
2 by Josh C
basic delayed movement
18
13 by Josh C
align to grid
19
              local tw = math.floor(the.app.width / 16)
20
              local th = math.floor(the.app.height / 16)
21
3 by Josh C
add a couple other clones that move randomly
22
              the.player = Player:new{
13 by Josh C
align to grid
23
                 x = math.random(2, tw-2) * 16,
24
                 y = math.random(2, th-2) * 16
3 by Josh C
add a couple other clones that move randomly
25
              }
2 by Josh C
basic delayed movement
26
              self:add(the.player)
3 by Josh C
add a couple other clones that move randomly
27
7 by Josh C
rename NotPlayer to Clone cuz they're clones, and it's way too early
28
              the.clones = Group:new()
29
              self:add(the.clones)
14 by Josh C
16 is a more fun number. :D
30
              for _ = 1, 15 do
7 by Josh C
rename NotPlayer to Clone cuz they're clones, and it's way too early
31
                 the.clones:add(Clone:new {
13 by Josh C
align to grid
32
                                   x = math.random(2, tw-2) * 16,
33
                                   y = math.random(2, th-2) * 16
34
                                })
3 by Josh C
add a couple other clones that move randomly
35
              end
2 by Josh C
basic delayed movement
36
           end,
37
   onUpdate = function(self, dt)
3 by Josh C
add a couple other clones that move randomly
38
                 if the.player.moved then
39
                    -- this should encapsulate
7 by Josh C
rename NotPlayer to Clone cuz they're clones, and it's way too early
40
                    for _, np in ipairs(the.clones.sprites) do
3 by Josh C
add a couple other clones that move randomly
41
                       np:doMove()
42
                    end
43
10 by Josh C
collide w/ the map
44
                    the.clones:collide(self.map)
45
                    the.player:collide(self.map)
46
9 by Josh C
collision
47
                    the.clones:collide()
48
                    the.clones:collide(the.player)
49
3 by Josh C
add a couple other clones that move randomly
50
                    the.player.moved = false
51
                 end
52
2 by Josh C
basic delayed movement
53
                 if the.keys:justPressed('escape', 'q') then
54
                    the.app:quit()
55
                 end
56
              end,
57
}
58
59
the.app = App:new {
3 by Josh C
add a couple other clones that move randomly
60
   name = "LD28",
15 by Josh C
put some walls and a goal... doesn't feel quite right.
61
   fps = 30,
2 by Josh C
basic delayed movement
62
   onRun = function (self)
63
              print('Version: ' .. VERSION)
64
65
              self.view = GameView:new()
66
67
              if DEBUG then
68
                 self.console:watch('VERSION', 'VERSION')
69
70
                 -- back off that dark overlay a bit
71
                 self.console.fill.fill[4] = 75
72
              end
73
           end,
8 by Josh C
screenshots
74
   onUpdate = function (self, dt)
75
                 if the.keys:justPressed('f1') then
76
                    local ss = love.graphics.newScreenshot()
77
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
78
                 end
79
              end
2 by Josh C
basic delayed movement
80
}