2023-04-25 03:20:49 +00:00
|
|
|
math.randomseed(os.time())
|
|
|
|
local state = {}
|
2024-03-19 06:17:42 +00:00
|
|
|
state.logo_fg = image.load(script.dir .. "/logo-fg.png")
|
|
|
|
state.logo_bg = image.load(script.dir .. "/logo-bg.png")
|
|
|
|
state.overlay = canvas:newLayer(state.logo_fg.width, state.logo_fg.height)
|
|
|
|
state.x = math.random() * (canvas:screenWidth() - state.logo_fg.width)
|
|
|
|
state.y = math.random() * (canvas:screenHeight() - state.logo_fg.height)
|
|
|
|
state.overlay:setPosition(math.floor(state.x), math.floor(state.y))
|
2023-04-25 03:20:49 +00:00
|
|
|
state.direction = math.floor(math.random() * 3)
|
|
|
|
state.speed = 0.5
|
|
|
|
|
2024-03-19 06:17:42 +00:00
|
|
|
function state.recolor()
|
|
|
|
local r = math.floor(math.random() * 255)
|
|
|
|
local g = math.floor(math.random() * 255)
|
|
|
|
local b = math.floor(math.random() * 255)
|
|
|
|
local color = 0xFF000000 | (r << 16) | (g << 8) | b
|
|
|
|
state.overlay.image:drawImageOpaque(state.logo_bg, 0, 0)
|
|
|
|
local painter = image.newPainter(state.overlay.image)
|
|
|
|
painter:setFill(true)
|
|
|
|
painter:setFillColor(color)
|
|
|
|
painter:setBlend(true)
|
|
|
|
painter:drawMask(state.logo_fg, 0, 0)
|
|
|
|
state.overlay:update()
|
|
|
|
end
|
2023-04-25 03:20:49 +00:00
|
|
|
|
|
|
|
function state.update()
|
|
|
|
if state.direction & 1 == 1 then
|
|
|
|
state.x = state.x + 1
|
2024-03-19 06:17:42 +00:00
|
|
|
if state.x > canvas:screenWidth() - state.logo_fg.width then
|
|
|
|
state.x = (canvas:screenWidth() - state.logo_fg.width) * 2 - state.x
|
2023-04-25 03:20:49 +00:00
|
|
|
state.direction = state.direction ~ 1
|
2024-03-19 06:17:42 +00:00
|
|
|
state.recolor()
|
2023-04-25 03:20:49 +00:00
|
|
|
end
|
|
|
|
else
|
|
|
|
state.x = state.x - 1
|
|
|
|
if state.x < 0 then
|
|
|
|
state.x = -state.x
|
|
|
|
state.direction = state.direction ~ 1
|
2024-03-19 06:17:42 +00:00
|
|
|
state.recolor()
|
2023-04-25 03:20:49 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
if state.direction & 2 == 2 then
|
|
|
|
state.y = state.y + 1
|
2024-03-19 06:17:42 +00:00
|
|
|
if state.y > canvas:screenHeight() - state.logo_fg.height then
|
|
|
|
state.y = (canvas:screenHeight() - state.logo_fg.height) * 2 - state.y
|
2023-04-25 03:20:49 +00:00
|
|
|
state.direction = state.direction ~ 2
|
2024-03-19 06:17:42 +00:00
|
|
|
state.recolor()
|
2023-04-25 03:20:49 +00:00
|
|
|
end
|
|
|
|
else
|
|
|
|
state.y = state.y - 1
|
|
|
|
if state.y < 0 then
|
|
|
|
state.y = -state.y
|
|
|
|
state.direction = state.direction ~ 2
|
2024-03-19 06:17:42 +00:00
|
|
|
state.recolor()
|
2023-04-25 03:20:49 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
state.overlay:setPosition(math.floor(state.x), math.floor(state.y))
|
|
|
|
end
|
|
|
|
|
2024-03-19 06:17:42 +00:00
|
|
|
state.recolor()
|
2023-04-25 03:20:49 +00:00
|
|
|
callbacks:add("frame", state.update)
|