19
13
objects = function() return {
20
14
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'},
15
Player:new{x = 200, y = 370, image = 'data/forest1-player.png'},
24
16
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
20
objects = function() return {
37
21
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}
22
Player:new{x = 145, y = 133, image = 'data/shore-player.png'},
23
Tile:new{image = 'data/shore-fg.png'}
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
28
GameView = View:extend {
65
level = 'shore', --default level
66
29
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)
30
self:newLevel('forest1')
32
--self:loadLayers('data/map.lua')
81
33
--self.focus = the.player
82
34
--self:clampTo(self.map)
84
36
draw = function (self, x, y)
85
37
View.draw(self, x, y)
86
--love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
38
love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
87
39
love.graphics.print('version:' .. VERSION, 20, 570)
89
41
onUpdate = function (self, dt)
42
if the.keys:justPressed('a') then
43
self:newLevel('forest1')
44
elseif the.keys:justPressed('b') then
45
self:newLevel('shore')
48
newLevel = function (self, level)
49
self.sprites = levels[level].objects()
97
57
self.console:watch('VERSION', 'VERSION')
98
58
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
59
--self.console:watch('drawTook', 'the.drawTook')
103
-- back off that dark overlay a bit
104
self.console.fill.fill[4] = 75
107
62
onUpdate = function (self, dt)