2019-01-28 13:46:57 +01:00
|
|
|
-- scenes/test :: a basic test scene
|
|
|
|
|
|
|
|
--[[
|
|
|
|
Copyright © 2019 Kazhnuz
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
]]
|
|
|
|
|
|
|
|
local Scene = require "core.modules.scenes"
|
|
|
|
local TitleScreen = Scene:extend()
|
|
|
|
local gui = require "game.modules.gui"
|
|
|
|
|
2019-08-17 15:59:53 +02:00
|
|
|
local TweenManager = require "game.modules.tweenmanager"
|
|
|
|
|
2019-01-28 13:46:57 +01:00
|
|
|
function TitleScreen:new()
|
|
|
|
TitleScreen.super.new(self)
|
|
|
|
|
|
|
|
self.borders = gui.newBorder(424, 30, 8)
|
|
|
|
self.assets:addImage("background", "assets/backgrounds/titlescreen.png")
|
|
|
|
self.assets:addImage("sonic", "assets/artworks/titlescreen_sonic.png")
|
|
|
|
self.assets:addImage("logo", "assets/artworks/logo.png")
|
2019-08-17 15:59:53 +02:00
|
|
|
self.assets:addImage("pressStart", "assets/gui/strings/press_start.png")
|
|
|
|
|
|
|
|
self.tweens = TweenManager(self)
|
|
|
|
|
|
|
|
self.borderY = 0
|
|
|
|
self.logoX = 270
|
|
|
|
self.sonicX = -180
|
2019-01-28 13:46:57 +01:00
|
|
|
|
2019-08-17 15:59:53 +02:00
|
|
|
self.flashOpacity = 0
|
|
|
|
self.canShowPressStart = false
|
|
|
|
self.showPressStart = true
|
|
|
|
self.showPressStartTimer = 0.5
|
|
|
|
|
|
|
|
self.tweens:newTween(0.2, 0.5, {borderY = 25}, "inOutQuart")
|
|
|
|
self.tweens:newTween(0.7, 0.6, {logoX = 0}, "inOutQuart")
|
|
|
|
self.tweens:newTween(0.7, 0.6, {sonicX = 0}, "inOutQuart")
|
|
|
|
self.tweens:newTween(1.3, 0.03, {flashOpacity = 1}, "inQuart")
|
|
|
|
self.tweens:newTween(1.45, 0.2, {flashOpacity = 0}, "outExpo")
|
|
|
|
self.tweens:newSwitch(1.4, { "canShowPressStart" })
|
2019-01-28 13:46:57 +01:00
|
|
|
self:register()
|
|
|
|
end
|
|
|
|
|
|
|
|
function TitleScreen:update(dt)
|
2019-08-17 15:59:53 +02:00
|
|
|
self.tweens:update(dt)
|
|
|
|
if (self.canShowPressStart) then
|
|
|
|
self.showPressStartTimer = self.showPressStartTimer - dt
|
|
|
|
if self.showPressStartTimer < 0 then
|
|
|
|
self.showPressStart = (self.showPressStart == false)
|
|
|
|
self.showPressStartTimer = 0.5
|
|
|
|
end
|
|
|
|
end
|
2019-01-28 13:46:57 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function TitleScreen:draw()
|
|
|
|
utils.graphics.resetColor()
|
|
|
|
self.assets:drawImage("background", 0, 0)
|
|
|
|
|
2019-08-17 15:59:53 +02:00
|
|
|
love.graphics.draw(self.borders, 0, self.borderY, 0, 1, -1)
|
|
|
|
love.graphics.draw(self.borders, 424, 240 - self.borderY, 0, -1, 1)
|
|
|
|
|
|
|
|
self.assets:drawImage("sonic", 90 + self.sonicX, 128, 0, 1, 1, 92, 106)
|
|
|
|
self.assets:drawImage("logo", 290 + self.logoX, 60, 0, 1, 1, 150, 71)
|
2019-01-28 13:46:57 +01:00
|
|
|
|
2019-08-17 15:59:53 +02:00
|
|
|
if (self.canShowPressStart) and (self.showPressStart) then
|
|
|
|
local w, h = self.assets.images["pressStart"]:getDimensions()
|
|
|
|
self.assets:drawImage("pressStart", 424/1.5, 240/1.5, 0, 1, 1, w/2, h/2)
|
|
|
|
end
|
2019-01-28 13:46:57 +01:00
|
|
|
|
2019-08-17 15:59:53 +02:00
|
|
|
love.graphics.setColor(1, 1, 1, self.flashOpacity)
|
|
|
|
love.graphics.rectangle("fill", 0, 0, 424, 240)
|
|
|
|
utils.graphics.resetColor( )
|
2019-01-28 13:46:57 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
return TitleScreen
|