10
5
--require 'pepperprof'
11
--inspect = require 'inspect'
19
10
require 'pause_view'
22
12
GameView = View:extend {
25
14
onNew = function (self)
26
15
self:loadLayers('data/map.lua')
27
16
self.focus = the.player
28
17
self:clampTo(self.bg)
30
the.app:setScaling(self)
32
19
self.mazes = {self.maze1, self.maze2, self.maze3}
33
20
self.bgs = {self.bg, self.bg, self.bg2}
34
21
for _, maze in ipairs(self.mazes) do maze:die() end
41
28
self.maze2.playerScale = 0.5
42
29
self.maze3.playerScale = 1
44
self.goals = {{},{},{}}
46
32
for _, obj in ipairs(self.objects.sprites) do
47
33
if obj:instanceOf(Goal) then
48
34
obj.visible = false
49
table.insert(self.goals[tonumber(obj.map)], obj)
35
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
39
--the.interface = Group:new()
62
41
--self:add(the.interface)
67
46
--the.profiler = newProfiler()
68
47
--the.profiler:start()
70
self.gameStart = love.timer.getTime()
71
self.lastChange = love.timer.getTime()
49
self.gameStart = love.timer.getMicroTime()
50
self.lastChange = love.timer.getMicroTime()
73
52
onUpdate = function(self, dt)
74
if the.player.active and love.timer.getTime() > self.lastChange + 10 then
53
if the.player.active and love.timer.getMicroTime() > self.lastChange + 10 then
79
58
if not (DEBUG and the.console.visible) then
80
for _, goal in ipairs(the.activeGoals) do
81
the.player.collider:collide(goal)
59
the.activeMaze:collide(the.player.collider)
60
the.player.collider:collide(the.activeGoal)
85
63
if the.keys:justPressed('escape', 'q') then
86
64
PauseView:new():activate()
87
--elseif the.keys:justPressed('w') then
88
-- WinView:new():activate()
91
67
switchMaze = function(self)
100
76
the.activeBg.visible = false
101
77
the.activeBg = self.bgs[newMaze]
103
for _, goal in ipairs(the.activeGoals) do
79
if the.activeGoal then
80
the.activeGoal.visible = false
106
the.activeGoals = self.goals[newMaze]
108
love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
82
the.activeGoal = self.goals[newMaze]
110
84
the.activeMaze = self.maze2
111
85
the.activeBg = self.bg
112
the.activeGoals = self.goals[2]
86
the.activeGoal = self.goals[2]
115
89
the.activeMaze:revive()
116
90
the.activeBg.visible = true
117
for _, goal in ipairs(the.activeGoals) do
91
if the.activeGoal then
92
the.activeGoal.visible = true
120
94
the.player.scale = the.activeMaze.playerScale
121
95
the.player.collider.width = the.player.width * the.activeMaze.playerScale
124
98
self._fx = {0,0,0,0}
125
99
self.tween:start(self._fx, 4, 175, 10, 'quadIn')
127
self.lastChange = love.timer.getTime()
101
self.lastChange = love.timer.getMicroTime()
129
103
onEndFrame = function(self)
130
104
--the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
135
109
MenuScreen = View:extend {
136
bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
110
title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
111
--title = Tile:new{image = 'data/title.png', x = 0, y = 0},
137
112
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,
114
self.title:centerAround(400, 200)
183
116
onUpdate = function(self, elapsed)
184
117
if the.keys:allJustPressed() then
190
123
the.app = App:new {
193
name = "Treasures of the Decimaze",
194
124
onRun = function (self)
195
125
print('Version: ' .. VERSION)
197
self.view = MenuScreen:new()
127
self.view = GameView:new()
201
130
self.console:watch('VERSION', 'VERSION')
202
self.console:watch('player.x', 'the.player.x')
203
self.console:watch('player.y', 'the.player.y')
205
132
-- back off that dark overlay a bit
206
133
self.console.fill.fill[4] = 75
209
136
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
require('lovebird').update()
221
setScaling = function(self, view)
222
local view = view or the.app.view
224
local winw, winh = love.window.getMode()
225
--if love.window.getFullscreen() then
226
if winw == self.width and winh == self.height then
228
view.realTranslate = { x=0, y=0 }
229
love.graphics.setScissor()
231
--self.scale = math.min(
232
-- math.floor(winw / the.app.viewWidth),
233
-- math.floor(winh / the.app.viewHeight)
237
elseif winh < the.app.height then
238
self.scale = winh / the.app.height
240
view.realTranslate.x = math.floor((winw - self.width * self.scale) / 2)
241
view.realTranslate.y = math.floor((winh - self.height * self.scale) / 2)
242
--print('translate: ' .. view.realTranslate.x .. ', ' .. view.realTranslate.y)
244
love.graphics.setColor(0,0,0)
245
love.graphics.rectangle('fill', 0, 0, winw, winh)
246
love.graphics.setScissor( view.realTranslate.x,
247
view.realTranslate.y,
248
self.width * self.scale,
249
self.height * self.scale)
252
view.scale = self.scale
256
function love.resize(w, h)