diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-13 20:10:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-13 20:10:15 +0300 |
commit | de16b56073dd2c4926327bd990b008a39018f541 (patch) | |
tree | 7c880affc3a9e91eacd410806b4fcbccce1193c2 /src/net/tmwa/chathandler.cpp | |
parent | 3aebacaab2e110820994b7e0849bf65fa24c7c8c (diff) | |
download | plus-de16b56073dd2c4926327bd990b008a39018f541.tar.gz plus-de16b56073dd2c4926327bd990b008a39018f541.tar.bz2 plus-de16b56073dd2c4926327bd990b008a39018f541.tar.xz plus-de16b56073dd2c4926327bd990b008a39018f541.zip |
Split processChat for each packet type.
Diffstat (limited to 'src/net/tmwa/chathandler.cpp')
-rw-r--r-- | src/net/tmwa/chathandler.cpp | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/src/net/tmwa/chathandler.cpp b/src/net/tmwa/chathandler.cpp index 962d21363..cc285d081 100644 --- a/src/net/tmwa/chathandler.cpp +++ b/src/net/tmwa/chathandler.cpp @@ -92,10 +92,13 @@ void ChatHandler::handleMessage(Net::MessageIn &msg) break; case SMSG_PLAYER_CHAT: - case SMSG_PLAYER_CHAT2: processChat(msg); break; + case SMSG_PLAYER_CHAT2: + processChat2(msg); + break; + case SMSG_GM_CHAT: processGmChat(msg); break; @@ -274,16 +277,24 @@ void ChatHandler::createChatRoom(const std::string &title A_UNUSED, void ChatHandler::processChat(Net::MessageIn &msg) { BLOCK_START("ChatHandler::processChat") - const bool channels = msg.getId() == SMSG_PLAYER_CHAT2; int chatMsgLength = msg.readInt16("len") - 4; - std::string channel; - if (channels) + if (chatMsgLength <= 0) { - chatMsgLength -= 3; - channel = msg.readUInt8("channel byte 0"); - channel += msg.readUInt8("channel byte 1"); - channel += msg.readUInt8("channel byte 2"); + BLOCK_END("ChatHandler::processChat") + return; } + + processChatContinue(msg.readRawString(chatMsgLength, "message"), ""); +} + +void ChatHandler::processChat2(Net::MessageIn &msg) +{ + BLOCK_START("ChatHandler::processChat") + int chatMsgLength = msg.readInt16("len") - 4 - 3; + std::string channel; + channel = msg.readUInt8("channel byte 0"); + channel += msg.readUInt8("channel byte 1"); + channel += msg.readUInt8("channel byte 2"); if (chatMsgLength <= 0) { BLOCK_END("ChatHandler::processChat") |