ExperimentalGear/scripts/components/footer.lua

68 lines
1.8 KiB
Lua
Raw Normal View History

local version = require("common.version")
local Dim = require("common.dimensions")
local BAR_ALPHA = 191
local FOOTER_HEIGHT = 128
local footerY = Dim.design.height - FOOTER_HEIGHT
-- Images
local footerRightImage = gfx.CreateSkinImage("components/bars/footer_right.png", 0)
-- Animation related
local entryTransitionScale = 0
local entryTransitionFooterYOffset = 0
local legend = {{control = "START", text = "Confirm selection"}, {control = "KNOB", text = "Scroll"}}
local function set() end
local function drawFooter()
gfx.BeginPath()
gfx.FillColor(0, 0, 0, BAR_ALPHA)
gfx.Rect(0, footerY, Dim.design.width, FOOTER_HEIGHT)
gfx.Fill()
gfx.BeginPath()
gfx.ImageRect(Dim.design.width - 275, footerY - 25, 328 * 0.85, 188 * 0.85, footerRightImage, 1, 0)
gfx.BeginPath()
gfx.LoadSkinFont("Digital-Serial-Bold.ttf")
2021-08-13 22:59:35 +02:00
gfx.FontSize(20)
gfx.TextAlign(gfx.TEXT_ALIGN_LEFT + gfx.TEXT_ALIGN_TOP)
gfx.FillColor(255, 255, 255, 255)
gfx.Text("EXPERIMENTALGEAR " .. version.MAJOR .. "." .. version.MINOR .. "." .. version.PATCH .. "", 8, 1895)
end
local function progressTransitions(deltaTime)
entryTransitionScale = entryTransitionScale + deltaTime / 0.3
if (entryTransitionScale > 1) then entryTransitionScale = 1 end
entryTransitionFooterYOffset = FOOTER_HEIGHT * (1 - entryTransitionScale)
footerY = Dim.design.height - FOOTER_HEIGHT + entryTransitionFooterYOffset
end
local function draw(deltaTime, params)
if params and params.noEnterTransition then
entryTransitionScale = 1
end
gfx.Save()
gfx.ResetTransform()
Dim.updateResolution()
Dim.transformToScreenSpace()
gfx.LoadSkinFont("NotoSans-Regular.ttf")
drawFooter()
progressTransitions(deltaTime)
gfx.Restore()
end
return {set = set, draw = draw}