diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2013-10-27 22:22:37 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2013-11-28 22:53:39 +0100 |
commit | 99304291be85d66603f30a6f5b57d37c88207b37 (patch) | |
tree | ccb9e4e0f5e91f2256189bc4f1ffcb3ed99c188b | |
parent | 524c27ecf890973c351838f5a411ad93db47719a (diff) | |
download | manaserv-99304291be85d66603f30a6f5b57d37c88207b37.tar.gz manaserv-99304291be85d66603f30a6f5b57d37c88207b37.tar.bz2 manaserv-99304291be85d66603f30a6f5b57d37c88207b37.tar.xz manaserv-99304291be85d66603f30a6f5b57d37c88207b37.zip |
Include the list of characters in the login response
This makes it easier on the client to decide whether to immediately open
the Create Character page or to go to the Choose Character page.
Still supports client version 9 as well.
-rw-r--r-- | src/account-server/accountclient.cpp | 3 | ||||
-rw-r--r-- | src/account-server/accountclient.h | 1 | ||||
-rw-r--r-- | src/account-server/accounthandler.cpp | 22 | ||||
-rw-r--r-- | src/common/manaserv_protocol.h | 5 |
4 files changed, 17 insertions, 14 deletions
diff --git a/src/account-server/accountclient.cpp b/src/account-server/accountclient.cpp index dd55be7a..df1b034c 100644 --- a/src/account-server/accountclient.cpp +++ b/src/account-server/accountclient.cpp @@ -22,6 +22,7 @@ AccountClient::AccountClient(ENetPeer *peer): NetComputer(peer), - status(CLIENT_LOGIN) + status(CLIENT_LOGIN), + version(0) { } diff --git a/src/account-server/accountclient.h b/src/account-server/accountclient.h index 7812f1e9..afb2ef3e 100644 --- a/src/account-server/accountclient.h +++ b/src/account-server/accountclient.h @@ -50,6 +50,7 @@ class AccountClient : public NetComputer Account *getAccount() const; AccountClientStatus status; + int version; private: std::unique_ptr<Account> mAccount; diff --git a/src/account-server/accounthandler.cpp b/src/account-server/accounthandler.cpp index b01a16bc..8f871455 100644 --- a/src/account-server/accounthandler.cpp +++ b/src/account-server/accounthandler.cpp @@ -343,9 +343,9 @@ void AccountHandler::handleLoginMessage(AccountClient &client, MessageIn &msg) return; } - const int clientVersion = msg.readInt32(); + client.version = msg.readInt32(); - if (clientVersion < PROTOCOL_VERSION) + if (client.version < MIN_PROTOCOL_VERSION) { reply.writeInt8(LOGIN_INVALID_VERSION); client.send(reply); @@ -425,13 +425,17 @@ void AccountHandler::handleLoginMessage(AccountClient &client, MessageIn &msg) reply.writeInt8(ERRMSG_OK); addServerInfo(&reply); - client.send(reply); // Acknowledge login - // Return information about available characters Characters &chars = acc->getCharacters(); - // Send characters list - sendFullCharacterData(&client, chars); + if (client.version < 10) { + client.send(reply); + sendFullCharacterData(&client, chars); + } else { + for (auto &charIt : chars) + sendCharacterData(reply, charIt.second); + client.send(reply); + } } void AccountHandler::handleLogoutMessage(AccountClient &client) @@ -498,7 +502,7 @@ void AccountHandler::handleRegisterMessage(AccountClient &client, { reply.writeInt8(ERRMSG_FAILURE); } - else if (clientVersion < PROTOCOL_VERSION) + else if (clientVersion < MIN_PROTOCOL_VERSION) { reply.writeInt8(REGISTER_INVALID_VERSION); } @@ -963,10 +967,6 @@ void AccountHandler::handleCharacterDeleteMessage(AccountClient &client, void AccountHandler::addServerInfo(MessageOut *msg) { msg->writeString(mUpdateHost); - /* - * This is for developing/testing an experimental new resource manager that - * downloads only the files it needs on demand. - */ msg->writeString(mDataUrl); msg->writeInt8(mMaxCharacters); } diff --git a/src/common/manaserv_protocol.h b/src/common/manaserv_protocol.h index cc46301c..ce41c723 100644 --- a/src/common/manaserv_protocol.h +++ b/src/common/manaserv_protocol.h @@ -29,7 +29,8 @@ namespace ManaServ { enum { - PROTOCOL_VERSION = 9, + PROTOCOL_VERSION = 10, + MIN_PROTOCOL_VERSION = 9, SUPPORTED_DB_VERSION = 26 }; @@ -73,7 +74,7 @@ enum { PAMSG_REQUEST_REGISTER_INFO = 0x0005, // APMSG_REGISTER_INFO_RESPONSE = 0x0006, // B byte registration Allowed, byte minNameLength, byte maxNameLength, string captchaURL, string captchaInstructions PAMSG_LOGIN = 0x0010, // D version, S username, S password - APMSG_LOGIN_RESPONSE = 0x0012, // B error, S updatehost, S Client data URL, B Character slots + APMSG_LOGIN_RESPONSE = 0x0012, // B error, S updatehost, S Client data URL, B Character slots, {content of APMSG_CHAR_CREATE_RESPONSE (without error code)}* PAMSG_LOGOUT = 0x0013, // - APMSG_LOGOUT_RESPONSE = 0x0014, // B error PAMSG_LOGIN_RNDTRGR = 0x0015, // S username |