diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-02 01:22:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-06 01:18:55 +0300 |
commit | 41b5a7c2e41e161aa34579a1271d7a4842f02faf (patch) | |
tree | 992beb601ff3648cc19ac5bfa0988e4c8340bae3 /src/net/eathena/chathandler.cpp | |
parent | 0fb04d3b0c2390c8ad34c833a44416caf0437fe0 (diff) | |
download | mv-41b5a7c2e41e161aa34579a1271d7a4842f02faf.tar.gz mv-41b5a7c2e41e161aa34579a1271d7a4842f02faf.tar.bz2 mv-41b5a7c2e41e161aa34579a1271d7a4842f02faf.tar.xz mv-41b5a7c2e41e161aa34579a1271d7a4842f02faf.zip |
Move processChat from ea namespace into tmwa and eathena.
Diffstat (limited to 'src/net/eathena/chathandler.cpp')
-rw-r--r-- | src/net/eathena/chathandler.cpp | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp index 8a689bd47..63a936164 100644 --- a/src/net/eathena/chathandler.cpp +++ b/src/net/eathena/chathandler.cpp @@ -24,9 +24,17 @@ #include "being/localplayer.h" +#include "gui/chatconsts.h" + +#include "gui/widgets/tabs/chattab.h" + +#include "gui/windows/chatwindow.h" + #include "net/eathena/messageout.h" #include "net/eathena/protocol.h" +#include "utils/stringutils.h" + #include <string> #include "debug.h" @@ -250,4 +258,48 @@ void ChatHandler::unIgnoreAll() const outMsg.writeInt8(1); } +void ChatHandler::processChat(Net::MessageIn &msg) +{ + BLOCK_START("ChatHandler::processChat") + const bool normalChat = msg.getId() == SMSG_PLAYER_CHAT; + int chatMsgLength = msg.readInt16() - 4; + if (chatMsgLength <= 0) + { + BLOCK_END("ChatHandler::processChat") + return; + } + + std::string chatMsg = msg.readRawString(chatMsgLength); + const size_t pos = chatMsg.find(" : ", 0); + + if (normalChat) + { + bool allow(true); + if (chatWindow) + { + allow = chatWindow->resortChatLog(chatMsg, + ChatMsgType::BY_PLAYER, + GENERAL_CHANNEL, + false, true); + } + + if (pos != std::string::npos) + chatMsg.erase(0, pos + 3); + + trim(chatMsg); + + if (localPlayer) + { + if (chatWindow || mShowMotd) + localPlayer->setSpeech(chatMsg, GENERAL_CHANNEL); + } + } + else if (localChatTab) + { + if (chatWindow) + chatWindow->addGlobalMessage(chatMsg); + } + BLOCK_END("ChatHandler::processChat") +} + } // namespace EAthena |