2012-06-26 00:13:30 +02:00
|
|
|
-- @docclass
|
2012-06-05 23:27:37 +02:00
|
|
|
ProtocolLogin = extends(Protocol)
|
|
|
|
|
2012-07-18 01:49:21 +02:00
|
|
|
LoginServerError = 10
|
2013-01-18 23:39:11 +01:00
|
|
|
LoginServerUpdate = 17
|
2012-07-18 01:49:21 +02:00
|
|
|
LoginServerMotd = 20
|
|
|
|
LoginServerUpdateNeeded = 30
|
|
|
|
LoginServerCharacterList = 100
|
2012-08-30 07:59:10 +02:00
|
|
|
LoginServerExtendedCharacterList = 101
|
2012-07-18 01:49:21 +02:00
|
|
|
|
2013-01-28 23:52:03 +01:00
|
|
|
function ProtocolLogin:login(host, port, accountName, accountPassword)
|
2012-07-26 08:10:28 +02:00
|
|
|
if string.len(host) == 0 or port == nil or port == 0 then
|
2013-02-21 21:31:47 +01:00
|
|
|
signalcall(self.onLoginError, self, tr("You must enter a valid server address and port."))
|
2012-07-26 08:10:28 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
self.accountName = accountName
|
|
|
|
self.accountPassword = accountPassword
|
2013-02-28 03:45:03 +01:00
|
|
|
self.connectCallback = self.sendLoginPacket
|
2012-07-26 08:10:28 +02:00
|
|
|
|
|
|
|
self:connect(host, port)
|
|
|
|
end
|
2012-07-18 01:49:21 +02:00
|
|
|
|
2012-07-26 08:10:28 +02:00
|
|
|
function ProtocolLogin:cancelLogin()
|
|
|
|
self:disconnect()
|
|
|
|
end
|
|
|
|
|
2013-02-19 02:18:10 +01:00
|
|
|
function ProtocolLogin:sendLoginPacket()
|
2012-06-05 23:27:37 +02:00
|
|
|
local msg = OutputMessage.create()
|
2013-01-21 22:36:53 +01:00
|
|
|
|
2012-07-17 16:36:27 +02:00
|
|
|
msg:addU8(ClientOpcodes.ClientEnterAccount)
|
2013-01-17 21:24:41 +01:00
|
|
|
msg:addU16(g_game.getOs())
|
2012-12-28 12:05:45 +01:00
|
|
|
msg:addU16(g_game.getProtocolVersion())
|
|
|
|
|
|
|
|
if g_game.getProtocolVersion() >= 971 then
|
|
|
|
msg:addU32(g_game.getClientVersion())
|
|
|
|
end
|
2012-06-05 23:27:37 +02:00
|
|
|
|
2012-06-21 19:54:20 +02:00
|
|
|
msg:addU32(g_things.getDatSignature())
|
|
|
|
msg:addU32(g_sprites.getSprSignature())
|
2012-07-18 01:49:21 +02:00
|
|
|
msg:addU32(PIC_SIGNATURE)
|
2012-06-05 23:27:37 +02:00
|
|
|
|
2013-01-03 23:42:02 +01:00
|
|
|
if g_game.getProtocolVersion() >= 971 then
|
|
|
|
msg:addU8(0) -- clientType
|
|
|
|
end
|
|
|
|
|
2013-01-28 23:52:03 +01:00
|
|
|
local offset = msg:getMessageSize()
|
|
|
|
|
|
|
|
-- first RSA byte must be 0
|
|
|
|
msg:addU8(0)
|
2012-06-05 23:27:37 +02:00
|
|
|
|
|
|
|
-- xtea key
|
2012-07-26 08:10:28 +02:00
|
|
|
self:generateXteaKey()
|
|
|
|
local xteaKey = self:getXteaKey()
|
2012-06-05 23:27:37 +02:00
|
|
|
msg:addU32(xteaKey[1])
|
|
|
|
msg:addU32(xteaKey[2])
|
|
|
|
msg:addU32(xteaKey[3])
|
|
|
|
msg:addU32(xteaKey[4])
|
|
|
|
|
|
|
|
if g_game.getFeature(GameAccountNames) then
|
2012-07-26 08:10:28 +02:00
|
|
|
msg:addString(self.accountName)
|
2012-06-05 23:27:37 +02:00
|
|
|
else
|
2012-07-26 08:10:28 +02:00
|
|
|
msg:addU32(tonumber(self.accountName))
|
2012-06-05 23:27:37 +02:00
|
|
|
end
|
|
|
|
|
2013-01-28 23:52:03 +01:00
|
|
|
msg:addString(self.accountPassword)
|
|
|
|
|
|
|
|
if self.getLoginExtendedData then
|
|
|
|
local data = self:getLoginExtendedData()
|
|
|
|
msg:addString(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
local paddingBytes = g_crypt.rsaGetSize() - (msg:getMessageSize() - offset)
|
|
|
|
assert(paddingBytes >= 0)
|
2012-06-05 23:27:37 +02:00
|
|
|
msg:addPaddingBytes(paddingBytes, 0)
|
2013-01-28 23:52:03 +01:00
|
|
|
msg:encryptRsa()
|
|
|
|
|
|
|
|
if g_game.getFeature(GameProtocolChecksum) then
|
|
|
|
self:enableChecksum()
|
|
|
|
end
|
2012-06-05 23:27:37 +02:00
|
|
|
|
2012-07-26 08:10:28 +02:00
|
|
|
self:send(msg)
|
|
|
|
self:enableXteaEncryption()
|
|
|
|
self:recv()
|
2012-06-05 23:27:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function ProtocolLogin:onConnect()
|
2013-02-22 22:49:36 +01:00
|
|
|
self.gotConnection = true
|
2013-02-28 03:45:03 +01:00
|
|
|
self:connectCallback()
|
|
|
|
self.connectCallback = nil
|
2012-06-05 23:27:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function ProtocolLogin:onRecv(msg)
|
|
|
|
while not msg:eof() do
|
|
|
|
local opcode = msg:getU8()
|
|
|
|
if opcode == LoginServerError then
|
|
|
|
self:parseError(msg)
|
|
|
|
elseif opcode == LoginServerMotd then
|
|
|
|
self:parseMotd(msg)
|
|
|
|
elseif opcode == LoginServerUpdateNeeded then
|
2013-02-21 21:31:47 +01:00
|
|
|
signalcall(self.onLoginError, self, tr("Client needs update."))
|
2012-06-05 23:27:37 +02:00
|
|
|
elseif opcode == LoginServerCharacterList then
|
|
|
|
self:parseCharacterList(msg)
|
2012-08-30 07:59:10 +02:00
|
|
|
elseif opcode == LoginServerExtendedCharacterList then
|
|
|
|
self:parseExtendedCharacterList(msg)
|
2013-01-18 23:39:11 +01:00
|
|
|
elseif opcode == LoginServerUpdate then
|
|
|
|
local signature = msg:getString()
|
|
|
|
signalcall(self.onUpdateNeeded, self, signature)
|
2012-06-05 23:27:37 +02:00
|
|
|
else
|
|
|
|
self:parseOpcode(opcode, msg)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
self:disconnect()
|
|
|
|
end
|
|
|
|
|
|
|
|
function ProtocolLogin:parseError(msg)
|
|
|
|
local errorMessage = msg:getString()
|
2013-02-21 21:31:47 +01:00
|
|
|
signalcall(self.onLoginError, self, errorMessage)
|
2012-06-05 23:27:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function ProtocolLogin:parseMotd(msg)
|
|
|
|
local motd = msg:getString()
|
|
|
|
signalcall(self.onMotd, self, motd)
|
|
|
|
end
|
|
|
|
|
|
|
|
function ProtocolLogin:parseCharacterList(msg)
|
|
|
|
local characters = {}
|
|
|
|
local charactersCount = msg:getU8()
|
|
|
|
for i=1,charactersCount do
|
|
|
|
local character = {}
|
2012-08-07 22:55:05 +02:00
|
|
|
character.name = msg:getString()
|
|
|
|
character.worldName = msg:getString()
|
|
|
|
character.worldIp = iptostring(msg:getU32())
|
|
|
|
character.worldPort = msg:getU16()
|
2012-12-28 12:05:45 +01:00
|
|
|
|
|
|
|
if g_game.getProtocolVersion() >= 971 then
|
2013-02-19 02:18:10 +01:00
|
|
|
character.unknown = msg:getU8()
|
2012-12-28 12:05:45 +01:00
|
|
|
end
|
2013-02-19 02:18:10 +01:00
|
|
|
|
|
|
|
characters[i] = character
|
2012-06-05 23:27:37 +02:00
|
|
|
end
|
2012-08-30 07:59:10 +02:00
|
|
|
|
|
|
|
local account = {}
|
|
|
|
account.premDays = msg:getU16()
|
|
|
|
signalcall(self.onCharacterList, self, characters, account)
|
|
|
|
end
|
|
|
|
|
|
|
|
function ProtocolLogin:parseExtendedCharacterList(msg)
|
|
|
|
local characters = msg:getTable()
|
|
|
|
local account = msg:getTable()
|
2012-08-31 06:56:10 +02:00
|
|
|
local otui = msg:getString()
|
|
|
|
signalcall(self.onCharacterList, self, characters, account, otui)
|
2012-06-05 23:27:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function ProtocolLogin:parseOpcode(opcode, msg)
|
|
|
|
signalcall(self.onOpcode, self, opcode, msg)
|
|
|
|
end
|
2013-02-21 21:31:47 +01:00
|
|
|
|
|
|
|
function ProtocolLogin:onError(msg, code)
|
2013-02-27 20:24:32 +01:00
|
|
|
local text = translateNetworkError(code, self:isConnecting(), msg)
|
2013-02-22 22:49:36 +01:00
|
|
|
signalcall(self.onLoginError, self, text)
|
2013-02-21 21:31:47 +01:00
|
|
|
end
|