root/trunk/src/game/QuestDef.h @ 37

Revision 37, 14.6 kB (checked in by yumileroy, 17 years ago)

[svn] * svn:eol-style native set on all files that need it

Original author: Neo2003
Date: 2008-10-11 14:16:25-05:00

Line 
1/*
2 * Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17 */
18
19#ifndef MANGOSSERVER_QUEST_H
20#define MANGOSSERVER_QUEST_H
21
22#include "Platform/Define.h"
23#include "Database/DatabaseEnv.h"
24
25#include <string>
26#include <vector>
27
28class Player;
29
30class ObjectMgr;
31
32#define MAX_QUEST_LOG_SIZE 25
33
34#define QUEST_OBJECTIVES_COUNT 4
35#define QUEST_SOURCE_ITEM_IDS_COUNT 4
36#define QUEST_REWARD_CHOICES_COUNT 6
37#define QUEST_REWARDS_COUNT 4
38#define QUEST_DEPLINK_COUNT 10
39#define QUEST_REPUTATIONS_COUNT 5
40#define QUEST_EMOTE_COUNT 4
41
42enum QuestFailedReasons
43{
44    INVALIDREASON_DONT_HAVE_REQ                 = 0,
45    INVALIDREASON_QUEST_FAILED_LOW_LEVEL        = 1,        //You are not high enough level for that quest.
46    INVALIDREASON_QUEST_FAILED_WRONG_RACE       = 6,        //That quest is not available to your race.
47    INVALIDREASON_QUEST_ALREADY_DONE            = 7,        //You have completed that quest.
48    INVALIDREASON_QUEST_ONLY_ONE_TIMED          = 12,       //You can only be on one timed quest at a time.
49    INVALIDREASON_QUEST_ALREADY_ON              = 13,       //You are already on that quest
50    INVALIDREASON_QUEST_FAILED_EXPANSION        = 16,       //This quest requires an expansion enabled account.
51    INVALIDREASON_QUEST_ALREADY_ON2             = 18,       //You are already on that quest
52    INVALIDREASON_QUEST_FAILED_MISSING_ITEMS    = 21,       //You don't have the required items with you. Check storage.
53    INVALIDREASON_QUEST_FAILED_NOT_ENOUGH_MONEY = 23,       //You don't have enough money for that quest.
54    INVALIDREASON_DAILY_QUESTS_REMAINING        = 26,       //You have already completed 10 daily quests today
55    INVALIDREASON_QUEST_FAILED_CAIS             = 27,       //You cannot complete quests once you have reached tired time
56};
57
58enum QuestShareMessages
59{
60    QUEST_PARTY_MSG_SHARING_QUEST   = 0,
61    QUEST_PARTY_MSG_CANT_TAKE_QUEST = 1,
62    QUEST_PARTY_MSG_ACCEPT_QUEST    = 2,
63    QUEST_PARTY_MSG_REFUSE_QUEST    = 3,
64    QUEST_PARTY_MSG_TOO_FAR         = 4,
65    QUEST_PARTY_MSG_BUSY            = 5,
66    QUEST_PARTY_MSG_LOG_FULL        = 6,
67    QUEST_PARTY_MSG_HAVE_QUEST      = 7,
68    QUEST_PARTY_MSG_FINISH_QUEST    = 8,
69};
70
71enum __QuestTradeSkill
72{
73    QUEST_TRSKILL_NONE           = 0,
74    QUEST_TRSKILL_ALCHEMY        = 1,
75    QUEST_TRSKILL_BLACKSMITHING  = 2,
76    QUEST_TRSKILL_COOKING        = 3,
77    QUEST_TRSKILL_ENCHANTING     = 4,
78    QUEST_TRSKILL_ENGINEERING    = 5,
79    QUEST_TRSKILL_FIRSTAID       = 6,
80    QUEST_TRSKILL_HERBALISM      = 7,
81    QUEST_TRSKILL_LEATHERWORKING = 8,
82    QUEST_TRSKILL_POISONS        = 9,
83    QUEST_TRSKILL_TAILORING      = 10,
84    QUEST_TRSKILL_MINING         = 11,
85    QUEST_TRSKILL_FISHING        = 12,
86    QUEST_TRSKILL_SKINNING       = 13,
87    QUEST_TRSKILL_JEWELCRAFTING  = 14,
88};
89
90enum QuestStatus
91{
92    QUEST_STATUS_NONE           = 0,
93    QUEST_STATUS_COMPLETE       = 1,
94    QUEST_STATUS_UNAVAILABLE    = 2,
95    QUEST_STATUS_INCOMPLETE     = 3,
96    QUEST_STATUS_AVAILABLE      = 4,
97    MAX_QUEST_STATUS
98};
99
100enum __QuestGiverStatus
101{
102    DIALOG_STATUS_NONE                     = 0,
103    DIALOG_STATUS_UNAVAILABLE              = 1,
104    DIALOG_STATUS_CHAT                     = 2,
105    DIALOG_STATUS_INCOMPLETE               = 3,
106    DIALOG_STATUS_REWARD_REP               = 4,
107    DIALOG_STATUS_AVAILABLE_REP            = 5,
108    DIALOG_STATUS_AVAILABLE                = 6,
109    DIALOG_STATUS_REWARD2                  = 7,             // not yellow dot on minimap
110    DIALOG_STATUS_REWARD                   = 8              // yellow dot on minimap
111};
112
113enum __QuestFlags
114{
115    // Flags used at server and sended to client
116    QUEST_FLAGS_STAY_ALIVE     = 1,                         // Not used currently
117    QUEST_FLAGS_PARTY_ACCEPT   = 2,                         // Not used currently. If player in party, all players that can accept this quest will receive confirmation box to accept quest CMSG_QUEST_CONFIRM_ACCEPT/SMSG_QUEST_CONFIRM_ACCEPT
118    QUEST_FLAGS_EXPLORATION    = 4,                         // Not used currently
119    QUEST_FLAGS_SHARABLE       = 8,                         // Can be shared: Player::CanShareQuest()
120    //QUEST_FLAGS_NONE2        = 16,                        // Not used currently
121    QUEST_FLAGS_EPIC           = 32,                        // Not used currently: Unsure of content
122    QUEST_FLAGS_RAID           = 64,                        // Not used currently
123    QUEST_FLAGS_TBC            = 128,                       // Not used currently: Available if TBC expension enabled only
124    QUEST_FLAGS_UNK2           = 256,                       // Not used currently: _DELIVER_MORE Quest needs more than normal _q-item_ drops from mobs
125    QUEST_FLAGS_HIDDEN_REWARDS = 512,                       // Items and money rewarded only sent in SMSG_QUESTGIVER_OFFER_REWARD (not in SMSG_QUESTGIVER_QUEST_DETAILS or in client quest log(SMSG_QUEST_QUERY_RESPONSE))
126    QUEST_FLAGS_AUTO_REWARDED  = 1024,                      // These quests are automatically rewarded on quest complete and they will never appear in quest log client side.
127    QUEST_FLAGS_TBC_RACES      = 2048,                      // Not used currently: Bloodelf/draenei starting zone quests
128    QUEST_FLAGS_DAILY          = 4096,                      // Used to know quest is Daily one
129
130    // Mangos flags for set SpecialFlags in DB if required but used only at server
131    QUEST_MANGOS_FLAGS_REPEATABLE           = 0x010000,     // Set by 1 in SpecialFlags from DB
132    QUEST_MANGOS_FLAGS_EXPLORATION_OR_EVENT = 0x020000,     // Set by 2 in SpecialFlags from DB (if reequired area explore, spell SPELL_EFFECT_QUEST_COMPLETE casting, table `*_script` command SCRIPT_COMMAND_QUEST_EXPLORED use, set from script DLL)
133    QUEST_MANGOS_FLAGS_DB_ALLOWED = 0xFFFF | QUEST_MANGOS_FLAGS_REPEATABLE | QUEST_MANGOS_FLAGS_EXPLORATION_OR_EVENT,
134
135    // Mangos flags for internal use only
136    QUEST_MANGOS_FLAGS_DELIVER              = 0x040000,     // Internal flag computed only
137    QUEST_MANGOS_FLAGS_SPEAKTO              = 0x080000,     // Internal flag computed only
138    QUEST_MANGOS_FLAGS_KILL_OR_CAST         = 0x100000,     // Internal flag computed only
139    QUEST_MANGOS_FLAGS_TIMED                = 0x200000,     // Internal flag computed only
140};
141
142struct QuestLocale
143{
144    QuestLocale() { ObjectiveText.resize(QUEST_OBJECTIVES_COUNT); }
145
146    std::vector<std::string> Title;
147    std::vector<std::string> Details;
148    std::vector<std::string> Objectives;
149    std::vector<std::string> OfferRewardText;
150    std::vector<std::string> RequestItemsText;
151    std::vector<std::string> EndText;
152    std::vector< std::vector<std::string> > ObjectiveText;
153};
154
155// This Quest class provides a convenient way to access a few pretotaled (cached) quest details,
156// all base quest information, and any utility functions such as generating the amount of
157// xp to give
158class Quest
159{
160    friend class ObjectMgr;
161    public:
162        Quest(Field * questRecord);
163        uint32 XPValue( Player *pPlayer ) const;
164
165        bool HasFlag( uint32 flag ) const { return ( QuestFlags & flag ) != 0; }
166        void SetFlag( uint32 flag ) { QuestFlags |= flag; }
167
168        // table data accessors:
169        uint32 GetQuestId() const { return QuestId; }
170        uint32 GetQuestMethod() const { return QuestMethod; }
171        int32  GetZoneOrSort() const { return ZoneOrSort; }
172        int32  GetSkillOrClass() const { return SkillOrClass; }
173        uint32 GetMinLevel() const { return MinLevel; }
174        uint32 GetQuestLevel() const { return QuestLevel; }
175        uint32 GetType() const { return Type; }
176        uint32 GetRequiredRaces() const { return RequiredRaces; }
177        uint32 GetRequiredSkillValue() const { return RequiredSkillValue; }
178        uint32 GetRepObjectiveFaction() const { return RepObjectiveFaction; }
179        int32  GetRepObjectiveValue() const { return RepObjectiveValue; }
180        uint32 GetRequiredMinRepFaction() const { return RequiredMinRepFaction; }
181        int32  GetRequiredMinRepValue() const { return RequiredMinRepValue; }
182        uint32 GetRequiredMaxRepFaction() const { return RequiredMaxRepFaction; }
183        int32  GetRequiredMaxRepValue() const { return RequiredMaxRepValue; }
184        uint32 GetSuggestedPlayers() const { return SuggestedPlayers; }
185        uint32 GetLimitTime() const { return LimitTime; }
186        int32  GetPrevQuestId() const { return PrevQuestId; }
187        int32  GetNextQuestId() const { return NextQuestId; }
188        int32  GetExclusiveGroup() const { return ExclusiveGroup; }
189        uint32 GetNextQuestInChain() const { return NextQuestInChain; }
190        uint32 GetCharTitleId() const { return CharTitleId; }
191        uint32 GetSrcItemId() const { return SrcItemId; }
192        uint32 GetSrcItemCount() const { return SrcItemCount; }
193        uint32 GetSrcSpell() const { return SrcSpell; }
194        std::string GetTitle() const { return Title; }
195        std::string GetDetails() const { return Details; }
196        std::string GetObjectives() const { return Objectives; }
197        std::string GetOfferRewardText() const { return OfferRewardText; }
198        std::string GetRequestItemsText() const { return RequestItemsText; }
199        std::string GetEndText() const { return EndText; }
200        int32  GetRewOrReqMoney() const;
201        uint32 GetRewMoneyMaxLevel() const { return RewMoneyMaxLevel; }
202                                                            // use in XP calculation at client
203        uint32 GetRewSpell() const { return RewSpell; }
204        uint32 GetRewSpellCast() const { return RewSpellCast; }
205        uint32 GetRewMailTemplateId() const { return RewMailTemplateId; }
206        uint32 GetRewMailDelaySecs() const { return RewMailDelaySecs; }
207        uint32 GetPointMapId() const { return PointMapId; }
208        float  GetPointX() const { return PointX; }
209        float  GetPointY() const { return PointY; }
210        uint32 GetPointOpt() const { return PointOpt; }
211        uint32 GetIncompleteEmote() const { return IncompleteEmote; }
212        uint32 GetCompleteEmote() const { return CompleteEmote; }
213        uint32 GetQuestStartScript() const { return QuestStartScript; }
214        uint32 GetQuestCompleteScript() const { return QuestCompleteScript; }
215        bool   IsRepeatable() const { return QuestFlags & QUEST_MANGOS_FLAGS_REPEATABLE; }
216        bool   IsAutoComplete() const { return QuestMethod ? false : true; }
217        uint32 GetFlags() const { return QuestFlags; }
218        bool   IsDaily() const { return QuestFlags & QUEST_FLAGS_DAILY; }
219
220        // multiple values
221        std::string ObjectiveText[QUEST_OBJECTIVES_COUNT];
222        uint32 ReqItemId[QUEST_OBJECTIVES_COUNT];
223        uint32 ReqItemCount[QUEST_OBJECTIVES_COUNT];
224        uint32 ReqSourceId[QUEST_SOURCE_ITEM_IDS_COUNT];
225        uint32 ReqSourceCount[QUEST_SOURCE_ITEM_IDS_COUNT];
226        uint32 ReqSourceRef[QUEST_SOURCE_ITEM_IDS_COUNT];
227        int32  ReqCreatureOrGOId[QUEST_OBJECTIVES_COUNT];   // >0 Creature <0 Gameobject
228        uint32 ReqCreatureOrGOCount[QUEST_OBJECTIVES_COUNT];
229        uint32 ReqSpell[QUEST_OBJECTIVES_COUNT];
230        uint32 RewChoiceItemId[QUEST_REWARD_CHOICES_COUNT];
231        uint32 RewChoiceItemCount[QUEST_REWARD_CHOICES_COUNT];
232        uint32 RewItemId[QUEST_REWARDS_COUNT];
233        uint32 RewItemCount[QUEST_REWARDS_COUNT];
234        uint32 RewRepFaction[QUEST_REPUTATIONS_COUNT];
235        int32  RewRepValue[QUEST_REPUTATIONS_COUNT];
236        uint32 DetailsEmote[QUEST_EMOTE_COUNT];
237        uint32 OfferRewardEmote[QUEST_EMOTE_COUNT];
238
239        uint32 GetReqItemsCount() const { return m_reqitemscount; }
240        uint32 GetReqCreatureOrGOcount() const { return m_reqCreatureOrGOcount; }
241        uint32 GetRewChoiceItemsCount() const { return m_rewchoiceitemscount; }
242        uint32 GetRewItemsCount() const { return m_rewitemscount; }
243
244        typedef std::vector<int32> PrevQuests;
245        PrevQuests prevQuests;
246        typedef std::vector<uint32> PrevChainQuests;
247        PrevChainQuests prevChainQuests;
248
249        // cached data
250    private:
251        uint32 m_reqitemscount;
252        uint32 m_reqCreatureOrGOcount;
253        uint32 m_rewchoiceitemscount;
254        uint32 m_rewitemscount;
255
256        // table data
257    protected:
258        uint32 QuestId;
259        uint32 QuestMethod;
260        int32  ZoneOrSort;
261        int32  SkillOrClass;
262        uint32 MinLevel;
263        uint32 QuestLevel;
264        uint32 Type;
265        uint32 RequiredRaces;
266        uint32 RequiredSkillValue;
267        uint32 RepObjectiveFaction;
268        int32  RepObjectiveValue;
269        uint32 RequiredMinRepFaction;
270        int32  RequiredMinRepValue;
271        uint32 RequiredMaxRepFaction;
272        int32  RequiredMaxRepValue;
273        uint32 SuggestedPlayers;
274        uint32 LimitTime;
275        uint32 QuestFlags;
276        uint32 CharTitleId;
277        int32  PrevQuestId;
278        int32  NextQuestId;
279        int32  ExclusiveGroup;
280        uint32 NextQuestInChain;
281        uint32 SrcItemId;
282        uint32 SrcItemCount;
283        uint32 SrcSpell;
284        std::string Title;
285        std::string Details;
286        std::string Objectives;
287        std::string OfferRewardText;
288        std::string RequestItemsText;
289        std::string EndText;
290        int32  RewOrReqMoney;
291        uint32 RewMoneyMaxLevel;
292        uint32 RewSpell;
293        uint32 RewSpellCast;
294        uint32 RewMailTemplateId;
295        uint32 RewMailDelaySecs;
296        uint32 PointMapId;
297        float  PointX;
298        float  PointY;
299        uint32 PointOpt;
300        uint32 IncompleteEmote;
301        uint32 CompleteEmote;
302        uint32 QuestStartScript;
303        uint32 QuestCompleteScript;
304};
305
306enum QuestUpdateState
307{
308    QUEST_UNCHANGED = 0,
309    QUEST_CHANGED = 1,
310    QUEST_NEW = 2
311};
312
313struct QuestStatusData
314{
315    QuestStatusData()
316        : m_status(QUEST_STATUS_NONE),m_rewarded(false),
317        m_explored(false), m_timer(0), uState(QUEST_NEW)
318    {
319        memset(m_itemcount,    0, QUEST_OBJECTIVES_COUNT * sizeof(uint32));
320        memset(m_creatureOrGOcount, 0, QUEST_OBJECTIVES_COUNT * sizeof(uint32));
321    }
322
323    QuestStatus m_status;
324    bool m_rewarded;
325    bool m_explored;
326    uint32 m_timer;
327    QuestUpdateState uState;
328
329    uint32 m_itemcount[ QUEST_OBJECTIVES_COUNT ];
330    uint32 m_creatureOrGOcount[ QUEST_OBJECTIVES_COUNT ];
331};
332#endif
Note: See TracBrowser for help on using the browser.