tibia-client/modules/entergame/entergame.lua

71 lines
1.8 KiB
Lua
Raw Normal View History

EnterGame = { }
2011-08-26 20:00:22 +02:00
-- private variables
local loadBox
2011-11-02 04:02:56 +01:00
local enterGame
2011-11-02 02:55:36 +01:00
local motdNumber
local motdMessage
-- private functions
local function onError(protocol, error)
loadBox:destroy()
local errorBox = displayErrorBox('Login Error', error)
2011-08-30 00:34:15 +02:00
errorBox.onOk = EnterGame.create
2011-08-26 20:00:22 +02:00
end
local function onMotd(protocol, motd)
2011-11-02 02:55:36 +01:00
motdNumber = tonumber(string.sub(motd, 0, string.find(motd, "\n")))
motdMessage = string.sub(motd, string.find(motd, "\n") + 1, string.len(motd))
2011-08-26 20:44:18 +02:00
end
local function onCharacterList(protocol, characters, premDays)
2011-11-02 02:55:36 +01:00
loadBox:destroy()
CharacterList.create(characters, premDays)
2011-11-02 02:55:36 +01:00
local lastMotdNumber = tonumber(Configs.get("motd"))
if motdNumber and motdNumber ~= lastMotdNumber then
Configs.set("motd", motdNumber)
local motdBox = displayInfoBox("Message of the day", motdMessage)
motdBox.onOk = CharacterList.show
2011-10-31 18:56:00 +01:00
CharacterList.hide()
end
end
-- public functions
2011-11-02 04:02:56 +01:00
function EnterGame.create()
enterGame = UI.loadAndDisplay('/entergame/entergame.otui')
2011-11-02 02:55:36 +01:00
end
2011-11-02 04:02:56 +01:00
function EnterGame.destroy()
enterGame:destroy()
enterGame = nil
2011-08-26 20:44:18 +02:00
end
2011-08-26 20:00:22 +02:00
2011-11-02 04:02:56 +01:00
function EnterGame.show()
enterGame:show()
enterGame:focus()
2011-11-02 04:02:56 +01:00
end
function EnterGame.hide()
enterGame:hide()
end
2011-07-17 08:56:57 +02:00
function EnterGame.doLogin()
2011-11-02 04:02:56 +01:00
EnterGame.account = enterGame:getChildById('accountNameLineEdit'):getText()
EnterGame.password = enterGame:getChildById('accountPasswordLineEdit'):getText()
2011-11-02 02:55:36 +01:00
EnterGame.hide()
2011-07-17 08:56:57 +02:00
local protocolLogin = ProtocolLogin.create()
protocolLogin.onError = onError
protocolLogin.onMotd = onMotd
protocolLogin.onCharacterList = onCharacterList
2011-07-17 08:56:57 +02:00
loadBox = displayCancelBox('Please wait', 'Connecting to login server...')
2011-07-27 01:55:39 +02:00
loadBox.onCancel = function(msgbox)
2011-08-16 06:24:20 +02:00
protocolLogin:cancelLogin()
2011-11-02 02:55:36 +01:00
EnterGame.show()
2011-07-17 08:56:57 +02:00
end
protocolLogin:login(EnterGame.account, EnterGame.password)
2011-07-17 08:56:57 +02:00
end