summaryrefslogtreecommitdiff
path: root/src/net/eathena/beinghandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-20 18:53:08 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-20 18:53:08 +0300
commit90a63c3d866812143faab7d2c551cfff8ba61aa3 (patch)
tree9a18eecbf0c489761266f0bda54914ed8735ffa0 /src/net/eathena/beinghandler.cpp
parent66f1a82e7910404b812db255a99cb559d9ab3dcf (diff)
downloadplus-90a63c3d866812143faab7d2c551cfff8ba61aa3.tar.gz
plus-90a63c3d866812143faab7d2c551cfff8ba61aa3.tar.bz2
plus-90a63c3d866812143faab7d2c551cfff8ba61aa3.tar.xz
plus-90a63c3d866812143faab7d2c551cfff8ba61aa3.zip
Move processNameResponse2 from ea namespace into eathena.
Diffstat (limited to 'src/net/eathena/beinghandler.cpp')
-rw-r--r--src/net/eathena/beinghandler.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp
index 4ab060b9a..10161d922 100644
--- a/src/net/eathena/beinghandler.cpp
+++ b/src/net/eathena/beinghandler.cpp
@@ -26,6 +26,7 @@
#include "effectmanager.h"
#include "game.h"
#include "notifymanager.h"
+#include "party.h"
#include "being/localplayer.h"
#include "being/mercenaryinfo.h"
@@ -1965,4 +1966,50 @@ void BeingHandler::processPvpSet(Net::MessageIn &msg)
BLOCK_END("BeingHandler::processPvpSet")
}
+void BeingHandler::processNameResponse2(Net::MessageIn &msg)
+{
+ BLOCK_START("BeingHandler::processNameResponse2")
+ if (!actorManager || !localPlayer)
+ {
+ BLOCK_END("BeingHandler::processNameResponse2")
+ return;
+ }
+
+ const int len = msg.readInt16("len");
+ const BeingId beingId = msg.readBeingId("account ic");
+ const std::string str = msg.readString(len - 8, "name");
+ Being *const dstBeing = actorManager->findBeing(beingId);
+ if (dstBeing)
+ {
+ if (beingId == localPlayer->getId())
+ {
+ localPlayer->pingResponse();
+ }
+ else
+ {
+ dstBeing->setName(str);
+ dstBeing->updateGuild();
+ dstBeing->addToCache();
+
+ if (dstBeing->getType() == ActorType::Player)
+ dstBeing->updateColors();
+
+ if (localPlayer)
+ {
+ const Party *const party = localPlayer->getParty();
+ if (party && party->isMember(dstBeing->getId()))
+ {
+ PartyMember *const member = party->getMember(
+ dstBeing->getId());
+
+ if (member)
+ member->setName(dstBeing->getName());
+ }
+ localPlayer->checkNewName(dstBeing);
+ }
+ }
+ }
+ BLOCK_END("BeingHandler::processNameResponse2")
+}
+
} // namespace EAthena