SpellProcess.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  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 __EQ2_SPELL_PROCESS__
  17. #define __EQ2_SPELL_PROCESS__
  18. #include "client.h"
  19. #include "Spells.h"
  20. #include "zoneserver.h"
  21. #include "LuaInterface.h"
  22. #include "MutexMap.h"
  23. #include "MutexList.h"
  24. #include "World.h"
  25. #include "HeroicOp/HeroicOp.h"
  26. #define MODIFY_HEALTH 1
  27. #define MODIFY_FOCUS 2
  28. #define MODIFY_DEFENSE 3
  29. #define MODIFY_POWER 4
  30. #define MODIFY_SPEED 5
  31. #define MODIFY_INT 6
  32. #define MODIFY_WIS 7
  33. #define MODIFY_STR 8
  34. #define MODIFY_AGI 9
  35. #define MODIFY_STA 10
  36. #define MODIFY_COLD_RESIST 11
  37. #define MODIFY_HEAT_RESIST 12
  38. #define MODIFY_DISEASE_RESIST 13
  39. #define MODIFY_POISON_RESIST 14
  40. #define MODIFY_MAGIC_RESIST 15
  41. #define MODIFY_MENTAL_RESIST 16
  42. #define MODIFY_DIVINE_RESIST 17
  43. #define MODIFY_ATTACK 18
  44. #define MODIFY_MITIGATION 19
  45. #define MODIFY_AVOIDANCE 20
  46. #define MODIFY_CONCENTRATION 21
  47. #define MODIFY_EXP 22
  48. #define MODIFY_FACTION 23
  49. #define CHANGE_SIZE 24
  50. #define CHANGE_RACE 25
  51. #define CHANGE_LOCATION 26
  52. #define CHANGE_ZONE 27
  53. #define CHANGE_PREFIX_TITLE 28
  54. #define CHANGE_DEITY 29
  55. #define CHANGE_LAST_NAME 30
  56. #define MODIFY_HASTE 31
  57. #define MODIFY_SKILL 32
  58. #define CHANGE_TARGET 33
  59. #define CHANGE_LEVEL 34
  60. #define MODIFY_SPELL_CAST_TIME 35
  61. #define MODIFY_SPELL_POWER_REQ 36
  62. #define MODIFY_SPELL_HEALTH_REQ 37
  63. #define MODIFY_SPELL_RECOVERY 38
  64. #define MODIFY_SPELL_RECAST_TIME 39
  65. #define MODIFY_SPELL_RADIUS 40
  66. #define MODIFY_SPELL_AOE_TARGETS 41
  67. #define MODIFY_SPELL_RANGE 42
  68. #define MODIFY_SPELL_DURATION 43
  69. #define MODIFY_SPELL_RESISTIBILITY 44
  70. #define MODIFY_DAMAGE 45
  71. #define MODIFY_DELAY 46
  72. #define MODIFY_TRADESKILL_EXP 47
  73. #define ADD_MOUNT 48
  74. #define REMOVE_MOUNT 49
  75. #define MODIFY_SPELL_CRIT_CHANCE 50
  76. #define MODIFY_CRIT_CHANCE 51
  77. #define SUMMON_ITEM 52
  78. #define MODIFY_JUMP 53
  79. #define MODIFY_FALL_SPEED 54
  80. #define INFLICT_DAMAGE 55
  81. #define ADD_DOT 56
  82. #define REMOVE_DOT 57
  83. #define HEAL_TARGET 58
  84. #define HEAL_AOE 59
  85. #define INFLICT_AOE_DAMAGE 60
  86. #define HEAL_GROUP_AOE 61
  87. #define ADD_AOE_DOT 62
  88. #define REMOVE_AOE_DOT 63
  89. #define ADD_HOT 64
  90. #define REMOVE_HOT 65
  91. #define MODIFY_AGGRO_RANGE 66
  92. #define BLIND_TARGET 67
  93. #define UNBLIND_TARGET 68
  94. #define KILL_TARGET 69
  95. #define RESURRECT_TARGET 70
  96. #define CHANGE_SUFFIX_TITLE 71
  97. #define SUMMON_PET 72
  98. #define MODIFY_HATE 73
  99. #define ADD_REACTIVE_HEAL 74
  100. #define MODIFY_POWER_REGEN 75
  101. #define MODIFY_HP_REGEN 76
  102. #define FEIGN_DEATH 77
  103. #define MODIFY_VISION 78
  104. #define INVISIBILITY 79
  105. #define CHARM_TARGET 80
  106. #define MODIFY_TRADESKILL_DURABILITY 81
  107. #define MODIFY_TRADESKILL_PROGRESS 82
  108. #define ACTIVE_SPELL_NORMAL 0
  109. #define ACTIVE_SPELL_ADD 1
  110. #define ACTIVE_SPELL_REMOVE 2
  111. #define GET_VALUE_BAD_VALUE 0xFFFFFFFF
  112. struct InterruptStruct{
  113. Spawn* interrupted;
  114. Spawn* target;
  115. LuaSpell* spell;
  116. int16 error_code;
  117. };
  118. struct CastTimer{
  119. Client* caster;
  120. int32 target_id;
  121. EntityCommand* entity_command;
  122. LuaSpell* spell;
  123. Timer* timer;
  124. ZoneServer* zone;
  125. bool delete_timer;
  126. bool in_heroic_opp;
  127. };
  128. struct CastSpell{
  129. Entity* caster;
  130. Spawn* target;
  131. int32 spell_id;
  132. ZoneServer* zone;
  133. };
  134. struct RecastTimer{
  135. Entity* caster;
  136. Client* client;
  137. Spell* spell;
  138. Timer* timer;
  139. };
  140. /// <summary> Handles all spell casts for a zone, only 1 SpellProcess per zone </summary>
  141. class SpellProcess{
  142. public:
  143. SpellProcess();
  144. ~SpellProcess();
  145. /// <summary>Remove all spells from the SpellProcess </summary>
  146. void RemoveAllSpells();
  147. /// <summary>Main loop, handles everything (interupts, cast time, recast, ...) </summary>
  148. void Process();
  149. /// <summary>Interrupts the caster (creates the InterruptStruct and adds it to a list)</summary>
  150. /// <param name='caster'>Entity being interrupted</param>
  151. /// <param name='interruptor'>Spawn that interrupted the caster</param>
  152. /// <param name='error_code'>The error code</param>
  153. /// <param name='cancel'>Bool if the spell was cancelled not interrupted</param>
  154. void Interrupted(Entity* caster, Spawn* interruptor, int16 error_code, bool cancel = false, bool from_movement = false);
  155. /// <summary>Does all the checks and actually casts the spell</summary>
  156. /// <param name='zone'>The current ZoneServer</param>
  157. /// <param name='spell'>The Spell to cast</param>
  158. /// <param name='caster'>The Entity casting the spell</param>
  159. /// <param name='target'>The target(Spawn) of the spell</param>
  160. /// <param name='lock'>??? not currently used</param>
  161. /// <param name='harvest_spell'>Is this a harvest spell?</param>
  162. void ProcessSpell(ZoneServer* zone, Spell* spell, Entity* caster, Spawn* target = 0, bool lock = true, bool harvest_spell = false, LuaSpell* customSpell = 0, int16 custom_cast_time = 0, bool in_heroic_opp = false);
  163. /// <summary>Cast an EntityCommand (right click menu)</summary>
  164. /// <param name='zone'>The current ZoneServer</param>
  165. /// <param name='entity_command'>the EntityCommand to cast</param>
  166. /// <param name='caster'>The Entity casting the EntityCommand</param>
  167. /// <param name='target'>The target(Spawn*) of the EntityCommand</param>
  168. /// <param name='lock'>??? not currently used</param>
  169. void ProcessEntityCommand(ZoneServer* zone, EntityCommand* entity_command, Entity* caster, Spawn* target, bool lock = true, bool in_heroic_opp = false);
  170. /// <summary>Checks to see if the caster has enough power and takes it</summary>
  171. /// <param name='spell'>LuaSpell to check and take power for (LuaSpell contains the caster)</param>
  172. /// <returns>True if caster had enough power</returns>
  173. bool TakePower(LuaSpell* spell);
  174. /// <summary>Check to see if the caster has enough power to cast the spell</summary>
  175. /// <param name='spell'>LuaSpell to check (LuaSpell contains the caster)</param>
  176. /// <returns>True if the caster has enough power</returns>
  177. bool CheckPower(LuaSpell* spell);
  178. /// <summary>Check to see if the caster has enough hp and take it</summary>
  179. /// <param name='spell'>LuaSpell to check and take hp for (LuaSpell contains the caster)</param>
  180. /// <returns>True if the caster had enough hp</returns>
  181. bool TakeHP(LuaSpell* spell);
  182. /// <summary>Check to see if the caster has enough hp to cast the spell</summary>
  183. /// <param name='spell'>LuaSpell to check (LuaSpell contains the caster)</param>
  184. /// <returns>True if the caster had enough hp</returns>
  185. bool CheckHP(LuaSpell* spell);
  186. /// <summary>Check to see if the caster has enough concentration available to cast the spell</summary>
  187. /// <param name='spell'>LuaSpell to check (LuaSpell contains the caster)</param>
  188. /// <returns>True if the caster has enough concentration</returns>
  189. bool CheckConcentration(LuaSpell* spell);
  190. bool CheckSavagery(LuaSpell* spell);
  191. bool TakeSavagery(LuaSpell* spell);
  192. bool CheckDissonance(LuaSpell* spell);
  193. bool AddDissonance(LuaSpell* spell);
  194. /// <summary>Check to see if the caster has enough concentration available and add to the casters concentration</summary>
  195. /// <param name='spell'>LuaSpell to check (LuaSpell contains the caster)</param>
  196. /// <returns>True of the caster had enough concentration</returns>
  197. bool AddConcentration(LuaSpell* spell);
  198. /// <summary>Cast the spell, calls ProcessSpell for the given LuaSpell, as well as sends the messages for the spells and calls the casted on function in the targets spawn script</summary>
  199. /// <param name='spell'>LuaSpell to cast</param>
  200. /// <param name='passive'>Is this a passive spell being cast?</param>
  201. /// <returns>True if the spell was casted</returns>
  202. bool CastProcessedSpell(LuaSpell* spell, bool passive = false, bool in_heroic_opp = false);
  203. /// <summary>Cast the EntityCommand, calls ProcessEntityCommand for the given EntityCommand, as well as sends the messages for the command and calls the casted on function in the targets spawn script</summary>
  204. /// <param name='entity_command'>EntityCommand to cast</param>
  205. /// <param name='client'>Client casting the entity command</param>
  206. /// <returns>True if the spell was casted</returns>
  207. bool CastProcessedEntityCommand(EntityCommand* entity_command, Client* client, Spawn* target, bool in_heroic_opp = false);
  208. /// <summary>Sends the start cast packet for the given client</summary>
  209. /// <param name='spell'>LuaSpell being cast</param>
  210. /// <param name='client'>The client casting the spell</param>
  211. void SendStartCast(LuaSpell* spell, Client* client);
  212. /// <summary>Send finish cast packet and take power/hp or add conc, also checks for quest updates</summary>
  213. /// <param name='spell'>LuaSpell that just finished casting</param>
  214. /// <param name='client'>Client that just finished casting, null if not a player</param>
  215. void SendFinishedCast(LuaSpell* spell, Client* client);
  216. /// <summary>Locks all the spells for the given client (shades them all gray)</summary>
  217. /// <param name='client'>Client to lock the spells for</param>
  218. void LockAllSpells(Client* client);
  219. /// <summary>Unlock all the spells for the given client</summary>
  220. /// <param name='client'>Client to unlock the spells for</param>
  221. void UnlockAllSpells(Client* client, Spell* exception = 0);
  222. /// <summary>Unlock a single spell for the given client</summary>
  223. /// <param name='client'>The client to unlock the spell for</param>
  224. /// <param name='spell'>The spell to unlock</param>
  225. void UnlockSpell(Client* client, Spell* spell);
  226. /// <summary>Remove the given spell for the given caster from the SpellProcess</summary>
  227. /// <param name='caster'>The spawn to remove the spell for</param>
  228. /// <param name='spell'>The spell to remove</param>
  229. bool DeleteCasterSpell(Spawn* caster, Spell* spell, string reason = "");
  230. /// <summary>Remove the given spell from the ZpellProcess</summary>
  231. /// <param name='spell'>LuaSpell to remove</param>
  232. bool DeleteCasterSpell(LuaSpell* spell, string reason="");
  233. /// <summary>Interrupt the spell</summary>
  234. /// <param name='interrupt'>InterruptStruct that contains all the info</param>
  235. void CheckInterrupt(InterruptStruct* interrupt);
  236. /// <summary>Removes the timers for the given spawn</summary>
  237. /// <param name='spawn'>Spawn to remove the timers for</param>
  238. /// <param name='remove_all'>Remove all timers (cast, recast, active, queue, interrupted)? If false only cast timers are removed</param>
  239. void RemoveSpellTimersFromSpawn(Spawn* spawn, bool remove_all = false, bool delete_recast = true);
  240. /// <summary>Sets the recast timer for the spell </summary>
  241. /// <param name='spell'>The spell to set the recast for</param>
  242. /// <param name='caster'>The entity to set the recast for</param>
  243. /// <param name='timer_override'>Change the recast timer of the spell</param>
  244. /// <param name='check_linked_timers'>Set the recast on all other spells the player has with the same timer</param>
  245. void CheckRecast(Spell* spell, Entity* caster, float timer_override = 0, bool check_linked_timers = true);
  246. /// <summary>Add a spell to the queue for the player</summary>
  247. /// <param name='spell'>Spell to add</param>
  248. /// <param name='caster'>Entity's queue to add the spell to, if not a player function does nothing</param>
  249. void AddSpellToQueue(Spell* spell, Entity* caster);
  250. /// <summary>Removes a spell from the queue for the player</summary>
  251. /// <param name='spell'>Spell to remove from the queue</param>
  252. /// <param name='caster'>Entity's queue to remove the spell from, if not a player function does nothing</param>
  253. void RemoveSpellFromQueue(Spell* spell, Entity* caster);
  254. /// <summary>Clear the queue, or clear only hostile spells from the queue</summary>
  255. /// <param name='caster'>Entity to clear the queue for, if not player function does nothing</param>
  256. /// <param name='hostile_only'>Set to true to only remove hostile spells, default is false</param>
  257. void RemoveSpellFromQueue(Entity* caster, bool hostile_only = false);
  258. /// <summary>Clear the queue for the given caster</summary>
  259. /// <param name='caster'>Entity to clear the queue for, is not player function does nothing</param>
  260. void CheckSpellQueue(Entity* caster);
  261. /// <summary>Check the given enities queue for the spell, if found remove, if not found add</summary>
  262. /// <param name='spell'>Spell to check for</param>
  263. /// <param name='caster'>Entity's queue to check, if not player function does nothing</param>
  264. void CheckSpellQueue(Spell* spell, Entity* caster);
  265. /// <summary>Checks to see if the entity can cast the spell </summary>
  266. /// <param name='spell'>The spell being cast</param>
  267. /// <param name='caster'>The entity casting the spell </param>
  268. bool IsReady(Spell* spell, Entity* caster);
  269. /// <summary>Send the spell book update packet to the given client</summary>
  270. /// <param name='client'>Client to send the packet to</param>
  271. void SendSpellBookUpdate(Client* client);
  272. /// <summary>Gets the target of the currently casting spell for the given entity</summary>
  273. /// <param name='caster'>Entity whos spell we are checking</param>
  274. /// <returns>Spawn* - the spells target</returns>
  275. Spawn* GetSpellTarget(Entity* caster);
  276. /// <summary>Gets the currently casting spell for the given entity</summary>
  277. /// <param name='caster'>Entity to get the spell for</param>
  278. /// <returns>Spell* for the currently casting spell</returns>
  279. Spell* GetSpell(Entity* caster);
  280. /// <summary>Gets the currently casting LuaSpell for the given entity</summary>
  281. /// <param name='caster'>Entity to get the LuaSpell for</param>
  282. /// <returns>LuaSpell* for the currently casting spell</returns>
  283. LuaSpell* GetLuaSpell(Entity* caster);
  284. /// <summary>Gets the targets for the spell and adds them to the LuaSpell targets array</summary>
  285. /// <param name='luaspell'>LuaSpell to get the targets for</param>
  286. static void GetSpellTargets(LuaSpell* luaspell);
  287. static void GetPlayerGroupTargets(Player* target, Spawn* caster, LuaSpell* luaspell, bool bypassSpellChecks=false, bool bypassRangeChecks=false);
  288. /// <summary>Gets targets for a true aoe spell (not an encounter ae) and adds them to the LuaSpell targets array</summary>
  289. /// <param name='luaspell'>LuaSpell to get the targets for</param>
  290. static void GetSpellTargetsTrueAOE(LuaSpell* luaspell);
  291. /// <summary>Applies or removes passive spells, bypasses the spell queue and treats the spell as an insta cast spell</summary>
  292. /// <param name='spell'>The passive spell to apply or remove</param>
  293. /// <param name='caster'>The Entity to apply or remove the passive spell to</param>
  294. /// <param name='remove'>Tells the function to remove the spell effects of this passive, default is false</param>
  295. bool CastPassives(Spell* spell, Entity* caster, bool remove = false);
  296. bool CastInstant(Spell* spell, Entity* caster, Entity* target, bool remove = false, bool passive=false);
  297. /// <summary>Adds a spell script timer to the list</summary>
  298. /// <param name='timer'>Timer to add</param>
  299. void AddSpellScriptTimer(SpellScriptTimer* timer);
  300. /// <summary>Removes a spell script timer from the list</summary>
  301. /// <param name='timer'>Timer to remove</param>
  302. void RemoveSpellScriptTimer(SpellScriptTimer* timer, bool locked=false);
  303. void RemoveSpellScriptTimerBySpell(LuaSpell* spell, bool clearPendingDeletes=true);
  304. /// <summary>Checks the spell script timers</summary>
  305. void CheckSpellScriptTimers();
  306. /// <summary>Checks to see if the list has the spell</summary>
  307. bool SpellScriptTimersHasSpell(LuaSpell* spell);
  308. void ClearSpellScriptTimerList();
  309. MutexList<LuaSpell*>* GetActiveSpells() { return &active_spells; }
  310. void RemoveTargetFromSpell(LuaSpell* spell, Spawn* target);
  311. void CheckRemoveTargetFromSpell(LuaSpell* spell, bool allow_delete = true);
  312. /// <summary>Adds a solo HO to the SpellProcess</summary>
  313. /// <param name='client'>The client who is starting the HO</param>
  314. /// <param name='ho'>The HO that is being started</param>
  315. bool AddHO(Client* client, HeroicOP* ho);
  316. /// <summary>Adds a group HO to the SpellProcess</summary>
  317. /// <param name='group_id'>ID of the group that is starting the HO</param>
  318. /// <param name='ho'>The HO that is being started</param>
  319. bool AddHO(int32 group_id, HeroicOP* ho);
  320. /// <summary>Stops the HO that targets the given spawn</summary>
  321. /// <param name='spawn_id'>ID of the spawn targeted by the HO we want to stop</param>
  322. void KillHOBySpawnID(int32 spawn_id);
  323. void AddSpellCancel(LuaSpell* spell);
  324. void DeleteSpell(LuaSpell* spell);
  325. private:
  326. /// <summary>Sends the spell data to the lua script</summary>
  327. /// <param name='spell'>LuaSpell to call the lua script for</param>
  328. /// <param name='first_cast'>No clue, not currently used</param>
  329. /// <returns>True if the spell script was called successfully</returns>
  330. bool ProcessSpell(LuaSpell* spell, bool first_cast = true, const char* function = 0, SpellScriptTimer* timer = 0);
  331. Mutex MSpellProcess;
  332. MutexMap<Entity*,Spell*> spell_que;
  333. MutexList<LuaSpell*> active_spells;
  334. MutexList<CastTimer*> cast_timers;
  335. MutexList<InterruptStruct*>interrupt_list;
  336. MutexList<RecastTimer*> recast_timers;
  337. int32 last_checked_time;
  338. vector<SpellScriptTimer*> m_spellScriptList;
  339. Mutex MSpellScriptTimers;
  340. map<LuaSpell*, vector<int32>*> remove_target_list;
  341. Mutex MRemoveTargetList;
  342. vector<LuaSpell*> SpellCancelList;
  343. Mutex MSpellCancelList;
  344. Mutex MSoloHO;
  345. Mutex MGroupHO;
  346. map<Client*, HeroicOP*> m_soloHO;
  347. map<int32, HeroicOP*> m_groupHO;
  348. };
  349. #endif