From c9e8b0ed6e3e193582eccd9b9bab6aeb3a0e37c3 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 3 Oct 2014 16:58:22 +0300 Subject: eathena: add packet SMSG_MAP_TYPE 0x01d6. --- src/net/eathena/beinghandler.cpp | 13 ++++++++++++- src/net/eathena/beinghandler.h | 2 ++ src/net/eathena/protocol.h | 1 + 3 files changed, 15 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp index 7db7f0e80..3e048d1a4 100644 --- a/src/net/eathena/beinghandler.cpp +++ b/src/net/eathena/beinghandler.cpp @@ -104,6 +104,7 @@ BeingHandler::BeingHandler(const bool enableSync) : SMSG_PVP_MAP_MODE, SMSG_PVP_SET, SMSG_MAP_TYPE_PROPERTY2, + SMSG_MAP_TYPE, SMSG_MONSTER_HP, SMSG_PLAYER_HP, SMSG_SKILL_AUTO_CAST, @@ -282,6 +283,10 @@ void BeingHandler::handleMessage(Net::MessageIn &msg) processMapTypeProperty(msg); break; + case SMSG_MAP_TYPE: + processMapType(msg); + break; + case SMSG_MONSTER_HP: case SMSG_PLAYER_HP: processMonsterHp(msg); @@ -1447,10 +1452,16 @@ void BeingHandler::processBeingSpawn(Net::MessageIn &msg) void BeingHandler::processMapTypeProperty(Net::MessageIn &msg) const { msg.readInt16("type"); - // need get pvp and other flags from here + // +++ need get pvp and other flags from here msg.readInt32("flags"); } +void BeingHandler::processMapType(Net::MessageIn &msg) const +{ + // battle ground map or not + msg.readInt16("type"); +} + void BeingHandler::processSkillCasting(Net::MessageIn &msg) const { msg.readInt32("src id"); diff --git a/src/net/eathena/beinghandler.h b/src/net/eathena/beinghandler.h index 5dcd0121c..065614ecf 100644 --- a/src/net/eathena/beinghandler.h +++ b/src/net/eathena/beinghandler.h @@ -71,6 +71,8 @@ class BeingHandler final : public MessageHandler, public Ea::BeingHandler void processMapTypeProperty(Net::MessageIn &msg) const; + void processMapType(Net::MessageIn &msg) const; + void processSkillCasting(Net::MessageIn &msg) const; void processBeingStatusChange(Net::MessageIn &msg) const; diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h index d9c477033..a6b2be72d 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -254,6 +254,7 @@ #define SMSG_PVP_MAP_MODE 0x0199 #define SMSG_PVP_SET 0x019a #define SMSG_MAP_TYPE_PROPERTY2 0x099b +#define SMSG_MAP_TYPE 0x01d6 #define SMSG_IGNORE_ALL_RESPONSE 0x00d2 #define SMSG_ONLINE_LIST 0x0211 #define SMSG_NPC_COMMAND 0x0212 -- cgit v1.2.3-70-g09d2