From 29c0c9e731694a40a6f2e41c6bdedb4b78e2b952 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 9 Mar 2013 02:10:02 +0300 Subject: Add new notifications to guildhandler, guildmanager, inventoryhandler and partyhandler. --- src/notifymanager.cpp | 78 +++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 75 insertions(+), 3 deletions(-) (limited to 'src/notifymanager.cpp') diff --git a/src/notifymanager.cpp b/src/notifymanager.cpp index 2dae7d280..dcbd18c8f 100644 --- a/src/notifymanager.cpp +++ b/src/notifymanager.cpp @@ -20,21 +20,69 @@ #include "notifymanager.h" +#include "guildmanager.h" +#include "localplayer.h" + #include "gui/widgets/chattab.h" +#include "net/guildhandler.h" +#include "net/net.h" +#include "net/partyhandler.h" + #include "utils/gettext.h" namespace NotifyManager { + static ChatTab *getGuildTab() + { + const Guild *const guild = player_node->getGuild(); + if (guild) + { + if (guild->getServerGuild()) + return Net::getGuildHandler()->getTab(); + else if (guildManager) + return guildManager->getTab(); + } + return nullptr; + } + + static void chatLog(ChatTab *const tab, const std::string &str) + { + if (tab) + tab->chatLog(str, BY_SERVER); + else if (debugChatTab) + debugChatTab->chatLog(str, BY_SERVER); + } + void notify(const unsigned int message) { if (message >= TYPE_END || !localChatTab) return; const NotificationInfo &info = notifications[message]; - if (info.flags == EMPTY) + switch (info.flags) { - localChatTab->chatLog(gettext(info.text), - BY_SERVER); + case EMPTY: + localChatTab->chatLog(gettext(info.text), + BY_SERVER); + break; + + case GUILD: + { + if (!player_node) + return; + ChatTab *const tab = getGuildTab(); + chatLog(tab, gettext(info.text)); + break; + } + + case PARTY: + { + ChatTab *const tab = Net::getPartyHandler()->getTab(); + chatLog(tab, gettext(info.text)); + } + + default: + break; } } @@ -49,4 +97,28 @@ namespace NotifyManager num), BY_SERVER); } } + + void notify(const unsigned int message, const std::string &str) + { + if (message >= TYPE_END || !localChatTab) + return; + const NotificationInfo &info = notifications[message]; + switch (info.flags) + { + case GUILD_STRING: + { + ChatTab *const tab = getGuildTab(); + chatLog(tab, strprintf(gettext(info.text), str.c_str())); + break; + } + case PARTY_STRING: + { + ChatTab *const tab = Net::getPartyHandler()->getTab(); + chatLog(tab, strprintf(gettext(info.text), str.c_str())); + break; + } + default: + break; + } + } } -- cgit v1.2.3-60-g2f50