cambridge/scene/credits.lua

79 lines
2.8 KiB
Lua
Raw Normal View History

2020-12-20 09:28:34 -06:00
local CreditsScene = Scene:extend()
CreditsScene.title = "Credits"
function CreditsScene:new()
self.frames = 0
2020-12-21 14:48:34 -06:00
switchBGM("credit_roll", "gm3")
2020-12-20 09:28:34 -06:00
end
function CreditsScene:update()
if love.window.hasFocus() then
self.frames = self.frames + 1
end
2020-12-21 14:48:34 -06:00
if self.frames >= 4200 then
2020-12-20 09:28:34 -06:00
playSE("mode_decide")
scene = TitleScene()
switchBGM(nil)
2020-12-21 14:48:34 -06:00
elseif self.frames == 3600 then
fadeoutBGM(2)
2020-12-20 09:28:34 -06:00
end
end
function CreditsScene:render()
love.graphics.setColor(1, 1, 1, 1)
love.graphics.draw(
backgrounds[19],
0, 0, 0,
0.5, 0.5
)
love.graphics.setFont(font_3x5_4)
2020-12-21 14:48:34 -06:00
love.graphics.print("Cambridge Credits", 320, 500 - self.frames / 2)
2021-06-15 20:47:38 -05:00
love.graphics.print("THANK YOU\nFOR PLAYING!", 320, math.max(1910 - self.frames / 2, 240))
2020-12-20 09:28:34 -06:00
love.graphics.setFont(font_3x5_3)
2020-12-21 14:48:34 -06:00
love.graphics.print("Game Developers", 320, 550 - self.frames / 2)
love.graphics.print("Project Heads", 320, 640 - self.frames / 2)
2021-06-14 22:53:14 -05:00
love.graphics.print("Notable Game Developers", 320, 730 - self.frames / 2)
2021-06-15 20:47:38 -05:00
love.graphics.print("Special Thanks", 320, 950 - self.frames / 2)
love.graphics.print("- Milla", 320, math.max(1990 - self.frames / 2, 320))
2020-12-20 09:28:34 -06:00
love.graphics.setFont(font_3x5_2)
2020-12-21 14:48:34 -06:00
love.graphics.print("Oshisaure\nJoe Zeng", 320, 590 - self.frames / 2)
2021-06-14 22:55:36 -05:00
love.graphics.print("Mizu\nMarkGamed", 320, 680 - self.frames / 2)
2021-03-28 09:03:27 -05:00
love.graphics.print(
2021-06-14 22:53:14 -05:00
"2Tie - TGMsim\nAxel Fox - Multimino\nDr Ocelot - Tetra Legends\n" ..
"Felicity/nightmareci/kdex - Shiromino\nMine - Tetra Online\n" ..
2021-06-15 20:47:38 -05:00
"osk - TETR.IO\nPhoenix Flare - Master of Blocks\nRayRay26 - Spirit Drop\n" ..
"sinefuse - stackfuse",
2021-03-28 09:03:27 -05:00
320, 770 - self.frames / 2
)
2020-12-20 09:28:34 -06:00
love.graphics.print(
2021-06-14 22:53:14 -05:00
"321MrHaatz\nAgentBasey\nAdventium\nArchina\nAurora\n" ..
"Caithness\nCheez\ncolour_thief\nCommando\nCublex\n" ..
"CylinderKnot\nEricICX\neightsixfivezero\nGesomaru\n" ..
"gizmo4487\nJBroms\nKirby703\nKitaru\n" ..
"M1ssing0\nMattMayuga\nMyPasswordIsWeak\n" ..
"Nikki Karissa\noffwo\nOliver\nPyra Neoxi\n" ..
"pokemonfan1937\nRDST64\nRocketLanterns\nRustyFoxxo\n" ..
"saphie\nSimon\nstratus\nSuper302\n" ..
"switchpalacecorner\nterpyderp\nTetrian22\nTetro48\n" ..
"TimmSkiller\nTrixciel\nuser74003\nZaptorZap\nZircean\n" ..
"All other contributors and friends!\n" ..
2021-02-28 17:40:53 -06:00
"The Absolute PLUS Discord\nTetra Legends Discord\nTetra Online Discord\n" ..
2021-03-28 09:03:27 -05:00
"Multimino Discord\nHard Drop Discord\nCambridge Discord\n" ..
2021-02-28 17:40:53 -06:00
"And to you, the player!",
2021-06-15 20:47:38 -05:00
320, 990 - self.frames / 2
2020-12-20 09:28:34 -06:00
)
end
function CreditsScene:onInputPress(e)
if e.input == "menu_decide" or e.scancode == "return" or
e.input == "menu_back" or e.scancode == "delete" or e.scancode == "backspace" then
scene = TitleScene()
switchBGM(nil)
2020-12-20 09:28:34 -06:00
end
end
return CreditsScene