Quests.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434
  1. /*
  2. EQ2Emulator: Everquest II Server Emulator
  3. Copyright (C) 2007 EQ2EMulator Development Team (http://www.eq2emulator.net)
  4. This file is part of EQ2Emulator.
  5. EQ2Emulator is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. EQ2Emulator 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. You should have received a copy of the GNU General Public License
  14. along with EQ2Emulator. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #ifndef QUESTS_H
  17. #define QUESTS_H
  18. #include <map>
  19. #include <vector>
  20. #include "Items/Items.h"
  21. #define QUEST_STEP_TYPE_KILL 1
  22. #define QUEST_STEP_TYPE_CHAT 2
  23. #define QUEST_STEP_TYPE_OBTAIN_ITEM 3
  24. #define QUEST_STEP_TYPE_LOCATION 4
  25. #define QUEST_STEP_TYPE_SPELL 5
  26. #define QUEST_STEP_TYPE_NORMAL 6
  27. #define QUEST_STEP_TYPE_CRAFT 7
  28. #define QUEST_STEP_TYPE_HARVEST 8
  29. #define QUEST_STEP_TYPE_KILL_RACE_REQ 9 // kill using race type requirement instead of npc db id
  30. #define QUEST_DISPLAY_STATUS_HIDDEN 0
  31. #define QUEST_DISPLAY_STATUS_NO_CHECK 1
  32. #define QUEST_DISPLAY_STATUS_YELLOW 2
  33. #define QUEST_DISPLAY_STATUS_COMPLETED 4
  34. #define QUEST_DISPLAY_STATUS_REPEATABLE 8
  35. #define QUEST_DISPLAY_STATUS_UNKNOWN1 16
  36. #define QUEST_DISPLAY_STATUS_COMPLETE_FLAG 32
  37. #define QUEST_DISPLAY_STATUS_UNKNOWN2 64
  38. #define QUEST_DISPLAY_STATUS_CHECK 128
  39. // Almost all quests have these values, but they don't see to effect anything
  40. #define QUEST_DISPLAY_STATUS_NORMAL QUEST_DISPLAY_STATUS_UNKNOWN1 + QUEST_DISPLAY_STATUS_UNKNOWN2
  41. struct QuestFactionPrereq{
  42. int32 faction_id;
  43. sint32 min;
  44. sint32 max;
  45. };
  46. struct Location {
  47. int32 id;
  48. float x;
  49. float y;
  50. float z;
  51. int32 zone_id;
  52. };
  53. class QuestStep{
  54. public:
  55. QuestStep(int32 in_id, int8 in_type, string in_description, vector<int32>* in_ids, int32 in_quantity, const char* in_task_group, vector<Location>* in_locations, float in_max_variation, float in_percentage, int32 in_usableitemid);
  56. QuestStep(QuestStep* old_step);
  57. ~QuestStep();
  58. bool CheckStepKillRaceReqUpdate(Spawn* spawn);
  59. bool CheckStepKillUpdate(int32 id);
  60. bool CheckStepChatUpdate(int32 id);
  61. bool CheckStepItemUpdate(int32 id);
  62. bool CheckStepLocationUpdate(float char_x, float char_y, float char_z, int32 zone_id);
  63. bool CheckStepSpellUpdate(int32 id);
  64. int32 AddStepProgress(int32 val);
  65. void SetStepProgress(int32 val);
  66. int32 GetStepProgress();
  67. int8 GetStepType();
  68. bool Complete();
  69. void SetComplete();
  70. void ResetTaskGroup();
  71. const char* GetTaskGroup();
  72. const char* GetDescription();
  73. void SetDescription(string desc);
  74. int16 GetQuestCurrentQuantity();
  75. int16 GetQuestNeededQuantity();
  76. vector<int32>* GetUpdateIDs() { return ids; }
  77. int16 GetIcon();
  78. void SetIcon(int16 in_icon);
  79. const char* GetUpdateTargetName();
  80. void SetUpdateTargetName(const char* name);
  81. const char* GetUpdateName();
  82. void SetUpdateName(const char* name);
  83. int32 GetStepID();
  84. int32 GetItemID();
  85. bool WasUpdated();
  86. void WasUpdated(bool val);
  87. float GetPercentage();
  88. void SetTaskGroup(string val) { task_group = val; }
  89. private:
  90. bool updated;
  91. int32 id;
  92. string update_name;
  93. string update_target_name;
  94. int16 icon;
  95. int8 type;
  96. string description;
  97. vector<int32>* ids;
  98. int32 quantity;
  99. string task_group;
  100. vector<Location>* locations;
  101. float max_variation;
  102. float percentage;
  103. int32 usableitemid;
  104. int32 step_progress;
  105. };
  106. class Player;
  107. class Spell;
  108. class Quest{
  109. public:
  110. Quest(int32 in_id);
  111. Quest(Quest* old_quest);
  112. ~Quest();
  113. EQ2Packet* OfferQuest(int16 version, Player* player);
  114. EQ2Packet* QuestJournalReply(int16 version, int32 player_crc, Player* player, QuestStep* updateStep = 0, int8 update_count = 1, bool old_completed_quest=false, bool quest_failure = false, bool display_quest_helper = true);
  115. void RegisterQuest(string in_name, string in_type, string in_zone, int8 in_level, string in_desc);
  116. void SetPrereqLevel(int8 lvl);
  117. void SetPrereqTSLevel(int8 lvl);
  118. void SetPrereqMaxLevel(int8 lvl) {prereq_max_level = lvl;}
  119. void SetPrereqMaxTSLevel(int8 lvl) {prereq_max_tslevel = lvl;}
  120. void AddPrereqClass(int8 class_id);
  121. void AddPrereqTradeskillClass(int8 class_id);
  122. void AddPrereqModelType(int16 model_type);
  123. void AddPrereqRace(int8 race);
  124. void AddPrereqQuest(int32 quest_id);
  125. void AddPrereqFaction(int32 faction_id, sint32 min, sint32 max = 0);
  126. void AddPrereqItem(Item* item);
  127. void AddRewardItem(Item* item);
  128. void AddTmpRewardItem(Item* item);
  129. void AddSelectableRewardItem(Item* item);
  130. void AddRewardCoins(int32 copper, int32 silver, int32 gold, int32 plat);
  131. void AddRewardCoinsMax(int64 coins);
  132. void AddRewardFaction(int32 faction_id, sint32 amount);
  133. void SetRewardStatus(int32 amount);
  134. void SetRewardComment(string comment);
  135. void SetRewardXP(int32 xp);
  136. void SetRewardTSXP(int32 xp) { reward_tsexp = xp; }
  137. bool AddQuestStep(QuestStep* step);
  138. QuestStep* AddQuestStep(int32 id, int8 in_type, string in_description, vector<int32>* in_ids, int32 in_quantity, const char* in_task_group = 0, vector<Location>* in_locations = 0, float in_max_variation = 0, float in_percentage = 0,int32 in_usableitemid = 0);
  139. bool SetStepComplete(int32 step);
  140. bool AddStepProgress(int32 step_id, int32 progress);
  141. int16 GetQuestStep();
  142. int32 GetStepProgress(int32 step_id);
  143. int16 GetTaskGroupStep();
  144. bool QuestStepIsActive(int16 quest_step_id);
  145. bool CheckQuestKillUpdate(Spawn* spawn, bool update = true);
  146. bool CheckQuestChatUpdate(int32 id, bool update = true);
  147. bool CheckQuestItemUpdate(int32 id, int8 quantity = 1);
  148. bool CheckQuestLocationUpdate(float char_x, float char_y, float char_z, int32 zone_id);
  149. bool CheckQuestSpellUpdate(Spell* spell);
  150. bool CheckQuestCraftUpdate(int32 id, int32 quantity = 1);
  151. bool CheckQuestHarvestUpdate(int32 id, int32 quantity = 1);
  152. int8 GetQuestLevel();
  153. int8 GetVisible();
  154. int32 GetQuestID();
  155. void SetQuestID(int32 in_id);
  156. int8 GetPrereqLevel();
  157. int8 GetPrereqTSLevel();
  158. int8 GetPrereqMaxLevel() {return prereq_max_level;}
  159. int8 GetPrereqMaxTSLevel() {return prereq_max_tslevel;}
  160. vector<QuestFactionPrereq>* GetPrereqFactions();
  161. vector<int8>* GetPrereqRaces();
  162. vector<int16>* GetPrereqModelTypes();
  163. vector<int8>* GetPrereqClasses();
  164. vector<int8>* GetPrereqTradeskillClasses();
  165. vector<int32>* GetPrereqQuests();
  166. vector<Item*>* GetPrereqItems();
  167. vector<Item*>* GetRewardItems();
  168. vector<Item*>* GetTmpRewardItems();
  169. vector<Item*>* GetSelectableRewardItems();
  170. map<int32, sint32>* GetRewardFactions();
  171. void GiveQuestReward(Player* player);
  172. void AddCompleteAction(int32 step, string action);
  173. void AddProgressAction(int32 step, string action);
  174. void SetName(string in_name);
  175. void SetType(string in_type);
  176. void SetLevel(int8 in_level);
  177. void SetEncounterLevel(int8 level) {enc_level = level;}
  178. void SetDescription(string desc);
  179. void SetStepDescription(int32 step, string desc);
  180. void SetTaskGroupDescription(int32 step, string desc, bool display_bullets);
  181. void SetStatusTmpReward(int32 status) { tmp_reward_status = status; }
  182. int64 GetStatusTmpReward() { return tmp_reward_status; }
  183. void SetCoinTmpReward(int64 coins) { tmp_reward_coins = coins; }
  184. int64 GetCoinTmpReward() { return tmp_reward_coins; }
  185. int64 GetCoinsReward();
  186. int64 GetCoinsRewardMax();
  187. int64 GetGeneratedCoin();
  188. void SetGeneratedCoin(int64 coin);
  189. int8 GetLevel();
  190. int8 GetEncounterLevel() { return enc_level; }
  191. const char* GetName();
  192. const char* GetDescription();
  193. const char* GetType();
  194. void SetZone(string in_zone);
  195. const char* GetZone();
  196. int8 GetDay();
  197. int8 GetMonth();
  198. int8 GetYear();
  199. int32 GetStatusPoints();
  200. void SetDay(int8 value);
  201. void SetMonth(int8 value);
  202. void SetYear(int8 value);
  203. vector<QuestStep*>* GetQuestUpdates();
  204. vector<QuestStep*>* GetQuestFailures();
  205. vector<QuestStep*>* GetQuestSteps();
  206. bool GetQuestStepCompleted(int32 step_id);
  207. QuestStep* GetQuestStep(int32 step_id);
  208. void SetCompleteAction(string action);
  209. const char* GetCompleteAction();
  210. const char* GetCompleteAction(int32 step);
  211. void SetQuestGiver(int32 id);
  212. int32 GetQuestGiver();
  213. void SetQuestReturnNPC(int32 id);
  214. int32 GetQuestReturnNPC();
  215. Player* GetPlayer();
  216. void SetPlayer(Player* in_player);
  217. bool GetCompleted();
  218. bool HasSentLastUpdate() { return has_sent_last_update; }
  219. void SetSentLastUpdate(bool val) { has_sent_last_update = val; }
  220. void SetCompletedDescription(string desc);
  221. const char* GetCompletedDescription();
  222. int32 GetExpReward();
  223. int32 GetTSExpReward() { return reward_tsexp; }
  224. bool GetDeleted();
  225. void SetDeleted(bool val);
  226. bool GetUpdateRequired();
  227. void SetUpdateRequired(bool val);
  228. void SetTurnedIn(bool val);
  229. bool GetTurnedIn();
  230. bool GetSaveNeeded(){ return needs_save; }
  231. void SetSaveNeeded(bool val){ needs_save = val; }
  232. void SetFeatherColor(int8 val) { m_featherColor = val; }
  233. int8 GetFeatherColor() { return m_featherColor; }
  234. void SetRepeatable(bool val) { m_repeatable = val; }
  235. bool IsRepeatable() { return m_repeatable; }
  236. void SetTracked(bool val) { m_tracked = val; }
  237. bool IsTracked() { return m_tracked && !m_hidden; }
  238. void SetCompletedFlag(bool val);
  239. bool GetCompletedFlag() {return completed_flag;}
  240. bool GetYellowName() {return yellow_name;}
  241. void SetYellowName(bool val) {yellow_name = val;}
  242. bool CheckCategoryYellow();
  243. ///<summary>Sets the custom flags for use in lua</summary>
  244. ///<param name='flags'>Value to set the flags to</param>
  245. void SetQuestFlags(int32 flags) { m_questFlags = flags; SetSaveNeeded(true); }
  246. ///<summary>Gets the custom lua flags</summary>
  247. ///<returns>The current flags (int32)</returns>
  248. int32 GetQuestFlags() { return m_questFlags; }
  249. ///<summary>Checks to see if the quest is hidden</summary>
  250. ///<returns>True if the quest is hidden</returns>
  251. bool IsHidden() { return m_hidden; }
  252. ///<summary>Sets the quest hidden flag</summary>
  253. ///<param name='val'>Value to set the hidden flag to</param>
  254. void SetHidden(bool val) { m_hidden = val; SetSaveNeeded(true); }
  255. ///<summary>Gets the step timer</summary>
  256. ///<returns>Unix timestamp (int32)</returns>
  257. int32 GetStepTimer() { return m_timestamp; }
  258. ///<summary>Sets the step timer</summary>
  259. ///<param name='duration'>How long to set the timer for, in seconds</param>
  260. void SetStepTimer(int32 duration);
  261. ///<summary>Sets the step that the timer is for</summary>
  262. ///<param name='step'>Step to set the timer for</param>
  263. void SetTimerStep(int32 step) { m_timerStep = step; }
  264. ///<summary>Gets the step that the timer is for</summary>
  265. int32 GetTimerStep() { return m_timerStep; }
  266. ///<summary>Adds a lua call back function for when the step fails</summary>
  267. ///<param name='step'>The step to add the call back for</param>
  268. ///<param name='action'>The lua callback function</param>
  269. void AddFailedAction(int32 step, string action);
  270. ///<summary>Fail the given step</summary>
  271. ///<param name='step'>The step to fail</param>
  272. void StepFailed(int32 step);
  273. ///<summary>Removes the given step from the quest</summary>
  274. ///<param name='step'>The step id to remove</param>
  275. ///<param name='client'>The client who has this quest</param>
  276. ///<returns>True if able to remove the quest</returns>
  277. bool RemoveQuestStep(int32 step, Client* client);
  278. int16 GetCompleteCount() { return m_completeCount; }
  279. void SetCompleteCount(int16 val) { m_completeCount = val; }
  280. void IncrementCompleteCount() { m_completeCount += 1; }
  281. void SetQuestTemporaryState(bool tempState, std::string customDescription = string(""));
  282. bool GetQuestTemporaryState() { return quest_state_temporary; }
  283. std::string GetQuestTemporaryDescription() { return quest_temporary_description; }
  284. protected:
  285. bool needs_save;
  286. Mutex MQuestSteps;
  287. Mutex MCompletedActions;
  288. Mutex MProgressActions;
  289. Mutex MFailedActions;
  290. bool turned_in;
  291. bool update_needed;
  292. bool deleted;
  293. bool has_sent_last_update;
  294. string completed_description;
  295. map<int32, string> complete_actions;
  296. map<int32, string> progress_actions;
  297. map<int32, string> failed_actions;
  298. int8 day; //only here to make our lives easier
  299. int8 month;
  300. int8 year;
  301. int8 visible;
  302. int32 id;
  303. string name;
  304. string type;
  305. string zone;
  306. int8 level;
  307. int8 enc_level;
  308. string description;
  309. string complete_action;
  310. Player* player;
  311. vector<QuestFactionPrereq> prereq_factions;
  312. int8 prereq_level;
  313. int8 prereq_tslevel;
  314. int8 prereq_max_level;
  315. int8 prereq_max_tslevel;
  316. vector<int16> prereq_model_types;
  317. vector<int8> prereq_races;
  318. vector<int8> prereq_classes;
  319. vector<int8> prereq_tradeskillclass;
  320. vector<int32> prereq_quests;
  321. vector<Item*> prereq_items;
  322. vector<Item*> reward_items;
  323. vector<Item*> selectable_reward_items;
  324. vector<Item*> tmp_reward_items;
  325. int64 reward_coins;
  326. int64 reward_coins_max;
  327. int32 tmp_reward_status;
  328. int64 tmp_reward_coins;
  329. int64 generated_coin;
  330. map<int32, sint32> reward_factions;
  331. int32 reward_status;
  332. string reward_comment;
  333. int32 reward_exp;
  334. int32 reward_tsexp;
  335. vector<QuestStep*> step_updates;
  336. vector<QuestStep*> step_failures;
  337. map<int32, QuestStep*> quest_step_map;
  338. map<QuestStep*, int32> quest_step_reverse_map;
  339. vector<QuestStep*> quest_steps;
  340. map<int16, string> task_group_order;
  341. int16 task_group_num;
  342. map<string, vector<QuestStep*> > task_group;
  343. int32 quest_giver;
  344. int32 return_id;
  345. int8 m_featherColor;
  346. bool m_repeatable;
  347. bool m_tracked;
  348. bool completed_flag;
  349. bool yellow_name;
  350. int32 m_questFlags;
  351. bool m_hidden;
  352. int32 m_timestamp; // timer for a quest step
  353. int32 m_timerStep; // used for the fail action when timer expires
  354. int16 m_completeCount;
  355. bool quest_state_temporary;
  356. std::string quest_temporary_description;
  357. };
  358. class MasterQuestList{
  359. public:
  360. MasterQuestList();
  361. Quest* GetQuest(int32 id, bool copyQuest = true){
  362. if(quests.count(id) > 0)
  363. {
  364. if(copyQuest)
  365. return new Quest(quests[id]);
  366. else
  367. return quests[id];
  368. }
  369. else
  370. return 0;
  371. }
  372. map<int32, Quest*>* GetQuests(){
  373. return &quests;
  374. }
  375. void AddQuest(int32 id, Quest* quest){
  376. quests[id] = quest;
  377. }
  378. void Reload();
  379. void LockQuests();
  380. void UnlockQuests();
  381. private:
  382. Mutex MQuests;
  383. map<int32, Quest*> quests;
  384. };
  385. #endif