Entity.h 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926
  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_ENTITY__
  17. #define __EQ2_ENTITY__
  18. #include "Spawn.h"
  19. #include "../common/Mutex.h"
  20. #include "Skills.h"
  21. #include "MutexList.h"
  22. #include "MutexVector.h"
  23. #include <set>
  24. #include <mutex>
  25. #include <vector>
  26. #include <boost/function.hpp>
  27. #include <boost/lambda/bind.hpp>
  28. namespace l = boost::lambda;
  29. class Entity;
  30. class NPC;
  31. class Trade;
  32. struct LuaSpell;
  33. struct GroupMemberInfo;
  34. struct BonusValues{
  35. int32 spell_id;
  36. int8 tier;
  37. int16 type;
  38. sint32 value;
  39. int64 class_req;
  40. vector<int16> race_req;
  41. vector<int16> faction_req;
  42. LuaSpell* luaspell;
  43. };
  44. struct MaintainedEffects{
  45. char name[60]; //name of the spell
  46. int32 target;
  47. int8 target_type;
  48. int32 spell_id;
  49. int32 slot_pos;
  50. int16 icon;
  51. int16 icon_backdrop;
  52. int8 conc_used;
  53. int8 tier;
  54. float total_time;
  55. int32 expire_timestamp;
  56. LuaSpell* spell;
  57. };
  58. struct SpellEffects{
  59. int32 spell_id;
  60. Entity* caster;
  61. float total_time;
  62. int32 expire_timestamp;
  63. int16 icon;
  64. int16 icon_backdrop;
  65. int8 tier;
  66. LuaSpell* spell;
  67. };
  68. struct DetrimentalEffects {
  69. int32 spell_id;
  70. Entity* caster;
  71. int32 expire_timestamp;
  72. int16 icon;
  73. int16 icon_backdrop;
  74. int8 tier;
  75. int8 det_type;
  76. bool incurable;
  77. LuaSpell* spell;
  78. int8 control_effect;
  79. float total_time;
  80. };
  81. enum RACE_ALIGNMENT {
  82. ALIGNMENT_EVIL=0,
  83. ALIGNMENT_GOOD=1
  84. // neutral?
  85. };
  86. struct InfoStruct{
  87. InfoStruct()
  88. {
  89. name_ = std::string("");
  90. class1_ = 0;
  91. class2_ = 0;
  92. class3_ = 0;
  93. race_ = 0;
  94. gender_ = 0;
  95. level_ = 0;
  96. max_level_ = 0;
  97. effective_level_ = 0;
  98. tradeskill_level_ = 0;
  99. tradeskill_max_level_ = 0;
  100. cur_concentration_ = 0;
  101. max_concentration_ = 0;
  102. cur_attack_ = 0;
  103. attack_base_ = 0;
  104. cur_mitigation_ = 0;
  105. max_mitigation_ = 0;
  106. mitigation_base_ = 0;
  107. avoidance_display_ = 0;
  108. cur_avoidance_ = 0.0f;
  109. base_avoidance_pct_ = 0;
  110. avoidance_base_ = 0;
  111. max_avoidance_ = 0;
  112. parry_ = 0.0f;
  113. parry_base_ = 0.0f;
  114. deflection_ = 0;
  115. deflection_base_ = 0;
  116. block_ = 0;
  117. block_base_ = 0;
  118. str_ = 0.0f;
  119. sta_ = 0.0f;
  120. agi_ = 0.0f;
  121. wis_ = 0.0f;
  122. intel_ = 0.0f;
  123. str_base_ = 0.0f;
  124. sta_base_ = 0.0f;
  125. agi_base_ = 0.0f;
  126. wis_base_ = 0.0f;
  127. intel_base_ = 0.0f;
  128. heat_ = 0;
  129. cold_ = 0;
  130. magic_ = 0;
  131. mental_ = 0;
  132. divine_ = 0;
  133. disease_ = 0;
  134. poison_ = 0;
  135. disease_base_ = 0;
  136. cold_base_ = 0;
  137. divine_base_ = 0;
  138. magic_base_ = 0;
  139. mental_base_ = 0;
  140. heat_base_ = 0;
  141. poison_base_ = 0;
  142. elemental_base_ = 0;
  143. noxious_base_ = 0;
  144. arcane_base_ = 0;
  145. coin_copper_ = 0;
  146. coin_silver_ = 0;
  147. coin_gold_ = 0;
  148. coin_plat_ = 0;
  149. bank_coin_copper_ = 0;
  150. bank_coin_silver_ = 0;
  151. bank_coin_gold_ = 0;
  152. bank_coin_plat_ = 0;
  153. status_points_ = 0;
  154. deity_ = std::string("");
  155. weight_ = 0;
  156. max_weight_ = 0;
  157. tradeskill_class1_ = 0;
  158. tradeskill_class2_ = 0;
  159. tradeskill_class3_ = 0;
  160. account_age_base_ = 0;
  161. memset(account_age_bonus_,0,19);
  162. absorb_ = 0;
  163. xp_ = 0;
  164. xp_needed_ = 0;
  165. xp_debt_ = 0.0f;
  166. xp_yellow_ = 0;
  167. xp_yellow_vitality_bar_ = 0;
  168. xp_blue_vitality_bar_ = 0;
  169. xp_blue_ = 0;
  170. ts_xp_ = 0;
  171. ts_xp_needed_ = 0;
  172. tradeskill_exp_yellow_ = 0;
  173. tradeskill_exp_blue_ = 0;
  174. flags_ = 0;
  175. flags2_ = 0;
  176. xp_vitality_ = 0;
  177. tradeskill_xp_vitality_ = 0;
  178. mitigation_skill1_ = 0;
  179. mitigation_skill2_ = 0;
  180. mitigation_skill3_ = 0;
  181. mitigation_pve_ = 0;
  182. mitigation_pvp_ = 0;
  183. ability_modifier_ = 0;
  184. critical_mitigation_ = 0;
  185. block_chance_ = 0;
  186. uncontested_parry_ = 0;
  187. uncontested_block_ = 0;
  188. uncontested_dodge_ = 0;
  189. uncontested_riposte_ = 0;
  190. crit_chance_ = 0;
  191. crit_bonus_ = 0;
  192. potency_ = 0;
  193. hate_mod_ = 0;
  194. reuse_speed_ = 0;
  195. casting_speed_ = 0;
  196. recovery_speed_ = 0;
  197. spell_reuse_speed_ = 0;
  198. spell_multi_attack_ = 0;
  199. dps_ = 0;
  200. dps_multiplier_ = 0;
  201. attackspeed_ = 0;
  202. haste_ = 0;
  203. multi_attack_ = 0;
  204. flurry_ = 0;
  205. melee_ae_ = 0;
  206. strikethrough_ = 0;
  207. accuracy_ = 0;
  208. offensivespeed_ = 0;
  209. rain_ = 0;
  210. wind_ = 0;
  211. alignment_ = 0;
  212. pet_id_ = 0;
  213. pet_name_ = std::string("");
  214. pet_health_pct_ = 0;
  215. pet_power_pct_ = 0;
  216. pet_movement_ = 0;
  217. pet_behavior_ = 0;
  218. vision_ = 0;
  219. breathe_underwater_ = 0;
  220. biography_ = std::string("");
  221. drunk_ = 0;
  222. power_regen_ = 0;
  223. hp_regen_ = 0;
  224. power_regen_override_ = 0;
  225. hp_regen_override_ = 0;
  226. water_type_ = 0;
  227. flying_type_ = 0;
  228. no_interrupt_ = 0;
  229. interaction_flag_ = 0;
  230. tag1_ = 0;
  231. mood_ = 0;
  232. range_last_attack_time_ = 0;
  233. primary_last_attack_time_ = 0;
  234. secondary_last_attack_time_ = 0;
  235. primary_attack_delay_ = 0;
  236. secondary_attack_delay_ = 0;
  237. ranged_attack_delay_ = 0;
  238. primary_weapon_type_ = 0;
  239. secondary_weapon_type_ = 0;
  240. ranged_weapon_type_ = 0;
  241. primary_weapon_damage_low_ = 0;
  242. primary_weapon_damage_high_ = 0;
  243. secondary_weapon_damage_low_ = 0;
  244. secondary_weapon_damage_high_ = 0;
  245. ranged_weapon_damage_low_ = 0;
  246. ranged_weapon_damage_high_ = 0;
  247. wield_type_ = 0;
  248. attack_type_ = 0;
  249. primary_weapon_delay_ = 0;
  250. secondary_weapon_delay_ = 0;
  251. ranged_weapon_delay_ = 0;
  252. override_primary_weapon_ = 0;
  253. override_secondary_weapon_ = 0;
  254. override_ranged_weapon_ = 0;
  255. }
  256. void SetInfoStruct(InfoStruct* oldStruct)
  257. {
  258. if(!oldStruct)
  259. return;
  260. std::lock_guard<std::mutex> lk(classMutex);
  261. name_ = std::string(oldStruct->get_name());
  262. class1_ = oldStruct->get_class1();
  263. class2_ = oldStruct->get_class2();
  264. class3_ = oldStruct->get_class3();
  265. race_ = oldStruct->get_race();
  266. gender_ = oldStruct->get_gender();
  267. level_ = oldStruct->get_level();
  268. max_level_ = oldStruct->get_max_level();
  269. effective_level_ = oldStruct->get_effective_level();
  270. tradeskill_level_ = oldStruct->get_tradeskill_level();
  271. tradeskill_max_level_ = oldStruct->get_tradeskill_max_level();
  272. cur_concentration_ = oldStruct->get_cur_concentration();
  273. max_concentration_ = oldStruct->get_max_concentration();
  274. cur_attack_ = oldStruct->get_cur_attack();
  275. attack_base_ = oldStruct->get_attack_base();
  276. cur_mitigation_ = oldStruct->get_cur_mitigation();
  277. max_mitigation_ = oldStruct->get_max_mitigation();
  278. mitigation_base_ = oldStruct->get_mitigation_base();
  279. avoidance_display_ = oldStruct->get_avoidance_display();
  280. cur_avoidance_ = oldStruct->get_cur_avoidance();
  281. base_avoidance_pct_ = oldStruct->get_base_avoidance_pct();
  282. avoidance_base_ = oldStruct->get_avoidance_base();
  283. max_avoidance_ = oldStruct->get_max_avoidance();
  284. parry_ = oldStruct->get_parry();
  285. parry_base_ = oldStruct->get_parry_base();
  286. deflection_ = oldStruct->get_deflection();
  287. deflection_base_ = oldStruct->get_deflection_base();
  288. block_ = oldStruct->get_block();
  289. block_base_ = oldStruct->get_block_base();
  290. str_ = oldStruct->get_str();
  291. sta_ = oldStruct->get_sta();
  292. agi_ = oldStruct->get_agi();
  293. wis_ = oldStruct->get_wis();
  294. intel_ = oldStruct->get_intel();
  295. str_base_ = oldStruct->get_str_base();
  296. sta_base_ = oldStruct->get_sta_base();
  297. agi_base_ = oldStruct->get_agi_base();
  298. wis_base_ = oldStruct->get_wis_base();
  299. intel_base_ = oldStruct->get_intel_base();
  300. heat_ = oldStruct->get_heat();
  301. cold_ = oldStruct->get_cold();
  302. magic_ = oldStruct->get_magic();
  303. mental_ = oldStruct->get_mental();
  304. divine_ = oldStruct->get_divine();
  305. disease_ = oldStruct->get_disease();
  306. poison_ = oldStruct->get_poison();
  307. disease_base_ = oldStruct->get_disease_base();
  308. cold_base_ = oldStruct->get_cold_base();
  309. divine_base_ = oldStruct->get_divine_base();
  310. magic_base_ = oldStruct->get_magic_base();
  311. mental_base_ = oldStruct->get_mental_base();
  312. heat_base_ = oldStruct->get_heat_base();
  313. poison_base_ = oldStruct->get_poison_base();
  314. elemental_base_ = oldStruct->get_elemental_base();
  315. noxious_base_ = oldStruct->get_noxious_base();
  316. arcane_base_ = oldStruct->get_arcane_base();
  317. coin_copper_ = oldStruct->get_coin_copper();
  318. coin_silver_ = oldStruct->get_coin_silver();
  319. coin_gold_ = oldStruct->get_coin_gold();
  320. coin_plat_ = oldStruct->get_coin_plat();
  321. bank_coin_copper_ = oldStruct->get_bank_coin_copper();
  322. bank_coin_silver_ = oldStruct->get_bank_coin_silver();
  323. bank_coin_gold_ = oldStruct->get_bank_coin_gold();
  324. bank_coin_plat_ = oldStruct->get_bank_coin_plat();
  325. status_points_ = oldStruct->get_status_points();
  326. deity_ = std::string("");
  327. weight_ = oldStruct->get_weight();
  328. max_weight_ = oldStruct->get_max_weight();
  329. tradeskill_class1_ = oldStruct->get_tradeskill_class1();
  330. tradeskill_class2_ = oldStruct->get_tradeskill_class2();
  331. tradeskill_class3_ = oldStruct->get_tradeskill_class3();
  332. account_age_base_ = oldStruct->get_account_age_base();
  333. memset(account_age_bonus_,0,19);
  334. absorb_ = oldStruct->get_absorb();
  335. xp_ = oldStruct->get_xp();
  336. xp_needed_ = oldStruct->get_xp_needed();
  337. xp_debt_ = oldStruct->get_xp_debt();
  338. xp_yellow_ = oldStruct->get_xp_yellow();
  339. xp_yellow_vitality_bar_ = oldStruct->get_xp_yellow_vitality_bar();
  340. xp_blue_vitality_bar_ = oldStruct->get_xp_blue_vitality_bar();
  341. xp_blue_ = oldStruct->get_xp_blue();
  342. ts_xp_ = oldStruct->get_ts_xp();
  343. ts_xp_needed_ = oldStruct->get_ts_xp_needed();
  344. tradeskill_exp_yellow_ = oldStruct->get_tradeskill_exp_yellow();
  345. tradeskill_exp_blue_ = oldStruct->get_tradeskill_exp_blue();
  346. flags_ = oldStruct->get_flags();
  347. flags2_ = oldStruct->get_flags2();
  348. xp_vitality_ = oldStruct->get_xp_vitality();
  349. tradeskill_xp_vitality_ = oldStruct->get_tradeskill_xp_vitality();
  350. mitigation_skill1_ = oldStruct->get_mitigation_skill1();
  351. mitigation_skill2_ = oldStruct->get_mitigation_skill2();
  352. mitigation_skill3_ = oldStruct->get_mitigation_skill3();
  353. mitigation_pve_ = oldStruct->get_mitigation_pve();
  354. mitigation_pvp_ = oldStruct->get_mitigation_pvp();
  355. ability_modifier_ = oldStruct->get_ability_modifier();
  356. critical_mitigation_ = oldStruct->get_critical_mitigation();
  357. block_chance_ = oldStruct->get_block_chance();
  358. uncontested_parry_ = oldStruct->get_uncontested_parry();
  359. uncontested_block_ = oldStruct->get_uncontested_block();
  360. uncontested_dodge_ = oldStruct->get_uncontested_dodge();
  361. uncontested_riposte_ = oldStruct->get_uncontested_riposte();
  362. crit_chance_ = oldStruct->get_crit_chance();
  363. crit_bonus_ = oldStruct->get_crit_bonus();
  364. potency_ = oldStruct->get_potency();
  365. hate_mod_ = oldStruct->get_hate_mod();
  366. reuse_speed_ = oldStruct->get_reuse_speed();
  367. casting_speed_ = oldStruct->get_casting_speed();
  368. recovery_speed_ = oldStruct->get_recovery_speed();
  369. spell_reuse_speed_ = oldStruct->get_spell_reuse_speed();
  370. spell_multi_attack_ = oldStruct->get_spell_multi_attack();
  371. dps_ = oldStruct->get_dps();
  372. dps_multiplier_ = oldStruct->get_dps_multiplier();
  373. attackspeed_ = oldStruct->get_attackspeed();
  374. haste_ = oldStruct->get_haste();
  375. multi_attack_ = oldStruct->get_multi_attack();
  376. flurry_ = oldStruct->get_flurry();
  377. melee_ae_ = oldStruct->get_melee_ae();
  378. strikethrough_ = oldStruct->get_strikethrough();
  379. accuracy_ = oldStruct->get_accuracy();
  380. offensivespeed_ = oldStruct->get_offensivespeed();
  381. rain_ = oldStruct->get_rain();
  382. wind_ = oldStruct->get_wind();
  383. alignment_ = oldStruct->get_alignment();
  384. pet_id_ = oldStruct->get_pet_id();
  385. pet_name_ = std::string(oldStruct->get_pet_name());
  386. pet_health_pct_ = oldStruct->get_pet_health_pct();
  387. pet_power_pct_ = oldStruct->get_pet_power_pct();
  388. pet_movement_ = oldStruct->get_pet_movement();
  389. pet_behavior_ = oldStruct->get_pet_behavior();
  390. vision_ = oldStruct->get_vision();
  391. breathe_underwater_ = oldStruct->get_breathe_underwater();
  392. biography_ = std::string(oldStruct->get_biography());
  393. drunk_ = oldStruct->get_drunk();
  394. power_regen_ = oldStruct->get_power_regen();
  395. hp_regen_ = oldStruct->get_hp_regen();
  396. power_regen_override_ = oldStruct->get_power_regen_override();
  397. hp_regen_override_ = oldStruct->get_hp_regen_override();
  398. water_type_ = oldStruct->get_water_type();
  399. flying_type_ = oldStruct->get_flying_type();
  400. no_interrupt_ = oldStruct->get_no_interrupt();
  401. interaction_flag_ = oldStruct->get_interaction_flag();
  402. tag1_ = oldStruct->get_tag1();
  403. mood_ = oldStruct->get_mood();
  404. range_last_attack_time_ = oldStruct->get_range_last_attack_time();
  405. primary_last_attack_time_ = oldStruct->get_primary_last_attack_time();;
  406. secondary_last_attack_time_ = oldStruct->get_secondary_last_attack_time();;
  407. primary_attack_delay_ = oldStruct->get_primary_attack_delay();
  408. secondary_attack_delay_ = oldStruct->get_secondary_attack_delay();
  409. ranged_attack_delay_ = oldStruct->get_ranged_attack_delay();
  410. primary_weapon_type_ = oldStruct->get_primary_weapon_type();
  411. secondary_weapon_type_ = oldStruct->get_secondary_weapon_type();
  412. ranged_weapon_type_ = oldStruct->get_ranged_weapon_type();
  413. primary_weapon_damage_low_ = oldStruct->get_primary_weapon_damage_low();
  414. primary_weapon_damage_high_ = oldStruct->get_primary_weapon_damage_high();
  415. secondary_weapon_damage_low_ = oldStruct->get_secondary_weapon_damage_low();
  416. secondary_weapon_damage_high_ = oldStruct->get_secondary_weapon_damage_high();
  417. ranged_weapon_damage_low_ = oldStruct->get_ranged_weapon_damage_low();
  418. ranged_weapon_damage_high_ = oldStruct->get_ranged_weapon_damage_high();
  419. wield_type_ = oldStruct->get_wield_type();
  420. attack_type_ = oldStruct->get_attack_type();
  421. primary_weapon_delay_ = oldStruct->get_primary_weapon_delay();
  422. secondary_weapon_delay_ = oldStruct->get_secondary_weapon_delay();
  423. ranged_weapon_delay_ = oldStruct->get_ranged_weapon_delay();
  424. override_primary_weapon_ = oldStruct->get_override_primary_weapon();
  425. override_secondary_weapon_ = oldStruct->get_override_secondary_weapon();
  426. override_ranged_weapon_ = oldStruct->get_override_ranged_weapon();
  427. }
  428. //mutable std::shared_mutex mutex_;
  429. std::string get_name() { std::lock_guard<std::mutex> lk(classMutex); return name_; }
  430. int8 get_class1() { std::lock_guard<std::mutex> lk(classMutex); return class1_; }
  431. int8 get_class2() { std::lock_guard<std::mutex> lk(classMutex); return class2_; }
  432. int8 get_class3() { std::lock_guard<std::mutex> lk(classMutex); return class3_; }
  433. int8 get_race() { std::lock_guard<std::mutex> lk(classMutex); return race_; }
  434. int8 get_gender() { std::lock_guard<std::mutex> lk(classMutex); return gender_; }
  435. int16 get_level() { std::lock_guard<std::mutex> lk(classMutex); return level_; }
  436. int16 get_max_level() { std::lock_guard<std::mutex> lk(classMutex); return max_level_; }
  437. int16 get_effective_level() { std::lock_guard<std::mutex> lk(classMutex); return effective_level_; }
  438. int16 get_tradeskill_level() { std::lock_guard<std::mutex> lk(classMutex); return tradeskill_level_; }
  439. int16 get_tradeskill_max_level() { std::lock_guard<std::mutex> lk(classMutex); return tradeskill_max_level_; }
  440. int8 get_cur_concentration() { std::lock_guard<std::mutex> lk(classMutex); return cur_concentration_; }
  441. int8 get_max_concentration() { std::lock_guard<std::mutex> lk(classMutex); return max_concentration_; }
  442. int16 get_cur_attack() { std::lock_guard<std::mutex> lk(classMutex); return cur_attack_; }
  443. int16 get_attack_base() { std::lock_guard<std::mutex> lk(classMutex); return attack_base_; }
  444. int16 get_cur_mitigation() { std::lock_guard<std::mutex> lk(classMutex); return cur_mitigation_; }
  445. int16 get_max_mitigation() { std::lock_guard<std::mutex> lk(classMutex); return max_mitigation_; }
  446. int16 get_mitigation_base() { std::lock_guard<std::mutex> lk(classMutex); return mitigation_base_; }
  447. int16 get_avoidance_display() { std::lock_guard<std::mutex> lk(classMutex); return avoidance_display_; }
  448. float get_cur_avoidance() { std::lock_guard<std::mutex> lk(classMutex); return cur_avoidance_; }
  449. int16 get_base_avoidance_pct() { std::lock_guard<std::mutex> lk(classMutex); return base_avoidance_pct_; }
  450. int16 get_avoidance_base() { std::lock_guard<std::mutex> lk(classMutex); return avoidance_base_; }
  451. float get_parry() { std::lock_guard<std::mutex> lk(classMutex); return parry_; }
  452. float get_parry_base() { std::lock_guard<std::mutex> lk(classMutex); return parry_base_; }
  453. int16 get_max_avoidance() { std::lock_guard<std::mutex> lk(classMutex); return max_avoidance_; }
  454. float get_deflection() { std::lock_guard<std::mutex> lk(classMutex); return deflection_; }
  455. int16 get_deflection_base() { std::lock_guard<std::mutex> lk(classMutex); return deflection_base_; }
  456. float get_block() { std::lock_guard<std::mutex> lk(classMutex); return block_; }
  457. int16 get_block_base() { std::lock_guard<std::mutex> lk(classMutex); return block_base_; }
  458. float get_str() { std::lock_guard<std::mutex> lk(classMutex); return str_; }
  459. float get_sta() { std::lock_guard<std::mutex> lk(classMutex); return sta_; }
  460. float get_agi() { std::lock_guard<std::mutex> lk(classMutex); return agi_; }
  461. float get_wis() { std::lock_guard<std::mutex> lk(classMutex); return wis_; }
  462. float get_intel() { std::lock_guard<std::mutex> lk(classMutex); return intel_; }
  463. float get_str_base() { std::lock_guard<std::mutex> lk(classMutex); return str_base_; }
  464. float get_sta_base() { std::lock_guard<std::mutex> lk(classMutex); return sta_base_; }
  465. float get_agi_base() { std::lock_guard<std::mutex> lk(classMutex); return agi_base_; }
  466. float get_wis_base() { std::lock_guard<std::mutex> lk(classMutex); return wis_base_; }
  467. float get_intel_base() { std::lock_guard<std::mutex> lk(classMutex); return intel_base_; }
  468. int16 get_heat() { std::lock_guard<std::mutex> lk(classMutex); return heat_; }
  469. int16 get_cold() { std::lock_guard<std::mutex> lk(classMutex); return cold_; }
  470. int16 get_magic() { std::lock_guard<std::mutex> lk(classMutex); return magic_; }
  471. int16 get_mental() { std::lock_guard<std::mutex> lk(classMutex); return mental_; }
  472. int16 get_divine() { std::lock_guard<std::mutex> lk(classMutex); return divine_; }
  473. int16 get_disease() { std::lock_guard<std::mutex> lk(classMutex); return disease_; }
  474. int16 get_poison() { std::lock_guard<std::mutex> lk(classMutex); return poison_; }
  475. int16 get_disease_base() { std::lock_guard<std::mutex> lk(classMutex); return disease_base_; }
  476. int16 get_cold_base() { std::lock_guard<std::mutex> lk(classMutex); return cold_base_; }
  477. int16 get_divine_base() { std::lock_guard<std::mutex> lk(classMutex); return divine_base_; }
  478. int16 get_magic_base() { std::lock_guard<std::mutex> lk(classMutex); return magic_base_; }
  479. int16 get_mental_base() { std::lock_guard<std::mutex> lk(classMutex); return mental_base_; }
  480. int16 get_heat_base() { std::lock_guard<std::mutex> lk(classMutex); return heat_base_; }
  481. int16 get_poison_base() { std::lock_guard<std::mutex> lk(classMutex); return poison_base_; }
  482. int16 get_elemental_base() { std::lock_guard<std::mutex> lk(classMutex); return elemental_base_; }
  483. int16 get_noxious_base() { std::lock_guard<std::mutex> lk(classMutex); return noxious_base_; }
  484. int16 get_arcane_base() { std::lock_guard<std::mutex> lk(classMutex); return arcane_base_; }
  485. int32 get_coin_copper() { std::lock_guard<std::mutex> lk(classMutex); return coin_copper_; }
  486. int32 get_coin_silver() { std::lock_guard<std::mutex> lk(classMutex); return coin_silver_; }
  487. int32 get_coin_gold() { std::lock_guard<std::mutex> lk(classMutex); return coin_gold_; }
  488. int32 get_coin_plat() { std::lock_guard<std::mutex> lk(classMutex); return coin_plat_; }
  489. int32 get_bank_coin_copper() { std::lock_guard<std::mutex> lk(classMutex); return bank_coin_copper_; }
  490. int32 get_bank_coin_silver() { std::lock_guard<std::mutex> lk(classMutex); return bank_coin_silver_; }
  491. int32 get_bank_coin_gold() { std::lock_guard<std::mutex> lk(classMutex); return bank_coin_gold_; }
  492. int32 get_bank_coin_plat() { std::lock_guard<std::mutex> lk(classMutex); return bank_coin_plat_; }
  493. int32 get_status_points() { std::lock_guard<std::mutex> lk(classMutex); return status_points_; }
  494. std::string get_deity() { std::lock_guard<std::mutex> lk(classMutex); return deity_; }
  495. int32 get_weight() { std::lock_guard<std::mutex> lk(classMutex); return weight_; }
  496. int32 get_max_weight() { std::lock_guard<std::mutex> lk(classMutex); return max_weight_; }
  497. //SpellEffects* & get_spell_effects() { std::lock_guard<std::mutex> lk(classMutex); return spell_effects_; }
  498. //MaintainedEffects* & get_maintained_effects() { std::lock_guard<std::mutex> lk(classMutex); return maintained_effects_; }
  499. int8 get_tradeskill_class1() { std::lock_guard<std::mutex> lk(classMutex); return tradeskill_class1_; }
  500. int8 get_tradeskill_class2() { std::lock_guard<std::mutex> lk(classMutex); return tradeskill_class2_; }
  501. int8 get_tradeskill_class3() { std::lock_guard<std::mutex> lk(classMutex); return tradeskill_class3_; }
  502. int16 get_account_age_base() { std::lock_guard<std::mutex> lk(classMutex); return account_age_base_; }
  503. int8 get_account_age_bonus(int8 field) { std::lock_guard<std::mutex> lk(classMutex); return account_age_bonus_[field]; }
  504. int16 get_absorb() { std::lock_guard<std::mutex> lk(classMutex); return absorb_; }
  505. int32 get_xp() { std::lock_guard<std::mutex> lk(classMutex); return xp_; }
  506. int32 get_xp_needed() { std::lock_guard<std::mutex> lk(classMutex); return xp_needed_; }
  507. float get_xp_debt() { std::lock_guard<std::mutex> lk(classMutex); return xp_debt_; }
  508. int16 get_xp_yellow() { std::lock_guard<std::mutex> lk(classMutex); return xp_yellow_; }
  509. int16 get_xp_yellow_vitality_bar() { std::lock_guard<std::mutex> lk(classMutex); return xp_yellow_vitality_bar_; }
  510. int16 get_xp_blue_vitality_bar() { std::lock_guard<std::mutex> lk(classMutex); return xp_blue_vitality_bar_; }
  511. int16 get_xp_blue() { std::lock_guard<std::mutex> lk(classMutex); return xp_blue_; }
  512. int32 get_ts_xp() { std::lock_guard<std::mutex> lk(classMutex); return ts_xp_; }
  513. int32 get_ts_xp_needed() { std::lock_guard<std::mutex> lk(classMutex); return ts_xp_needed_; }
  514. int16 get_tradeskill_exp_yellow() { std::lock_guard<std::mutex> lk(classMutex); return tradeskill_exp_yellow_; }
  515. int16 get_tradeskill_exp_blue() { std::lock_guard<std::mutex> lk(classMutex); return tradeskill_exp_blue_; }
  516. int32 get_flags() { std::lock_guard<std::mutex> lk(classMutex); return flags_; }
  517. int32 get_flags2() { std::lock_guard<std::mutex> lk(classMutex); return flags2_; }
  518. float get_xp_vitality() { std::lock_guard<std::mutex> lk(classMutex); return xp_vitality_; }
  519. float get_tradeskill_xp_vitality() { std::lock_guard<std::mutex> lk(classMutex); return tradeskill_xp_vitality_; }
  520. int16 get_mitigation_skill1() { std::lock_guard<std::mutex> lk(classMutex); return mitigation_skill1_; }
  521. int16 get_mitigation_skill2() { std::lock_guard<std::mutex> lk(classMutex); return mitigation_skill2_; }
  522. int16 get_mitigation_skill3() { std::lock_guard<std::mutex> lk(classMutex); return mitigation_skill3_; }
  523. int16 get_mitigation_pve() { std::lock_guard<std::mutex> lk(classMutex); return mitigation_pve_; }
  524. int16 get_mitigation_pvp() { std::lock_guard<std::mutex> lk(classMutex); return mitigation_pvp_; }
  525. float get_ability_modifier() { std::lock_guard<std::mutex> lk(classMutex); return ability_modifier_; }
  526. float get_critical_mitigation() { std::lock_guard<std::mutex> lk(classMutex); return critical_mitigation_; }
  527. float get_block_chance() { std::lock_guard<std::mutex> lk(classMutex); return block_chance_; }
  528. float get_uncontested_parry() { std::lock_guard<std::mutex> lk(classMutex); return uncontested_parry_; }
  529. float get_uncontested_block() { std::lock_guard<std::mutex> lk(classMutex); return uncontested_block_; }
  530. float get_uncontested_dodge() { std::lock_guard<std::mutex> lk(classMutex); return uncontested_dodge_; }
  531. float get_uncontested_riposte() { std::lock_guard<std::mutex> lk(classMutex); return uncontested_riposte_; }
  532. float get_crit_chance() { std::lock_guard<std::mutex> lk(classMutex); return crit_chance_; }
  533. float get_crit_bonus() { std::lock_guard<std::mutex> lk(classMutex); return crit_bonus_; }
  534. float get_potency() { std::lock_guard<std::mutex> lk(classMutex); return potency_; }
  535. float get_hate_mod() { std::lock_guard<std::mutex> lk(classMutex); return hate_mod_; }
  536. float get_reuse_speed() { std::lock_guard<std::mutex> lk(classMutex); return reuse_speed_; }
  537. float get_casting_speed() { std::lock_guard<std::mutex> lk(classMutex); return casting_speed_; }
  538. float get_recovery_speed() { std::lock_guard<std::mutex> lk(classMutex); return recovery_speed_; }
  539. float get_spell_reuse_speed() { std::lock_guard<std::mutex> lk(classMutex); return spell_reuse_speed_; }
  540. float get_spell_multi_attack() { std::lock_guard<std::mutex> lk(classMutex); return spell_multi_attack_; }
  541. float get_dps() { std::lock_guard<std::mutex> lk(classMutex); return dps_; }
  542. float get_dps_multiplier() { std::lock_guard<std::mutex> lk(classMutex); return dps_multiplier_; }
  543. float get_attackspeed() { std::lock_guard<std::mutex> lk(classMutex); return attackspeed_; }
  544. float get_haste() { std::lock_guard<std::mutex> lk(classMutex); return haste_; }
  545. float get_multi_attack() { std::lock_guard<std::mutex> lk(classMutex); return multi_attack_; }
  546. float get_flurry() { std::lock_guard<std::mutex> lk(classMutex); return flurry_; }
  547. float get_melee_ae() { std::lock_guard<std::mutex> lk(classMutex); return melee_ae_; }
  548. float get_strikethrough() { std::lock_guard<std::mutex> lk(classMutex); return strikethrough_; }
  549. float get_accuracy() { std::lock_guard<std::mutex> lk(classMutex); return accuracy_; }
  550. float get_offensivespeed() { std::lock_guard<std::mutex> lk(classMutex); return offensivespeed_; }
  551. float get_rain() { std::lock_guard<std::mutex> lk(classMutex); return rain_; }
  552. float get_wind() { std::lock_guard<std::mutex> lk(classMutex); return wind_; }
  553. sint8 get_alignment() { std::lock_guard<std::mutex> lk(classMutex); return alignment_; }
  554. int32 get_pet_id() { std::lock_guard<std::mutex> lk(classMutex); return pet_id_; }
  555. std::string get_pet_name() { std::lock_guard<std::mutex> lk(classMutex); return pet_name_; }
  556. float get_pet_health_pct() { std::lock_guard<std::mutex> lk(classMutex); return pet_health_pct_; }
  557. float get_pet_power_pct() { std::lock_guard<std::mutex> lk(classMutex); return pet_power_pct_; }
  558. int8 get_pet_movement() { std::lock_guard<std::mutex> lk(classMutex); return pet_movement_; }
  559. int8 get_pet_behavior() { std::lock_guard<std::mutex> lk(classMutex); return pet_behavior_; }
  560. int8 get_vision() { std::lock_guard<std::mutex> lk(classMutex); return vision_; }
  561. int8 get_breathe_underwater() { std::lock_guard<std::mutex> lk(classMutex); return breathe_underwater_; }
  562. std::string get_biography() { std::lock_guard<std::mutex> lk(classMutex); return biography_; }
  563. float get_drunk() { std::lock_guard<std::mutex> lk(classMutex); return drunk_; }
  564. sint16 get_power_regen() { std::lock_guard<std::mutex> lk(classMutex); return power_regen_; }
  565. sint16 get_hp_regen() { std::lock_guard<std::mutex> lk(classMutex); return hp_regen_; }
  566. int8 get_power_regen_override() { std::lock_guard<std::mutex> lk(classMutex); return power_regen_override_; }
  567. int8 get_hp_regen_override() { std::lock_guard<std::mutex> lk(classMutex); return hp_regen_override_; }
  568. int8 get_water_type() { std::lock_guard<std::mutex> lk(classMutex); return water_type_; }
  569. int8 get_flying_type() { std::lock_guard<std::mutex> lk(classMutex); return flying_type_; }
  570. int8 get_no_interrupt() { std::lock_guard<std::mutex> lk(classMutex); return no_interrupt_; }
  571. int8 get_interaction_flag() { std::lock_guard<std::mutex> lk(classMutex); return interaction_flag_; }
  572. int8 get_tag1() { std::lock_guard<std::mutex> lk(classMutex); return tag1_; }
  573. int16 get_mood() { std::lock_guard<std::mutex> lk(classMutex); return mood_; }
  574. int32 get_range_last_attack_time() { std::lock_guard<std::mutex> lk(classMutex); return range_last_attack_time_; }
  575. int32 get_primary_last_attack_time() { std::lock_guard<std::mutex> lk(classMutex); return primary_last_attack_time_; }
  576. int32 get_secondary_last_attack_time() { std::lock_guard<std::mutex> lk(classMutex); return secondary_last_attack_time_; }
  577. int16 get_primary_attack_delay() { std::lock_guard<std::mutex> lk(classMutex); return primary_attack_delay_; }
  578. int16 get_secondary_attack_delay() { std::lock_guard<std::mutex> lk(classMutex); return secondary_attack_delay_; }
  579. int16 get_ranged_attack_delay() { std::lock_guard<std::mutex> lk(classMutex); return ranged_attack_delay_; }
  580. int8 get_primary_weapon_type() { std::lock_guard<std::mutex> lk(classMutex); return primary_weapon_type_; }
  581. int8 get_secondary_weapon_type() { std::lock_guard<std::mutex> lk(classMutex); return secondary_weapon_type_; }
  582. int8 get_ranged_weapon_type() { std::lock_guard<std::mutex> lk(classMutex); return ranged_weapon_type_; }
  583. int32 get_primary_weapon_damage_low() { std::lock_guard<std::mutex> lk(classMutex); return primary_weapon_damage_low_; }
  584. int32 get_primary_weapon_damage_high() { std::lock_guard<std::mutex> lk(classMutex); return primary_weapon_damage_high_; }
  585. int32 get_secondary_weapon_damage_low() { std::lock_guard<std::mutex> lk(classMutex); return secondary_weapon_damage_low_; }
  586. int32 get_secondary_weapon_damage_high() { std::lock_guard<std::mutex> lk(classMutex); return secondary_weapon_damage_high_; }
  587. int32 get_ranged_weapon_damage_low() { std::lock_guard<std::mutex> lk(classMutex); return ranged_weapon_damage_low_; }
  588. int32 get_ranged_weapon_damage_high() { std::lock_guard<std::mutex> lk(classMutex); return ranged_weapon_damage_high_; }
  589. int8 get_wield_type() { std::lock_guard<std::mutex> lk(classMutex); return wield_type_; }
  590. int8 get_attack_type() { std::lock_guard<std::mutex> lk(classMutex); return attack_type_; }
  591. int16 get_primary_weapon_delay() { std::lock_guard<std::mutex> lk(classMutex); return primary_weapon_delay_; }
  592. int16 get_secondary_weapon_delay() { std::lock_guard<std::mutex> lk(classMutex); return primary_weapon_delay_; }
  593. int16 get_ranged_weapon_delay() { std::lock_guard<std::mutex> lk(classMutex); return primary_weapon_delay_; }
  594. int8 get_override_primary_weapon() { std::lock_guard<std::mutex> lk(classMutex); return override_primary_weapon_; }
  595. int8 get_override_secondary_weapon() { std::lock_guard<std::mutex> lk(classMutex); return override_secondary_weapon_; }
  596. int8 get_override_ranged_weapon() { std::lock_guard<std::mutex> lk(classMutex); return override_ranged_weapon_; }
  597. void set_name(std::string value) { std::lock_guard<std::mutex> lk(classMutex); name_ = value; }
  598. void set_deity(std::string value) { std::lock_guard<std::mutex> lk(classMutex); deity_ = value; }
  599. void set_class1(int8 value) { std::lock_guard<std::mutex> lk(classMutex); class1_ = value; }
  600. void set_class2(int8 value) { std::lock_guard<std::mutex> lk(classMutex); class2_ = value; }
  601. void set_class3(int8 value) { std::lock_guard<std::mutex> lk(classMutex); class3_ = value; }
  602. void set_race(int8 value) { std::lock_guard<std::mutex> lk(classMutex); race_ = value; }
  603. void set_gender(int8 value) { std::lock_guard<std::mutex> lk(classMutex); gender_ = value; }
  604. void set_level(int16 value) { std::lock_guard<std::mutex> lk(classMutex); level_ = value; }
  605. void set_max_level(int16 value) { std::lock_guard<std::mutex> lk(classMutex); max_level_ = value; }
  606. void set_effective_level(int16 value) { std::lock_guard<std::mutex> lk(classMutex); effective_level_ = value; }
  607. void set_cur_concentration(int8 value) { std::lock_guard<std::mutex> lk(classMutex); cur_concentration_ = value; }
  608. void set_max_concentration(int8 value) { std::lock_guard<std::mutex> lk(classMutex); max_concentration_ = value; }
  609. void add_cur_concentration(int8 value) { std::lock_guard<std::mutex> lk(classMutex); cur_concentration_ += value; }
  610. void add_max_concentration(int8 value) { std::lock_guard<std::mutex> lk(classMutex); max_concentration_ += value; }
  611. void set_cur_attack(int16 value) { std::lock_guard<std::mutex> lk(classMutex); cur_attack_ = value; }
  612. void set_attack_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); attack_base_ = value; }
  613. void set_cur_mitigation(int16 value) { std::lock_guard<std::mutex> lk(classMutex); cur_mitigation_ = value; }
  614. void set_max_mitigation(int16 value) { std::lock_guard<std::mutex> lk(classMutex); max_mitigation_ = value; }
  615. void set_mitigation_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); mitigation_base_ = value; }
  616. void add_mitigation_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); mitigation_base_ += value; }
  617. void set_avoidance_display(int16 value) { std::lock_guard<std::mutex> lk(classMutex); avoidance_display_ = value; }
  618. void set_cur_avoidance(float value) { std::lock_guard<std::mutex> lk(classMutex); cur_avoidance_ = value; }
  619. void set_base_avoidance_pct(int16 value) { std::lock_guard<std::mutex> lk(classMutex); base_avoidance_pct_ = value; }
  620. void set_avoidance_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); avoidance_base_ = value; }
  621. void set_max_avoidance(int16 value) { std::lock_guard<std::mutex> lk(classMutex); max_avoidance_ = value; }
  622. void set_parry(float value) { std::lock_guard<std::mutex> lk(classMutex); parry_ = value; }
  623. void set_parry_base(float value) { std::lock_guard<std::mutex> lk(classMutex); parry_base_ = value; }
  624. void set_deflection(int16 value) { std::lock_guard<std::mutex> lk(classMutex); deflection_ = value; }
  625. void set_deflection_base(float value) { std::lock_guard<std::mutex> lk(classMutex); deflection_base_ = value; }
  626. void set_block(float value) { std::lock_guard<std::mutex> lk(classMutex); block_ = value; }
  627. void set_block_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); block_base_ = value; }
  628. void set_str(float value) { std::lock_guard<std::mutex> lk(classMutex); str_ = value; }
  629. void set_sta(float value) { std::lock_guard<std::mutex> lk(classMutex); sta_ = value; }
  630. void set_agi(float value) { std::lock_guard<std::mutex> lk(classMutex); agi_ = value; }
  631. void set_wis(float value) { std::lock_guard<std::mutex> lk(classMutex); wis_ = value; }
  632. void set_intel(float value) { std::lock_guard<std::mutex> lk(classMutex); intel_ = value; }
  633. void add_str(float value) { std::lock_guard<std::mutex> lk(classMutex); str_ += value; }
  634. void add_sta(float value) { std::lock_guard<std::mutex> lk(classMutex); sta_ += value; }
  635. void add_agi(float value) { std::lock_guard<std::mutex> lk(classMutex); agi_ += value; }
  636. void add_wis(float value) { std::lock_guard<std::mutex> lk(classMutex); wis_ += value; }
  637. void add_intel(float value) { std::lock_guard<std::mutex> lk(classMutex); intel_ += value; }
  638. void set_str_base(float value) { std::lock_guard<std::mutex> lk(classMutex); str_base_ = value; }
  639. void set_sta_base(float value) { std::lock_guard<std::mutex> lk(classMutex); sta_base_ = value; }
  640. void set_agi_base(float value) { std::lock_guard<std::mutex> lk(classMutex); agi_base_ = value; }
  641. void set_wis_base(float value) { std::lock_guard<std::mutex> lk(classMutex); wis_base_ = value; }
  642. void set_intel_base(float value) { std::lock_guard<std::mutex> lk(classMutex); intel_base_ = value; }
  643. void set_heat(int16 value) { std::lock_guard<std::mutex> lk(classMutex); heat_ = value; }
  644. void set_cold(int16 value) { std::lock_guard<std::mutex> lk(classMutex); cold_ = value; }
  645. void set_magic(int16 value) { std::lock_guard<std::mutex> lk(classMutex); magic_ = value; }
  646. void set_mental(int16 value) { std::lock_guard<std::mutex> lk(classMutex); mental_ = value; }
  647. void set_divine(int16 value) { std::lock_guard<std::mutex> lk(classMutex); divine_ = value; }
  648. void set_disease(int16 value) { std::lock_guard<std::mutex> lk(classMutex); disease_ = value; }
  649. void set_poison(int16 value) { std::lock_guard<std::mutex> lk(classMutex); poison_ = value; }
  650. void add_heat(int16 value) { std::lock_guard<std::mutex> lk(classMutex); heat_ += value; }
  651. void add_cold(int16 value) { std::lock_guard<std::mutex> lk(classMutex); cold_ += value; }
  652. void add_magic(int16 value) { std::lock_guard<std::mutex> lk(classMutex); magic_ += value; }
  653. void add_mental(int16 value) { std::lock_guard<std::mutex> lk(classMutex); mental_ += value; }
  654. void add_divine(int16 value) { std::lock_guard<std::mutex> lk(classMutex); divine_ += value; }
  655. void add_disease(int16 value) { std::lock_guard<std::mutex> lk(classMutex); disease_ += value; }
  656. void add_poison(int16 value) { std::lock_guard<std::mutex> lk(classMutex); poison_ += value; }
  657. void set_disease_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); disease_base_ = value; }
  658. void set_cold_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); cold_base_ = value; }
  659. void set_divine_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); divine_base_ = value; }
  660. void set_magic_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); magic_base_ = value; }
  661. void set_mental_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); mental_base_ = value; }
  662. void set_heat_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); heat_base_ = value; }
  663. void set_poison_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); poison_base_ = value; }
  664. void set_elemental_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); elemental_base_ = value; }
  665. void set_noxious_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); noxious_base_ = value; }
  666. void set_arcane_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); arcane_base_ = value; }
  667. void set_tradeskill_level(int16 value) { std::lock_guard<std::mutex> lk(classMutex); tradeskill_level_ = value; }
  668. void set_tradeskill_max_level(int16 value) { std::lock_guard<std::mutex> lk(classMutex); tradeskill_max_level_ = value; }
  669. void set_tradeskill_class1(int8 value) { std::lock_guard<std::mutex> lk(classMutex); tradeskill_class1_ = value; }
  670. void set_tradeskill_class2(int8 value) { std::lock_guard<std::mutex> lk(classMutex); tradeskill_class2_ = value; }
  671. void set_tradeskill_class3(int8 value) { std::lock_guard<std::mutex> lk(classMutex); tradeskill_class3_ = value; }
  672. void set_account_age_base(int16 value) { std::lock_guard<std::mutex> lk(classMutex); account_age_base_ = value; }
  673. void set_xp_vitality(float value) { std::lock_guard<std::mutex> lk(classMutex); xp_vitality_ = value; }
  674. void add_xp_vitality(float value) { std::lock_guard<std::mutex> lk(classMutex); xp_vitality_ += value; }
  675. void set_tradeskill_xp_vitality(float value) { std::lock_guard<std::mutex> lk(classMutex); tradeskill_xp_vitality_ = value; }
  676. void set_absorb(int16 value) { std::lock_guard<std::mutex> lk(classMutex); absorb_ = value; }
  677. void set_xp(int32 value) { std::lock_guard<std::mutex> lk(classMutex); xp_ = value; }
  678. void set_xp_needed(int32 value) { std::lock_guard<std::mutex> lk(classMutex); xp_needed_ = value; }
  679. void set_xp_debt(float value) { std::lock_guard<std::mutex> lk(classMutex); xp_debt_ = value; }
  680. void set_xp_yellow(int16 value) { std::lock_guard<std::mutex> lk(classMutex); xp_yellow_ = value; }
  681. void set_xp_blue(int16 value) { std::lock_guard<std::mutex> lk(classMutex); xp_blue_ = value; }
  682. void set_xp_yellow_vitality_bar(int16 value) { std::lock_guard<std::mutex> lk(classMutex); xp_yellow_vitality_bar_ = value; }
  683. void set_xp_blue_vitality_bar(int16 value) { std::lock_guard<std::mutex> lk(classMutex); xp_blue_vitality_bar_ = value; }
  684. void set_ts_xp(int32 value) { std::lock_guard<std::mutex> lk(classMutex); ts_xp_ = value; }
  685. void set_ts_xp_needed(int32 value) { std::lock_guard<std::mutex> lk(classMutex); ts_xp_needed_ = value; }
  686. void set_tradeskill_exp_yellow(int16 value) { std::lock_guard<std::mutex> lk(classMutex); tradeskill_exp_yellow_ = value; }
  687. void set_tradeskill_exp_blue(int16 value) { std::lock_guard<std::mutex> lk(classMutex); tradeskill_exp_blue_ = value; }
  688. void set_flags(int32 value) { std::lock_guard<std::mutex> lk(classMutex); flags_ = value; }
  689. void set_flags2(int32 value) { std::lock_guard<std::mutex> lk(classMutex); flags2_ = value; }
  690. void set_coin_plat(int32 value) { std::lock_guard<std::mutex> lk(classMutex); coin_plat_ = value; }
  691. void set_coin_gold(int32 value) { std::lock_guard<std::mutex> lk(classMutex); coin_gold_ = value; }
  692. void set_coin_silver(int32 value) { std::lock_guard<std::mutex> lk(classMutex); coin_silver_ = value; }
  693. void set_coin_copper(int32 value) { std::lock_guard<std::mutex> lk(classMutex); coin_copper_ = value; }
  694. void add_coin_plat(int32 value) { std::lock_guard<std::mutex> lk(classMutex); coin_plat_ += value; }
  695. void add_coin_gold(int32 value) { std::lock_guard<std::mutex> lk(classMutex); coin_gold_ += value; }
  696. void add_coin_silver(int32 value) { std::lock_guard<std::mutex> lk(classMutex); coin_silver_ += value; }
  697. void add_coin_copper(int32 value) { std::lock_guard<std::mutex> lk(classMutex); coin_copper_ += value; }
  698. void set_bank_coin_plat(int32 value) { std::lock_guard<std::mutex> lk(classMutex); bank_coin_plat_ = value; }
  699. void set_bank_coin_gold(int32 value) { std::lock_guard<std::mutex> lk(classMutex); bank_coin_gold_ = value; }
  700. void set_bank_coin_silver(int32 value) { std::lock_guard<std::mutex> lk(classMutex); bank_coin_silver_ = value; }
  701. void set_bank_coin_copper(int32 value) { std::lock_guard<std::mutex> lk(classMutex); bank_coin_copper_ = value; }
  702. void add_bank_coin_plat(int32 value) { std::lock_guard<std::mutex> lk(classMutex); bank_coin_plat_ += value; }
  703. void add_bank_coin_gold(int32 value) { std::lock_guard<std::mutex> lk(classMutex); bank_coin_gold_ += value; }
  704. void add_bank_coin_silver(int32 value) { std::lock_guard<std::mutex> lk(classMutex); bank_coin_silver_ += value; }
  705. void add_bank_coin_copper(int32 value) { std::lock_guard<std::mutex> lk(classMutex); bank_coin_copper_ += value; }
  706. void set_status_points(int32 value) { std::lock_guard<std::mutex> lk(classMutex); status_points_ = value; }
  707. void add_status_points(int32 value) { std::lock_guard<std::mutex> lk(classMutex); status_points_ += value; }
  708. bool subtract_status_points(int32 value) { std::lock_guard<std::mutex> lk(classMutex); if(value > status_points_) return false; status_points_ -= value; return true; }
  709. void set_mitigation_skill1(int16 value) { std::lock_guard<std::mutex> lk(classMutex); mitigation_skill1_ = value; }
  710. void set_mitigation_skill2(int16 value) { std::lock_guard<std::mutex> lk(classMutex); mitigation_skill2_ = value; }
  711. void set_mitigation_skill3(int16 value) { std::lock_guard<std::mutex> lk(classMutex); mitigation_skill3_ = value; }
  712. void set_mitigation_pve(int16 value) { std::lock_guard<std::mutex> lk(classMutex); mitigation_pve_ = value; }
  713. void set_mitigation_pvp(int16 value) { std::lock_guard<std::mutex> lk(classMutex); mitigation_pvp_ = value; }
  714. void add_mitigation_skill1(int16 value) { std::lock_guard<std::mutex> lk(classMutex); mitigation_skill1_ += value; }
  715. void add_mitigation_skill2(int16 value) { std::lock_guard<std::mutex> lk(classMutex); mitigation_skill2_ += value; }
  716. void add_mitigation_skill3(int16 value) { std::lock_guard<std::mutex> lk(classMutex); mitigation_skill3_ += value; }
  717. void set_ability_modifier(float value) { std::lock_guard<std::mutex> lk(classMutex); ability_modifier_ = value; }
  718. void add_ability_modifier(float value) { std::lock_guard<std::mutex> lk(classMutex); ability_modifier_ += value; }
  719. void set_critical_mitigation(float value) { std::lock_guard<std::mutex> lk(classMutex); critical_mitigation_ = value; }
  720. void add_critical_mitigation(float value) { std::lock_guard<std::mutex> lk(classMutex); critical_mitigation_ += value; }
  721. void set_block_chance(float value) { std::lock_guard<std::mutex> lk(classMutex); block_chance_ = value; }
  722. void set_uncontested_parry(float value) { std::lock_guard<std::mutex> lk(classMutex); uncontested_parry_ = value; }
  723. void set_uncontested_block(float value) { std::lock_guard<std::mutex> lk(classMutex); uncontested_block_ = value; }
  724. void set_uncontested_dodge(float value) { std::lock_guard<std::mutex> lk(classMutex); uncontested_dodge_ = value; }
  725. void set_uncontested_riposte(float value) { std::lock_guard<std::mutex> lk(classMutex); uncontested_riposte_ = value; }
  726. void set_crit_chance(float value) { std::lock_guard<std::mutex> lk(classMutex); crit_chance_ = value; }
  727. void set_crit_bonus(float value) { std::lock_guard<std::mutex> lk(classMutex); crit_bonus_ = value; }
  728. void set_potency(float value) { std::lock_guard<std::mutex> lk(classMutex); potency_ = value; }
  729. void set_hate_mod(float value) { std::lock_guard<std::mutex> lk(classMutex); hate_mod_ = value; }
  730. void set_reuse_speed(float value) { std::lock_guard<std::mutex> lk(classMutex); reuse_speed_ = value; }
  731. void set_casting_speed(float value) { std::lock_guard<std::mutex> lk(classMutex); casting_speed_ = value; }
  732. void set_recovery_speed(float value) { std::lock_guard<std::mutex> lk(classMutex); recovery_speed_ = value; }
  733. void set_spell_reuse_speed(float value) { std::lock_guard<std::mutex> lk(classMutex); spell_reuse_speed_ = value; }
  734. void set_spell_multi_attack(float value) { std::lock_guard<std::mutex> lk(classMutex); spell_multi_attack_ = value; }
  735. void set_dps(float value) { std::lock_guard<std::mutex> lk(classMutex); dps_ = value; }
  736. void set_dps_multiplier(float value) { std::lock_guard<std::mutex> lk(classMutex); dps_multiplier_ = value; }
  737. void set_attackspeed(float value) { std::lock_guard<std::mutex> lk(classMutex); attackspeed_ = value; }
  738. void set_haste(float value) { std::lock_guard<std::mutex> lk(classMutex); haste_ = value; }
  739. void set_multi_attack(float value) { std::lock_guard<std::mutex> lk(classMutex); multi_attack_ = value; }
  740. void set_flurry(float value) { std::lock_guard<std::mutex> lk(classMutex); flurry_ = value; }
  741. void set_melee_ae(float value) { std::lock_guard<std::mutex> lk(classMutex); melee_ae_ = value; }
  742. void set_strikethrough(float value) { std::lock_guard<std::mutex> lk(classMutex); strikethrough_ = value; }
  743. void set_accuracy(float value) { std::lock_guard<std::mutex> lk(classMutex); accuracy_ = value; }
  744. void set_offensivespeed(float value) { std::lock_guard<std::mutex> lk(classMutex); offensivespeed_ = value; }
  745. void set_rain(float value) { std::lock_guard<std::mutex> lk(classMutex); rain_ = value; }
  746. void set_wind(float value) { std::lock_guard<std::mutex> lk(classMutex); wind_ = value; }
  747. void add_block_chance(float value) { std::lock_guard<std::mutex> lk(classMutex); block_chance_ += value; }
  748. void add_uncontested_parry(float value) { std::lock_guard<std::mutex> lk(classMutex); uncontested_parry_ += value; }
  749. void add_uncontested_block(float value) { std::lock_guard<std::mutex> lk(classMutex); uncontested_block_ += value; }
  750. void add_uncontested_dodge(float value) { std::lock_guard<std::mutex> lk(classMutex); uncontested_dodge_ += value; }
  751. void add_uncontested_riposte(float value) { std::lock_guard<std::mutex> lk(classMutex); uncontested_riposte_ += value; }
  752. void add_crit_chance(float value) { std::lock_guard<std::mutex> lk(classMutex); crit_chance_ += value; }
  753. void add_crit_bonus(float value) { std::lock_guard<std::mutex> lk(classMutex); crit_bonus_ += value; }
  754. void add_potency(float value) { std::lock_guard<std::mutex> lk(classMutex); potency_ += value; }
  755. void add_hate_mod(float value) { std::lock_guard<std::mutex> lk(classMutex); hate_mod_ += value; }
  756. void add_reuse_speed(float value) { std::lock_guard<std::mutex> lk(classMutex); reuse_speed_ += value; }
  757. void add_casting_speed(float value) { std::lock_guard<std::mutex> lk(classMutex); casting_speed_ += value; }
  758. void add_recovery_speed(float value) { std::lock_guard<std::mutex> lk(classMutex); recovery_speed_ += value; }
  759. void add_spell_reuse_speed(float value) { std::lock_guard<std::mutex> lk(classMutex); spell_reuse_speed_ += value; }
  760. void add_spell_multi_attack(float value) { std::lock_guard<std::mutex> lk(classMutex); spell_multi_attack_ += value; }
  761. void add_dps(float value) { std::lock_guard<std::mutex> lk(classMutex); dps_ += value; }
  762. void add_dps_multiplier(float value) { std::lock_guard<std::mutex> lk(classMutex); dps_multiplier_ += value; }
  763. void add_attackspeed(float value) { std::lock_guard<std::mutex> lk(classMutex); attackspeed_ += value; }
  764. void add_haste(float value) { std::lock_guard<std::mutex> lk(classMutex); haste_ += value; }
  765. void add_multi_attack(float value) { std::lock_guard<std::mutex> lk(classMutex); multi_attack_ += value; }
  766. void add_flurry(float value) { std::lock_guard<std::mutex> lk(classMutex); flurry_ += value; }
  767. void add_melee_ae(float value) { std::lock_guard<std::mutex> lk(classMutex); melee_ae_ += value; }
  768. void add_strikethrough(float value) { std::lock_guard<std::mutex> lk(classMutex); strikethrough_ += value; }
  769. void add_accuracy(float value) { std::lock_guard<std::mutex> lk(classMutex); accuracy_ += value; }
  770. void add_offensivespeed(float value) { std::lock_guard<std::mutex> lk(classMutex); offensivespeed_ += value; }
  771. void add_rain(float value) { std::lock_guard<std::mutex> lk(classMutex); rain_ += value; }
  772. void add_wind(float value) { std::lock_guard<std::mutex> lk(classMutex); wind_ += value; }
  773. void set_alignment(int8 value) { std::lock_guard<std::mutex> lk(classMutex); alignment_ = value; }
  774. void set_pet_id(int32 value) { std::lock_guard<std::mutex> lk(classMutex); pet_id_ = value; }
  775. void set_pet_name(std::string value) { std::lock_guard<std::mutex> lk(classMutex); pet_name_ = value; }
  776. void set_pet_movement(int8 value) { std::lock_guard<std::mutex> lk(classMutex); pet_movement_ = value; }
  777. void set_pet_behavior(int8 value) { std::lock_guard<std::mutex> lk(classMutex); pet_behavior_ = value; }
  778. void set_pet_health_pct(float value) { std::lock_guard<std::mutex> lk(classMutex); pet_health_pct_ = value; }
  779. void set_pet_power_pct(float value) { std::lock_guard<std::mutex> lk(classMutex); pet_power_pct_ = value; }
  780. void set_weight(int32 value) { std::lock_guard<std::mutex> lk(classMutex); weight_ = value; }
  781. void set_max_weight(int32 value) { std::lock_guard<std::mutex> lk(classMutex); max_weight_ = value; }
  782. void set_vision(int8 value) { std::lock_guard<std::mutex> lk(classMutex); vision_ = value; }
  783. void set_breathe_underwater(int8 value) { std::lock_guard<std::mutex> lk(classMutex); breathe_underwater_ = value; }
  784. void set_drunk(float value) { std::lock_guard<std::mutex> lk(classMutex); drunk_ = value; }
  785. void set_biography(std::string value) { std::lock_guard<std::mutex> lk(classMutex); biography_ = value; }
  786. void set_power_regen(sint16 value) { std::lock_guard<std::mutex> lk(classMutex); power_regen_ = value; }
  787. void set_hp_regen(sint16 value) { std::lock_guard<std::mutex> lk(classMutex); hp_regen_ = value; }
  788. void set_power_regen_override(int8 value) { std::lock_guard<std::mutex> lk(classMutex); power_regen_override_ = value; }
  789. void set_hp_regen_override(int8 value) { std::lock_guard<std::mutex> lk(classMutex); hp_regen_override_ = value; }
  790. void set_water_type(int8 value) { std::lock_guard<std::mutex> lk(classMutex); water_type_ = value; }
  791. void set_flying_type(int8 value) { std::lock_guard<std::mutex> lk(classMutex); flying_type_ = value; }
  792. void set_no_interrupt(int8 value) { std::lock_guard<std::mutex> lk(classMutex); no_interrupt_ = value; }
  793. void set_interaction_flag(int8 value) { std::lock_guard<std::mutex> lk(classMutex); interaction_flag_ = value; }
  794. void set_tag1(int8 value) { std::lock_guard<std::mutex> lk(classMutex); tag1_ = value; }
  795. void set_mood(int16 value) { std::lock_guard<std::mutex> lk(classMutex); mood_ = value; }
  796. void set_range_last_attack_time(int32 value) { std::lock_guard<std::mutex> lk(classMutex); range_last_attack_time_ = value; }
  797. void set_primary_last_attack_time(int32 value) { std::lock_guard<std::mutex> lk(classMutex); primary_last_attack_time_ = value; }
  798. void set_secondary_last_attack_time(int32 value) { std::lock_guard<std::mutex> lk(classMutex); secondary_last_attack_time_ = value; }
  799. void set_primary_attack_delay(int16 value) { std::lock_guard<std::mutex> lk(classMutex); primary_attack_delay_ = value; }
  800. void set_secondary_attack_delay(int16 value) { std::lock_guard<std::mutex> lk(classMutex); secondary_attack_delay_ = value; }
  801. void set_ranged_attack_delay(int16 value) { std::lock_guard<std::mutex> lk(classMutex); ranged_attack_delay_ = value; }
  802. void set_primary_weapon_type(int8 value) { std::lock_guard<std::mutex> lk(classMutex); primary_weapon_type_ = value; }
  803. void set_secondary_weapon_type(int8 value) { std::lock_guard<std::mutex> lk(classMutex); secondary_weapon_type_ = value; }
  804. void set_ranged_weapon_type(int8 value) { std::lock_guard<std::mutex> lk(classMutex); ranged_weapon_type_ = value; }
  805. void set_primary_weapon_damage_low(int32 value) { std::lock_guard<std::mutex> lk(classMutex); primary_weapon_damage_low_ = value; }
  806. void set_primary_weapon_damage_high(int32 value) { std::lock_guard<std::mutex> lk(classMutex); primary_weapon_damage_high_ = value; }
  807. void set_secondary_weapon_damage_low(int32 value) { std::lock_guard<std::mutex> lk(classMutex); secondary_weapon_damage_low_ = value; }
  808. void set_secondary_weapon_damage_high(int32 value) { std::lock_guard<std::mutex> lk(classMutex); secondary_weapon_damage_high_ = value; }
  809. void set_ranged_weapon_damage_low(int32 value) { std::lock_guard<std::mutex> lk(classMutex); ranged_weapon_damage_low_ = value; }
  810. void set_ranged_weapon_damage_high(int32 value) { std::lock_guard<std::mutex> lk(classMutex); ranged_weapon_damage_high_ = value; }
  811. void set_wield_type(int8 value) { std::lock_guard<std::mutex> lk(classMutex); wield_type_ = value; }
  812. void set_attack_type(int8 value) { std::lock_guard<std::mutex> lk(classMutex); attack_type_ = value; }
  813. void set_primary_weapon_delay(int16 value) { std::lock_guard<std::mutex> lk(classMutex); primary_weapon_delay_ = value; }
  814. void set_secondary_weapon_delay(int16 value) { std::lock_guard<std::mutex> lk(classMutex); secondary_weapon_delay_ = value; }
  815. void set_ranged_weapon_delay(int16 value) { std::lock_guard<std::mutex> lk(classMutex); ranged_weapon_delay_ = value; }
  816. void set_override_primary_weapon(int8 value) { std::lock_guard<std::mutex> lk(classMutex); override_secondary_weapon_ = value; }
  817. void set_override_secondary_weapon(int8 value) { std::lock_guard<std::mutex> lk(classMutex); override_secondary_weapon_ = value; }
  818. void set_override_ranged_weapon(int8 value) { std::lock_guard<std::mutex> lk(classMutex); override_ranged_weapon_ = value; }
  819. void ResetEffects(Spawn* spawn)
  820. {
  821. for(int i=0;i<45;i++){
  822. if(i<30){
  823. maintained_effects[i].spell_id = 0xFFFFFFFF;
  824. if (spawn->IsPlayer())
  825. maintained_effects[i].icon = 0xFFFF;
  826. maintained_effects[i].spell = nullptr;
  827. }
  828. spell_effects[i].spell_id = 0xFFFFFFFF;
  829. spell_effects[i].spell = nullptr;
  830. }
  831. }
  832. // maintained via their own mutex
  833. SpellEffects spell_effects[45];
  834. MaintainedEffects maintained_effects[30];
  835. private:
  836. std::string name_;
  837. int8 class1_;
  838. int8 class2_;
  839. int8 class3_;
  840. int8 race_;
  841. int8 gender_;
  842. int16 level_;
  843. int16 max_level_;
  844. int16 effective_level_;
  845. int16 tradeskill_level_;
  846. int16 tradeskill_max_level_;
  847. int8 cur_concentration_;
  848. int8 max_concentration_;
  849. int16 cur_attack_;
  850. int16 attack_base_;
  851. int16 cur_mitigation_;
  852. int16 max_mitigation_;
  853. int16 mitigation_base_;
  854. int16 avoidance_display_;
  855. float cur_avoidance_;
  856. int16 base_avoidance_pct_;
  857. int16 avoidance_base_;
  858. int16 max_avoidance_;
  859. float parry_;
  860. float parry_base_;
  861. float deflection_;
  862. int16 deflection_base_;
  863. float block_;
  864. int16 block_base_;
  865. float riposte_;
  866. float riposte_base_;
  867. float str_; //int16
  868. float sta_; //int16
  869. float agi_;//int16
  870. float wis_;//int16
  871. float intel_;//int16
  872. float str_base_;//int16
  873. float sta_base_;//int16
  874. float agi_base_;//int16
  875. float wis_base_;//int16
  876. float intel_base_;//int16
  877. int16 heat_;
  878. int16 cold_;
  879. int16 magic_;
  880. int16 mental_;
  881. int16 divine_;
  882. int16 disease_;
  883. int16 poison_;
  884. int16 disease_base_;
  885. int16 cold_base_;
  886. int16 divine_base_;
  887. int16 magic_base_;
  888. int16 mental_base_;
  889. int16 heat_base_;
  890. int16 poison_base_;
  891. int16 elemental_base_;
  892. int16 noxious_base_;
  893. int16 arcane_base_;
  894. int32 coin_copper_;
  895. int32 coin_silver_;
  896. int32 coin_gold_;
  897. int32 coin_plat_;
  898. int32 bank_coin_copper_;
  899. int32 bank_coin_silver_;
  900. int32 bank_coin_gold_;
  901. int32 bank_coin_plat_;
  902. int32 status_points_;
  903. std::string deity_;
  904. int32 weight_;
  905. int32 max_weight_;
  906. int8 tradeskill_class1_;
  907. int8 tradeskill_class2_;
  908. int8 tradeskill_class3_;
  909. int16 account_age_base_;
  910. int8 account_age_bonus_[19];
  911. int16 absorb_;
  912. int32 xp_;
  913. int32 xp_needed_;
  914. float xp_debt_;
  915. int16 xp_yellow_;
  916. int16 xp_yellow_vitality_bar_;
  917. int16 xp_blue_vitality_bar_;
  918. int16 xp_blue_;
  919. int32 ts_xp_;
  920. int32 ts_xp_needed_;
  921. int16 tradeskill_exp_yellow_;
  922. int16 tradeskill_exp_blue_;
  923. int32 flags_;
  924. int32 flags2_;
  925. float xp_vitality_;
  926. float tradeskill_xp_vitality_;
  927. int16 mitigation_skill1_;
  928. int16 mitigation_skill2_;
  929. int16 mitigation_skill3_;
  930. int16 mitigation_pve_;
  931. int16 mitigation_pvp_;
  932. float ability_modifier_;
  933. float critical_mitigation_;
  934. float block_chance_;
  935. float uncontested_parry_;
  936. float uncontested_block_;
  937. float uncontested_dodge_;
  938. float uncontested_riposte_;
  939. float crit_chance_;
  940. float crit_bonus_;
  941. float potency_;
  942. float hate_mod_;
  943. float reuse_speed_;
  944. float casting_speed_;
  945. float recovery_speed_;
  946. float spell_reuse_speed_;
  947. float spell_multi_attack_;
  948. float dps_;
  949. float dps_multiplier_;
  950. float attackspeed_;
  951. float haste_;
  952. float multi_attack_;
  953. float flurry_;
  954. float melee_ae_;
  955. float strikethrough_;
  956. float accuracy_;
  957. float offensivespeed_;
  958. float rain_;
  959. float wind_;
  960. sint8 alignment_;
  961. int32 pet_id_;
  962. std::string pet_name_;
  963. float pet_health_pct_;
  964. float pet_power_pct_;
  965. int8 pet_movement_;
  966. int8 pet_behavior_;
  967. int8 vision_;
  968. int8 breathe_underwater_;
  969. std::string biography_;
  970. float drunk_;
  971. sint16 power_regen_;
  972. sint16 hp_regen_;
  973. int8 power_regen_override_;
  974. int8 hp_regen_override_;
  975. int8 water_type_;
  976. int8 flying_type_;
  977. int8 no_interrupt_;
  978. int8 interaction_flag_;
  979. int8 tag1_;
  980. int16 mood_;
  981. int32 range_last_attack_time_;
  982. int32 primary_last_attack_time_;
  983. int32 secondary_last_attack_time_;
  984. int16 primary_attack_delay_;
  985. int16 secondary_attack_delay_;
  986. int16 ranged_attack_delay_;
  987. int8 primary_weapon_type_;
  988. int8 secondary_weapon_type_;
  989. int8 ranged_weapon_type_;
  990. int32 primary_weapon_damage_low_;
  991. int32 primary_weapon_damage_high_;
  992. int32 secondary_weapon_damage_low_;
  993. int32 secondary_weapon_damage_high_;
  994. int32 ranged_weapon_damage_low_;
  995. int32 ranged_weapon_damage_high_;
  996. int8 wield_type_;
  997. int8 attack_type_;
  998. int16 primary_weapon_delay_;
  999. int16 secondary_weapon_delay_;
  1000. int16 ranged_weapon_delay_;
  1001. int8 override_primary_weapon_;
  1002. int8 override_secondary_weapon_;
  1003. int8 override_ranged_weapon_;
  1004. // when PacketStruct is fixed for C++17 this should become a shared_mutex and handle read/write lock
  1005. std::mutex classMutex;
  1006. };
  1007. struct WardInfo {
  1008. LuaSpell* Spell;
  1009. int32 BaseDamage;
  1010. int32 DamageLeft;
  1011. int8 WardType;
  1012. int8 DamageType;
  1013. bool keepWard;
  1014. int32 DamageAbsorptionPercentage;
  1015. int32 DamageAbsorptionMaxHealthPercent;
  1016. int32 RedirectDamagePercent;
  1017. int32 LastRedirectDamage;
  1018. int32 LastAbsorbedDamage;
  1019. int32 HitCount;
  1020. int32 MaxHitCount;
  1021. bool AbsorbAllDamage; // damage is always absorbed, usually spells based on hits, when we pass damage in AddWard as 0 this will be set to true
  1022. };
  1023. #define WARD_TYPE_ALL 0
  1024. #define WARD_TYPE_PHYSICAL 1
  1025. #define WARD_TYPE_MAGICAL 2
  1026. struct Proc {
  1027. LuaSpell* spell;
  1028. Item* item;
  1029. float chance;
  1030. int32 spellid;
  1031. };
  1032. #define PROC_TYPE_OFFENSIVE 1
  1033. #define PROC_TYPE_DEFENSIVE 2
  1034. #define PROC_TYPE_PHYSICAL_OFFENSIVE 3
  1035. #define PROC_TYPE_PHYSICAL_DEFENSIVE 4
  1036. #define PROC_TYPE_MAGICAL_OFFENSIVE 5
  1037. #define PROC_TYPE_MAGICAL_DEFENSIVE 6
  1038. #define PROC_TYPE_BLOCK 7
  1039. #define PROC_TYPE_PARRY 8
  1040. #define PROC_TYPE_RIPOSTE 9
  1041. #define PROC_TYPE_EVADE 10
  1042. #define PROC_TYPE_HEALING 11
  1043. #define PROC_TYPE_BENEFICIAL 12
  1044. #define PROC_TYPE_DEATH 13
  1045. #define PROC_TYPE_KILL 14
  1046. #define PROC_TYPE_DAMAGED 15
  1047. #define PROC_TYPE_DAMAGED_MELEE 16
  1048. #define PROC_TYPE_DAMAGED_MAGIC 17
  1049. #define PROC_TYPE_RANGED_ATTACK 18
  1050. #define PROC_TYPE_RANGED_DEFENSE 19
  1051. struct ThreatTransfer {
  1052. int32 Target;
  1053. float Amount;
  1054. LuaSpell* Spell;
  1055. };
  1056. #define DET_TYPE_TRAUMA 1
  1057. #define DET_TYPE_ARCANE 2
  1058. #define DET_TYPE_NOXIOUS 3
  1059. #define DET_TYPE_ELEMENTAL 4
  1060. #define DET_TYPE_CURSE 5
  1061. #define DISPELL_TYPE_CURE 0
  1062. #define DISPELL_TYPE_DISPELL 1
  1063. #define CONTROL_EFFECT_TYPE_MEZ 1
  1064. #define CONTROL_EFFECT_TYPE_STIFLE 2
  1065. #define CONTROL_EFFECT_TYPE_DAZE 3
  1066. #define CONTROL_EFFECT_TYPE_STUN 4
  1067. #define CONTROL_EFFECT_TYPE_ROOT 5
  1068. #define CONTROL_EFFECT_TYPE_FEAR 6
  1069. #define CONTROL_EFFECT_TYPE_WALKUNDERWATER 7
  1070. #define CONTROL_EFFECT_TYPE_JUMPUNDERWATER 8
  1071. #define CONTROL_EFFECT_TYPE_INVIS 9
  1072. #define CONTROL_EFFECT_TYPE_STEALTH 10
  1073. #define CONTROL_EFFECT_TYPE_SNARE 11
  1074. #define CONTROL_EFFECT_TYPE_FLIGHT 12
  1075. #define CONTROL_EFFECT_TYPE_GLIDE 13
  1076. #define CONTROL_EFFECT_TYPE_SAFEFALL 14
  1077. #define CONTROL_MAX_EFFECTS 15 // always +1 to highest control effect
  1078. #define IMMUNITY_TYPE_MEZ 1
  1079. #define IMMUNITY_TYPE_STIFLE 2
  1080. #define IMMUNITY_TYPE_DAZE 3
  1081. #define IMMUNITY_TYPE_STUN 4
  1082. #define IMMUNITY_TYPE_ROOT 5
  1083. #define IMMUNITY_TYPE_FEAR 6
  1084. #define IMMUNITY_TYPE_AOE 7
  1085. #define IMMUNITY_TYPE_TAUNT 8
  1086. #define IMMUNITY_TYPE_RIPOSTE 9
  1087. //class Spell;
  1088. //class ZoneServer;
  1089. //The entity class is for NPCs and Players, spawns which are able to fight
  1090. class Entity : public Spawn{
  1091. public:
  1092. Entity();
  1093. virtual ~Entity();
  1094. void DeleteSpellEffects(bool removeClient = false);
  1095. void RemoveSpells();
  1096. void MapInfoStruct();
  1097. virtual float GetDodgeChance();
  1098. virtual void AddMaintainedSpell(LuaSpell* spell);
  1099. virtual void AddSpellEffect(LuaSpell* spell, int32 override_expire_time = 0);
  1100. virtual void RemoveMaintainedSpell(LuaSpell* spell);
  1101. virtual void RemoveSpellEffect(LuaSpell* spell);
  1102. virtual bool HasActiveMaintainedSpell(Spell* spell, Spawn* target);
  1103. virtual bool HasActiveSpellEffect(Spell* spell, Spawn* target);
  1104. virtual void AddSkillBonus(int32 spell_id, int32 skill_id, float value);
  1105. void AddDetrimentalSpell(LuaSpell* spell, int32 override_expire_timestamp = 0);
  1106. DetrimentalEffects* GetDetrimentalEffect(int32 spell_id, Entity* caster);
  1107. virtual MaintainedEffects* GetMaintainedSpell(int32 spell_id);
  1108. void RemoveDetrimentalSpell(LuaSpell* spell);
  1109. void SetDeity(int8 new_deity){
  1110. deity = new_deity;
  1111. }
  1112. int8 GetDeity(){ return deity; }
  1113. EquipmentItemList* GetEquipmentList();
  1114. EquipmentItemList* GetAppearanceEquipmentList();
  1115. bool IsEntity(){ return true; }
  1116. float CalculateSkillStatChance(char* skill, int16 item_stat, float max_cap = 0.0f, float modifier = 0.0f, bool add_to_skill = false);
  1117. void CalculateBonuses();
  1118. void SetRegenValues(int16 effective_level);
  1119. float CalculateBonusMod();
  1120. float CalculateDPSMultiplier();
  1121. float CalculateCastingSpeedMod();
  1122. InfoStruct* GetInfoStruct();
  1123. int16 GetStr();
  1124. int16 GetSta();
  1125. int16 GetInt();
  1126. int16 GetWis();
  1127. int16 GetAgi();
  1128. int16 GetPrimaryStat();
  1129. int16 GetHeatResistance();
  1130. int16 GetColdResistance();
  1131. int16 GetMagicResistance();
  1132. int16 GetMentalResistance();
  1133. int16 GetDivineResistance();
  1134. int16 GetDiseaseResistance();
  1135. int16 GetPoisonResistance();
  1136. int16 GetStrBase();
  1137. int16 GetStaBase();
  1138. int16 GetIntBase();
  1139. int16 GetWisBase();
  1140. int16 GetAgiBase();
  1141. int16 GetHeatResistanceBase();
  1142. int16 GetColdResistanceBase();
  1143. int16 GetMagicResistanceBase();
  1144. int16 GetMentalResistanceBase();
  1145. int16 GetDivineResistanceBase();
  1146. int16 GetDiseaseResistanceBase();
  1147. int16 GetPoisonResistanceBase();
  1148. int8 GetConcentrationCurrent();
  1149. int8 GetConcentrationMax();
  1150. sint8 GetAlignment();
  1151. void SetAlignment(sint8 new_value);
  1152. bool HasMoved(bool include_heading);
  1153. void SetHPRegen(int16 new_val);
  1154. int16 GetHPRegen();
  1155. void DoRegenUpdate();
  1156. MaintainedEffects* GetFreeMaintainedSpellSlot();
  1157. SpellEffects* GetFreeSpellEffectSlot();
  1158. SpellEffects* GetSpellEffect(int32 id, Entity* caster = 0);
  1159. SpellEffects* GetSpellEffectBySpellType(int8 spell_type);
  1160. SpellEffects* GetSpellEffectWithLinkedTimer(int32 id, int32 linked_timer = 0, sint32 type_group_spell_id = 0, Entity* caster = 0);
  1161. LuaSpell* HasLinkedTimerID(LuaSpell* spell, Spawn* target = nullptr, bool stackWithOtherPlayers = true);
  1162. //flags
  1163. int32 GetFlags() { return info_struct.get_flags(); }
  1164. int32 GetFlags2() { return info_struct.get_flags2(); }
  1165. bool query_flags(int flag) {
  1166. if (flag > 63) return false;
  1167. if (flag < 32) return ((info_struct.get_flags() & (1 << flag))?true:false);
  1168. return ((info_struct.get_flags2() & (1 << (flag - 32)))?true:false);
  1169. }
  1170. float GetMaxSpeed();
  1171. void SetMaxSpeed(float val);
  1172. //combat stuff:
  1173. int32 GetRangeLastAttackTime();
  1174. void SetRangeLastAttackTime(int32 time);
  1175. int16 GetRangeAttackDelay();
  1176. int16 GetRangeWeaponDelay();
  1177. void SetRangeWeaponDelay(int16 new_delay);
  1178. void SetRangeAttackDelay(int16 new_delay);
  1179. int32 GetPrimaryLastAttackTime();
  1180. int16 GetPrimaryAttackDelay();
  1181. void SetPrimaryAttackDelay(int16 new_delay);
  1182. void SetPrimaryLastAttackTime(int32 new_time);
  1183. void SetPrimaryWeaponDelay(int16 new_delay);
  1184. int32 GetSecondaryLastAttackTime();
  1185. int16 GetSecondaryAttackDelay();
  1186. void SetSecondaryAttackDelay(int16 new_delay);
  1187. void SetSecondaryLastAttackTime(int32 new_time);
  1188. void SetSecondaryWeaponDelay(int16 new_delay);
  1189. int32 GetPrimaryWeaponMinDamage();
  1190. int32 GetPrimaryWeaponMaxDamage();
  1191. int32 GetSecondaryWeaponMinDamage();
  1192. int32 GetSecondaryWeaponMaxDamage();
  1193. int32 GetRangedWeaponMinDamage();
  1194. int32 GetRangedWeaponMaxDamage();
  1195. int8 GetPrimaryWeaponType();
  1196. int8 GetSecondaryWeaponType();
  1197. int8 GetRangedWeaponType();
  1198. int8 GetWieldType();
  1199. int16 GetPrimaryWeaponDelay();
  1200. int16 GetSecondaryWeaponDelay();
  1201. bool IsDualWield();
  1202. bool BehindTarget(Spawn* target);
  1203. bool FlankingTarget(Spawn* target);
  1204. void ChangePrimaryWeapon();
  1205. void ChangeSecondaryWeapon();
  1206. void ChangeRangedWeapon();
  1207. int32 GetStrengthDamage();
  1208. virtual Skill* GetSkillByName(const char* name, bool check_update = false);
  1209. virtual Skill* GetSkillByID(int32 id, bool check_update = false);
  1210. bool AttackAllowed(Entity* target, float distance = 0, bool range_attack = false);
  1211. bool PrimaryWeaponReady();
  1212. bool SecondaryWeaponReady();
  1213. bool RangeWeaponReady();
  1214. void MeleeAttack(Spawn* victim, float distance, bool primary, bool multi_attack = false);
  1215. void RangeAttack(Spawn* victim, float distance, Item* weapon, Item* ammo, bool multi_attack = false);
  1216. bool SpellAttack(Spawn* victim, float distance, LuaSpell* luaspell, int8 damage_type, int32 low_damage, int32 high_damage, int8 crit_mod = 0, bool no_calcs = false);
  1217. bool ProcAttack(Spawn* victim, int8 damage_type, int32 low_damage, int32 high_damage, string name, string success_msg, string effect_msg);
  1218. bool SpellHeal(Spawn* target, float distance, LuaSpell* luaspell, string heal_type, int32 low_heal, int32 high_heal, int8 crit_mod = 0, bool no_calcs = false, string custom_spell_name="");
  1219. int8 DetermineHit(Spawn* victim, int8 damage_type, float ToHitBonus, bool is_caster_spell, LuaSpell* lua_spell = nullptr);
  1220. float GetDamageTypeResistPercentage(int8 damage_type);
  1221. Skill* GetSkillByWeaponType(int8 type, bool update);
  1222. bool DamageSpawn(Entity* victim, int8 type, int8 damage_type, int32 low_damage, int32 high_damage, const char* spell_name, int8 crit_mod = 0, bool is_tick = false, bool no_damage_calcs = false, bool ignore_attacker = false, LuaSpell* spell = 0);
  1223. float CalculateMitigation(int8 type = DAMAGE_PACKET_TYPE_SIMPLE_DAMAGE, int8 damage_type = 0, int16 attacker_level = 0, bool for_pvp = false);
  1224. void AddHate(Entity* attacker, sint32 hate);
  1225. bool CheckInterruptSpell(Entity* attacker);
  1226. bool CheckFizzleSpell(LuaSpell* spell);
  1227. void KillSpawn(Spawn* dead, int8 type = 0, int8 damage_type = 0, int16 kill_blow_type = 0);
  1228. void HandleDeathExperienceDebt(Spawn* killer);
  1229. void SetAttackDelay(bool primary = false, bool ranged = false);
  1230. float CalculateAttackSpeedMod();
  1231. virtual void ProcessCombat();
  1232. bool EngagedInCombat();
  1233. virtual void InCombat(bool val);
  1234. bool IsCasting();
  1235. void IsCasting(bool val);
  1236. void SetMount(int16 mount_id, int8 red = 0xFF, int8 green = 0xFF, int8 blue = 0xFF, bool setUpdateFlags = true)
  1237. {
  1238. if (mount_id == 0) {
  1239. EQ2_Color color;
  1240. color.red = 0;
  1241. color.green = 0;
  1242. color.blue = 0;
  1243. SetMountColor(&color);
  1244. SetMountSaddleColor(&color);
  1245. }
  1246. else
  1247. {
  1248. EQ2_Color color;
  1249. color.red = red;
  1250. color.green = green;
  1251. color.blue = blue;
  1252. SetMountColor(&color);
  1253. SetMountSaddleColor(&color);
  1254. }
  1255. SetInfo(&features.mount_model_type, mount_id, setUpdateFlags);
  1256. }
  1257. void SetEquipment(Item* item, int8 slot = 255);
  1258. void SetEquipment(int8 slot, int16 type, int8 red, int8 green, int8 blue, int8 h_r, int8 h_g, int8 h_b){
  1259. std::lock_guard<std::mutex> lk(MEquipment);
  1260. if(slot >= NUM_SLOTS)
  1261. return;
  1262. SetInfo(&equipment.equip_id[slot], type);
  1263. SetInfo(&equipment.color[slot].red, red);
  1264. SetInfo(&equipment.color[slot].green, green);
  1265. SetInfo(&equipment.color[slot].blue, blue);
  1266. SetInfo(&equipment.highlight[slot].red, h_r);
  1267. SetInfo(&equipment.highlight[slot].green, h_g);
  1268. SetInfo(&equipment.highlight[slot].blue, h_b);
  1269. }
  1270. void SetHairType(int16 new_val, bool setUpdateFlags = true){
  1271. SetInfo(&features.hair_type, new_val, setUpdateFlags);
  1272. }
  1273. void SetHairColor1(EQ2_Color new_val, bool setUpdateFlags = true){
  1274. SetInfo(&features.hair_color1, new_val, setUpdateFlags);
  1275. }
  1276. void SetHairColor2(EQ2_Color new_val, bool setUpdateFlags = true){
  1277. SetInfo(&features.hair_color2, new_val, setUpdateFlags);
  1278. }
  1279. void SetSogaHairColor1(EQ2_Color new_val, bool setUpdateFlags = true){
  1280. SetInfo(&features.soga_hair_color1, new_val, setUpdateFlags);
  1281. }
  1282. void SetSogaHairColor2(EQ2_Color new_val, bool setUpdateFlags = true){
  1283. SetInfo(&features.soga_hair_color2, new_val, setUpdateFlags);
  1284. }
  1285. void SetHairHighlightColor(EQ2_Color new_val, bool setUpdateFlags = true){
  1286. SetInfo(&features.hair_highlight_color, new_val, setUpdateFlags);
  1287. }
  1288. void SetSogaHairHighlightColor(EQ2_Color new_val, bool setUpdateFlags = true){
  1289. SetInfo(&features.soga_hair_highlight_color, new_val, setUpdateFlags);
  1290. }
  1291. void SetHairColor(EQ2_Color new_val, bool setUpdateFlags = true){
  1292. SetInfo(&features.hair_type_color, new_val, setUpdateFlags);
  1293. }
  1294. void SetSogaHairColor(EQ2_Color new_val, bool setUpdateFlags = true){
  1295. SetInfo(&features.soga_hair_type_color, new_val, setUpdateFlags);
  1296. }
  1297. void SetHairTypeHighlightColor(EQ2_Color new_val, bool setUpdateFlags = true){
  1298. SetInfo(&features.hair_type_highlight_color, new_val, setUpdateFlags);
  1299. }
  1300. void SetSogaHairTypeHighlightColor(EQ2_Color new_val, bool setUpdateFlags = true){
  1301. SetInfo(&features.soga_hair_type_highlight_color, new_val, setUpdateFlags);
  1302. }
  1303. void SetFacialHairType(int16 new_val, bool setUpdateFlags = true){
  1304. SetInfo(&features.hair_face_type, new_val, setUpdateFlags);
  1305. }
  1306. void SetFacialHairColor(EQ2_Color new_val, bool setUpdateFlags = true){
  1307. SetInfo(&features.hair_face_color, new_val, setUpdateFlags);
  1308. }
  1309. void SetSogaFacialHairColor(EQ2_Color new_val, bool setUpdateFlags = true){
  1310. SetInfo(&features.soga_hair_face_color, new_val, setUpdateFlags);
  1311. }
  1312. void SetFacialHairHighlightColor(EQ2_Color new_val, bool setUpdateFlags = true){
  1313. SetInfo(&features.hair_face_highlight_color, new_val, setUpdateFlags);
  1314. }
  1315. void SetSogaFacialHairHighlightColor(EQ2_Color new_val, bool setUpdateFlags = true){
  1316. SetInfo(&features.soga_hair_face_highlight_color, new_val, setUpdateFlags);
  1317. }
  1318. void SetWingType(int16 new_val, bool setUpdateFlags = true){
  1319. SetInfo(&features.wing_type, new_val, setUpdateFlags);
  1320. }
  1321. void SetWingColor1(EQ2_Color new_val, bool setUpdateFlags = true){
  1322. SetInfo(&features.wing_color1, new_val, setUpdateFlags);
  1323. }
  1324. void SetWingColor2(EQ2_Color new_val, bool setUpdateFlags = true){
  1325. SetInfo(&features.wing_color2, new_val, setUpdateFlags);
  1326. }
  1327. void SetChestType(int16 new_val, bool setUpdateFlags = true){
  1328. SetInfo(&features.chest_type, new_val, setUpdateFlags);
  1329. }
  1330. void SetLegsType(int16 new_val, bool setUpdateFlags = true){
  1331. SetInfo(&features.legs_type, new_val, setUpdateFlags);
  1332. }
  1333. void SetSogaHairType(int16 new_val, bool setUpdateFlags = true){
  1334. SetInfo(&features.soga_hair_type, new_val, setUpdateFlags);
  1335. }
  1336. void SetSogaFacialHairType(int16 new_val, bool setUpdateFlags = true){
  1337. SetInfo(&features.soga_hair_face_type, new_val, setUpdateFlags);
  1338. }
  1339. void SetSogaChestType(int16 new_val, bool setUpdateFlags = true){
  1340. SetInfo(&features.soga_chest_type, new_val, setUpdateFlags);
  1341. }
  1342. void SetSogaLegType(int16 new_val, bool setUpdateFlags = true){
  1343. SetInfo(&features.soga_legs_type, new_val, setUpdateFlags);
  1344. }
  1345. void SetSkinColor(EQ2_Color color){
  1346. SetInfo(&features.skin_color, color);
  1347. }
  1348. void SetSogaSkinColor(EQ2_Color color){
  1349. SetInfo(&features.soga_skin_color, color);
  1350. }
  1351. void SetModelColor(EQ2_Color color){
  1352. SetInfo(&features.model_color, color);
  1353. }
  1354. void SetSogaModelColor(EQ2_Color color){
  1355. SetInfo(&features.soga_model_color, color);
  1356. }
  1357. void SetCombatVoice(int16 val, bool setUpdateFlags = true) {
  1358. SetInfo(&features.combat_voice, val, setUpdateFlags);
  1359. }
  1360. void SetEmoteVoice(int16 val, bool setUpdateFlags = true) {
  1361. SetInfo(&features.emote_voice, val, setUpdateFlags);
  1362. }
  1363. int16 GetCombatVoice(){ return features.combat_voice; }
  1364. int16 GetEmoteVoice(){ return features.emote_voice; }
  1365. int16 GetMount(){ return features.mount_model_type; }
  1366. void SetMountSaddleColor(EQ2_Color* color){
  1367. SetInfo(&features.mount_saddle_color, *color);
  1368. }
  1369. void SetMountColor(EQ2_Color* color){
  1370. SetInfo(&features.mount_color, *color);
  1371. }
  1372. void SetEyeColor(EQ2_Color eye_color){
  1373. SetInfo(&features.eye_color, eye_color);
  1374. }
  1375. void SetSogaEyeColor(EQ2_Color eye_color){
  1376. SetInfo(&features.soga_eye_color, eye_color);
  1377. }
  1378. int16 GetHairType(){
  1379. return features.hair_type;
  1380. }
  1381. int16 GetFacialHairType(){
  1382. return features.hair_face_type;
  1383. }
  1384. int16 GetWingType(){
  1385. return features.wing_type;
  1386. }
  1387. int16 GetChestType(){
  1388. return features.chest_type;
  1389. }
  1390. int16 GetLegsType(){
  1391. return features.legs_type;
  1392. }
  1393. int16 GetSogaHairType(){
  1394. return features.soga_hair_type;
  1395. }
  1396. int16 GetSogaFacialHairType(){
  1397. return features.soga_hair_face_type;
  1398. }
  1399. int16 GetSogaChestType(){
  1400. return features.soga_chest_type;
  1401. }
  1402. int16 GetSogaLegType(){
  1403. return features.soga_legs_type;
  1404. }
  1405. EQ2_Color* GetSkinColor(){
  1406. return &features.skin_color;
  1407. }
  1408. EQ2_Color* GetModelColor(){
  1409. return &features.model_color;
  1410. }
  1411. EQ2_Color* GetSogaModelColor(){
  1412. return &features.soga_model_color;
  1413. }
  1414. EQ2_Color* GetEyeColor(){
  1415. return &features.eye_color;
  1416. }
  1417. EQ2_Color* GetMountSaddleColor(){
  1418. return &features.mount_saddle_color;
  1419. }
  1420. EQ2_Color* GetMountColor(){
  1421. return &features.mount_color;
  1422. }
  1423. // should only be accessed through MEquipment mutex
  1424. EQ2_Equipment equipment;
  1425. CharFeatures features;
  1426. void AddSpellBonus(LuaSpell* spell, int16 type, float value, int64 class_req =0, vector<int16> race_req = vector<int16>(), vector<int16> faction_req = vector<int16>());
  1427. BonusValues* GetSpellBonus(int32 spell_id);
  1428. vector<BonusValues*>* GetAllSpellBonuses(LuaSpell* spell);
  1429. bool CheckSpellBonusRemoval(LuaSpell* spell, int16 type);
  1430. void RemoveSpellBonus(const LuaSpell* spell, bool remove_all = false);
  1431. void RemoveAllSpellBonuses();
  1432. void CalculateSpellBonuses(ItemStatsValues* stats);
  1433. void AddMezSpell(LuaSpell* spell);
  1434. void RemoveMezSpell(LuaSpell* spell);
  1435. void RemoveAllMezSpells();
  1436. bool IsMezzed();
  1437. void AddStifleSpell(LuaSpell* spell);
  1438. void RemoveStifleSpell(LuaSpell* spell);
  1439. bool IsStifled();
  1440. void AddDazeSpell(LuaSpell* spell);
  1441. void RemoveDazeSpell(LuaSpell* spell);
  1442. bool IsDazed();
  1443. void AddStunSpell(LuaSpell* spell);
  1444. void RemoveStunSpell(LuaSpell* spell);
  1445. bool IsStunned();
  1446. bool IsMezzedOrStunned() {return IsMezzed() || IsStunned();}
  1447. void AddRootSpell(LuaSpell* spell);
  1448. void RemoveRootSpell(LuaSpell* spell);
  1449. bool IsRooted();
  1450. void AddFearSpell(LuaSpell* spell);
  1451. void RemoveFearSpell(LuaSpell* spell);
  1452. bool IsFeared();
  1453. void AddSnareSpell(LuaSpell* spell);
  1454. void RemoveSnareSpell(LuaSpell* spell);
  1455. void SetSnareValue(LuaSpell* spell, float snare_val);
  1456. bool IsSnared();
  1457. float GetHighestSnare();
  1458. bool HasControlEffect(int8 type);
  1459. void HaltMovement();
  1460. void SetCombatPet(Entity* pet) { this->pet = pet; }
  1461. void SetCharmedPet(Entity* pet) { charmedPet = pet; }
  1462. void SetDeityPet(Entity* pet) { deityPet = pet; }
  1463. void SetCosmeticPet(Entity* pet) { cosmeticPet = pet; }
  1464. Entity* GetPet() { return pet; }
  1465. Entity* GetCharmedPet() { return charmedPet; }
  1466. Entity* GetDeityPet() { return deityPet; }
  1467. Entity* GetCosmeticPet() { return cosmeticPet; }
  1468. /// <summary>Check to see if the entity has a combat pet</summary>
  1469. /// <returns>True if the entity has a combat pet</returns>
  1470. bool HasPet() { return (pet || charmedPet) ? true : false; }
  1471. void HideDeityPet(bool val);
  1472. void HideCosmeticPet(bool val);
  1473. void DismissPet(Entity* pet, bool from_death = false, bool spawnListLocked = false);
  1474. void DismissAllPets(bool from_death = false, bool spawnListLocked = false);
  1475. void SetOwner(Entity* owner) { if (owner) { this->owner = owner->GetID(); } else { owner = 0; } }
  1476. Entity* GetOwner();
  1477. int8 GetPetType() { return m_petType; }
  1478. void SetPetType(int8 val) { m_petType = val; }
  1479. void SetPetSpellID(int32 val) { m_petSpellID = val; }
  1480. int32 GetPetSpellID() { return m_petSpellID; }
  1481. void SetPetSpellTier(int8 val) { m_petSpellTier = val; }
  1482. int8 GetPetSpellTier() { return m_petSpellTier; }
  1483. bool IsDismissing() { return m_petDismissing; }
  1484. void SetDismissing(bool val) { m_petDismissing = val; }
  1485. /// <summary>Creates a loot chest to drop in the world</summary>
  1486. /// <returns>Pointer to the chest</returns>
  1487. NPC* DropChest();
  1488. /// <summary>Add a ward to the entities ward list</summary>
  1489. /// <param name='spellID'>Spell id of the ward to add</param>
  1490. /// <param name='ward'>WardInfo* of the ward we are adding</parma>
  1491. void AddWard(int32 spellID, WardInfo* ward);
  1492. /// <summary>Gets ward info for the given spell id</summary>
  1493. /// <param name='spellID'>The spell id of the ward we want to get</param>
  1494. /// <returns>WardInfo for the given spell id</returns>
  1495. WardInfo* GetWard(int32 spellID);
  1496. /// <summary>Removes the ward with the given spell id</summary>
  1497. /// <param name='spellID'>The spell id of the ward to remove</param>
  1498. void RemoveWard(int32 spellID);
  1499. /// <summary>Subtracts the given damage from the wards</summary>
  1500. /// <param name='damage'>The damage to subtract from the wards</param>
  1501. /// <returns>The amount of damage left after wards</returns>
  1502. int32 CheckWards(Entity* attacker, int32 damage, int8 damage_type);
  1503. map<int16, float> stats;
  1504. /// <summary>Adds a proc to the list of current procs</summary>
  1505. /// <param name='type'>The type of proc to add</param>
  1506. /// <param name='chance'>The percent chance the proc has to go off</param>
  1507. /// <param name='item'>The item the proc is coming from if any</param>
  1508. /// <param name='spell'>The spell the proc is coming from if any</param>
  1509. void AddProc(int8 type, float chance, Item* item = 0, LuaSpell* spell = 0);
  1510. /// <summary>Removes a proc from the list of current procs</summary>
  1511. /// <param name='item'>Item the proc is from</param>
  1512. /// <param name='spell'>Spell the proc is from</param>
  1513. void RemoveProc(Item* item = 0, LuaSpell* spell = 0);
  1514. /// <summary>Cycles through the proc list and executes them if they can go off</summary>
  1515. /// <param name='type'>The proc type to check</param>
  1516. /// <param name='target'>The target of the proc if it goes off</param>
  1517. void CheckProcs(int8 type, Spawn* target);
  1518. /// <summary>Clears the entire proc list</summary>
  1519. void ClearProcs();
  1520. float GetSpeed();
  1521. float GetAirSpeed();
  1522. float GetBaseSpeed() { return base_speed; }
  1523. void SetSpeed(float val, bool override_ = false) { if ((base_speed == 0.0f && val > 0.0f) || override_) base_speed = val; speed = val; }
  1524. void SetSpeedMultiplier(float val) { speed_multiplier = val; }
  1525. void SetThreatTransfer(ThreatTransfer* transfer);
  1526. ThreatTransfer* GetThreatTransfer() { return m_threatTransfer; }
  1527. int8 GetTraumaCount();
  1528. int8 GetArcaneCount();
  1529. int8 GetNoxiousCount();
  1530. int8 GetElementalCount();
  1531. int8 GetCurseCount();
  1532. int8 GetDetTypeCount(int8 det_type);
  1533. int8 GetDetCount();
  1534. bool HasCurableDetrimentType(int8 det_type);
  1535. Mutex* GetDetrimentMutex();
  1536. Mutex* GetMaintainedMutex();
  1537. Mutex* GetSpellEffectMutex();
  1538. void ClearAllDetriments();
  1539. void CureDetrimentByType(int8 cure_count, int8 det_type, string cure_name, Entity* caster, int8 cure_level = 0);
  1540. void CureDetrimentByControlEffect(int8 cure_count, int8 det_type, string cure_name, Entity* caster, int8 cure_level = 0);
  1541. vector<DetrimentalEffects>* GetDetrimentalSpellEffects();
  1542. void RemoveEffectsFromLuaSpell(LuaSpell* spell);
  1543. virtual void RemoveSkillBonus(int32 spell_id);
  1544. virtual bool CanSeeInvis(Entity* target);
  1545. void CancelAllStealth();
  1546. bool IsStealthed();
  1547. bool IsInvis();
  1548. void AddInvisSpell(LuaSpell* spell);
  1549. void AddStealthSpell(LuaSpell* spell);
  1550. void RemoveStealthSpell(LuaSpell* spell);
  1551. void RemoveInvisSpell(LuaSpell* spell);
  1552. void AddWaterwalkSpell(LuaSpell* spell);
  1553. void AddWaterjumpSpell(LuaSpell* spell);
  1554. void RemoveWaterwalkSpell(LuaSpell* spell);
  1555. void RemoveWaterjumpSpell(LuaSpell* spell);
  1556. void AddAOEImmunity(LuaSpell* spell);
  1557. bool IsAOEImmune();
  1558. void RemoveAOEImmunity(LuaSpell* spell);
  1559. void AddStunImmunity(LuaSpell* spell);
  1560. void RemoveStunImmunity(LuaSpell* spell);
  1561. bool IsStunImmune();
  1562. void AddStifleImmunity(LuaSpell* spell);
  1563. void RemoveStifleImmunity(LuaSpell* spell);
  1564. bool IsStifleImmune();
  1565. void AddMezImmunity(LuaSpell* spell);
  1566. void RemoveMezImmunity(LuaSpell* spell);
  1567. bool IsMezImmune();
  1568. void AddRootImmunity(LuaSpell* spell);
  1569. void RemoveRootImmunity(LuaSpell* spell);
  1570. bool IsRootImmune();
  1571. void AddFearImmunity(LuaSpell* spell);
  1572. void RemoveFearImmunity(LuaSpell* spell);
  1573. bool IsFearImmune();
  1574. void AddDazeImmunity(LuaSpell* spell);
  1575. void RemoveDazeImmunity(LuaSpell* spell);
  1576. bool IsDazeImmune();
  1577. void AddImmunity(LuaSpell* spell, int16 type);
  1578. void RemoveImmunity(LuaSpell* spell, int16 type);
  1579. bool IsImmune(int16 type);
  1580. void AddFlightSpell(LuaSpell* spell);
  1581. void RemoveFlightSpell(LuaSpell* spell);
  1582. void AddSafefallSpell(LuaSpell* spell);
  1583. void RemoveSafefallSpell(LuaSpell* spell);
  1584. void AddGlideSpell(LuaSpell* spell);
  1585. void RemoveGlideSpell(LuaSpell* spell);
  1586. GroupMemberInfo* GetGroupMemberInfo() { return group_member_info; }
  1587. void SetGroupMemberInfo(GroupMemberInfo* info) { group_member_info = info; }
  1588. void UpdateGroupMemberInfo(bool inGroupMgrLock=false, bool groupMembersLocked=false);
  1589. void CustomizeAppearance(PacketStruct* packet);
  1590. Trade* trade;
  1591. // Keep track of entities that hate this spawn.
  1592. set<int32> HatedBy;
  1593. std::mutex MHatedBy;
  1594. bool IsAggroed() {
  1595. int32 size = 0;
  1596. MHatedBy.lock();
  1597. size = HatedBy.size();
  1598. MHatedBy.unlock();
  1599. return size > 0;
  1600. }
  1601. Mutex MCommandMutex;
  1602. bool HasSeeInvisSpell() { return hasSeeInvisSpell; }
  1603. void SetSeeInvisSpell(bool val) { hasSeeInvisSpell = val; }
  1604. bool HasSeeHideSpell() { return hasSeeHideSpell; }
  1605. void SetSeeHideSpell(bool val) { hasSeeHideSpell = val; }
  1606. void SetInfoStruct(InfoStruct* struct_) { info_struct.SetInfoStruct(struct_); }
  1607. std::string GetInfoStructString(std::string field);
  1608. int8 GetInfoStructInt8(std::string field);
  1609. int16 GetInfoStructInt16(std::string field);
  1610. int32 GetInfoStructInt32(std::string field);
  1611. int64 GetInfoStructInt64(std::string field);
  1612. sint8 GetInfoStructSInt8(std::string field);
  1613. sint16 GetInfoStructSInt16(std::string field);
  1614. sint32 GetInfoStructSInt32(std::string field);
  1615. sint64 GetInfoStructSInt64(std::string field);
  1616. int64 GetInfoStructUInt(std::string field);
  1617. sint64 GetInfoStructSInt(std::string field);
  1618. float GetInfoStructFloat(std::string field);
  1619. bool SetInfoStructString(std::string field, std::string value);
  1620. bool SetInfoStructUInt(std::string field, int64 value);
  1621. bool SetInfoStructSInt(std::string field, sint64 value);
  1622. bool SetInfoStructFloat(std::string field, float value);
  1623. sint32 CalculateHateAmount(Spawn* target, sint32 amt);
  1624. sint32 CalculateHealAmount(Spawn* target, sint32 amt, int8 crit_mod, bool* crit, bool skip_crit_mod = false);
  1625. sint32 CalculateDamageAmount(Spawn* target, sint32 damage, int8 base_type, int8 damage_type, LuaSpell* spell);
  1626. sint32 CalculateDamageAmount(Spawn* target, sint32 damage, int8 base_type, int8 damage_type, int8 spell_target_type);
  1627. sint32 CalculateFormulaByStat(sint32 value, int16 stat);
  1628. int32 CalculateFormulaByStat(int32 value, int16 stat);
  1629. int32 CalculateFormulaBonus(int32 value, float percent_bonus);
  1630. float GetStat(int32 item_stat) {
  1631. float item_chance_or_skill = 0.0f;
  1632. MStats.lock();
  1633. item_chance_or_skill = stats[item_stat];
  1634. MStats.unlock();
  1635. return item_chance_or_skill;
  1636. }
  1637. // when PacketStruct is fixed for C++17 this should become a shared_mutex and handle read/write lock
  1638. std::mutex MEquipment;
  1639. std::mutex MStats;
  1640. Mutex MMaintainedSpells;
  1641. Mutex MSpellEffects;
  1642. protected:
  1643. bool in_combat;
  1644. int8 m_petType;
  1645. int32 owner;
  1646. // m_petSpellID holds the spell id used to create/control this pet
  1647. int32 m_petSpellID;
  1648. int8 m_petSpellTier;
  1649. bool m_petDismissing;
  1650. private:
  1651. MutexList<BonusValues*> bonus_list;
  1652. map<int8, MutexList<LuaSpell*>*> control_effects;
  1653. map<int8, MutexList<LuaSpell*>*> immunities;
  1654. float max_speed;
  1655. int8 deity;
  1656. sint16 regen_hp_rate;
  1657. sint16 regen_power_rate;
  1658. float last_x;
  1659. float last_y;
  1660. float last_z;
  1661. float last_heading;
  1662. bool casting;
  1663. InfoStruct info_struct;
  1664. map<int8, int8> det_count_list;
  1665. Mutex MDetriments;
  1666. vector<DetrimentalEffects> detrimental_spell_effects;
  1667. // Pointers for the 4 types of pets (Summon, Charm, Deity, Cosmetic)
  1668. Entity* pet;
  1669. Entity* charmedPet;
  1670. Entity* deityPet;
  1671. Entity* cosmeticPet;
  1672. // int32 = spell id, WardInfo* = pointer to ward info
  1673. map<int32, WardInfo*> m_wardList;
  1674. // int8 = type, vector<Proc*> = list of pointers to proc info
  1675. map <int8, vector<Proc*> > m_procList;
  1676. Mutex MProcList;
  1677. /// <summary>Actually calls the lua script to cast the proc</summary>
  1678. /// <param name='proc'>Proc to be cast</param>
  1679. /// <param name='type'>Type of proc going off</type>
  1680. /// <param name='target'>Target of the proc</param>
  1681. bool CastProc(Proc* proc, int8 type, Spawn* target);
  1682. float base_speed;
  1683. float speed;
  1684. float speed_multiplier;
  1685. map<LuaSpell*, float> snare_values;
  1686. ThreatTransfer* m_threatTransfer;
  1687. GroupMemberInfo* group_member_info;
  1688. bool hasSeeInvisSpell;
  1689. bool hasSeeHideSpell;
  1690. // GETs
  1691. map<string, boost::function<float()> > get_float_funcs;
  1692. map<string, boost::function<int64()> > get_int64_funcs;
  1693. map<string, boost::function<int32()> > get_int32_funcs;
  1694. map<string, boost::function<int16()> > get_int16_funcs;
  1695. map<string, boost::function<int8()> > get_int8_funcs;
  1696. map<string, boost::function<sint64()> > get_sint64_funcs;
  1697. map<string, boost::function<sint32()> > get_sint32_funcs;
  1698. map<string, boost::function<sint16()> > get_sint16_funcs;
  1699. map<string, boost::function<sint8()> > get_sint8_funcs;
  1700. map<string, boost::function<std::string()> > get_string_funcs;
  1701. // SETs
  1702. map<string, boost::function<void(float)> > set_float_funcs;
  1703. map<string, boost::function<void(int64)> > set_int64_funcs;
  1704. map<string, boost::function<void(int32)> > set_int32_funcs;
  1705. map<string, boost::function<void(int16)> > set_int16_funcs;
  1706. map<string, boost::function<void(int8)> > set_int8_funcs;
  1707. map<string, boost::function<void(sint64)> > set_sint64_funcs;
  1708. map<string, boost::function<void(sint32)> > set_sint32_funcs;
  1709. map<string, boost::function<void(sint16)> > set_sint16_funcs;
  1710. map<string, boost::function<void(sint8)> > set_sint8_funcs;
  1711. map<string, boost::function<void(std::string)> > set_string_funcs;
  1712. };
  1713. #endif