summaryrefslogtreecommitdiff
path: root/src/notifymanager.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-03-09 02:10:02 +0300
committerAndrei Karas <akaras@inbox.ru>2013-03-09 14:39:29 +0300
commit29c0c9e731694a40a6f2e41c6bdedb4b78e2b952 (patch)
treee944129f98e652f2bd9adbcf5cd273a8bbb9e528 /src/notifymanager.cpp
parent0aca242db52695fa0804ac180fc7961b281b422a (diff)
downloadplus-29c0c9e731694a40a6f2e41c6bdedb4b78e2b952.tar.gz
plus-29c0c9e731694a40a6f2e41c6bdedb4b78e2b952.tar.bz2
plus-29c0c9e731694a40a6f2e41c6bdedb4b78e2b952.tar.xz
plus-29c0c9e731694a40a6f2e41c6bdedb4b78e2b952.zip
Add new notifications to guildhandler, guildmanager, inventoryhandler and partyhandler.
Diffstat (limited to 'src/notifymanager.cpp')
-rw-r--r--src/notifymanager.cpp78
1 files changed, 75 insertions, 3 deletions
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;
+ }
+ }
}