29
34
self.maze2.playerScale = 0.5
30
35
self.maze3.playerScale = 1
37
self.goals = {{},{},{}}
33
39
for _, obj in ipairs(self.objects.sprites) do
34
40
if obj:instanceOf(Goal) then
35
41
obj.visible = false
36
self.goals[tonumber(obj.map)] = obj
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)
40
53
--the.interface = Group:new()
42
55
--self:add(the.interface)
46
self.gameStart = love.timer.getMicroTime()
47
self.lastChange = love.timer.getMicroTime()
60
--the.profiler = newProfiler()
61
--the.profiler:start()
63
self.gameStart = love.timer.getTime()
64
self.lastChange = love.timer.getTime()
49
66
onUpdate = function(self, dt)
50
if the.player.active and love.timer.getMicroTime() > self.lastChange + 10 then
67
if the.player.active and love.timer.getTime() > self.lastChange + 10 then
55
72
if not (DEBUG and the.console.visible) then
56
the.activeMaze:collide(the.player)
73
for _, goal in ipairs(the.activeGoals) do
74
the.player.collider:collide(goal)
59
-- for _, mirror in ipairs(the.mirrors.sprites) do
60
-- if not mirror.of then
61
-- print('mirror:' .. inspect(mirror))
62
-- error('mirror OF NOTHING')
78
if the.keys:justPressed('escape', 'q') then
79
PauseView:new():activate()
80
--elseif the.keys:justPressed('w') then
81
-- WinView:new():activate()
66
84
switchMaze = function(self)
67
85
if the.activeMaze then
75
93
the.activeBg.visible = false
76
94
the.activeBg = self.bgs[newMaze]
78
the.activeGoal.visible = false
79
the.activeGoal = self.goals[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)])
81
103
the.activeMaze = self.maze2
82
104
the.activeBg = self.bg
83
the.activeGoal = self.goals[2]
105
the.activeGoals = self.goals[2]
86
108
the.activeMaze:revive()
87
109
the.activeBg.visible = true
88
the.activeGoal.visible = true
110
for _, goal in ipairs(the.activeGoals) do
89
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
91
117
self._fx = {0,0,0,0}
92
118
self.tween:start(self._fx, 4, 175, 10, 'quadIn')
94
self.lastChange = love.timer.getMicroTime()
120
self.lastChange = love.timer.getTime()
96
122
onEndFrame = function(self)
97
123
--the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
102
128
MenuScreen = View:extend {
103
title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
104
--title = Tile:new{image = 'data/title.png', x = 0, y = 0},
129
bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
105
130
onNew = function(self)
107
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,
109
174
onUpdate = function(self, elapsed)
110
175
if the.keys:allJustPressed() then
116
181
the.app = App:new {
182
name = "Treasures of the Decimaze",
117
183
onRun = function (self)
118
184
print('Version: ' .. VERSION)
120
self.view = GameView:new()
186
self.view = MenuScreen:new()
123
189
self.console:watch('VERSION', 'VERSION')
190
self.console:watch('player.x', 'the.player.x')
191
self.console:watch('player.y', 'the.player.y')
125
193
-- back off that dark overlay a bit
126
194
self.console.fill.fill[4] = 75
129
197
onUpdate = function (self, dt)
130
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')