5
__ = require 'underscore'
6
--inspect = require 'inspect'
17
elseif dir == 'y' then
20
if STRICT then error('dir '..dir) end
25
GameView = View:extend {
26
onNew = function (self)
27
self:loadLayers('data/map.lua')
28
self.focus = the.player
29
self:clampTo(self.map)
31
the.recorder = Recorder:new{mousePosInterval = 9999}
32
the.app.meta:add(the.recorder)
33
if the.app.record then
34
the.recorder:startRecording()
35
elseif the.app.playback then
36
local storage = Storage:new{filename = 'record.lua'}
38
--print(inspect(storage.data))
39
the.recorder.record = storage.data
40
the.recorder:startPlaying()
43
onUpdate = function (self)
44
--print('drawTook: ', the.drawTook)
46
--the.player:collide(self.map)
47
--self.map:collide(the.player)
49
-- draw = function (self, x, y)
50
-- View.draw(self, x, y)
52
-- love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
58
onRun = function (self)
59
self.view = GameView:new()
61
self.console:watch('onGround', 'the.player.onGround')
62
self.console:watch('onWall', 'the.player.onWall')
63
self.console:watch('updateTook', 'the.updateTook')
64
self.console:watch('drawTook', 'the.drawTook')
65
self.console:watch('recorder state', 'the.recorder.state')
68
--the.profiler = newProfiler('time', 2000)
69
--the.profiler = newProfiler()
70
--the.profiler:start()
72
onUpdate = function (self, dt)
73
if the.keys:justPressed('escape') then
76
local outfile = io.open( "profile.txt", "w+" )
77
the.profiler:report( outfile )
82
if not love.filesystem.remove('record.lua') then
83
print('could not remove record.lua')
85
local storage = Storage:new{
86
data = the.recorder.record,
87
filename = 'record.lua'
90
--print(inspect(the.recorder.record))
96
update = function (self, dt)
97
the.updateStart = love.timer.getMicroTime()
99
if the.updateStart then
100
the.updateTook = love.timer.getMicroTime() - the.updateStart
105
function love.load (arg)
106
opts = getopt(arg, '')
108
the.app.playback = true
109
the.app.record = false
110
elseif opts['r'] then
111
the.app.record = true
b'\\ No newline at end of file'