6
--inspect = require 'inspect'
13
17
GameView = View:extend {
15
20
onNew = function (self)
16
21
self:loadLayers('data/map.lua')
17
22
self.focus = the.player
18
23
self:clampTo(self.bg)
20
self.mazes = {self.maze1, self.maze2}
23
the.activeMaze = self.maze1
25
self.mazes = {self.maze1, self.maze2, self.maze3}
26
self.bgs = {self.bg, self.bg, self.bg2}
27
for _, maze in ipairs(self.mazes) do maze:die() end
28
for _, bg in ipairs(self.bgs) do bg.visible = false end
30
self.maze1.moveMod = 1
31
self.maze2.moveMod = 0.55
32
self.maze3.moveMod = -1
33
self.maze1.playerScale = 1
34
self.maze2.playerScale = 0.5
35
self.maze3.playerScale = 1
37
self.goals = {{},{},{}}
39
for _, obj in ipairs(self.objects.sprites) do
40
if obj:instanceOf(Goal) then
42
table.insert(self.goals[tonumber(obj.map)], obj)
46
local sndFiles = {'data/Explosion2.wav', 'data/Explosion3.wav', 'data/Hit_Hurt3.wav'}
48
for _, sndFile in ipairs(sndFiles) do
49
local snd = love.audio.newSource(sndFile, 'static')
50
table.insert(self.switchSounds, snd)
25
53
--the.interface = Group:new()
40
the.activeMaze:collide(the.player)
43
-- for _, mirror in ipairs(the.mirrors.sprites) do
44
-- if not mirror.of then
45
-- print('mirror:' .. inspect(mirror))
46
-- error('mirror OF NOTHING')
72
if not (DEBUG and the.console.visible) then
73
for _, goal in ipairs(the.activeGoals) do
74
the.player.collider:collide(goal)
78
if the.keys:justPressed('escape', 'q') then
79
PauseView:new():activate()
80
--elseif the.keys:justPressed('w') then
81
-- WinView:new():activate()
50
84
switchMaze = function(self)
52
if the.activeMaze == self.maze1 then
85
if the.activeMaze then
87
newMaze = math.random(3)
88
until self.mazes[newMaze] ~= the.activeMaze
91
the.activeMaze = self.mazes[newMaze]
93
the.activeBg.visible = false
94
the.activeBg = self.bgs[newMaze]
96
for _, goal in ipairs(the.activeGoals) do
99
the.activeGoals = self.goals[newMaze]
101
love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
53
103
the.activeMaze = self.maze2
55
the.activeMaze = self.maze1
104
the.activeBg = self.bg
105
the.activeGoals = self.goals[2]
57
108
the.activeMaze:revive()
109
the.activeBg.visible = true
110
for _, goal in ipairs(the.activeGoals) do
113
the.player.scale = the.activeMaze.playerScale
114
the.player.collider.width = the.player.width * the.activeMaze.playerScale
115
the.player.collider.height = the.player.height * the.activeMaze.playerScale
59
117
self._fx = {0,0,0,0}
60
self.tween:start(self._fx, 4, 150, 10, 'quadIn')
118
self.tween:start(self._fx, 4, 175, 10, 'quadIn')
62
120
self.lastChange = love.timer.getMicroTime()
70
128
MenuScreen = View:extend {
71
title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
72
--title = Tile:new{image = 'data/title.png', x = 0, y = 0},
129
bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
73
130
onNew = function(self)
75
self.title:centerAround(400, 200)
132
--self.title:centerAround(400, 200)
134
local nr = 'data/NewRocker-Regular.otf'
136
text = 'Treasures of the Decimaze',
139
width = self.bg.width,
146
text = 'Find the 4 lost shinies!',
148
width = self.bg.width,
155
text = 'Use the arrow keys to move',
157
width = self.bg.width,
164
text = 'Press a key to start',
166
width = self.bg.width,
77
174
onUpdate = function(self, elapsed)
78
175
if the.keys:allJustPressed() then
84
181
the.app = App:new {
182
name = "Treasures of the Decimaze",
85
183
onRun = function (self)
86
184
print('Version: ' .. VERSION)
88
self.view = GameView:new()
186
self.view = MenuScreen:new()
91
189
self.console:watch('VERSION', 'VERSION')
190
self.console:watch('player.x', 'the.player.x')
191
self.console:watch('player.y', 'the.player.y')
93
193
-- back off that dark overlay a bit
94
194
self.console.fill.fill[4] = 75
97
197
onUpdate = function (self, dt)
98
if the.keys:justPressed('escape') then
198
if the.keys:justPressed('f1') then
199
local ss = love.graphics.newScreenshot()
200
ss:encode('screenshot-' ..love.timer.getTime()..'.png')