From 194e902a7231c814a23af9e41408301f3ce413c0 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 29 Aug 2014 23:18:05 +0300 Subject: Remove additional parameters from processChat function. --- src/net/ea/chathandler.cpp | 6 ++++-- src/net/ea/chathandler.h | 3 +-- src/net/ea/eaprotocol.h | 2 ++ src/net/eathena/chathandler.cpp | 2 +- src/net/tmwa/chathandler.cpp | 4 ++-- 5 files changed, 10 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/net/ea/chathandler.cpp b/src/net/ea/chathandler.cpp index b92948335..f24811966 100644 --- a/src/net/ea/chathandler.cpp +++ b/src/net/ea/chathandler.cpp @@ -345,10 +345,12 @@ void ChatHandler::processBeingChat(Net::MessageIn &msg) const BLOCK_END("ChatHandler::processBeingChat") } -void ChatHandler::processChat(Net::MessageIn &msg, const bool normalChat, - const bool channels) +void ChatHandler::processChat(Net::MessageIn &msg) { BLOCK_START("ChatHandler::processChat") + const bool channels = msg.getId() == SMSG_PLAYER_CHAT2; + const bool normalChat = msg.getId() == SMSG_PLAYER_CHAT + || msg.getId() == SMSG_PLAYER_CHAT2; int chatMsgLength = msg.readInt16() - 4; std::string channel; if (channels) diff --git a/src/net/ea/chathandler.h b/src/net/ea/chathandler.h index d7865a83b..1db8d6001 100644 --- a/src/net/ea/chathandler.h +++ b/src/net/ea/chathandler.h @@ -54,8 +54,7 @@ class ChatHandler notfinal : public Net::ChatHandler virtual void processBeingChat(Net::MessageIn &msg) const; - virtual void processChat(Net::MessageIn &msg, const bool normalChat, - const bool channels); + virtual void processChat(Net::MessageIn &msg); virtual void processMVP(Net::MessageIn &msg) const; diff --git a/src/net/ea/eaprotocol.h b/src/net/ea/eaprotocol.h index d315083de..84fb23347 100644 --- a/src/net/ea/eaprotocol.h +++ b/src/net/ea/eaprotocol.h @@ -68,6 +68,8 @@ enum static const int INVENTORY_OFFSET = 2; static const int STORAGE_OFFSET = 1; +#define SMSG_PLAYER_CHAT 0x008e /**< Player talks */ +#define SMSG_PLAYER_CHAT2 0x0224 /**< Player talks */ #define SMSG_BEING_CHAT2 0x0223 /**< A being talks in channels */ #define SMSG_PLAYER_INVENTORY 0x01ee diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp index cc1a5907e..8a689bd47 100644 --- a/src/net/eathena/chathandler.cpp +++ b/src/net/eathena/chathandler.cpp @@ -75,7 +75,7 @@ void ChatHandler::handleMessage(Net::MessageIn &msg) case SMSG_PLAYER_CHAT: case SMSG_GM_CHAT: - processChat(msg, msg.getId() == SMSG_PLAYER_CHAT, false); + processChat(msg); break; case SMSG_MVP: diff --git a/src/net/tmwa/chathandler.cpp b/src/net/tmwa/chathandler.cpp index 65a136570..ef89d966d 100644 --- a/src/net/tmwa/chathandler.cpp +++ b/src/net/tmwa/chathandler.cpp @@ -85,11 +85,11 @@ void ChatHandler::handleMessage(Net::MessageIn &msg) case SMSG_PLAYER_CHAT: case SMSG_GM_CHAT: - processChat(msg, msg.getId() == SMSG_PLAYER_CHAT, false); + processChat(msg); break; case SMSG_PLAYER_CHAT2: - processChat(msg, true, true); + processChat(msg); break; case SMSG_MVP: -- cgit v1.2.3-70-g09d2