aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Chat/ChatLink.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/game/Chat/ChatLink.h')
-rw-r--r--src/server/game/Chat/ChatLink.h169
1 files changed, 169 insertions, 0 deletions
diff --git a/src/server/game/Chat/ChatLink.h b/src/server/game/Chat/ChatLink.h
new file mode 100644
index 00000000000..0e716fdd6cf
--- /dev/null
+++ b/src/server/game/Chat/ChatLink.h
@@ -0,0 +1,169 @@
+/*
+ * Copyright (C) 2008-2011 TrinityCore <http://www.trinitycore.org/>
+ *
+ * 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 (at your
+ * option) 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/>.
+ */
+
+#ifndef TRINITYCORE_CHATLINK_H
+#define TRINITYCORE_CHATLINK_H
+
+#include "SharedDefines.h"
+#include <sstream>
+#include <list>
+
+struct ItemLocale;
+struct ItemPrototype;
+struct ItemRandomSuffixEntry;
+struct ItemRandomPropertiesEntry;
+struct SpellEntry;
+struct AchievementEntry;
+struct GlyphPropertiesEntry;
+class Quest;
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+// ChatLink - abstract base class for various links
+class ChatLink
+{
+public:
+ ChatLink() : _color(0), _startPos(0), _endPos(0) { }
+ void SetColor(uint32 color) { _color = color; }
+ // This will allow to extract the whole link string from the message, if necessary.
+ void SetBounds(std::istringstream::pos_type startPos, std::istringstream::pos_type endPos) { _startPos = startPos; _endPos = endPos; }
+
+ virtual bool Initialize(std::istringstream& iss) = 0;
+ virtual bool ValidateName(char* buffer, const char* context) = 0;
+
+protected:
+ uint32 _color;
+ std::string _name;
+ std::istringstream::pos_type _startPos;
+ std::istringstream::pos_type _endPos;
+};
+
+// ItemChatLink - link to item
+class ItemChatLink : public ChatLink
+{
+public:
+ ItemChatLink() : ChatLink(), _item(NULL), _suffix(NULL), _property(NULL) { }
+ virtual bool Initialize(std::istringstream& iss);
+ virtual bool ValidateName(char* buffer, const char* context);
+
+protected:
+ std::string _FormatName(uint8 index, ItemLocale const *locale, char* const* suffixStrings) const;
+
+ ItemPrototype const* _item;
+ int32 _data[8];
+ ItemRandomSuffixEntry const* _suffix;
+ ItemRandomPropertiesEntry const* _property;
+};
+
+// QuestChatLink - link to quest
+class QuestChatLink : public ChatLink
+{
+public:
+ QuestChatLink() : ChatLink(), _quest(NULL), _questLevel(0) { }
+ virtual bool Initialize(std::istringstream& iss);
+ virtual bool ValidateName(char* buffer, const char* context);
+
+protected:
+ Quest const* _quest;
+ int32 _questLevel;
+};
+
+// SpellChatLink - link to quest
+class SpellChatLink : public ChatLink
+{
+public:
+ SpellChatLink() : ChatLink(), _spell(NULL) { }
+ virtual bool Initialize(std::istringstream& iss);
+ virtual bool ValidateName(char* buffer, const char* context);
+
+protected:
+ SpellEntry const* _spell;
+};
+
+// AchievementChatLink - link to quest
+class AchievementChatLink : public ChatLink
+{
+public:
+ AchievementChatLink() : ChatLink(), _guid(0), _achievement(NULL) { }
+ virtual bool Initialize(std::istringstream& iss);
+ virtual bool ValidateName(char* buffer, const char* context);
+
+protected:
+ uint32 _guid;
+ AchievementEntry const* _achievement;
+ uint32 _data[8];
+};
+
+// TradeChatLink - link to trade info
+class TradeChatLink : public SpellChatLink
+{
+public:
+ TradeChatLink() : SpellChatLink(), _minSkillLevel(0), _maxSkillLevel(0), _guid(0) { }
+ virtual bool Initialize(std::istringstream& iss);
+private:
+ int32 _minSkillLevel;
+ int32 _maxSkillLevel;
+ uint32 _guid;
+ std::string _base64;
+};
+
+// TalentChatLink - link to talent
+class TalentChatLink : public SpellChatLink
+{
+public:
+ TalentChatLink() : SpellChatLink(), _talentId(0), _rankId(0) { }
+ virtual bool Initialize(std::istringstream& iss);
+
+private:
+ uint32 _talentId;
+ int32 _rankId;
+};
+
+// EnchantmentChatLink - link to enchantment
+class EnchantmentChatLink : public SpellChatLink
+{
+public:
+ EnchantmentChatLink() : SpellChatLink() { }
+ virtual bool Initialize(std::istringstream& iss);
+};
+
+// GlyphChatLink - link to glyph
+class GlyphChatLink : public SpellChatLink
+{
+public:
+ GlyphChatLink() : SpellChatLink(), _glyph(NULL), _slotId(0) { }
+ virtual bool Initialize(std::istringstream& iss);
+private:
+ uint32 _slotId;
+ GlyphPropertiesEntry const* _glyph;
+};
+
+class LinkExtractor
+{
+public:
+ explicit LinkExtractor(const char* msg);
+ ~LinkExtractor();
+
+ bool IsValidMessage();
+
+private:
+ typedef std::list<ChatLink*> Links;
+ Links _links;
+ std::istringstream _iss;
+};
+
+
+#endif // TRINITYCORE_CHATLINK_H \ No newline at end of file