19
objects = function() return {
20
Tile:new{image = 'data/forest1-bg.png'},
21
Player:new{x = 200, y = 380,
22
minY = 330, maxY = 500,
23
image = 'data/forest1-player.png'},
24
Tile:new{image = 'data/forest1-fg.png'}
28
objects = function() return {
29
Tile:new{image = 'data/foresthut-bg.png'},
30
Player:new{x = 745, y = 430,
31
image = 'data/forest1-player.png'},
32
Tile:new{image = 'data/foresthut-fg.png'}
36
objects = function() return {
37
Tile:new{image = 'data/shore-bg.png'},
38
Player:new{x = 145, y = 133,
39
minY = 133, maxY = 133,
40
image = 'data/shore-player.png'},
41
Tile:new{image = 'data/shore-fg.png'},
42
Transition:new{x = 10, y = 133, target = 'forest1',
43
targetX = 735, targetY = 370}
47
objects = function() return {
48
Tile:new{image = 'data/lake-bg.png'},
49
Player:new{x = 540, y = 266,
50
image = 'data/lake-player.png'},
55
objects = function() return {
56
Tile:new{image = 'data/village-bg.png'},
57
Player:new{x = 121, y = 440,
58
image = 'data/village-player.png'},
64
GameView = View:extend {
65
level = 'shore', --default level
66
onNew = function (self)
67
--print('loading level: '..self.level)
68
for _, obj in ipairs(levels[self.level].objects()) do
71
for _, obj in ipairs(svg_objects[self.level]) do
72
if not the.inventory.items[obj.name] then
77
self:add(the.inventory)
81
--self.focus = the.player
82
--self:clampTo(self.map)
84
draw = function (self, x, y)
86
--love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
87
love.graphics.print('version:' .. VERSION, 20, 570)
89
onUpdate = function (self, dt)
94
onRun = function (self)
95
self.view = GameView:new()
97
self.console:watch('VERSION', 'VERSION')
98
self.console:watch('updateTook', 'the.updateTook')
99
self.console:watch('view.tween.status', 'the.app.view.tween.status()')
100
self.console:watch('view.tween.active', 'the.app.view.tween.active')
101
--self.console:watch('drawTook', 'the.drawTook')
103
-- back off that dark overlay a bit
104
self.console.fill.fill[4] = 75
107
onUpdate = function (self, dt)
108
if the.keys:justPressed('escape') then
112
update = function (self, dt)
113
the.updateStart = love.timer.getMicroTime()
115
if the.updateStart then
116
the.updateTook = love.timer.getMicroTime() - the.updateStart
121
-- for accessing from debug console
123
the.app.view = GameView:new{level = level}
b'\\ No newline at end of file'