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)
25
self.scale = the.app.scale
20
27
self.mazes = {self.maze1, self.maze2, self.maze3}
21
28
self.bgs = {self.bg, self.bg, self.bg2}
22
29
for _, maze in ipairs(self.mazes) do maze:die() end
29
36
self.maze2.playerScale = 0.5
30
37
self.maze3.playerScale = 1
39
self.goals = {{},{},{}}
33
41
for _, obj in ipairs(self.objects.sprites) do
34
42
if obj:instanceOf(Goal) then
35
43
obj.visible = false
36
self.goals[tonumber(obj.map)] = obj
44
table.insert(self.goals[tonumber(obj.map)], obj)
48
local sndFiles = {'data/Explosion2.wav', 'data/Explosion3.wav', 'data/Hit_Hurt3.wav'}
50
for _, sndFile in ipairs(sndFiles) do
51
local snd = love.audio.newSource(sndFile, 'static')
52
table.insert(self.switchSounds, snd)
40
55
--the.interface = Group:new()
42
57
--self:add(the.interface)
46
self.gameStart = love.timer.getMicroTime()
47
self.lastChange = love.timer.getMicroTime()
62
--the.profiler = newProfiler()
63
--the.profiler:start()
65
self.gameStart = love.timer.getTime()
66
self.lastChange = love.timer.getTime()
49
68
onUpdate = function(self, dt)
50
if the.player.active and love.timer.getMicroTime() > self.lastChange + 10 then
69
if the.player.active and love.timer.getTime() > self.lastChange + 10 then
55
74
if not (DEBUG and the.console.visible) then
56
the.activeMaze:collide(the.player)
57
the.player:collide(the.activeGoal)
75
for _, goal in ipairs(the.activeGoals) do
76
the.player.collider:collide(goal)
60
-- for _, mirror in ipairs(the.mirrors.sprites) do
61
-- if not mirror.of then
62
-- print('mirror:' .. inspect(mirror))
63
-- error('mirror OF NOTHING')
80
if the.keys:justPressed('escape', 'q') then
81
PauseView:new():activate()
82
--elseif the.keys:justPressed('w') then
83
-- WinView:new():activate()
67
86
switchMaze = function(self)
68
87
if the.activeMaze then
76
95
the.activeBg.visible = false
77
96
the.activeBg = self.bgs[newMaze]
79
if the.activeGoal then
80
the.activeGoal.visible = false
98
for _, goal in ipairs(the.activeGoals) do
82
the.activeGoal = self.goals[newMaze]
101
the.activeGoals = self.goals[newMaze]
103
love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
84
105
the.activeMaze = self.maze2
85
106
the.activeBg = self.bg
86
the.activeGoal = self.goals[2]
107
the.activeGoals = self.goals[2]
89
110
the.activeMaze:revive()
90
111
the.activeBg.visible = true
91
if the.activeGoal then
92
the.activeGoal.visible = true
112
for _, goal in ipairs(the.activeGoals) do
94
115
the.player.scale = the.activeMaze.playerScale
116
the.player.collider.width = the.player.width * the.activeMaze.playerScale
117
the.player.collider.height = the.player.height * the.activeMaze.playerScale
96
119
self._fx = {0,0,0,0}
97
120
self.tween:start(self._fx, 4, 175, 10, 'quadIn')
99
self.lastChange = love.timer.getMicroTime()
122
self.lastChange = love.timer.getTime()
101
124
onEndFrame = function(self)
102
125
--the.interface.translate.x = the.player.x - the.app.width / 2 + the.player.width / 2
107
130
MenuScreen = View:extend {
108
title = Text:new{text = "Press a key to start", font = 48, wordWrap = false},
109
--title = Tile:new{image = 'data/title.png', x = 0, y = 0},
131
bg = Tile:new{image = 'data/intro.png', x = 0, y = 0},
110
132
onNew = function(self)
112
self.title:centerAround(400, 200)
133
self.scale = the.app.scale
136
--self.title:centerAround(400, 200)
138
local nr = 'data/NewRocker-Regular.otf'
140
text = 'Treasures of the Decimaze',
143
width = self.bg.width,
150
text = 'Find the 4 lost shinies!',
152
width = self.bg.width,
159
text = 'Use the arrow keys to move',
161
width = self.bg.width,
168
text = 'Press a key to start',
170
width = self.bg.width,
114
178
onUpdate = function(self, elapsed)
115
179
if the.keys:allJustPressed() then
121
185
the.app = App:new {
188
name = "Treasures of the Decimaze",
122
189
onRun = function (self)
123
190
print('Version: ' .. VERSION)
125
self.view = GameView:new()
192
self.view = MenuScreen:new()
128
196
self.console:watch('VERSION', 'VERSION')
197
self.console:watch('player.x', 'the.player.x')
198
self.console:watch('player.y', 'the.player.y')
130
200
-- back off that dark overlay a bit
131
201
self.console.fill.fill[4] = 75
134
204
onUpdate = function (self, dt)
135
if the.keys:justPressed('escape') then
205
if the.keys:justPressed('f1') then
206
local ss = love.graphics.newScreenshot()
207
ss:encode('screenshot-' ..love.timer.getTime()..'.png')
210
setScaling = function(self)
211
local winw, winh = love.window.getMode()
212
--if love.window.getFullscreen() then
213
if winw == self.width and winh == self.height then
215
self.view.realTranslate = { x=0, y=0 }
216
love.graphics.setScissor()
218
--self.scale = math.min(
219
-- math.floor(winw / the.app.viewWidth),
220
-- math.floor(winh / the.app.viewHeight)
224
elseif winh < the.app.height then
225
self.scale = winh / the.app.height
227
self.view.realTranslate.x = math.floor((winw - self.width * self.scale) / 2)
228
self.view.realTranslate.y = math.floor((winh - self.height * self.scale) / 2)
229
--print('translate: ' .. self.view.realTranslate.x .. ', ' .. self.view.realTranslate.y)
231
love.graphics.setColor(0,0,0)
232
love.graphics.rectangle('fill', 0, 0, winw, winh)
233
love.graphics.setScissor( self.view.realTranslate.x,
234
self.view.realTranslate.y,
235
self.width * self.scale,
236
self.height * self.scale)
239
self.view.scale = self.scale
243
function love.resize(w, h)