5
deque = require 'deque'
6
--inspect = require 'inspect'
16
dirs = {'left', 'right', 'up', 'down'}
18
GameView = View:extend {
19
onNew = function (self)
20
self:loadLayers('data/map.lua')
22
local tw = math.floor(the.app.width / 16)
23
local th = math.floor(the.app.height / 16)
25
the.player = Player:new{
26
x = math.random(2, tw-2) * 16,
27
y = math.random(2, th-2) * 16
31
the.goalPerson = GoalPerson:new{
32
x = math.random(2, tw-2) * 16,
33
y = math.random(2, th-2) * 16
35
self:add(the.goalPerson)
37
the.clones = Group:new()
40
the.clones:add(Clone:new {
41
x = math.random(2, tw-2) * 16,
42
y = math.random(2, th-2) * 16
46
onUpdate = function(self, dt)
47
if the.player.moved then
48
-- this should encapsulate
50
the.goalPerson:doMove()
52
for _, np in ipairs(the.clones.sprites) do
56
the.clones:collide(self.map)
57
the.player:collide(self.map)
58
the.goalPerson:collide(self.map)
61
the.clones:collide(the.player)
63
if math.random(1,5) == 1 then
64
the.clones.sprites[math.random(the.clones:count())].fill = {0,255,0}
67
the.player.moved = false
70
if the.keys:justPressed('escape', 'q') then
79
onRun = function (self)
80
print('Version: ' .. VERSION)
82
self.view = GameView:new()
85
self.console:watch('VERSION', 'VERSION')
87
-- back off that dark overlay a bit
88
self.console.fill.fill[4] = 75
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')