2011-08-29 16:14:21 +02:00
|
|
|
EnterGame = { }
|
2011-08-26 20:00:22 +02:00
|
|
|
|
2011-08-29 16:14:21 +02:00
|
|
|
-- private variables
|
|
|
|
local loadBox
|
2011-11-02 04:02:56 +01:00
|
|
|
local enterGame
|
2012-12-29 18:41:14 +01:00
|
|
|
local motdWindow
|
2012-01-07 18:36:58 +01:00
|
|
|
local motdButton
|
|
|
|
local enterGameButton
|
2013-08-04 00:21:08 +02:00
|
|
|
local clientBox
|
2013-01-31 17:19:31 +01:00
|
|
|
local protocolLogin
|
2013-02-18 17:16:22 +01:00
|
|
|
local motdEnabled = true
|
2012-01-07 18:36:58 +01:00
|
|
|
|
2011-08-29 16:14:21 +02:00
|
|
|
-- private functions
|
2012-07-10 00:45:34 +02:00
|
|
|
local function onError(protocol, message, errorCode)
|
2012-08-20 15:22:47 +02:00
|
|
|
if loadBox then
|
|
|
|
loadBox:destroy()
|
|
|
|
loadBox = nil
|
|
|
|
end
|
2012-02-06 20:19:47 +01:00
|
|
|
|
2012-07-10 00:45:34 +02:00
|
|
|
if not errorCode then
|
|
|
|
EnterGame.clearAccountFields()
|
2012-01-07 23:25:35 +01:00
|
|
|
end
|
2012-07-10 00:45:34 +02:00
|
|
|
|
2012-04-26 21:54:16 +02:00
|
|
|
local errorBox = displayErrorBox(tr('Login Error'), message)
|
2012-02-06 20:19:47 +01:00
|
|
|
connect(errorBox, { onOk = EnterGame.show })
|
2011-08-26 20:00:22 +02:00
|
|
|
end
|
|
|
|
|
2011-08-29 16:14:21 +02:00
|
|
|
local function onMotd(protocol, motd)
|
2012-06-04 14:38:15 +02:00
|
|
|
G.motdNumber = tonumber(motd:sub(0, motd:find("\n")))
|
|
|
|
G.motdMessage = motd:sub(motd:find("\n") + 1, #motd)
|
2013-02-18 17:16:22 +01:00
|
|
|
if motdEnabled then
|
|
|
|
motdButton:show()
|
|
|
|
end
|
2011-08-26 20:44:18 +02:00
|
|
|
end
|
|
|
|
|
2015-01-27 23:44:37 +01:00
|
|
|
local function onSessionKey(protocol, sessionKey)
|
|
|
|
G.sessionKey = sessionKey
|
|
|
|
end
|
|
|
|
|
2012-08-31 06:56:10 +02:00
|
|
|
local function onCharacterList(protocol, characters, account, otui)
|
2013-02-23 12:41:21 +01:00
|
|
|
-- Try add server to the server list
|
2014-08-03 00:02:28 +02:00
|
|
|
ServerList.add(G.host, G.port, g_game.getClientVersion())
|
2013-02-23 12:41:21 +01:00
|
|
|
|
2015-01-27 23:44:37 +01:00
|
|
|
-- Save 'Stay logged in' setting
|
|
|
|
g_settings.set('staylogged', enterGame:getChildById('stayLoggedBox'):isChecked())
|
|
|
|
|
2011-11-16 19:59:55 +01:00
|
|
|
if enterGame:getChildById('rememberPasswordBox'):isChecked() then
|
2013-02-23 12:41:21 +01:00
|
|
|
local account = g_crypt.encrypt(G.account)
|
|
|
|
local password = g_crypt.encrypt(G.password)
|
|
|
|
|
|
|
|
g_settings.set('account', account)
|
|
|
|
g_settings.set('password', password)
|
|
|
|
|
|
|
|
ServerList.setServerAccount(G.host, account)
|
|
|
|
ServerList.setServerPassword(G.host, password)
|
|
|
|
|
2012-06-26 00:13:30 +02:00
|
|
|
g_settings.set('autologin', enterGame:getChildById('autoLoginBox'):isChecked())
|
2011-11-16 19:59:55 +01:00
|
|
|
else
|
2013-02-23 13:14:30 +01:00
|
|
|
-- reset server list account/password
|
|
|
|
ServerList.setServerAccount(G.host, '')
|
|
|
|
ServerList.setServerPassword(G.host, '')
|
|
|
|
|
2012-07-10 00:45:34 +02:00
|
|
|
EnterGame.clearAccountFields()
|
2011-11-16 19:59:55 +01:00
|
|
|
end
|
|
|
|
|
2011-11-02 02:55:36 +01:00
|
|
|
loadBox:destroy()
|
2012-02-06 20:19:47 +01:00
|
|
|
loadBox = nil
|
|
|
|
|
2014-12-29 18:08:13 +01:00
|
|
|
for _, characterInfo in pairs(characters) do
|
|
|
|
if characterInfo.previewState and characterInfo.previewState ~= PreviewState.Default then
|
|
|
|
characterInfo.worldName = characterInfo.worldName .. ', Preview'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-31 06:56:10 +02:00
|
|
|
CharacterList.create(characters, account, otui)
|
2012-06-04 14:38:15 +02:00
|
|
|
CharacterList.show()
|
2011-11-02 02:55:36 +01:00
|
|
|
|
2013-02-18 17:16:22 +01:00
|
|
|
if motdEnabled then
|
|
|
|
local lastMotdNumber = g_settings.getNumber("motd")
|
|
|
|
if G.motdNumber and G.motdNumber ~= lastMotdNumber then
|
|
|
|
g_settings.set("motd", motdNumber)
|
|
|
|
motdWindow = displayInfoBox(tr('Message of the day'), G.motdMessage)
|
|
|
|
connect(motdWindow, { onOk = function() CharacterList.show() motdWindow = nil end })
|
|
|
|
CharacterList.hide()
|
|
|
|
end
|
2011-10-31 18:56:00 +01:00
|
|
|
end
|
2011-08-29 16:14:21 +02:00
|
|
|
end
|
2011-08-26 23:20:53 +02:00
|
|
|
|
2013-01-21 22:36:53 +01:00
|
|
|
local function onUpdateNeeded(protocol, signature)
|
|
|
|
loadBox:destroy()
|
|
|
|
loadBox = nil
|
|
|
|
|
2013-01-28 19:33:10 +01:00
|
|
|
if EnterGame.updateFunc then
|
2013-01-21 22:36:53 +01:00
|
|
|
local continueFunc = EnterGame.show
|
|
|
|
local cancelFunc = EnterGame.show
|
2013-01-28 19:33:10 +01:00
|
|
|
EnterGame.updateFunc(signature, continueFunc, cancelFunc)
|
|
|
|
else
|
2014-08-03 00:02:28 +02:00
|
|
|
local errorBox = displayErrorBox(tr('Update needed'), tr('Your client needs updating, try redownloading it.'))
|
2013-01-28 19:33:10 +01:00
|
|
|
connect(errorBox, { onOk = EnterGame.show })
|
2013-01-21 22:36:53 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-08-29 16:14:21 +02:00
|
|
|
-- public functions
|
2012-01-07 18:36:58 +01:00
|
|
|
function EnterGame.init()
|
2013-01-18 23:39:11 +01:00
|
|
|
enterGame = g_ui.displayUI('entergame')
|
|
|
|
enterGameButton = modules.client_topmenu.addLeftButton('enterGameButton', tr('Login') .. ' (Ctrl + G)', '/images/topbuttons/login', EnterGame.openWindow)
|
|
|
|
motdButton = modules.client_topmenu.addLeftButton('motdButton', tr('Message of the day'), '/images/topbuttons/motd', EnterGame.displayMotd)
|
2012-02-20 03:27:08 +01:00
|
|
|
motdButton:hide()
|
2012-06-26 00:13:30 +02:00
|
|
|
g_keyboard.bindKeyDown('Ctrl+G', EnterGame.openWindow)
|
2011-11-16 19:59:55 +01:00
|
|
|
|
2013-02-18 17:16:22 +01:00
|
|
|
if motdEnabled and G.motdNumber then
|
2012-06-04 14:38:15 +02:00
|
|
|
motdButton:show()
|
|
|
|
end
|
|
|
|
|
2013-02-23 12:41:21 +01:00
|
|
|
local account = g_settings.get('account')
|
|
|
|
local password = g_settings.get('password')
|
2012-06-26 00:13:30 +02:00
|
|
|
local host = g_settings.get('host')
|
|
|
|
local port = g_settings.get('port')
|
2015-01-27 23:44:37 +01:00
|
|
|
local stayLogged = g_settings.getBoolean('staylogged')
|
2012-06-26 00:13:30 +02:00
|
|
|
local autologin = g_settings.getBoolean('autologin')
|
2013-08-04 00:21:08 +02:00
|
|
|
local clientVersion = g_settings.getInteger('client-version')
|
2015-01-27 23:44:37 +01:00
|
|
|
if clientVersion == 0 then clientVersion = 1074 end
|
2011-11-16 19:59:55 +01:00
|
|
|
|
2012-07-09 20:06:58 +02:00
|
|
|
if port == nil or port == 0 then port = 7171 end
|
|
|
|
|
2013-02-23 12:41:21 +01:00
|
|
|
EnterGame.setAccountName(account)
|
|
|
|
EnterGame.setPassword(password)
|
|
|
|
|
2012-03-31 15:43:01 +02:00
|
|
|
enterGame:getChildById('serverHostTextEdit'):setText(host)
|
|
|
|
enterGame:getChildById('serverPortTextEdit'):setText(port)
|
2011-11-16 21:07:52 +01:00
|
|
|
enterGame:getChildById('autoLoginBox'):setChecked(autologin)
|
2015-01-27 23:44:37 +01:00
|
|
|
enterGame:getChildById('stayLoggedBox'):setChecked(stayLogged)
|
2015-01-18 15:14:07 +01:00
|
|
|
|
2013-08-04 00:21:08 +02:00
|
|
|
clientBox = enterGame:getChildById('clientComboBox')
|
|
|
|
for _, proto in pairs(g_game.getSupportedClients()) do
|
|
|
|
clientBox:addOption(proto)
|
2012-08-10 00:54:03 +02:00
|
|
|
end
|
2013-08-04 00:21:08 +02:00
|
|
|
clientBox:setCurrentOption(clientVersion)
|
2012-07-18 01:49:21 +02:00
|
|
|
|
2015-01-21 18:58:30 +01:00
|
|
|
EnterGame.toggleAuthenticatorToken(clientVersion, true)
|
2015-01-27 23:44:37 +01:00
|
|
|
EnterGame.toggleStayLoggedBox(clientVersion, true)
|
2015-01-21 18:58:30 +01:00
|
|
|
connect(clientBox, { onOptionChange = EnterGame.onClientVersionChange })
|
|
|
|
|
2012-08-19 16:30:57 +02:00
|
|
|
enterGame:hide()
|
|
|
|
|
|
|
|
if g_app.isRunning() and not g_game.isOnline() then
|
|
|
|
enterGame:show()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function EnterGame.firstShow()
|
2012-08-20 23:58:43 +02:00
|
|
|
EnterGame.show()
|
2012-08-19 16:30:57 +02:00
|
|
|
|
|
|
|
local account = g_crypt.decrypt(g_settings.get('account'))
|
|
|
|
local password = g_crypt.decrypt(g_settings.get('password'))
|
|
|
|
local host = g_settings.get('host')
|
|
|
|
local autologin = g_settings.getBoolean('autologin')
|
|
|
|
if #host > 0 and #password > 0 and #account > 0 and autologin then
|
2013-02-24 21:26:19 +01:00
|
|
|
addEvent(function()
|
2013-02-18 17:16:22 +01:00
|
|
|
if not g_settings.getBoolean('autologin') then return end
|
|
|
|
EnterGame.doLogin()
|
2013-02-24 21:26:19 +01:00
|
|
|
end)
|
2011-11-16 19:59:55 +01:00
|
|
|
end
|
2011-11-02 02:55:36 +01:00
|
|
|
end
|
|
|
|
|
2012-01-07 18:36:58 +01:00
|
|
|
function EnterGame.terminate()
|
2012-06-26 00:13:30 +02:00
|
|
|
g_keyboard.unbindKeyDown('Ctrl+G')
|
2015-01-18 15:14:07 +01:00
|
|
|
disconnect(clientBox, { onOptionChange = EnterGame.onClientVersionChange })
|
2011-11-02 04:02:56 +01:00
|
|
|
enterGame:destroy()
|
|
|
|
enterGame = nil
|
2013-02-01 05:32:15 +01:00
|
|
|
enterGameButton:destroy()
|
|
|
|
enterGameButton = nil
|
2013-08-04 00:21:08 +02:00
|
|
|
clientBox = nil
|
2012-12-31 17:34:15 +01:00
|
|
|
if motdWindow then
|
|
|
|
motdWindow:destroy()
|
|
|
|
motdWindow = nil
|
|
|
|
end
|
2013-02-01 05:32:15 +01:00
|
|
|
if motdButton then
|
|
|
|
motdButton:destroy()
|
|
|
|
motdButton = nil
|
|
|
|
end
|
2013-01-31 17:19:31 +01:00
|
|
|
if loadBox then
|
|
|
|
loadBox:destroy()
|
|
|
|
loadBox = nil
|
|
|
|
end
|
|
|
|
if protocolLogin then
|
|
|
|
protocolLogin:cancelLogin()
|
|
|
|
protocolLogin = nil
|
|
|
|
end
|
2012-02-07 01:41:53 +01:00
|
|
|
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()
|
2013-01-22 22:48:25 +01:00
|
|
|
if loadBox then return end
|
2011-11-02 04:02:56 +01:00
|
|
|
enterGame:show()
|
2012-02-20 03:27:08 +01:00
|
|
|
enterGame:raise()
|
2011-11-03 10:59:11 +01:00
|
|
|
enterGame:focus()
|
2011-11-02 04:02:56 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function EnterGame.hide()
|
|
|
|
enterGame:hide()
|
2011-08-29 16:14:21 +02:00
|
|
|
end
|
2011-07-17 08:56:57 +02:00
|
|
|
|
2012-01-07 18:36:58 +01:00
|
|
|
function EnterGame.openWindow()
|
2012-02-08 22:23:15 +01:00
|
|
|
if g_game.isOnline() then
|
2012-01-07 18:36:58 +01:00
|
|
|
CharacterList.show()
|
2013-01-22 22:48:25 +01:00
|
|
|
elseif not g_game.isLogging() and not CharacterList.isVisible() then
|
2012-01-07 18:36:58 +01:00
|
|
|
EnterGame.show()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-23 12:41:21 +01:00
|
|
|
function EnterGame.setAccountName(account)
|
|
|
|
local account = g_crypt.decrypt(account)
|
|
|
|
enterGame:getChildById('accountNameTextEdit'):setText(account)
|
|
|
|
enterGame:getChildById('accountNameTextEdit'):setCursorPos(-1)
|
|
|
|
enterGame:getChildById('rememberPasswordBox'):setChecked(#account > 0)
|
|
|
|
end
|
|
|
|
|
|
|
|
function EnterGame.setPassword(password)
|
|
|
|
local password = g_crypt.decrypt(password)
|
|
|
|
enterGame:getChildById('accountPasswordTextEdit'):setText(password)
|
|
|
|
end
|
|
|
|
|
2012-07-10 00:45:34 +02:00
|
|
|
function EnterGame.clearAccountFields()
|
|
|
|
enterGame:getChildById('accountNameTextEdit'):clearText()
|
|
|
|
enterGame:getChildById('accountPasswordTextEdit'):clearText()
|
2015-01-18 15:14:07 +01:00
|
|
|
enterGame:getChildById('authenticatorTokenTextEdit'):clearText()
|
2012-07-10 00:45:34 +02:00
|
|
|
enterGame:getChildById('accountNameTextEdit'):focus()
|
|
|
|
g_settings.remove('account')
|
|
|
|
g_settings.remove('password')
|
|
|
|
end
|
|
|
|
|
2015-01-21 18:58:30 +01:00
|
|
|
function EnterGame.toggleAuthenticatorToken(clientVersion, init)
|
|
|
|
local enabled = (clientVersion >= 1072)
|
2015-01-18 15:14:07 +01:00
|
|
|
if enabled == enterGame.authenticatorEnabled then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2015-01-27 23:44:37 +01:00
|
|
|
enterGame:getChildById('authenticatorTokenLabel'):setOn(enabled)
|
|
|
|
enterGame:getChildById('authenticatorTokenTextEdit'):setOn(enabled)
|
|
|
|
|
|
|
|
local newHeight = enterGame:getHeight()
|
|
|
|
local newY = enterGame:getY()
|
2015-01-18 15:14:07 +01:00
|
|
|
if enabled then
|
2015-01-27 23:44:37 +01:00
|
|
|
newY = newY - enterGame.authenticatorHeight
|
|
|
|
newHeight = newHeight + enterGame.authenticatorHeight
|
|
|
|
else
|
|
|
|
newY = newY + enterGame.authenticatorHeight
|
|
|
|
newHeight = newHeight - enterGame.authenticatorHeight
|
|
|
|
end
|
2015-01-18 15:14:07 +01:00
|
|
|
|
2015-01-27 23:44:37 +01:00
|
|
|
if not init then
|
|
|
|
enterGame:breakAnchors()
|
|
|
|
enterGame:setY(newY)
|
|
|
|
enterGame:bindRectToParent()
|
|
|
|
end
|
|
|
|
enterGame:setHeight(newHeight)
|
2015-01-18 15:14:07 +01:00
|
|
|
|
2015-01-27 23:44:37 +01:00
|
|
|
enterGame.authenticatorEnabled = enabled
|
|
|
|
end
|
2015-01-18 15:14:07 +01:00
|
|
|
|
2015-01-27 23:44:37 +01:00
|
|
|
function EnterGame.toggleStayLoggedBox(clientVersion, init)
|
|
|
|
local enabled = (clientVersion >= 1074)
|
|
|
|
if enabled == enterGame.stayLoggedBoxEnabled then
|
|
|
|
return
|
|
|
|
end
|
2015-01-18 15:14:07 +01:00
|
|
|
|
2015-01-27 23:44:37 +01:00
|
|
|
enterGame:getChildById('stayLoggedBox'):setOn(enabled)
|
2015-01-18 15:14:07 +01:00
|
|
|
|
2015-01-27 23:44:37 +01:00
|
|
|
local newHeight = enterGame:getHeight()
|
|
|
|
local newY = enterGame:getY()
|
|
|
|
if enabled then
|
|
|
|
newY = newY - enterGame.stayLoggedBoxHeight
|
|
|
|
newHeight = newHeight + enterGame.stayLoggedBoxHeight
|
|
|
|
else
|
|
|
|
newY = newY + enterGame.stayLoggedBoxHeight
|
|
|
|
newHeight = newHeight - enterGame.stayLoggedBoxHeight
|
|
|
|
end
|
2015-01-18 15:14:07 +01:00
|
|
|
|
2015-01-27 23:44:37 +01:00
|
|
|
if not init then
|
|
|
|
enterGame:breakAnchors()
|
|
|
|
enterGame:setY(newY)
|
|
|
|
enterGame:bindRectToParent()
|
2015-01-18 15:14:07 +01:00
|
|
|
end
|
2015-01-27 23:44:37 +01:00
|
|
|
enterGame:setHeight(newHeight)
|
2015-01-18 15:14:07 +01:00
|
|
|
|
2015-01-27 23:44:37 +01:00
|
|
|
enterGame.stayLoggedBoxEnabled = enabled
|
2015-01-18 15:14:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
function EnterGame.onClientVersionChange(comboBox, text, data)
|
|
|
|
local clientVersion = tonumber(text)
|
2015-01-21 18:58:30 +01:00
|
|
|
EnterGame.toggleAuthenticatorToken(clientVersion)
|
2015-01-27 23:44:37 +01:00
|
|
|
EnterGame.toggleStayLoggedBox(clientVersion)
|
2015-01-18 15:14:07 +01:00
|
|
|
end
|
|
|
|
|
2011-08-29 16:14:21 +02:00
|
|
|
function EnterGame.doLogin()
|
2012-06-04 14:38:15 +02:00
|
|
|
G.account = enterGame:getChildById('accountNameTextEdit'):getText()
|
|
|
|
G.password = enterGame:getChildById('accountPasswordTextEdit'):getText()
|
2015-01-18 15:14:07 +01:00
|
|
|
G.authenticatorToken = enterGame:getChildById('authenticatorTokenTextEdit'):getText()
|
2015-01-27 23:44:37 +01:00
|
|
|
G.stayLogged = enterGame:getChildById('stayLoggedBox'):isChecked()
|
2012-06-04 14:38:15 +02:00
|
|
|
G.host = enterGame:getChildById('serverHostTextEdit'):getText()
|
|
|
|
G.port = tonumber(enterGame:getChildById('serverPortTextEdit'):getText())
|
2013-08-04 00:21:08 +02:00
|
|
|
local clientVersion = tonumber(clientBox:getText())
|
2011-11-02 02:55:36 +01:00
|
|
|
EnterGame.hide()
|
2011-07-17 08:56:57 +02:00
|
|
|
|
2012-07-18 01:49:21 +02:00
|
|
|
if g_game.isOnline() then
|
|
|
|
local errorBox = displayErrorBox(tr('Login Error'), tr('Cannot login while already in game.'))
|
2012-07-09 20:06:58 +02:00
|
|
|
connect(errorBox, { onOk = EnterGame.show })
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2012-06-26 00:13:30 +02:00
|
|
|
g_settings.set('host', G.host)
|
|
|
|
g_settings.set('port', G.port)
|
2014-01-18 15:09:26 +01:00
|
|
|
g_settings.set('client-version', clientVersion)
|
2011-11-16 21:07:52 +01:00
|
|
|
|
2013-01-31 17:19:31 +01:00
|
|
|
protocolLogin = ProtocolLogin.create()
|
2013-02-22 22:49:36 +01:00
|
|
|
protocolLogin.onLoginError = onError
|
2011-08-29 16:14:21 +02:00
|
|
|
protocolLogin.onMotd = onMotd
|
2015-01-27 23:44:37 +01:00
|
|
|
protocolLogin.onSessionKey = onSessionKey
|
2011-08-29 16:14:21 +02:00
|
|
|
protocolLogin.onCharacterList = onCharacterList
|
2013-01-21 22:36:53 +01:00
|
|
|
protocolLogin.onUpdateNeeded = onUpdateNeeded
|
2011-07-17 08:56:57 +02:00
|
|
|
|
2012-04-26 21:54:16 +02:00
|
|
|
loadBox = displayCancelBox(tr('Please wait'), tr('Connecting to login server...'))
|
2012-02-06 20:19:47 +01:00
|
|
|
connect(loadBox, { onCancel = function(msgbox)
|
|
|
|
loadBox = nil
|
|
|
|
protocolLogin:cancelLogin()
|
|
|
|
EnterGame.show()
|
|
|
|
end })
|
2011-07-17 08:56:57 +02:00
|
|
|
|
2013-08-04 00:21:08 +02:00
|
|
|
g_game.setClientVersion(clientVersion)
|
2014-08-03 00:02:28 +02:00
|
|
|
g_game.setProtocolVersion(g_game.getClientProtocolVersion(clientVersion))
|
2015-01-11 18:50:35 +01:00
|
|
|
g_game.chooseRsa(G.host)
|
2012-08-15 01:58:25 +02:00
|
|
|
|
2013-01-21 22:36:53 +01:00
|
|
|
if modules.game_things.isLoaded() then
|
2015-01-27 23:44:37 +01:00
|
|
|
protocolLogin:login(G.host, G.port, G.account, G.password, G.authenticatorToken, G.stayLogged)
|
2012-08-15 01:58:25 +02:00
|
|
|
else
|
|
|
|
loadBox:destroy()
|
|
|
|
loadBox = nil
|
|
|
|
EnterGame.show()
|
|
|
|
end
|
2011-07-17 08:56:57 +02:00
|
|
|
end
|
2011-11-16 19:08:42 +01:00
|
|
|
|
|
|
|
function EnterGame.displayMotd()
|
2013-01-31 17:19:31 +01:00
|
|
|
if not motdWindow then
|
2012-12-29 18:41:14 +01:00
|
|
|
motdWindow = displayInfoBox(tr('Message of the day'), G.motdMessage)
|
2013-01-22 22:48:25 +01:00
|
|
|
motdWindow.onOk = function() motdWindow = nil end
|
2012-12-29 18:41:14 +01:00
|
|
|
end
|
2011-11-16 19:08:42 +01:00
|
|
|
end
|
2012-08-06 16:39:27 +02:00
|
|
|
|
2012-08-23 19:45:39 +02:00
|
|
|
function EnterGame.setDefaultServer(host, port, protocol)
|
|
|
|
local hostTextEdit = enterGame:getChildById('serverHostTextEdit')
|
|
|
|
local portTextEdit = enterGame:getChildById('serverPortTextEdit')
|
2013-08-04 00:21:08 +02:00
|
|
|
local clientLabel = enterGame:getChildById('clientLabel')
|
2012-08-23 19:45:39 +02:00
|
|
|
local accountTextEdit = enterGame:getChildById('accountNameTextEdit')
|
|
|
|
local passwordTextEdit = enterGame:getChildById('accountPasswordTextEdit')
|
2015-01-18 15:14:07 +01:00
|
|
|
local authenticatorTokenTextEdit = enterGame:getChildById('authenticatorTokenTextEdit')
|
2012-08-23 19:45:39 +02:00
|
|
|
|
|
|
|
if hostTextEdit:getText() ~= host then
|
|
|
|
hostTextEdit:setText(host)
|
|
|
|
portTextEdit:setText(port)
|
2013-08-04 00:21:08 +02:00
|
|
|
clientBox:setCurrentOption(protocol)
|
2012-08-23 19:45:39 +02:00
|
|
|
accountTextEdit:setText('')
|
|
|
|
passwordTextEdit:setText('')
|
2015-01-18 15:14:07 +01:00
|
|
|
authenticatorTokenTextEdit:setText('')
|
2012-08-23 19:45:39 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-06 23:47:58 +02:00
|
|
|
function EnterGame.setUniqueServer(host, port, protocol, windowWidth, windowHeight)
|
2012-08-06 16:39:27 +02:00
|
|
|
local hostTextEdit = enterGame:getChildById('serverHostTextEdit')
|
|
|
|
hostTextEdit:setText(host)
|
|
|
|
hostTextEdit:setVisible(false)
|
|
|
|
hostTextEdit:setHeight(0)
|
|
|
|
local portTextEdit = enterGame:getChildById('serverPortTextEdit')
|
|
|
|
portTextEdit:setText(port)
|
|
|
|
portTextEdit:setVisible(false)
|
|
|
|
portTextEdit:setHeight(0)
|
2015-01-27 23:44:37 +01:00
|
|
|
|
2015-01-18 15:14:07 +01:00
|
|
|
local authenticatorTokenTextEdit = enterGame:getChildById('authenticatorTokenTextEdit')
|
|
|
|
authenticatorTokenTextEdit:setText('')
|
2015-01-27 23:44:37 +01:00
|
|
|
authenticatorTokenTextEdit:setOn(false)
|
2015-01-18 15:14:07 +01:00
|
|
|
local authenticatorTokenLabel = enterGame:getChildById('authenticatorTokenLabel')
|
2015-01-27 23:44:37 +01:00
|
|
|
authenticatorTokenLabel:setOn(false)
|
|
|
|
|
|
|
|
local stayLoggedBox = enterGame:getChildById('stayLoggedBox')
|
|
|
|
stayLoggedBox:setChecked(false)
|
|
|
|
stayLoggedBox:setOn(false)
|
2012-08-06 16:39:27 +02:00
|
|
|
|
2013-08-04 00:21:08 +02:00
|
|
|
clientBox:setCurrentOption(protocol)
|
|
|
|
clientBox:setVisible(false)
|
|
|
|
clientBox:setHeight(0)
|
2012-08-06 16:39:27 +02:00
|
|
|
|
|
|
|
local serverLabel = enterGame:getChildById('serverLabel')
|
|
|
|
serverLabel:setVisible(false)
|
|
|
|
serverLabel:setHeight(0)
|
|
|
|
local portLabel = enterGame:getChildById('portLabel')
|
|
|
|
portLabel:setVisible(false)
|
|
|
|
portLabel:setHeight(0)
|
2013-08-04 00:21:08 +02:00
|
|
|
local clientLabel = enterGame:getChildById('clientLabel')
|
|
|
|
clientLabel:setVisible(false)
|
|
|
|
clientLabel:setHeight(0)
|
2012-08-06 16:39:27 +02:00
|
|
|
|
2013-02-23 12:41:21 +01:00
|
|
|
local serverListButton = enterGame:getChildById('serverListButton')
|
|
|
|
serverListButton:setVisible(false)
|
|
|
|
serverListButton:setHeight(0)
|
|
|
|
serverListButton:setWidth(0)
|
|
|
|
|
2012-08-06 16:39:27 +02:00
|
|
|
local rememberPasswordBox = enterGame:getChildById('rememberPasswordBox')
|
2015-01-27 23:44:37 +01:00
|
|
|
rememberPasswordBox:setMarginTop(-8)
|
2012-08-06 16:39:27 +02:00
|
|
|
|
2012-08-06 23:47:58 +02:00
|
|
|
if not windowWidth then windowWidth = 236 end
|
|
|
|
enterGame:setWidth(windowWidth)
|
2015-01-27 23:44:37 +01:00
|
|
|
if not windowHeight then windowHeight = 210 end
|
2012-08-06 16:39:27 +02:00
|
|
|
enterGame:setHeight(windowHeight)
|
|
|
|
end
|
2013-01-21 22:36:53 +01:00
|
|
|
|
|
|
|
function EnterGame.setServerInfo(message)
|
|
|
|
local label = enterGame:getChildById('serverInfoLabel')
|
|
|
|
label:setText(message)
|
|
|
|
end
|
|
|
|
|
2013-02-18 17:16:22 +01:00
|
|
|
function EnterGame.disableMotd()
|
|
|
|
motdEnabled = false
|
|
|
|
motdButton:hide()
|
|
|
|
end
|