2011-11-02 04:02:56 +01:00
|
|
|
Background = { }
|
|
|
|
|
|
|
|
-- private variables
|
|
|
|
local background
|
|
|
|
|
|
|
|
-- public functions
|
2012-01-07 18:36:58 +01:00
|
|
|
function Background.init()
|
2012-06-26 00:13:30 +02:00
|
|
|
background = g_ui.displayUI('background.otui')
|
2012-02-05 23:42:35 +01:00
|
|
|
background:lower()
|
2012-02-20 03:27:08 +01:00
|
|
|
|
2012-03-16 14:28:29 +01:00
|
|
|
local clientVersionLabel = background:getChildById('clientVersionLabel')
|
|
|
|
clientVersionLabel:setText('OTClient ' .. g_app.getVersion() .. '\n' ..
|
2012-07-08 18:46:09 +02:00
|
|
|
'Rev ' .. g_app.getBuildRevision() .. ' ('.. g_app.getBuildCommit() .. ')\n' ..
|
2012-03-16 14:28:29 +01:00
|
|
|
'Built on ' .. g_app.getBuildDate())
|
2012-03-18 14:34:39 +01:00
|
|
|
|
|
|
|
if not g_game.isOnline() then
|
2012-06-26 00:13:30 +02:00
|
|
|
g_effects.fadeIn(clientVersionLabel, 1500)
|
2012-03-18 14:34:39 +01:00
|
|
|
end
|
2012-03-16 14:28:29 +01:00
|
|
|
|
2012-02-20 03:27:08 +01:00
|
|
|
connect(g_game, { onGameStart = Background.hide })
|
|
|
|
connect(g_game, { onGameEnd = Background.show })
|
2011-11-02 04:02:56 +01:00
|
|
|
end
|
|
|
|
|
2012-01-07 18:36:58 +01:00
|
|
|
function Background.terminate()
|
2012-02-20 03:27:08 +01:00
|
|
|
disconnect(g_game, { onGameStart = Background.hide })
|
|
|
|
disconnect(g_game, { onGameEnd = Background.show })
|
|
|
|
|
2012-06-26 00:13:30 +02:00
|
|
|
g_effects.cancelFade(background:getChildById('clientVersionLabel'))
|
2011-11-02 04:02:56 +01:00
|
|
|
background:destroy()
|
|
|
|
background = nil
|
2012-02-20 03:27:08 +01:00
|
|
|
|
2012-02-07 01:41:53 +01:00
|
|
|
Background = nil
|
2011-11-02 04:02:56 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function Background.hide()
|
|
|
|
background:hide()
|
|
|
|
end
|
|
|
|
|
|
|
|
function Background.show()
|
|
|
|
background:show()
|
|
|
|
end
|
2012-08-06 21:15:20 +02:00
|
|
|
|
|
|
|
function Background.hideVersionLabel()
|
|
|
|
background:getChildById('clientVersionLabel'):hide()
|
|
|
|
end
|