41
29
self.maze2.playerScale = 0.5
42
30
self.maze3.playerScale = 1
44
self.goals = {{},{},{}}
46
33
for _, obj in ipairs(self.objects.sprites) do
47
34
if obj:instanceOf(Goal) then
48
35
obj.visible = false
49
table.insert(self.goals[tonumber(obj.map)], obj)
36
self.goals[tonumber(obj.map)] = obj
53
local sndFiles = {'data/Explosion2.wav', 'data/Explosion3.wav', 'data/Hit_Hurt3.wav'}
55
for _, sndFile in ipairs(sndFiles) do
56
local snd = love.audio.newSource(sndFile, 'static')
57
table.insert(self.switchSounds, snd)
60
40
--the.interface = Group:new()
62
42
--self:add(the.interface)
67
47
--the.profiler = newProfiler()
68
48
--the.profiler:start()
70
self.gameStart = love.timer.getTime()
71
self.lastChange = love.timer.getTime()
50
self.gameStart = love.timer.getMicroTime()
51
self.lastChange = love.timer.getMicroTime()
73
53
onUpdate = function(self, dt)
74
if the.player.active and love.timer.getTime() > self.lastChange + 10 then
54
if the.player.active and love.timer.getMicroTime() > self.lastChange + 10 then
79
59
if not (DEBUG and the.console.visible) then
80
for _, goal in ipairs(the.activeGoals) do
81
the.player.collider:collide(goal)
60
the.activeMaze:collide(the.player.collider)
61
the.player.collider:collide(the.activeGoal)
85
64
if the.keys:justPressed('escape', 'q') then
100
79
the.activeBg.visible = false
101
80
the.activeBg = self.bgs[newMaze]
103
for _, goal in ipairs(the.activeGoals) do
82
if the.activeGoal then
83
the.activeGoal.visible = false
106
the.activeGoals = self.goals[newMaze]
108
love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
85
the.activeGoal = self.goals[newMaze]
110
87
the.activeMaze = self.maze2
111
88
the.activeBg = self.bg
112
the.activeGoals = self.goals[2]
89
the.activeGoal = self.goals[2]
115
92
the.activeMaze:revive()
116
93
the.activeBg.visible = true
117
for _, goal in ipairs(the.activeGoals) do
94
if the.activeGoal then
95
the.activeGoal.visible = true
120
97
the.player.scale = the.activeMaze.playerScale
121
98
the.player.collider.width = the.player.width * the.activeMaze.playerScale
135
112
MenuScreen = View:extend {
136
bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
113
title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
114
--title = Tile:new{image = 'data/title.png', x = 0, y = 0},
137
115
onNew = function(self)
138
the.app:setScaling(self)
141
--self.title:centerAround(400, 200)
143
local nr = 'data/NewRocker-Regular.otf'
145
text = 'Treasures of the Decimaze',
148
width = self.bg.width,
155
text = 'Find the 4 lost shinies!',
157
width = self.bg.width,
164
text = 'Use the arrow keys to move',
166
width = self.bg.width,
173
text = 'Press a key to start',
175
width = self.bg.width,
117
self.title:centerAround(400, 200)
183
119
onUpdate = function(self, elapsed)
184
if the.keys:allJustPressed() or the.mouse:pressed() then
185
the.app.view = GameView:new()
120
if the.keys:allJustPressed() then
121
the.app.view = GameView:new()
190
126
the.app = App:new {
193
name = "Treasures of the Decimaze",
194
127
onRun = function (self)
195
128
print('Version: ' .. VERSION)
197
self.view = MenuScreen:new()
130
self.view = GameView:new()
201
133
self.console:watch('VERSION', 'VERSION')
202
self.console:watch('player.x', 'the.player.x')
203
self.console:watch('player.y', 'the.player.y')
205
135
-- back off that dark overlay a bit
206
136
self.console.fill.fill[4] = 75
209
139
onUpdate = function (self, dt)
210
if the.keys:justPressed('f1') then
211
local ss = love.graphics.newScreenshot()
212
ss:encode('screenshot-' ..love.timer.getTime()..'.png')
215
update = function(self, dt)
217
fps = love.timer.getFPS()
222
setScaling = function(self, view)
223
local view = view or the.app.view
225
local winw, winh = love.window.getMode()
226
--if love.window.getFullscreen() then
227
if winw == self.width and winh == self.height then
229
view.realTranslate = { x=0, y=0 }
230
love.graphics.setScissor()
232
--self.scale = math.min(
233
-- math.floor(winw / the.app.viewWidth),
234
-- math.floor(winh / the.app.viewHeight)
238
elseif winh < the.app.height then
239
self.scale = winh / the.app.height
243
view.realTranslate.x = math.floor((winw - self.width * self.scale) / 2)
244
view.realTranslate.y = math.floor((winh - self.height * self.scale) / 2)
245
--print('translate: ' .. view.realTranslate.x .. ', ' .. view.realTranslate.y)
247
love.graphics.setColor(0,0,0)
248
love.graphics.rectangle('fill', 0, 0, winw, winh)
249
love.graphics.setScissor( view.realTranslate.x,
250
view.realTranslate.y,
251
self.width * self.scale,
252
self.height * self.scale)
255
view.scale = self.scale
259
function love.resize(w, h)