summaryrefslogtreecommitdiff
path: root/src/net/ea/playerrecv.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-14 17:44:24 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-14 17:44:24 +0300
commit1a7dbe5947e107a8041056d36203c3d748302e82 (patch)
treebca6f3d3bc571ba0ed445f101a120c87ea0cb504 /src/net/ea/playerrecv.cpp
parenta31b61144f7420aa7e448b72d7b45a6e6c246255 (diff)
downloadplus-1a7dbe5947e107a8041056d36203c3d748302e82.tar.gz
plus-1a7dbe5947e107a8041056d36203c3d748302e82.tar.bz2
plus-1a7dbe5947e107a8041056d36203c3d748302e82.tar.xz
plus-1a7dbe5947e107a8041056d36203c3d748302e82.zip
Move function PlayerRecv::processPlayerClientCommand into ea namespace.
Diffstat (limited to 'src/net/ea/playerrecv.cpp')
-rw-r--r--src/net/ea/playerrecv.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/net/ea/playerrecv.cpp b/src/net/ea/playerrecv.cpp
index 466c73063..384f9aa16 100644
--- a/src/net/ea/playerrecv.cpp
+++ b/src/net/ea/playerrecv.cpp
@@ -37,10 +37,14 @@
#include "gui/windows/statuswindow.h"
+#include "input/inputmanager.h"
+
#include "resources/map/map.h"
#include "net/playerhandler.h"
+#include "utils/stringutils.h"
+
#include "debug.h"
// Max. distance we are willing to scroll after a teleport;
@@ -235,4 +239,19 @@ void PlayerRecv::processMapMask(Net::MessageIn &msg)
map->setMask(mask);
}
+void PlayerRecv::processPlayerClientCommand(Net::MessageIn &msg)
+{
+ const int sz = msg.readInt16("len") - 4;
+ std::string command = msg.readString(sz, "command");
+ std::string cmd;
+ std::string args;
+
+ if (!parse2Str(command, cmd, args))
+ {
+ cmd = command;
+ args.clear();
+ }
+ inputManager.executeRemoteChatCommand(cmd, args, nullptr);
+}
+
} // namespace Ea