34
31
Transition:new{x = 10, y = 133, target = 'forest1',
35
32
targetX = 735, targetY = 370}
39
objects = function() return {
40
Tile:new{image = 'data/lake-bg.png'},
41
Player:new{x = 540, y = 266,
42
image = 'data/lake-player.png'},
47
objects = function() return {
48
Tile:new{image = 'data/village-bg.png'},
49
Player:new{x = 121, y = 440,
50
image = 'data/village-player.png'},
56
37
GameView = View:extend {
57
level = 'shore', --default level
58
38
onNew = function (self)
59
--print('loading level: '..self.level)
60
for _, obj in ipairs(levels[self.level].objects()) do
63
for _, obj in ipairs(svg_objects[self.level]) do
64
if not the.inventory.items[obj.name] then
69
self:add(the.inventory)
39
self:newLevel('forest1')
41
--self:loadLayers('data/map.lua')
73
42
--self.focus = the.player
74
43
--self:clampTo(self.map)
76
45
draw = function (self, x, y)
77
46
View.draw(self, x, y)
78
--love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
47
love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
79
48
love.graphics.print('version:' .. VERSION, 20, 570)
81
50
onUpdate = function (self, dt)
82
51
if the.keys:justPressed('a') then
83
the.app.view = GameView:new{level = 'forest1'}
52
self:newLevel('forest1')
84
53
elseif the.keys:justPressed('b') then
85
the.app.view = GameView:new{level = 'shore'}
54
self:newLevel('shore')
57
newLevel = function (self, level)
58
self.sprites = levels[level].objects()
59
for _, obj in ipairs(svg_objects[level]) do
94
69
self.console:watch('VERSION', 'VERSION')
95
70
self.console:watch('updateTook', 'the.updateTook')
96
self.console:watch('view.tween.status', 'the.app.view.tween.status()')
97
self.console:watch('view.tween.active', 'the.app.view.tween.active')
98
71
--self.console:watch('drawTook', 'the.drawTook')
100
73
-- back off that dark overlay a bit