diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-27 02:14:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-27 02:14:39 +0300 |
commit | a714a339ac461943236eb1992c38dfb16821d0a1 (patch) | |
tree | d82615ef2330e1f052af4b21a2d448f751cad579 /src/utils/chatutils.cpp | |
parent | 1b496351f779d4a897cd882a9928a18bab5ba622 (diff) | |
download | plus-a714a339ac461943236eb1992c38dfb16821d0a1.tar.gz plus-a714a339ac461943236eb1992c38dfb16821d0a1.tar.bz2 plus-a714a339ac461943236eb1992c38dfb16821d0a1.tar.xz plus-a714a339ac461943236eb1992c38dfb16821d0a1.zip |
Move chat command /dumpe into actions.
Also move some functions into chatutils.
Diffstat (limited to 'src/utils/chatutils.cpp')
-rw-r--r-- | src/utils/chatutils.cpp | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/src/utils/chatutils.cpp b/src/utils/chatutils.cpp new file mode 100644 index 000000000..09c2c69fb --- /dev/null +++ b/src/utils/chatutils.cpp @@ -0,0 +1,92 @@ +/* + * The ManaPlus Client + * Copyright (C) 2012-2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#include "utils/chatutils.h" + +#include "guild.h" +#include "guildmanager.h" + +#include "being/localplayer.h" + +#include "gui/chatconsts.h" + +#include "gui/widgets/tabs/whispertab.h" +#include "gui/widgets/tabs/chattabtype.h" + +#include "net/chathandler.h" +#include "net/guildhandler.h" +#include "net/net.h" +#include "net/partyhandler.h" + +#include "debug.h" + +extern unsigned int tmwServerVersion; + +void outStringNormal(ChatTab *const tab, + const std::string &str, + const std::string &def) +{ + if (!localPlayer) + return; + + if (!tab) + { + Net::getChatHandler()->talk(str, GENERAL_CHANNEL); + return; + } + + switch (tab->getType()) + { + case ChatTabType::PARTY: + { + Net::getPartyHandler()->chat(str); + break; + } + case ChatTabType::GUILD: + { + const Guild *const guild = localPlayer->getGuild(); + if (guild) + { + if (guild->getServerGuild()) + { + if (tmwServerVersion > 0) + return; + Net::getGuildHandler()->chat(guild->getId(), str); + } + else if (guildManager) + { + guildManager->chat(str); + } + } + break; + } + case ChatTabType::WHISPER: + { + const WhisperTab *const whisper + = static_cast<const WhisperTab *const>(tab); + tab->chatLog(localPlayer->getName(), str); + Net::getChatHandler()->privateMessage(whisper->getNick(), str); + break; + } + default: + Net::getChatHandler()->talk(def, GENERAL_CHANNEL); + break; + } +} |