27
22
self.focus = the.player
28
23
self:clampTo(self.bg)
30
the.app:setScaling(self)
32
25
self.mazes = {self.maze1, self.maze2, self.maze3}
33
26
self.bgs = {self.bg, self.bg, self.bg2}
34
27
for _, maze in ipairs(self.mazes) do maze:die() end
41
34
self.maze2.playerScale = 0.5
42
35
self.maze3.playerScale = 1
44
self.goals = {{},{},{}}
45
38
the.goalsAchieved = 0
46
39
for _, obj in ipairs(self.objects.sprites) do
47
40
if obj:instanceOf(Goal) then
48
41
obj.visible = false
49
table.insert(self.goals[tonumber(obj.map)], obj)
42
self.goals[tonumber(obj.map)] = obj
67
60
--the.profiler = newProfiler()
68
61
--the.profiler:start()
70
self.gameStart = love.timer.getTime()
71
self.lastChange = love.timer.getTime()
63
self.gameStart = love.timer.getMicroTime()
64
self.lastChange = love.timer.getMicroTime()
73
66
onUpdate = function(self, dt)
74
if the.player.active and love.timer.getTime() > self.lastChange + 10 then
67
if the.player.active and love.timer.getMicroTime() > self.lastChange + 10 then
79
72
if not (DEBUG and the.console.visible) then
80
for _, goal in ipairs(the.activeGoals) do
81
the.player.collider:collide(goal)
73
--the.player.collider:collide(the.activeMaze)
74
the.player.collider:collide(the.activeGoal)
85
77
if the.keys:justPressed('escape', 'q') then
100
92
the.activeBg.visible = false
101
93
the.activeBg = self.bgs[newMaze]
103
for _, goal in ipairs(the.activeGoals) do
95
if the.activeGoal then
96
the.activeGoal.visible = false
106
the.activeGoals = self.goals[newMaze]
98
the.activeGoal = self.goals[newMaze]
108
100
love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
110
102
the.activeMaze = self.maze2
111
103
the.activeBg = self.bg
112
the.activeGoals = self.goals[2]
104
the.activeGoal = self.goals[2]
115
107
the.activeMaze:revive()
116
108
the.activeBg.visible = true
117
for _, goal in ipairs(the.activeGoals) do
109
if the.activeGoal then
110
the.activeGoal.visible = true
120
112
the.player.scale = the.activeMaze.playerScale
121
113
the.player.collider.width = the.player.width * the.activeMaze.playerScale
124
116
self._fx = {0,0,0,0}
125
117
self.tween:start(self._fx, 4, 175, 10, 'quadIn')
127
self.lastChange = love.timer.getTime()
119
self.lastChange = love.timer.getMicroTime()
129
121
onEndFrame = function(self)
130
122
--the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
135
127
MenuScreen = View:extend {
136
128
bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
137
129
onNew = function(self)
138
the.app:setScaling(self)
140
130
self:add(self.bg)
141
131
--self.title:centerAround(400, 200)
143
133
local nr = 'data/NewRocker-Regular.otf'
144
134
self:add(Text:new{
145
text = 'Treasures of the Decimaze',
135
text = 'Name Of Game',
148
138
width = self.bg.width,
183
173
onUpdate = function(self, elapsed)
184
if the.keys:allJustPressed() or the.mouse:pressed() then
185
the.app.view = GameView:new()
174
if the.keys:allJustPressed() then
175
the.app.view = GameView:new()
190
180
the.app = App:new {
193
name = "Treasures of the Decimaze",
194
181
onRun = function (self)
195
182
print('Version: ' .. VERSION)
197
184
self.view = MenuScreen:new()
201
187
self.console:watch('VERSION', 'VERSION')
209
195
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
241
view.realTranslate.x = math.floor((winw - self.width * self.scale) / 2)
242
view.realTranslate.y = math.floor((winh - self.height * self.scale) / 2)
243
--print('translate: ' .. view.realTranslate.x .. ', ' .. view.realTranslate.y)
245
love.graphics.setColor(0,0,0)
246
love.graphics.rectangle('fill', 0, 0, winw, winh)
247
love.graphics.setScissor( view.realTranslate.x,
248
view.realTranslate.y,
249
self.width * self.scale,
250
self.height * self.scale)
253
view.scale = self.scale
257
function love.resize(w, h)