From c6dbf10ed70e6f94d28ad555545b7522ea7348b8 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 7 Nov 2014 00:36:23 +0300 Subject: eathena: add support for sending client version to map server. --- src/net/eathena/gamehandler.cpp | 4 ++++ src/net/eathena/loginhandler.h | 2 +- src/net/loginhandler.h | 2 ++ src/net/tmwa/loginhandler.cpp | 4 ++++ src/net/tmwa/loginhandler.h | 2 ++ 5 files changed, 13 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/net/eathena/gamehandler.cpp b/src/net/eathena/gamehandler.cpp index 8baae162f..d19cec06b 100644 --- a/src/net/eathena/gamehandler.cpp +++ b/src/net/eathena/gamehandler.cpp @@ -26,6 +26,8 @@ #include "being/localplayer.h" +#include "net/serverfeatures.h" + #include "net/eathena/loginhandler.h" #include "net/eathena/messageout.h" #include "net/eathena/network.h" @@ -129,6 +131,8 @@ void GameHandler::connect() outMsg.writeInt32(token.session_ID1, "session key1"); outMsg.writeInt32(0, "tick"); outMsg.writeInt8(Being::genderToInt(token.sex), "sex"); + if (serverFeatures->haveMapServerVersion()) + loginHandler->sendVersion(); /* if (localPlayer) { diff --git a/src/net/eathena/loginhandler.h b/src/net/eathena/loginhandler.h index 8e30e908a..4f8b3110c 100644 --- a/src/net/eathena/loginhandler.h +++ b/src/net/eathena/loginhandler.h @@ -60,7 +60,7 @@ class LoginHandler final : public MessageHandler, public Ea::LoginHandler const std::string &restrict newPassword) const override final; - void sendVersion() const; + void sendVersion() const override final; ServerInfo *getCharServer() const override final A_WARN_UNUSED; diff --git a/src/net/loginhandler.h b/src/net/loginhandler.h index 89c55a334..4f4cebc40 100644 --- a/src/net/loginhandler.h +++ b/src/net/loginhandler.h @@ -95,6 +95,8 @@ class LoginHandler notfinal virtual void loginOrRegister(LoginData *const data) const = 0; + virtual void sendVersion() const = 0; + virtual ~LoginHandler() { } diff --git a/src/net/tmwa/loginhandler.cpp b/src/net/tmwa/loginhandler.cpp index c4fe39e64..42ea0101b 100644 --- a/src/net/tmwa/loginhandler.cpp +++ b/src/net/tmwa/loginhandler.cpp @@ -273,4 +273,8 @@ int LoginHandler::supportedOptionalActions() const : Net::RegistrationOptions::SetGenderOnRegister; } +void LoginHandler::sendVersion() const +{ +} + } // namespace TmwAthena diff --git a/src/net/tmwa/loginhandler.h b/src/net/tmwa/loginhandler.h index e147bdc46..03f2c22b4 100644 --- a/src/net/tmwa/loginhandler.h +++ b/src/net/tmwa/loginhandler.h @@ -61,6 +61,8 @@ class LoginHandler final : public MessageHandler, public Ea::LoginHandler ServerInfo *getCharServer() const override final A_WARN_UNUSED; + void sendVersion() const override final; + static void processServerVersion(Net::MessageIn &msg); static void requestUpdateHosts(); -- cgit v1.2.3-60-g2f50