Files
Techmino/Zframework/bg.lua
2020-12-14 23:26:08 +08:00

38 lines
706 B
Lua

local BGlist={}
local BG={
cur="",
init=nil,
resize=nil,
update=NULL,
draw=NULL,
event=nil,
discard=NULL,
}
function BG.add(name,bg)
BGlist[name]=bg
end
function BG.send(...)
if BG.event then
BG.event(...)
end
end
function BG.set(background)
if background==BG.cur or not SETTING.bg then return end
BG.discard()
background=BGlist[background]
if not background then
LOG.print("No BG called"..background,"warn")
return
end
BG.cur=background
BG.init= background.init or NULL
BG.resize= background.resize or NULL
BG.update= background.update or NULL
BG.draw= background.draw or NULL
BG.event= background.event or NULL
BG.discard= background.discard or NULL
BG.init()
end
return BG