summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-10 13:02:49 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-10 13:02:49 +0300
commit173c48498dc55e9b86bee009427fb5ae58cd9821 (patch)
treef9bbddb6e0f5cdf26cbd64a1e1aa76e482b4ce0f
parent1a2147b4970a7aab6e610e0cd83ec29a47579e80 (diff)
downloadplus-173c48498dc55e9b86bee009427fb5ae58cd9821.tar.gz
plus-173c48498dc55e9b86bee009427fb5ae58cd9821.tar.bz2
plus-173c48498dc55e9b86bee009427fb5ae58cd9821.tar.xz
plus-173c48498dc55e9b86bee009427fb5ae58cd9821.zip
Split processBeingChangeLook into tow functions with net code and without.
-rw-r--r--src/net/eathena/beinghandler.cpp15
-rw-r--r--src/net/eathena/beinghandler.h5
-rw-r--r--src/net/tmwa/beinghandler.cpp24
-rw-r--r--src/net/tmwa/beinghandler.h5
4 files changed, 33 insertions, 16 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp
index 82a40ee78..91a467bbf 100644
--- a/src/net/eathena/beinghandler.cpp
+++ b/src/net/eathena/beinghandler.cpp
@@ -289,7 +289,6 @@ void BeingHandler::processBeingChangeLook(Net::MessageIn &msg) const
const uint8_t type = msg.readUInt8("type");
int id = 0;
unsigned int id2 = 0U;
- const std::string color;
const bool look2 = msg.getId() == SMSG_BEING_CHANGE_LOOKS2;
if (!look2)
@@ -305,15 +304,21 @@ void BeingHandler::processBeingChangeLook(Net::MessageIn &msg) const
id2 = 1;
}
- if (!dstBeing)
+ if (!localPlayer || !dstBeing)
return;
+ processBeingChangeLookContinue(dstBeing, type, id, id2);
+}
+
+void BeingHandler::processBeingChangeLookContinue(Being *const dstBeing,
+ const uint8_t type,
+ const int id,
+ const int id2) const
+{
if (dstBeing->getType() == ActorType::PLAYER)
dstBeing->setOtherTime();
- if (!localPlayer)
- return;
-
+ const std::string color;
switch (type)
{
case 0: // change race
diff --git a/src/net/eathena/beinghandler.h b/src/net/eathena/beinghandler.h
index 9d70bd860..0d4c71a77 100644
--- a/src/net/eathena/beinghandler.h
+++ b/src/net/eathena/beinghandler.h
@@ -75,6 +75,11 @@ class BeingHandler final : public MessageHandler, public Ea::BeingHandler
void processRanksList(Net::MessageIn &msg) const;
void processBeingChangeDirection(Net::MessageIn &msg) const;
+
+ void processBeingChangeLookContinue(Being *const dstBeing,
+ const uint8_t type,
+ const int id,
+ const int id2) const;
};
} // namespace EAthena
diff --git a/src/net/tmwa/beinghandler.cpp b/src/net/tmwa/beinghandler.cpp
index 00651e066..5338cd4c3 100644
--- a/src/net/tmwa/beinghandler.cpp
+++ b/src/net/tmwa/beinghandler.cpp
@@ -268,16 +268,10 @@ void BeingHandler::processBeingChangeLook(Net::MessageIn &msg) const
Being *const dstBeing = actorManager->findBeing(
msg.readInt32("being id"));
- if (!dstBeing)
- {
- BLOCK_END("BeingHandler::processBeingChangeLook")
- return;
- }
const uint8_t type = msg.readUInt8("type");
int16_t id = 0;
int id2 = 0;
- const std::string color;
const bool look2 = msg.getId() == SMSG_BEING_CHANGE_LOOKS2;
if (!look2)
@@ -299,15 +293,24 @@ void BeingHandler::processBeingChangeLook(Net::MessageIn &msg) const
}
}
- if (dstBeing->getType() == ActorType::PLAYER)
- dstBeing->setOtherTime();
-
- if (!localPlayer)
+ if (!localPlayer || !dstBeing)
{
BLOCK_END("BeingHandler::processBeingChangeLook")
return;
}
+ processBeingChangeLookContinue(dstBeing, type, id, id2);
+ BLOCK_END("BeingHandler::processBeingChangeLook")
+}
+
+void BeingHandler::processBeingChangeLookContinue(Being *const dstBeing,
+ const uint8_t type,
+ const int id,
+ const int id2) const
+{
+ if (dstBeing->getType() == ActorType::PLAYER)
+ dstBeing->setOtherTime();
+ const std::string color;
switch (type)
{
case 0: // change race
@@ -402,7 +405,6 @@ void BeingHandler::processBeingChangeLook(Net::MessageIn &msg) const
logger->log("name: " + toString(dstBeing->getName()));
break;
}
- BLOCK_END("BeingHandler::processBeingChangeLook")
}
void BeingHandler::processNameResponse2(Net::MessageIn &msg)
diff --git a/src/net/tmwa/beinghandler.h b/src/net/tmwa/beinghandler.h
index f16af835d..4f2d75f0c 100644
--- a/src/net/tmwa/beinghandler.h
+++ b/src/net/tmwa/beinghandler.h
@@ -67,6 +67,11 @@ class BeingHandler final : public MessageHandler, public Ea::BeingHandler
void processBeingMove2(Net::MessageIn &msg) const;
void processBeingChangeDirection(Net::MessageIn &msg) const;
+
+ void processBeingChangeLookContinue(Being *const dstBeing,
+ const uint8_t type,
+ const int id,
+ const int id2) const;
};
} // namespace TmwAthena