From a53b5a9482091178d122f4740cb41132a2dd1861 Mon Sep 17 00:00:00 2001 From: MadCamel Date: Wed, 11 Feb 2009 19:24:14 -0500 Subject: Implemented /me --- src/gui/chat.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src') diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 38a83ce0..81aa4dfd 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -137,6 +137,16 @@ void ChatWindow::chatLog(std::string line, int own, bool ignoreRecord) } } + // *implements actions in a backwards compatible way* + if (own == BY_PLAYER && + tmp.text.at(0) == '*' && + tmp.text.at(tmp.text.length()-1) == '*') + { + tmp.text[0] = ' '; + tmp.text.erase(tmp.text.length() - 1); + own = ACT_IS; + } + std::string lineColor = "##C"; switch (own) { @@ -597,6 +607,12 @@ void ChatWindow::chatSend(const std::string &nick, std::string msg) chatLog(_("Present: ") + response, BY_SERVER); } } + else if (command == "me") + { + std::stringstream actionStr; + actionStr << "*" << msg << "*"; + chatSend(player_node->getName(), actionStr.str()); + } else { chatLog(_("Unknown command"), BY_SERVER); -- cgit v1.2.3-70-g09d2