13
19
objects = function() return {
14
20
Tile:new{image = 'data/forest1-bg.png'},
15
Player:new{x = 200, y = 370,
21
Player:new{x = 200, y = 380,
16
22
minY = 330, maxY = 500,
17
23
image = 'data/forest1-player.png'},
18
24
Tile:new{image = 'data/forest1-fg.png'}
24
30
Player:new{x = 145, y = 133,
25
31
minY = 133, maxY = 133,
26
32
image = 'data/shore-player.png'},
27
Tile:new{image = 'data/shore-fg.png'}
33
Tile:new{image = 'data/shore-fg.png'},
34
Transition:new{x = 10, y = 133, target = 'forest1',
35
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'},
32
56
GameView = View:extend {
57
level = 'shore', --default level
33
58
onNew = function (self)
34
self:newLevel('forest1')
36
--self:loadLayers('data/map.lua')
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)
37
73
--self.focus = the.player
38
74
--self:clampTo(self.map)
40
76
draw = function (self, x, y)
41
77
View.draw(self, x, y)
42
love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
78
--love.graphics.print('FPS:' .. love.timer.getFPS(), 20, 20)
43
79
love.graphics.print('version:' .. VERSION, 20, 570)
45
81
onUpdate = function (self, dt)
46
82
if the.keys:justPressed('a') then
47
self:newLevel('forest1')
83
the.app.view = GameView:new{level = 'forest1'}
48
84
elseif the.keys:justPressed('b') then
49
self:newLevel('shore')
85
the.app.view = GameView:new{level = 'shore'}
52
newLevel = function (self, level)
53
self.sprites = levels[level].objects()
61
94
self.console:watch('VERSION', 'VERSION')
62
95
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')
63
98
--self.console:watch('drawTook', 'the.drawTook')
100
-- back off that dark overlay a bit
101
self.console.fill.fill[4] = 75
66
104
onUpdate = function (self, dt)