Combat.cpp 46 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429
  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. #include "Combat.h"
  17. #include "client.h"
  18. #include "../common/ConfigReader.h"
  19. #include "classes.h"
  20. #include "../common/debug.h"
  21. #include "../common/Log.h"
  22. #include "zoneserver.h"
  23. #include "Skills.h"
  24. #include "classes.h"
  25. #include "World.h"
  26. #include "LuaInterface.h"
  27. #include "Rules/Rules.h"
  28. #include "SpellProcess.h"
  29. #include <math.h>
  30. extern Classes classes;
  31. extern ConfigReader configReader;
  32. extern MasterSkillList master_skill_list;
  33. extern RuleManager rule_manager;
  34. extern LuaInterface* lua_interface;
  35. /* ******************************************************************************
  36. DamageSpawn() - Damage equation
  37. MeleeAttack() - Melee auto attacks
  38. RangeAttack() - Range auto attacks
  39. DetermineHit() - ToHit chance as well as defender parry / dodge / block / riposte
  40. CheckInterruptSpell() - Interrupt equations
  41. No mitigation equations yet
  42. ****************************************************************************** */
  43. /* New Combat code */
  44. bool Entity::PrimaryWeaponReady() {
  45. //Can only be ready if no ranged timer
  46. if (GetPrimaryLastAttackTime() == 0 || (Timer::GetCurrentTime2() >= (GetPrimaryLastAttackTime() + GetPrimaryAttackDelay()))) {
  47. if (GetRangeLastAttackTime() == 0 || Timer::GetCurrentTime2() >= (GetRangeLastAttackTime() + GetRangeAttackDelay()))
  48. return true;
  49. }
  50. return false;
  51. }
  52. bool Entity::SecondaryWeaponReady() {
  53. //Can only be ready if no ranged timer
  54. // if(IsDualWield() && (GetPrimaryLastAttackTime()
  55. if (IsDualWield() && (GetSecondaryLastAttackTime() == 0 || (Timer::GetCurrentTime2() >= (GetSecondaryLastAttackTime() + GetSecondaryAttackDelay())))) {
  56. if(GetRangeLastAttackTime() == 0 || Timer::GetCurrentTime2() >= (GetRangeLastAttackTime() + GetRangeAttackDelay()))
  57. return true;
  58. }
  59. return false;
  60. }
  61. bool Entity::RangeWeaponReady() {
  62. //Ranged can only be ready if no other attack timers are active
  63. if(GetRangeLastAttackTime() == 0 || (Timer::GetCurrentTime2() >= (GetRangeLastAttackTime() + GetRangeAttackDelay()))) {
  64. if((GetPrimaryLastAttackTime() == 0 || (Timer::GetCurrentTime2() >= (GetPrimaryLastAttackTime() + GetPrimaryAttackDelay()))) && (GetSecondaryLastAttackTime() == 0 || Timer::GetCurrentTime2() >= (GetSecondaryLastAttackTime() + GetSecondaryAttackDelay()))){
  65. if(!IsPlayer() || ((Player*)this)->GetRangeAttack()) {
  66. return true;
  67. }
  68. }
  69. }
  70. return false;
  71. }
  72. bool Entity::AttackAllowed(Entity* target, float distance, bool range_attack) {
  73. Entity* attacker = this;
  74. Client* client = 0;
  75. if(!target || IsMezzedOrStunned() || IsDazed()) {
  76. LogWrite(COMBAT__DEBUG, 3, "AttackAllowed", "Failed to attack: no target, mezzed, stunned or dazed");
  77. return false;
  78. }
  79. if (IsPlayer())
  80. client = GetZone()->GetClientBySpawn(this);
  81. if (IsPet())
  82. attacker = ((NPC*)this)->GetOwner();
  83. if (target->IsNPC() && ((NPC*)target)->IsPet()){
  84. if (((NPC*)target)->GetOwner())
  85. target = ((NPC*)target)->GetOwner();
  86. }
  87. if (attacker == target) {
  88. LogWrite(COMBAT__DEBUG, 3, "AttackAllowed", "Failed to attack: attacker tried to attack himself or his pet.");
  89. return false;
  90. }
  91. if (IsPlayer() && target->GetAttackable() == 0) {
  92. LogWrite(COMBAT__DEBUG, 3, "AttackAllowed", "Failed to attack: target is not attackable");
  93. return false;
  94. }
  95. if (IsPlayer() && target->IsBot()) {
  96. LogWrite(COMBAT__DEBUG, 3, "AttackAllowed", "Failed to attack: players are not allowed to attack bots");
  97. return false;
  98. }
  99. if (attacker->IsPlayer() && target->IsPlayer())
  100. {
  101. bool pvp_allowed = rule_manager.GetGlobalRule(R_PVP, AllowPVP)->GetBool();
  102. if (!pvp_allowed) {
  103. LogWrite(COMBAT__DEBUG, 3, "AttackAllowed", "Failed to attack: pvp is not allowed");
  104. return false;
  105. }
  106. else
  107. {
  108. sint32 pvpLevelRange = rule_manager.GetGlobalRule(R_PVP, LevelRange)->GetSInt32();
  109. int32 attackerLevel = attacker->GetLevel();
  110. int32 defenderLevel = target->GetLevel();
  111. if ((sint32)abs((sint32)attackerLevel - (sint32)defenderLevel) > pvpLevelRange)
  112. {
  113. LogWrite(COMBAT__DEBUG, 3, "AttackAllowed", "Failed to attack: pvp range of %i exceeded abs(%i-%i).", pvpLevelRange, attackerLevel, defenderLevel);
  114. return false;
  115. }
  116. }
  117. }
  118. if (target->GetHP() <= 0) {
  119. LogWrite(COMBAT__DEBUG, 3, "AttackAllowed", "Failed to attack: target is dead");
  120. return false;
  121. }
  122. if(range_attack && distance != 0) {
  123. Item* weapon = 0;
  124. Item* ammo = 0;
  125. if(attacker->IsPlayer()) {
  126. weapon = ((Player*)attacker)->GetEquipmentList()->GetItem(EQ2_RANGE_SLOT);
  127. ammo = ((Player*)attacker)->GetEquipmentList()->GetItem(EQ2_AMMO_SLOT);
  128. }
  129. if(weapon && weapon->IsRanged() && ammo && ammo->IsAmmo() && ammo->IsThrown()) {
  130. // Distance is less then min weapon range
  131. if(distance < weapon->ranged_info->range_low) {
  132. if (client)
  133. client->SimpleMessage(CHANNEL_GENERAL_COMBAT, "Your target is too close! Move back!");
  134. LogWrite(COMBAT__DEBUG, 3, "AttackAllowed", "Failed to attack: range attack, target to close");
  135. return false;
  136. }
  137. // Distance is greater then max weapon range
  138. if (distance > (weapon->ranged_info->range_high + ammo->thrown_info->range)) {
  139. if (client)
  140. client->SimpleMessage(CHANNEL_GENERAL_COMBAT, "Your target is too far away! Move closer!");
  141. LogWrite(COMBAT__DEBUG, 3, "AttackAllowed", "Failed to attack: range attack, target is to far");
  142. return false;
  143. }
  144. }
  145. }
  146. else if (distance != 0) {
  147. if(distance >= rule_manager.GetGlobalRule(R_Combat, MaxCombatRange)->GetFloat()) {
  148. LogWrite(COMBAT__DEBUG, 3, "AttackAllowed", "Failed to attack: distance is beyond melee range");
  149. return false;
  150. }
  151. }
  152. LogWrite(MISC__TODO, 3, "TODO", "Add more AttackAllowed calculations\n\t(%s, function: %s, line #: %i)", __FILE__, __FUNCTION__, __LINE__);
  153. return true;
  154. }
  155. void Entity::MeleeAttack(Spawn* victim, float distance, bool primary, bool multi_attack) {
  156. if(!victim)
  157. return;
  158. int8 damage_type = 0;
  159. int32 min_damage = 0;
  160. int32 max_damage = 0;
  161. if(primary) {
  162. damage_type = GetPrimaryWeaponType();
  163. min_damage = GetPrimaryWeaponMinDamage();
  164. max_damage = GetPrimaryWeaponMaxDamage();
  165. }
  166. else {
  167. damage_type = GetSecondaryWeaponType();
  168. min_damage = GetSecondaryWeaponMinDamage();
  169. max_damage = GetSecondaryWeaponMaxDamage();
  170. }
  171. if (IsStealthed() || IsInvis())
  172. CancelAllStealth();
  173. int8 hit_result = DetermineHit(victim, damage_type, 0, false);
  174. if(hit_result == DAMAGE_PACKET_RESULT_SUCCESSFUL){
  175. /*if(GetAdventureClass() == MONK){
  176. max_damage*=3;
  177. crit_chance = GetLevel()/4+5;
  178. }
  179. else if(GetAdventureClass() == BRUISER){
  180. min_damage = GetLevel();
  181. max_damage*=3;
  182. crit_chance = GetLevel()/3+5;
  183. }
  184. if(rand()%100 <=crit_chance){
  185. max_damage*= 2;
  186. DamageSpawn((Entity*)victim, DAMAGE_PACKET_TYPE_SIMPLE_CRIT_DMG, damage_type, min_damage, max_damage, 0);
  187. }
  188. else*/
  189. DamageSpawn((Entity*)victim, DAMAGE_PACKET_TYPE_SIMPLE_DAMAGE, damage_type, min_damage, max_damage, 0);
  190. if (!multi_attack) {
  191. CheckProcs(PROC_TYPE_OFFENSIVE, victim);
  192. CheckProcs(PROC_TYPE_PHYSICAL_OFFENSIVE, victim);
  193. }
  194. }
  195. else{
  196. GetZone()->SendDamagePacket(this, victim, DAMAGE_PACKET_TYPE_SIMPLE_DAMAGE, hit_result, damage_type, 0, 0);
  197. if(hit_result == DAMAGE_PACKET_RESULT_RIPOSTE && victim->IsEntity())
  198. ((Entity*)victim)->MeleeAttack(this, distance, true);
  199. }
  200. //Multi Attack roll
  201. if(!multi_attack){
  202. float multi_attack = info_struct.multi_attack;
  203. if(multi_attack > 0){
  204. float chance = multi_attack;
  205. if (multi_attack > 100){
  206. int8 automatic_multi = (int8)floor((float)(multi_attack / 100));
  207. chance = (multi_attack - (floor((float) ((multi_attack / 100) * 100))));
  208. while(automatic_multi > 0){
  209. MeleeAttack(victim, 100, primary, true);
  210. automatic_multi--;
  211. }
  212. }
  213. if (MakeRandomFloat(0, 100) <= chance)
  214. MeleeAttack(victim, 100, primary, true);
  215. }
  216. }
  217. //Apply attack speed mods
  218. if(!multi_attack)
  219. SetAttackDelay(primary);
  220. if(victim->IsNPC() && victim->EngagedInCombat() == false) {
  221. ((NPC*)victim)->AddHate(this, 50);
  222. }
  223. if (victim->IsEntity() && victim->GetHP() > 0 && ((Entity*)victim)->HasPet()) {
  224. Entity* pet = 0;
  225. bool AddHate = false;
  226. if (victim->IsPlayer()) {
  227. if (((Player*)victim)->GetInfoStruct()->pet_behavior & 1)
  228. AddHate = true;
  229. }
  230. else
  231. AddHate = true;
  232. if (AddHate) {
  233. pet = ((Entity*)victim)->GetPet();
  234. if (pet)
  235. pet->AddHate(this, 1);
  236. pet = ((Entity*)victim)->GetCharmedPet();
  237. if (pet)
  238. pet->AddHate(this, 1);
  239. }
  240. }
  241. }
  242. void Entity::RangeAttack(Spawn* victim, float distance, Item* weapon, Item* ammo, bool multi_attack) {
  243. if(!victim)
  244. return;
  245. if(weapon && weapon->IsRanged() && ammo && ammo->IsAmmo() && ammo->IsThrown()) {
  246. if(weapon->ranged_info->range_low <= distance && (weapon->ranged_info->range_high + ammo->thrown_info->range) >= distance) {
  247. int8 hit_result = DetermineHit(victim, ammo->thrown_info->damage_type, ammo->thrown_info->hit_bonus, false);
  248. if(hit_result == DAMAGE_PACKET_RESULT_SUCCESSFUL) {
  249. DamageSpawn((Entity*)victim, DAMAGE_PACKET_TYPE_RANGE_DAMAGE, ammo->thrown_info->damage_type, weapon->ranged_info->weapon_info.damage_low3, weapon->ranged_info->weapon_info.damage_high3+ammo->thrown_info->damage_modifier, 0);
  250. if (!multi_attack) {
  251. CheckProcs(PROC_TYPE_OFFENSIVE, victim);
  252. CheckProcs(PROC_TYPE_PHYSICAL_OFFENSIVE, victim);
  253. }
  254. }
  255. else
  256. GetZone()->SendDamagePacket(this, victim, DAMAGE_PACKET_TYPE_RANGE_DAMAGE, hit_result, ammo->thrown_info->damage_type, 0, 0);
  257. // If is a player subtract ammo
  258. if (IsPlayer()) {
  259. if (ammo->details.count > 1) {
  260. ammo->details.count -= 1;
  261. ammo->save_needed = true;
  262. }
  263. else
  264. ((Player*)this)->equipment_list.RemoveItem(ammo->details.slot_id, true);
  265. Client* client = GetZone()->GetClientBySpawn(this);
  266. EQ2Packet* outapp = ((Player*)this)->GetEquipmentList()->serialize(client->GetVersion());
  267. if(outapp)
  268. client->QueuePacket(outapp);
  269. }
  270. if(victim->IsNPC() && victim->EngagedInCombat() == false) {
  271. ((NPC*)victim)->AddHate(this, 50);
  272. }
  273. if (victim->IsEntity() && victim->GetHP() > 0 && ((Entity*)victim)->HasPet()) {
  274. Entity* pet = 0;
  275. bool AddHate = false;
  276. if (victim->IsPlayer()) {
  277. if (((Player*)victim)->GetInfoStruct()->pet_behavior & 1)
  278. AddHate = true;
  279. }
  280. else
  281. AddHate = true;
  282. if (AddHate) {
  283. pet = ((Entity*)victim)->GetPet();
  284. if (pet)
  285. pet->AddHate(this, 1);
  286. pet = ((Entity*)victim)->GetCharmedPet();
  287. if (pet)
  288. pet->AddHate(this, 1);
  289. }
  290. }
  291. // Check Ranged attack proc
  292. CheckProcs(PROC_TYPE_RANGED_ATTACK, victim);
  293. // Check Ranged defence proc
  294. if (victim->IsEntity())
  295. ((Entity*)victim)->CheckProcs(PROC_TYPE_RANGED_DEFENSE, this);
  296. SetRangeLastAttackTime(Timer::GetCurrentTime2());
  297. }
  298. }
  299. //Multi Attack roll
  300. if(!multi_attack){
  301. float multi_attack = info_struct.multi_attack;
  302. if(multi_attack > 0){
  303. float chance = multi_attack;
  304. if (multi_attack > 100){
  305. int8 automatic_multi = (int8)floor((float)(multi_attack / 100));
  306. chance = (multi_attack - (floor((float)(multi_attack / 100) * 100)));
  307. while(automatic_multi > 0){
  308. RangeAttack(victim, 100, weapon, ammo, true);
  309. automatic_multi--;
  310. }
  311. }
  312. if (MakeRandomFloat(0, 100) <= chance)
  313. RangeAttack(victim, 100, weapon, ammo, true);
  314. }
  315. }
  316. //Apply attack speed mods
  317. if(!multi_attack)
  318. SetAttackDelay(false, true);
  319. }
  320. bool Entity::SpellAttack(Spawn* victim, float distance, LuaSpell* luaspell, int8 damage_type, int32 low_damage, int32 high_damage, int8 crit_mod, bool no_calcs){
  321. if(!victim || !luaspell || !luaspell->spell)
  322. return false;
  323. Spell* spell = luaspell->spell;
  324. float bonus = 0;
  325. Skill* skill = nullptr;
  326. if(spell->GetSpellData()->resistibility > 0)
  327. bonus -= (1 - spell->GetSpellData()->resistibility)*100;
  328. skill = master_skill_list.GetSkill(spell->GetSpellData()->mastery_skill);
  329. if(skill){
  330. skill = GetSkillByName(skill->name.data.c_str(), true);
  331. if(skill)
  332. bonus += skill->current_val / 25;
  333. }
  334. int8 hit_result = 0;
  335. bool is_tick = false; // if spell is already active, this is a tick
  336. if (GetZone()->GetSpellProcess()->GetActiveSpells()->count(luaspell)){
  337. hit_result = DAMAGE_PACKET_RESULT_SUCCESSFUL;
  338. is_tick = true;
  339. }
  340. else if(spell->GetSpellData()->type == SPELL_BOOK_TYPE_COMBAT_ART)
  341. hit_result = DetermineHit(victim, damage_type, 0, false);
  342. else
  343. hit_result = DetermineHit(victim, damage_type, 0, true);
  344. if(hit_result == DAMAGE_PACKET_RESULT_SUCCESSFUL) {
  345. luaspell->last_spellattack_hit = true;
  346. //If this spell is a tick and has already crit, force the tick to crit
  347. if(is_tick){
  348. if(luaspell->crit)
  349. crit_mod = 1;
  350. else
  351. crit_mod = 2;
  352. }
  353. if(DamageSpawn((Entity*)victim, DAMAGE_PACKET_TYPE_SPELL_DAMAGE, damage_type, low_damage, high_damage, spell->GetName(), crit_mod, is_tick, no_calcs) && !luaspell->crit)
  354. luaspell->crit = true;
  355. CheckProcs(PROC_TYPE_OFFENSIVE, victim);
  356. CheckProcs(PROC_TYPE_MAGICAL_OFFENSIVE, victim);
  357. if(spell->GetSpellData()->success_message.length() > 0){
  358. Client* client = nullptr;
  359. if(IsPlayer())
  360. client = GetZone()->GetClientBySpawn(this);
  361. if(client){
  362. string success_message = spell->GetSpellData()->success_message;
  363. if(success_message.find("%t") < 0xFFFFFFFF)
  364. success_message.replace(success_message.find("%t"), 2, victim->GetName());
  365. client->Message(CHANNEL_YOU_CAST, success_message.c_str());
  366. //commented out the following line as it was causing a duplicate message EmemJR 5/4/2019
  367. //GetZone()->SendDamagePacket(this, victim, DAMAGE_PACKET_TYPE_SPELL_DAMAGE, hit_result, damage_type, 0, spell->GetName());
  368. }
  369. }
  370. if(spell->GetSpellData()->effect_message.length() > 0){
  371. string effect_message = spell->GetSpellData()->effect_message;
  372. if(effect_message.find("%t") < 0xFFFFFFFF)
  373. effect_message.replace(effect_message.find("%t"), 2, victim->GetName());
  374. GetZone()->SimpleMessage(CHANNEL_SPELLS, effect_message.c_str(), victim, 50);
  375. }
  376. }
  377. else {
  378. if(hit_result == DAMAGE_PACKET_RESULT_RESIST)
  379. luaspell->resisted = true;
  380. if(victim->IsNPC())
  381. ((NPC*)victim)->AddHate(this, 5);
  382. luaspell->last_spellattack_hit = false;
  383. GetZone()->SendDamagePacket(this, victim, DAMAGE_PACKET_TYPE_SPELL_DAMAGE, hit_result, damage_type, 0, spell->GetName());
  384. }
  385. if(EngagedInCombat() == false)
  386. {
  387. LogWrite(MISC__TODO, 1, "TODO", "//It would probably be better to add a column to the spells table for 'starts autoattack'\nfile: %s, func: %s, Line: %i", __FILE__, __FUNCTION__, __LINE__);
  388. if(GetInfoStruct()->class1 == COMMONER ||
  389. GetInfoStruct()->class1 == FIGHTER ||
  390. GetInfoStruct()->class1 == WARRIOR ||
  391. GetInfoStruct()->class1 == GUARDIAN ||
  392. GetInfoStruct()->class1 == BERSERKER ||
  393. GetInfoStruct()->class1 == BRAWLER ||
  394. GetInfoStruct()->class1 == MONK ||
  395. GetInfoStruct()->class1 == BRUISER ||
  396. GetInfoStruct()->class1 == CRUSADER ||
  397. GetInfoStruct()->class1 == SHADOWKNIGHT ||
  398. GetInfoStruct()->class1 == PALADIN ||
  399. GetInfoStruct()->class1 == SCOUT ||
  400. GetInfoStruct()->class1 == ROGUE ||
  401. GetInfoStruct()->class1 == SWASHBUCKLER ||
  402. GetInfoStruct()->class1 == BRIGAND ||
  403. GetInfoStruct()->class1 == BARD ||
  404. GetInfoStruct()->class1 == TROUBADOR ||
  405. GetInfoStruct()->class1 == DIRGE ||
  406. GetInfoStruct()->class1 == PREDATOR ||
  407. GetInfoStruct()->class1 == RANGER ||
  408. GetInfoStruct()->class1 == ASSASSIN ||
  409. GetInfoStruct()->class1 == ANIMALIST ||
  410. GetInfoStruct()->class1 == BEASTLORD ||
  411. GetInfoStruct()->class1 == SHAPER ||
  412. GetInfoStruct()->class1 == CHANNELER) //note: it would probably be better to add a column to the spells table for "starts autoattack".
  413. {
  414. if (victim->IsNPC())
  415. ((NPC*)victim)->AddHate(this, 5);
  416. else
  417. InCombat(true);
  418. }
  419. }
  420. if (victim->IsEntity() && victim->GetHP() > 0 && ((Entity*)victim)->HasPet()) {
  421. Entity* pet = 0;
  422. bool AddHate = false;
  423. if (victim->IsPlayer()) {
  424. if (((Player*)victim)->GetInfoStruct()->pet_behavior & 1)
  425. AddHate = true;
  426. }
  427. else
  428. AddHate = true;
  429. if (AddHate) {
  430. pet = ((Entity*)victim)->GetPet();
  431. if (pet)
  432. pet->AddHate(this, 1);
  433. pet = ((Entity*)victim)->GetCharmedPet();
  434. if (pet)
  435. pet->AddHate(this, 1);
  436. }
  437. }
  438. return true;
  439. }
  440. bool Entity::ProcAttack(Spawn* victim, int8 damage_type, int32 low_damage, int32 high_damage, string name, string success_msg, string effect_msg) {
  441. int8 hit_result = DetermineHit(victim, damage_type, 0, true);
  442. if (hit_result == DAMAGE_PACKET_RESULT_SUCCESSFUL) {
  443. DamageSpawn((Entity*)victim, DAMAGE_PACKET_TYPE_SPELL_DAMAGE, damage_type, low_damage, high_damage, name.c_str());
  444. if (success_msg.length() > 0) {
  445. Client* client = 0;
  446. if(IsPlayer())
  447. client = GetZone()->GetClientBySpawn(this);
  448. if(client) {
  449. if(success_msg.find("%t") < 0xFFFFFFFF)
  450. success_msg.replace(success_msg.find("%t"), 2, victim->GetName());
  451. client->Message(CHANNEL_YOU_CAST, success_msg.c_str());
  452. }
  453. }
  454. if (effect_msg.length() > 0) {
  455. if(effect_msg.find("%t") < 0xFFFFFFFF)
  456. effect_msg.replace(effect_msg.find("%t"), 2, victim->GetName());
  457. GetZone()->SimpleMessage(CHANNEL_SPELLS, effect_msg.c_str(), victim, 50);
  458. }
  459. }
  460. else {
  461. if(victim->IsNPC())
  462. ((NPC*)victim)->AddHate(this, 5);
  463. GetZone()->SendDamagePacket(this, victim, DAMAGE_PACKET_TYPE_SPELL_DAMAGE, hit_result, damage_type, 0, name.c_str());
  464. }
  465. if (victim->IsEntity() && victim->GetHP() > 0 && ((Entity*)victim)->HasPet()) {
  466. Entity* pet = 0;
  467. bool AddHate = false;
  468. if (victim->IsPlayer()) {
  469. if (((Player*)victim)->GetInfoStruct()->pet_behavior & 1)
  470. AddHate = true;
  471. }
  472. else
  473. AddHate = true;
  474. if (AddHate) {
  475. pet = ((Entity*)victim)->GetPet();
  476. if (pet)
  477. pet->AddHate(this, 1);
  478. pet = ((Entity*)victim)->GetCharmedPet();
  479. if (pet)
  480. pet->AddHate(this, 1);
  481. }
  482. }
  483. return true;
  484. }
  485. bool Entity::SpellHeal(Spawn* target, float distance, LuaSpell* luaspell, string heal_type, int32 low_heal, int32 high_heal, int8 crit_mod, bool no_calcs, string custom_spell_name){
  486. if(!target || !luaspell || !luaspell->spell)
  487. return false;
  488. if (!target->Alive())
  489. return false;
  490. if (target->GetHP() == target->GetTotalHP())
  491. return true;
  492. int32 heal_amt = 0;
  493. bool crit = false;
  494. if(high_heal < low_heal)
  495. high_heal = low_heal;
  496. if(high_heal == low_heal)
  497. heal_amt = high_heal;
  498. else
  499. heal_amt = MakeRandomInt(low_heal, high_heal);
  500. if(!no_calcs){
  501. // if spell is already active, this is a tick
  502. bool is_tick = GetZone()->GetSpellProcess()->GetActiveSpells()->count(luaspell);
  503. //if is a tick and the spell has crit, force crit, else disable
  504. if(is_tick){
  505. if(luaspell->crit)
  506. crit_mod = 1;
  507. else
  508. crit_mod = 2;
  509. }
  510. if (heal_amt > 0){
  511. //int32 base_roll = heal_amt;
  512. //potency mod
  513. heal_amt *= (stats[ITEM_STAT_POTENCY] / 100 + 1);
  514. //primary stat mod, insert forula here when done
  515. //heal_amt += base_roll * (GetPrimaryStat()
  516. //Ability Modifier can only be up to half of base roll + potency and primary stat bonus
  517. heal_amt += (int32)min(info_struct.ability_modifier, (float)(heal_amt / 2));
  518. }
  519. if(!crit_mod || crit_mod == 1){
  520. if(crit_mod == 1)
  521. crit = true;
  522. else {
  523. // Crit Roll
  524. float chance = max((float)0, info_struct.crit_chance);
  525. crit = (MakeRandomFloat(0, 100) <= chance);
  526. }
  527. if(crit){
  528. //Apply total crit multiplier with crit bonus
  529. heal_amt *= (info_struct.crit_bonus / 100) + 1.3;
  530. if(luaspell->spell)
  531. luaspell->crit = true;
  532. }
  533. }
  534. }
  535. int16 type = 0;
  536. if (heal_type == "Heal") {
  537. if(crit)
  538. type = HEAL_PACKET_TYPE_CRIT_HEAL;
  539. else
  540. type = HEAL_PACKET_TYPE_SIMPLE_HEAL;
  541. //apply heal
  542. if (target->GetHP() + (sint32)heal_amt > target->GetTotalHP())
  543. heal_amt = target->GetTotalHP() - target->GetHP();
  544. target->SetHP(target->GetHP() + heal_amt);
  545. /*
  546. if (target->GetHP() + (sint32)heal_amt > target->GetTotalHP())
  547. target->SetHP(target->GetTotalHP());
  548. else
  549. target->SetHP(target->GetHP() + heal_amt);
  550. */
  551. }
  552. else if (heal_type == "Power"){
  553. if(crit)
  554. type = HEAL_PACKET_TYPE_CRIT_MANA;
  555. else
  556. type = HEAL_PACKET_TYPE_SIMPLE_MANA;
  557. //give power
  558. if (target->GetPower() + (sint32)heal_amt > target->GetTotalPower())
  559. heal_amt = target->GetTotalPower() - target->GetPower();
  560. target->SetPower(GetPower() + heal_amt);
  561. /*
  562. if (target->GetPower() + (sint32)heal_amt > target->GetTotalPower())
  563. target->SetPower(target->GetTotalPower());
  564. else
  565. target->SetPower(GetPower() + heal_amt);
  566. */
  567. }
  568. /*else if (heal_type == "Savagery"){
  569. if(crit)
  570. type = HEAL_PACKET_TYPE_CRIT_SAVAGERY;
  571. else
  572. type = HEAL_PACKET_TYPE_SAVAGERY;
  573. }
  574. else if (heal_type == "Repair"){
  575. if(crit)
  576. type = HEAL_PACKET_TYPE_CRIT_REPAIR;
  577. else
  578. type = HEAL_PACKET_TYPE_REPAIR;
  579. }*/
  580. else{ //default to heal if type cannot be determined
  581. if(crit)
  582. type = HEAL_PACKET_TYPE_CRIT_HEAL;
  583. else
  584. type = HEAL_PACKET_TYPE_SIMPLE_HEAL;
  585. if (target->GetHP() + (sint32)heal_amt > target->GetTotalHP())
  586. heal_amt = target->GetTotalHP() - target->GetHP();
  587. target->SetHP(target->GetHP() + heal_amt);
  588. /*
  589. if (target->GetHP() + (sint32)heal_amt > target->GetTotalHP())
  590. target->SetHP(target->GetTotalHP());
  591. else
  592. target->SetHP(target->GetHP() + heal_amt);
  593. */
  594. }
  595. target->GetZone()->TriggerCharSheetTimer();
  596. if (heal_amt > 0)
  597. GetZone()->SendHealPacket(this, target, type, heal_amt, custom_spell_name.length() > 0 ? (char*)custom_spell_name.c_str() : luaspell->spell->GetName());
  598. CheckProcs(PROC_TYPE_HEALING, target);
  599. CheckProcs(PROC_TYPE_BENEFICIAL, target);
  600. if (target->IsEntity()) {
  601. int32 hate_amt = heal_amt / 2;
  602. set<int32>::iterator itr;
  603. for (itr = ((Entity*)target)->HatedBy.begin(); itr != ((Entity*)target)->HatedBy.end(); itr++) {
  604. Spawn* spawn = GetZone()->GetSpawnByID(*itr);
  605. if (spawn && spawn->IsEntity()) {
  606. ((Entity*)spawn)->AddHate(this, hate_amt);
  607. }
  608. }
  609. }
  610. return true;
  611. }
  612. int8 Entity::DetermineHit(Spawn* victim, int8 damage_type, float ToHitBonus, bool spell){
  613. if(!victim) {
  614. return DAMAGE_PACKET_RESULT_MISS;
  615. }
  616. if(victim->GetInvulnerable()) {
  617. return DAMAGE_PACKET_RESULT_INVULNERABLE;
  618. }
  619. if(!victim->IsEntity() || (!spell && BehindTarget(victim))) {
  620. return DAMAGE_PACKET_RESULT_SUCCESSFUL;
  621. }
  622. float bonus = ToHitBonus;
  623. Skill* skill = GetSkillByWeaponType(damage_type, true);
  624. if (skill)
  625. bonus += skill->current_val / 25;
  626. if (victim->IsEntity())
  627. bonus -= ((Entity*)victim)->GetDamageTypeResistPercentage(damage_type);
  628. Entity* entity_victim = (Entity*)victim;
  629. float chance = 80 + bonus; //80% base chance that the victim will get hit (plus bonus)
  630. sint16 roll_chance = 100;
  631. if(skill)
  632. roll_chance -= skill->current_val / 25;
  633. if(!spell){ // melee or range attack
  634. skill = GetSkillByName("Offense", true); //add this skill for NPCs
  635. if(skill)
  636. roll_chance -= skill->current_val / 25;
  637. skill = entity_victim->GetSkillByName("Defense", true);
  638. if (skill)
  639. chance -= skill->current_val / 25;
  640. if(rand()%roll_chance >= (chance - entity_victim->GetAgi()/50)){
  641. entity_victim->CheckProcs(PROC_TYPE_EVADE, this);
  642. return DAMAGE_PACKET_RESULT_DODGE;//successfully dodged
  643. }
  644. if(rand() % roll_chance >= chance)
  645. return DAMAGE_PACKET_RESULT_MISS; //successfully avoided
  646. skill = entity_victim->GetSkillByName("Parry", true);
  647. if(skill){
  648. if(rand()%roll_chance >= (chance - 5 - skill->current_val/25)){ //successful parry
  649. if(rand()%100 <= 20) {
  650. entity_victim->CheckProcs(PROC_TYPE_RIPOSTE, this);
  651. return DAMAGE_PACKET_RESULT_RIPOSTE;
  652. }
  653. entity_victim->CheckProcs(PROC_TYPE_PARRY, this);
  654. return DAMAGE_PACKET_RESULT_PARRY;
  655. }
  656. }
  657. skill = entity_victim->GetSkillByName("Deflection", true);
  658. if(skill){
  659. if(rand()%100 >= (chance - skill->current_val/25)) { //successfully deflected
  660. return DAMAGE_PACKET_RESULT_DEFLECT;
  661. }
  662. }
  663. }
  664. else{
  665. skill = entity_victim->GetSkillByName("Spell Avoidance", true);
  666. if(skill)
  667. chance -= skill->current_val / 25;
  668. if(rand()%roll_chance >= chance) {
  669. return DAMAGE_PACKET_RESULT_RESIST; //successfully resisted
  670. }
  671. }
  672. return DAMAGE_PACKET_RESULT_SUCCESSFUL;
  673. }
  674. float Entity::GetDamageTypeResistPercentage(int8 damage_type) {
  675. float ret = 1;
  676. switch(damage_type) {
  677. case DAMAGE_PACKET_DAMAGE_TYPE_CRUSH:
  678. case DAMAGE_PACKET_DAMAGE_TYPE_PIERCE:
  679. case DAMAGE_PACKET_DAMAGE_TYPE_SLASH: {
  680. Skill* skill = GetSkillByName("Defense", true);
  681. if(skill)
  682. ret += skill->current_val / 25;
  683. if(IsNPC())
  684. LogWrite(COMBAT__DEBUG, 3, "Combat", "DamageType: Crush/Pierce/Slash (%i)", damage_type, ret);
  685. break;
  686. }
  687. case DAMAGE_PACKET_DAMAGE_TYPE_HEAT: {
  688. ret += GetInfoStruct()->heat / 50;
  689. LogWrite(COMBAT__DEBUG, 3, "Combat", "DamageType: Heat (%i), Amt: %.2f", damage_type, ret);
  690. break;
  691. }
  692. case DAMAGE_PACKET_DAMAGE_TYPE_COLD: {
  693. ret += GetInfoStruct()->cold / 50;
  694. LogWrite(COMBAT__DEBUG, 3, "Combat", "DamageType: Cold (%i), Amt: %.2f", damage_type, ret);
  695. break;
  696. }
  697. case DAMAGE_PACKET_DAMAGE_TYPE_MAGIC: {
  698. ret += GetInfoStruct()->magic / 50;
  699. LogWrite(COMBAT__DEBUG, 3, "Combat", "DamageType: Magic (%i), Amt: %.2f", damage_type, ret);
  700. break;
  701. }
  702. case DAMAGE_PACKET_DAMAGE_TYPE_MENTAL: {
  703. ret += GetInfoStruct()->mental / 50;
  704. LogWrite(COMBAT__DEBUG, 3, "Combat", "DamageType: Mental (%i), Amt: %.2f", damage_type, ret);
  705. break;
  706. }
  707. case DAMAGE_PACKET_DAMAGE_TYPE_DIVINE: {
  708. ret += GetInfoStruct()->divine / 50;
  709. LogWrite(COMBAT__DEBUG, 3, "Combat", "DamageType: Divine (%i), Amt: %.2f", damage_type, ret);
  710. break;
  711. }
  712. case DAMAGE_PACKET_DAMAGE_TYPE_DISEASE: {
  713. ret += GetInfoStruct()->disease / 50;
  714. LogWrite(COMBAT__DEBUG, 3, "Combat", "DamageType: Disease (%i), Amt: %.2f", damage_type, ret);
  715. break;
  716. }
  717. case DAMAGE_PACKET_DAMAGE_TYPE_POISON: {
  718. ret += GetInfoStruct()->poison / 50;
  719. LogWrite(COMBAT__DEBUG, 3, "Combat", "DamageType: Poison (%i), Amt: %.2f", damage_type, ret);
  720. break;
  721. }
  722. }
  723. return ret;
  724. }
  725. Skill* Entity::GetSkillByWeaponType(int8 type, bool update) {
  726. switch(type) {
  727. case DAMAGE_PACKET_DAMAGE_TYPE_SLASH: // slash
  728. return GetSkillByName("Slashing", update);
  729. case DAMAGE_PACKET_DAMAGE_TYPE_CRUSH: // crush
  730. return GetSkillByName("Crushing", update);
  731. case DAMAGE_PACKET_DAMAGE_TYPE_PIERCE: // pierce
  732. return GetSkillByName("Piercing", update);
  733. case DAMAGE_PACKET_DAMAGE_TYPE_HEAT:
  734. case DAMAGE_PACKET_DAMAGE_TYPE_COLD:
  735. case DAMAGE_PACKET_DAMAGE_TYPE_MAGIC:
  736. case DAMAGE_PACKET_DAMAGE_TYPE_MENTAL:
  737. case DAMAGE_PACKET_DAMAGE_TYPE_DIVINE:
  738. case DAMAGE_PACKET_DAMAGE_TYPE_DISEASE:
  739. case DAMAGE_PACKET_DAMAGE_TYPE_POISON:
  740. return GetSkillByName("Disruption", update);
  741. }
  742. return 0;
  743. }
  744. bool Entity::DamageSpawn(Entity* victim, int8 type, int8 damage_type, int32 low_damage, int32 high_damage, const char* spell_name, int8 crit_mod, bool is_tick, bool no_calcs, bool ignore_attacker) {
  745. if(!victim || victim->GetHP() == 0)
  746. return false;
  747. int8 hit_result = 0;
  748. int16 blow_type = 0;
  749. sint32 damage = 0;
  750. bool crit = false;
  751. if(low_damage > high_damage)
  752. high_damage = low_damage;
  753. if(low_damage == high_damage)
  754. damage = low_damage;
  755. else
  756. damage = MakeRandomInt(low_damage, high_damage);
  757. if(!no_calcs) {
  758. //this can be simplified by taking out the / 2, but I wanted the damage to be more consistent
  759. //damage = (rand()%((int)(high_damage/2-low_damage/2) + low_damage/2)) + (rand()%((int)(high_damage/2-low_damage/2) + low_damage/2));
  760. //damage = (rand()%((int)(high_damage-low_damage) + low_damage)) + (rand()%((int)(high_damage-low_damage) + low_damage));
  761. //DPS mod is only applied to auto attacks
  762. if (type == DAMAGE_PACKET_TYPE_SIMPLE_DAMAGE || type == DAMAGE_PACKET_TYPE_RANGE_DAMAGE ) {
  763. damage *= (info_struct.dps_multiplier);
  764. }
  765. //Potency and ability mod is only applied to spells/CAs
  766. else {
  767. // Potency mod
  768. damage *= ((stats[ITEM_STAT_POTENCY] / 100) + 1);
  769. // Ability mod can only give up to half of damage after potency
  770. int32 mod = (int32)min(info_struct.ability_modifier, (float)(damage / 2));
  771. damage += mod;
  772. }
  773. if(!crit_mod || crit_mod == 1){
  774. //force crit if crit_mod == 1
  775. if(crit_mod == 1)
  776. crit = true;
  777. // Crit Roll
  778. else {
  779. float chance = max((float)0, (info_struct.crit_chance - victim->stats[ITEM_STAT_CRITAVOIDANCE]));
  780. if (MakeRandomFloat(0, 100) <= chance)
  781. crit = true;
  782. }
  783. if(crit){
  784. //Apply total crit multiplier with crit bonus
  785. if(info_struct.crit_bonus > 0)
  786. damage *= (1.3 + (info_struct.crit_bonus / 100));
  787. else
  788. damage *= 1.3;
  789. // Change packet type to crit
  790. if (type == DAMAGE_PACKET_TYPE_SIMPLE_DAMAGE)
  791. type = DAMAGE_PACKET_TYPE_SIMPLE_CRIT_DMG;
  792. else if (type == DAMAGE_PACKET_TYPE_SPELL_DAMAGE)
  793. type = DAMAGE_PACKET_TYPE_SPELL_CRIT_DMG;
  794. }
  795. }
  796. // TODO: Mitigation equation from http://www.guildportal.com/Guild.aspx?GuildID=20881&TabID=189653&ForumID=95908&TopicID=9024250
  797. }
  798. LogWrite(MISC__TODO, 3, "TODO", "Take players armor into account\nfile: %s, func: %s, line: %i)", __FILE__, __FUNCTION__, __LINE__);
  799. bool useWards = false;
  800. if(damage <= 0){
  801. hit_result = DAMAGE_PACKET_RESULT_NO_DAMAGE;
  802. damage = 0;
  803. }
  804. else{
  805. hit_result = DAMAGE_PACKET_RESULT_SUCCESSFUL;
  806. GetZone()->CallSpawnScript(victim, SPAWN_SCRIPT_HEALTHCHANGED, this);
  807. int32 prevDmg = damage;
  808. damage = victim->CheckWards(this, damage, damage_type);
  809. if (damage < prevDmg)
  810. useWards = true;
  811. victim->TakeDamage(damage);
  812. victim->CheckProcs(PROC_TYPE_DAMAGED, this);
  813. if (IsPlayer()) {
  814. switch (damage_type) {
  815. case DAMAGE_PACKET_DAMAGE_TYPE_SLASH:
  816. case DAMAGE_PACKET_DAMAGE_TYPE_CRUSH:
  817. case DAMAGE_PACKET_DAMAGE_TYPE_PIERCE:
  818. if (((Player*)this)->GetPlayerStatisticValue(STAT_PLAYER_HIGHEST_MELEE_HIT) < damage)
  819. ((Player*)this)->UpdatePlayerStatistic(STAT_PLAYER_HIGHEST_MELEE_HIT, damage, true);
  820. victim->CheckProcs(PROC_TYPE_DAMAGED_MELEE, this);
  821. break;
  822. case DAMAGE_PACKET_DAMAGE_TYPE_HEAT:
  823. case DAMAGE_PACKET_DAMAGE_TYPE_COLD:
  824. case DAMAGE_PACKET_DAMAGE_TYPE_MAGIC:
  825. case DAMAGE_PACKET_DAMAGE_TYPE_MENTAL:
  826. case DAMAGE_PACKET_DAMAGE_TYPE_DIVINE:
  827. case DAMAGE_PACKET_DAMAGE_TYPE_DISEASE:
  828. case DAMAGE_PACKET_DAMAGE_TYPE_POISON:
  829. if (((Player*)this)->GetPlayerStatisticValue(STAT_PLAYER_HIGHEST_MAGIC_HIT) < damage)
  830. ((Player*)this)->UpdatePlayerStatistic(STAT_PLAYER_HIGHEST_MAGIC_HIT, damage, true);
  831. victim->CheckProcs(PROC_TYPE_DAMAGED_MAGIC, this);
  832. break;
  833. }
  834. }
  835. }
  836. if(victim->IsNPC() && victim->GetHP() > 0)
  837. ((Entity*)victim)->AddHate(this, damage);
  838. Entity* attacker = nullptr;
  839. if(!ignore_attacker)
  840. attacker = this;
  841. if (damage > 0) {
  842. GetZone()->SendDamagePacket(attacker, victim, type, hit_result, damage_type, damage, spell_name);
  843. if (IsStealthed() || IsInvis())
  844. CancelAllStealth();
  845. if (victim->IsEntity())
  846. ((Entity*)victim)->CheckInterruptSpell(this);
  847. }
  848. else if (useWards)
  849. {
  850. GetZone()->SendDamagePacket(attacker, victim, DAMAGE_PACKET_TYPE_SIMPLE_DAMAGE, DAMAGE_PACKET_RESULT_NO_DAMAGE, damage_type, 0, spell_name);
  851. }
  852. if (victim->GetHP() <= 0)
  853. KillSpawn(victim, damage_type, blow_type);
  854. else {
  855. victim->CheckProcs(PROC_TYPE_DEFENSIVE, this);
  856. if (spell_name)
  857. victim->CheckProcs(PROC_TYPE_MAGICAL_DEFENSIVE, this);
  858. else
  859. victim->CheckProcs(PROC_TYPE_PHYSICAL_DEFENSIVE, this);
  860. }
  861. return crit;
  862. }
  863. void Entity::AddHate(Entity* attacker, sint32 hate) {
  864. if(!attacker || GetHP() <= 0 || attacker->GetHP() <= 0)
  865. return;
  866. // If a players pet and protect self is off
  867. if (IsPet() && ((NPC*)this)->GetOwner()->IsPlayer() && ((((Player*)((NPC*)this)->GetOwner())->GetInfoStruct()->pet_behavior & 2) == 0))
  868. return;
  869. if (IsNPC()) {
  870. LogWrite(COMBAT__DEBUG, 3, "Combat", "Add NPC_AI Hate: Victim '%s', Attacker '%s', Hate: %i", GetName(), attacker->GetName(), hate);
  871. ((NPC*)this)->Brain()->AddHate(attacker, hate);
  872. // if encounter size is 0 then add the attacker to the encounter
  873. if (((NPC*)this)->Brain()->GetEncounterSize() == 0)
  874. ((NPC*)this)->Brain()->AddToEncounter(attacker);
  875. }
  876. if (attacker->GetThreatTransfer() && hate > 0) {
  877. Spawn* transfer_target = (Entity*)GetZone()->GetSpawnByID(attacker->GetThreatTransfer()->Target);
  878. if (transfer_target && transfer_target->IsEntity()) {
  879. sint32 transfered_hate = hate * (attacker->GetThreatTransfer()->Amount / 100);
  880. hate -= transfered_hate;
  881. this->AddHate((Entity*)transfer_target, transfered_hate);
  882. }
  883. }
  884. // If pet is adding hate add some to the pets owner as well
  885. if (attacker->IsNPC() && ((NPC*)attacker)->IsPet())
  886. AddHate(((NPC*)attacker)->GetOwner(), 1);
  887. // If player and player has a pet and protect master is set add hate to the pet
  888. if (IsPlayer() && HasPet() && (((Player*)this)->GetInfoStruct()->pet_behavior & 1)) {
  889. // If we have a combat pet add hate to it
  890. if (((Player*)this)->GetPet())
  891. AddHate(((Player*)this)->GetPet(), 1);
  892. if (((Player*)this)->GetCharmedPet())
  893. AddHate(((Player*)this)->GetCharmedPet(), 1);
  894. }
  895. // If this spawn has a spawn group then add the attacker to the hate list of the other
  896. // group members if not already in their list
  897. if (HasSpawnGroup()) {
  898. vector<Spawn*>* group = GetSpawnGroup();
  899. vector<Spawn*>::iterator itr;
  900. for (itr = group->begin(); itr != group->end(); itr++) {
  901. if (!(*itr)->IsNPC())
  902. continue;
  903. NPC* spawn = (NPC*)(*itr);
  904. if (spawn->Brain()->GetHate(attacker) == 0)
  905. spawn->Brain()->AddHate(attacker, 1);
  906. }
  907. safe_delete(group);
  908. }
  909. }
  910. bool Entity::CheckInterruptSpell(Entity* attacker) {
  911. if(!IsCasting())
  912. return false;
  913. Spell* spell = GetZone()->GetSpell(this);
  914. if(!spell || spell->GetSpellData()->interruptable == 0)
  915. return false;
  916. //originally base of 30 percent chance to continue casting if attacked
  917. //modified to 50% and added global rule, 30% was too small at starting levels
  918. int8 percent = rule_manager.GetGlobalRule(R_Spells, NoInterruptBaseChance)->GetInt32();
  919. Skill* skill = GetSkillByName("Focus", true);
  920. if(skill)
  921. percent += ((skill->current_val + 1)/6);
  922. if(MakeRandomInt(1, 100) > percent) {
  923. LogWrite(COMBAT__DEBUG, 0, "Combat", "'%s' interrupted spell for '%s': %i%%", attacker->GetName(), GetName(), percent);
  924. GetZone()->Interrupted(this, attacker, SPELL_ERROR_INTERRUPTED);
  925. return true;
  926. }
  927. LogWrite(COMBAT__DEBUG, 0, "Combat", "'%s' failed to interrupt spell for '%s': %i%%", attacker->GetName(), GetName(), percent);
  928. return false;
  929. }
  930. void Entity::KillSpawn(Spawn* dead, int8 damage_type, int16 kill_blow_type) {
  931. if(!dead)
  932. return;
  933. if (IsPlayer()) {
  934. Client* client = GetZone()->GetClientBySpawn(this);
  935. PacketStruct* packet = configReader.getStruct("WS_EnterCombat", client->GetVersion());
  936. if (packet) {
  937. client->QueuePacket(packet->serialize());
  938. }
  939. safe_delete(packet);
  940. ((Player*)this)->InCombat(false);
  941. }
  942. if (IsPlayer() && dead->IsEntity())
  943. GetZone()->GetSpellProcess()->KillHOBySpawnID(dead->GetID());
  944. //if (dead->IsEntity()) same code called in zone server
  945. //((Entity*)dead)->InCombat(false);
  946. /* just for sake of not knowing if we are in a read lock, write lock, or no lock
  947. ** say spawnlist is locked (DismissPet arg 3 true), which means RemoveSpawn will remove the id from the spawn_list outside of the potential lock
  948. */
  949. if (dead->IsPet())
  950. ((NPC*)dead)->GetOwner()->DismissPet((NPC*)dead, true, true);
  951. else if (dead->IsEntity()) {
  952. // remove all pets for this entity
  953. ((Entity*)dead)->DismissPet((NPC*)((Entity*)dead)->GetPet(), false, true);
  954. ((Entity*)dead)->DismissPet((NPC*)((Entity*)dead)->GetCharmedPet(), false, true);
  955. ((Entity*)dead)->DismissPet((NPC*)((Entity*)dead)->GetDeityPet(), false, true);
  956. ((Entity*)dead)->DismissPet((NPC*)((Entity*)dead)->GetCosmeticPet(), false, true);
  957. }
  958. // If not in combat and no one in the encounter list add this killer to the list
  959. if(dead->EngagedInCombat() == false && dead->IsNPC() && ((NPC*)dead)->Brain()->GetEncounterSize() == 0)
  960. ((NPC*)dead)->Brain()->AddToEncounter(this);
  961. if (IsCasting())
  962. GetZone()->Interrupted(this, dead, SPELL_ERROR_NOT_ALIVE);
  963. LogWrite(COMBAT__DEBUG, 3, "Combat", "Killing '%s'", dead->GetName());
  964. // Kill movement for the dead npc so the corpse doesn't move
  965. GetZone()->movementMgr->StopNavigation((Entity*)dead);
  966. dead->ClearRunningLocations();
  967. dead->CalculateRunningLocation(true);
  968. GetZone()->KillSpawn(true, dead, this, true, damage_type, kill_blow_type);
  969. }
  970. void Entity::ProcessCombat() {
  971. // This is a virtual function so when a NPC calls this it will use the NPC::ProcessCombat() version
  972. // and a player will use the Player::ProcessCombat() version, leave this function blank.
  973. }
  974. void NPC::ProcessCombat() {
  975. MBrain.writelock(__FUNCTION__, __LINE__);
  976. // Check to see if it is time to call the AI again
  977. if (GetHP() > 0 && Timer::GetCurrentTime2() >= (m_brain->LastTick() + m_brain->Tick())) {
  978. // Probably never want to use the following log, will spam the console for every NPC in a zone 4 times a second
  979. //LogWrite(NPC_AI__DEBUG, 9, "NPC_AI", "%s is thinking...", GetName());
  980. m_brain->Think();
  981. // Set the time for when the brain was last called
  982. m_brain->SetLastTick(Timer::GetCurrentTime2());
  983. }
  984. MBrain.releasewritelock(__FUNCTION__, __LINE__);
  985. }
  986. void Player::ProcessCombat() {
  987. // if not in combat OR casting a spell OR dazed OR feared return out
  988. if (!EngagedInCombat() || IsCasting() || IsDazed() || IsFeared())
  989. return;
  990. //If no target delete combat_target and return out
  991. Spawn* Target = GetZone()->GetSpawnByID(target);
  992. if (!Target) {
  993. combat_target = 0;
  994. if (target > 0) {
  995. SetTarget(0);
  996. }
  997. return;
  998. }
  999. // If is not an entity return out
  1000. if (!Target->IsEntity())
  1001. return;
  1002. // Reset combat target
  1003. combat_target = 0;
  1004. if (Target->HasTarget()) {
  1005. if (Target->IsPlayer() || (Target->IsNPC() && Target->IsPet() && ((NPC*)Target)->GetOwner()->IsPlayer())){
  1006. Spawn* secondary_target = Target->GetTarget();
  1007. if (secondary_target->IsNPC() && secondary_target->appearance.attackable) {
  1008. if (!secondary_target->IsPet() || (secondary_target->IsPet() && ((NPC*)secondary_target)->GetOwner()->IsNPC())) {
  1009. combat_target = secondary_target;
  1010. }
  1011. }
  1012. }
  1013. }
  1014. // If combat_target wasn't set in the above if set it to the original target
  1015. if (!combat_target)
  1016. combat_target = Target;
  1017. // this if may not be required as at the min combat_target will be Target, which we already check at the begining
  1018. if(!combat_target)
  1019. return;
  1020. float distance = 0;
  1021. distance = GetDistance(combat_target);
  1022. // Check to see if we are doing ranged auto attacks if not check to see if we are in melee range
  1023. if (GetRangeAttack()) {
  1024. // We are doing ranged auto attacks
  1025. //check to see if we can attack the target AND the ranged weapon is ready
  1026. if(AttackAllowed((Entity*)combat_target, distance, true) && RangeWeaponReady()) {
  1027. Item* weapon = 0;
  1028. Item* ammo = 0;
  1029. // Get the currently equiped weapon and ammo for the ranged attack
  1030. weapon = GetEquipmentList()->GetItem(EQ2_RANGE_SLOT);
  1031. ammo = GetEquipmentList()->GetItem(EQ2_AMMO_SLOT);
  1032. LogWrite(COMBAT__DEBUG, 1, "Combat", "Weapon '%s', Ammo '%s'", ( weapon )? weapon->name.c_str() : "None", ( ammo ) ? ammo->name.c_str() : "None");
  1033. // If weapon and ammo are both valid perform the ranged attack else send a message to the client
  1034. if(weapon && ammo) {
  1035. LogWrite(COMBAT__DEBUG, 1, "Combat", "Weapon: Primary, Fighter: '%s', Target: '%s', Distance: %.2f", GetName(), combat_target->GetName(), distance);
  1036. RangeAttack(combat_target, distance, weapon, ammo);
  1037. }
  1038. else {
  1039. Client* client = GetZone()->GetClientBySpawn(this);
  1040. if (client) {
  1041. // Need to get messages from live, made these up so the player knows what is wrong in game if weapon or ammo are not valid
  1042. if (!ammo)
  1043. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "Out of ammo.");
  1044. if (!weapon)
  1045. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "No ranged weapon found.");
  1046. }
  1047. }
  1048. }
  1049. }
  1050. else if(distance <= rule_manager.GetGlobalRule(R_Combat, MaxCombatRange)->GetFloat()) {
  1051. // We are doing melee auto attacks and are within range
  1052. // Check to see if we can attack the target
  1053. if(AttackAllowed((Entity*)combat_target)) {
  1054. // Check to see if the primary melee weapon is ready
  1055. if(PrimaryWeaponReady()) {
  1056. // Set the time of the last melee attack with the primary weapon and perform the melee attack with primary weapon
  1057. SetPrimaryLastAttackTime(Timer::GetCurrentTime2());
  1058. MeleeAttack(combat_target, distance, true);
  1059. }
  1060. // Check to see if the secondary weapon is ready
  1061. if(SecondaryWeaponReady()) {
  1062. // set the time of the last melee attack with the secondary weapon and perform the melee attack with the secondary weapon
  1063. SetSecondaryLastAttackTime(Timer::GetCurrentTime2());
  1064. MeleeAttack(combat_target, distance, false);
  1065. }
  1066. }
  1067. }
  1068. }
  1069. void Entity::SetAttackDelay(bool primary, bool ranged) {
  1070. float mod = CalculateAttackSpeedMod();
  1071. bool dual_wield = IsDualWield();
  1072. //Note: Capping all attack speed increases at 125% normal speed (from function CalculateAttackSpeedMod())
  1073. //Add 33% longer delay if dual wielding
  1074. if(dual_wield && ! ranged) {
  1075. if(primary)
  1076. SetPrimaryAttackDelay((GetPrimaryWeaponDelay() * 1.33) / mod);
  1077. else
  1078. SetSecondaryAttackDelay((GetSecondaryWeaponDelay() * 1.33) / mod);
  1079. }
  1080. else {
  1081. if(primary)
  1082. SetPrimaryAttackDelay(GetPrimaryWeaponDelay() / mod);
  1083. else if(ranged)
  1084. SetRangeAttackDelay(GetRangeWeaponDelay() / mod);
  1085. else
  1086. SetSecondaryAttackDelay(GetSecondaryWeaponDelay() / mod);
  1087. }
  1088. }
  1089. float Entity::CalculateAttackSpeedMod(){
  1090. float aspeed = info_struct.attackspeed;
  1091. if(aspeed > 0) {
  1092. if (aspeed <= 100)
  1093. return (aspeed / 100 + 1);
  1094. else if (aspeed <= 200)
  1095. return 2.25;
  1096. }
  1097. return 1;
  1098. }
  1099. void Entity::AddProc(int8 type, float chance, Item* item, LuaSpell* spell) {
  1100. if (type == 0) {
  1101. LogWrite(COMBAT__ERROR, 0, "Proc", "Entity::AddProc called with an invalid type.");
  1102. return;
  1103. }
  1104. if (!item && !spell) {
  1105. LogWrite(COMBAT__ERROR, 0, "Proc", "Entity::AddProc must have a valid item or spell.");
  1106. return;
  1107. }
  1108. MProcList.writelock(__FUNCTION__, __LINE__);
  1109. Proc* proc = new Proc();
  1110. proc->chance = chance;
  1111. proc->item = item;
  1112. proc->spell = spell;
  1113. proc->spellid = spell->spell->GetSpellID();
  1114. m_procList[type].push_back(proc);
  1115. MProcList.releasewritelock(__FUNCTION__, __LINE__);
  1116. }
  1117. void Entity::RemoveProc(Item* item, LuaSpell* spell) {
  1118. if (!item && !spell) {
  1119. LogWrite(COMBAT__ERROR, 0, "Proc", "Entity::RemoveProc must have a valid item or spell.");
  1120. return;
  1121. }
  1122. MProcList.writelock(__FUNCTION__, __LINE__);
  1123. map<int8, vector<Proc*> >::iterator proc_itr;
  1124. vector<Proc*>::iterator itr;
  1125. for (proc_itr = m_procList.begin(); proc_itr != m_procList.end(); proc_itr++) {
  1126. itr = proc_itr->second.begin();
  1127. while (itr != proc_itr->second.end()) {
  1128. Proc* proc = *itr;
  1129. if ((item && proc->item == item) || (spell && proc->spell == spell)) {
  1130. itr = proc_itr->second.erase(itr);
  1131. safe_delete(proc);
  1132. }
  1133. else
  1134. itr++;
  1135. }
  1136. }
  1137. MProcList.releasewritelock(__FUNCTION__, __LINE__);
  1138. }
  1139. bool Entity::CastProc(Proc* proc, int8 type, Spawn* target) {
  1140. lua_State* state = 0;
  1141. bool item_proc = false;
  1142. int8 num_args = 3;
  1143. if (proc->spell) {
  1144. state = proc->spell->state;
  1145. }
  1146. else if (proc->item) {
  1147. state = lua_interface->GetItemScript(proc->item->GetItemScript());
  1148. item_proc = true;
  1149. }
  1150. if (!state) {
  1151. LogWrite(COMBAT__ERROR, 0, "Proc", "No valid lua_State* found");
  1152. return false;
  1153. }
  1154. lua_getglobal(state, "proc");
  1155. if (item_proc) {
  1156. num_args++;
  1157. lua_interface->SetItemValue(state, proc->item);
  1158. }
  1159. lua_interface->SetSpawnValue(state, this);
  1160. lua_interface->SetSpawnValue(state, target);
  1161. lua_interface->SetInt32Value(state, type);
  1162. /*
  1163. Add spell data from db in case of a spell proc here...
  1164. */
  1165. if (!item_proc) {
  1166. // Append spell data to the param list
  1167. vector<LUAData*>* data = proc->spell->spell->GetLUAData();
  1168. for(int32 i = 0; i < data->size(); i++) {
  1169. switch(data->at(i)->type) {
  1170. case 0:{
  1171. lua_interface->SetSInt32Value(proc->spell->state, data->at(i)->int_value);
  1172. break;
  1173. }
  1174. case 1:{
  1175. lua_interface->SetFloatValue(proc->spell->state, data->at(i)->float_value);
  1176. break;
  1177. }
  1178. case 2:{
  1179. lua_interface->SetBooleanValue(proc->spell->state, data->at(i)->bool_value);
  1180. break;
  1181. }
  1182. case 3:{
  1183. lua_interface->SetStringValue(proc->spell->state, data->at(i)->string_value.c_str());
  1184. break;
  1185. }
  1186. default:{
  1187. LogWrite(SPELL__ERROR, 0, "Spell", "Error: Unknown LUA Type '%i' in Entity::CastProc for Spell '%s'", (int)data->at(i)->type, proc->spell->spell->GetName());
  1188. return false;
  1189. }
  1190. }
  1191. num_args++;
  1192. }
  1193. }
  1194. if (lua_pcall(state, num_args, 0, 0) != 0) {
  1195. LogWrite(COMBAT__ERROR, 0, "Proc", "Unable to call the proc function for spell %i tier %i", proc->spell->spell->GetSpellID(), proc->spell->spell->GetSpellTier());
  1196. lua_pop(state, 1);
  1197. return false;
  1198. }
  1199. return true;
  1200. }
  1201. void Entity::CheckProcs(int8 type, Spawn* target) {
  1202. if (type == 0) {
  1203. LogWrite(COMBAT__ERROR, 0, "Proc", "Entity::CheckProcs called with an invalid type.");
  1204. return;
  1205. }
  1206. float roll = MakeRandomFloat(0, 100);
  1207. vector<Proc*> tmpList;
  1208. MProcList.readlock(__FUNCTION__, __LINE__);
  1209. for (int8 i = 0; i < m_procList[type].size(); i++) {
  1210. Proc* proc = m_procList[type].at(i);
  1211. if (roll <= proc->chance)
  1212. {
  1213. Proc* tmpProc = new Proc();
  1214. tmpProc->chance = proc->chance;
  1215. tmpProc->item = proc->item;
  1216. tmpProc->spell = proc->spell;
  1217. tmpProc->spellid = proc->spellid;
  1218. tmpList.push_back(tmpProc);
  1219. }
  1220. }
  1221. MProcList.releasereadlock(__FUNCTION__, __LINE__);
  1222. vector<Proc*>::iterator proc_itr;
  1223. for (proc_itr = tmpList.begin(); proc_itr != tmpList.end();) {
  1224. Proc* tmpProc = *proc_itr;
  1225. CastProc(tmpProc, type, target);
  1226. proc_itr++;
  1227. safe_delete(tmpProc);
  1228. }
  1229. }
  1230. void Entity::ClearProcs() {
  1231. MProcList.writelock(__FUNCTION__, __LINE__);
  1232. map<int8, vector<Proc*> >::iterator proc_itr;
  1233. vector<Proc*>::iterator itr;
  1234. for (proc_itr = m_procList.begin(); proc_itr != m_procList.end(); proc_itr++) {
  1235. itr = proc_itr->second.begin();
  1236. while (itr != proc_itr->second.end()) {
  1237. safe_delete(*itr);
  1238. itr = proc_itr->second.erase(itr);
  1239. }
  1240. proc_itr->second.clear();
  1241. }
  1242. m_procList.clear();
  1243. MProcList.releasewritelock(__FUNCTION__, __LINE__);
  1244. }