summaryrefslogtreecommitdiff
path: root/src/net/tmwa/loginrecv.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-06-05 18:04:35 +0300
committerAndrei Karas <akaras@inbox.ru>2017-06-05 18:12:39 +0300
commit2977a6e00056647c1637db79ae51a151086203cf (patch)
treeb00906b3266b9ec61bb84082ee49a41357d8be16 /src/net/tmwa/loginrecv.cpp
parent4c41a3eaa82e2e11f2ee4da3513f25e1095c3a12 (diff)
downloadManaVerse-2977a6e00056647c1637db79ae51a151086203cf.tar.gz
ManaVerse-2977a6e00056647c1637db79ae51a151086203cf.tar.bz2
ManaVerse-2977a6e00056647c1637db79ae51a151086203cf.tar.xz
ManaVerse-2977a6e00056647c1637db79ae51a151086203cf.zip
Add packet SMSG_LOGIN_DATA 0x0ac4.
Diffstat (limited to 'src/net/tmwa/loginrecv.cpp')
-rw-r--r--src/net/tmwa/loginrecv.cpp47
1 files changed, 46 insertions, 1 deletions
diff --git a/src/net/tmwa/loginrecv.cpp b/src/net/tmwa/loginrecv.cpp
index 401b18f97..050bd68c1 100644
--- a/src/net/tmwa/loginrecv.cpp
+++ b/src/net/tmwa/loginrecv.cpp
@@ -23,12 +23,17 @@
#include "net/tmwa/loginrecv.h"
#include "client.h"
+#include "configuration.h"
#include "logger.h"
-#include "net/ea/loginrecv.h"
+#include "being/being.h"
+#include "net/logindata.h"
+#include "net/loginhandler.h"
#include "net/messagein.h"
+#include "net/ea/loginrecv.h"
+
#include "net/tmwa/updateprotocol.h"
#include "utils/gettext.h"
@@ -124,4 +129,44 @@ void LoginRecv::processCharPasswordResponse(Net::MessageIn &msg)
}
}
+void LoginRecv::processLoginData(Net::MessageIn &msg)
+{
+ msg.readInt16("len");
+
+ loginHandler->clearWorlds();
+
+ const int worldCount = (msg.getLength() - 47) / 32;
+
+ Ea::LoginRecv::mToken.session_ID1 = msg.readInt32("session id1");
+ Ea::LoginRecv::mToken.account_ID = msg.readBeingId("accound id");
+ Ea::LoginRecv::mToken.session_ID2 = msg.readInt32("session id2");
+ msg.readInt32("old ip");
+ loginData.lastLogin = msg.readString(24, "last login");
+ msg.readInt16("unused");
+
+ // reserve bits for future usage
+ Ea::LoginRecv::mToken.sex = Being::intToGender(CAST_U8(
+ msg.readUInt8("gender") & 3U));
+
+ for (int i = 0; i < worldCount; i++)
+ {
+ WorldInfo *const world = new WorldInfo;
+
+ world->address = msg.readInt32("ip address");
+ world->port = msg.readInt16("port");
+ world->name = msg.readString(20, "name");
+ world->online_users = msg.readInt16("online number");
+ config.setValue("updatehost", Ea::LoginRecv::mUpdateHost);
+ world->updateHost = Ea::LoginRecv::mUpdateHost;
+ msg.readInt16("maintenance");
+ msg.readInt16("new");
+
+ logger->log("Network: Server: %s (%s:%d)", world->name.c_str(),
+ ipToString(world->address), world->port);
+
+ Ea::LoginRecv::mWorlds.push_back(world);
+ }
+ client->setState(State::WORLD_SELECT);
+}
+
} // namespace TmwAthena