Spawn.cpp 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692
  1. /*
  2. EQ2Emulator: Everquest II Server Emulator
  3. Copyright (C) 2007 EQ2EMulator Development Team (http://www.eq2emulator.net)
  4. This file is part of EQ2Emulator.
  5. EQ2Emulator is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. EQ2Emulator is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with EQ2Emulator. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include "Spawn.h"
  17. #include <stdio.h>
  18. #include "../common/timer.h"
  19. #include <time.h>
  20. #include <math.h>
  21. #include "Entity.h"
  22. #include "Widget.h"
  23. #include "Sign.h"
  24. #include "../common/MiscFunctions.h"
  25. #include "../common/Log.h"
  26. #include "Rules/Rules.h"
  27. #include "World.h"
  28. #include "LuaInterface.h"
  29. #include "Bots/Bot.h"
  30. #include "Zone/raycast_mesh.h"
  31. #include "RaceTypes/RaceTypes.h"
  32. #include "VisualStates.h"
  33. extern ConfigReader configReader;
  34. extern RuleManager rule_manager;
  35. extern World world;
  36. extern ZoneList zone_list;
  37. extern MasterRaceTypeList race_types_list;
  38. extern LuaInterface* lua_interface;
  39. extern VisualStates visual_states;
  40. Spawn::Spawn(){
  41. loot_coins = 0;
  42. trap_triggered = false;
  43. trap_state = 0;
  44. chest_drop_time = 0;
  45. trap_opened_time = 0;
  46. group_id = 0;
  47. size_offset = 0;
  48. merchant_id = 0;
  49. merchant_type = 0;
  50. merchant_min_level = 0;
  51. merchant_max_level = 0;
  52. memset(&appearance, 0, sizeof(AppearanceData));
  53. memset(&basic_info, 0, sizeof(BasicInfoStruct));
  54. appearance.pos.state = 0x4080;
  55. appearance.difficulty = 6;
  56. size = 32;
  57. appearance.pos.collision_radius = 32;
  58. id = Spawn::NextID();
  59. oversized_packet = 0xFF;
  60. zone = 0;
  61. spawn_location_id = 0;
  62. spawn_entry_id = 0;
  63. spawn_location_spawns_id = 0;
  64. respawn = 0;
  65. expire_time = 0;
  66. expire_offset = 0;
  67. x_offset = 0;
  68. y_offset = 0;
  69. z_offset = 0;
  70. database_id = 0;
  71. packet_num = 1;
  72. changed = false;
  73. vis_changed = false;
  74. position_changed = false;
  75. send_spawn_changes = true;
  76. info_changed = false;
  77. appearance.pos.Speed1 = 0;
  78. last_attacker = 0;
  79. faction_id = 0;
  80. running_to = 0;
  81. tmp_visual_state = -1;
  82. tmp_action_state = -1;
  83. transporter_id = 0;
  84. invulnerable = false;
  85. spawn_group_list = 0;
  86. MSpawnGroup = 0;
  87. movement_locations = 0;
  88. MMovementLocations = 0;
  89. target = 0;
  90. primary_command_list_id = 0;
  91. secondary_command_list_id = 0;
  92. is_pet = false;
  93. m_followTarget = 0;
  94. following = false;
  95. req_quests_continued_access = false;
  96. req_quests_override = 0;
  97. req_quests_private = false;
  98. m_illusionModel = 0;
  99. Cell_Info.CurrentCell = nullptr;
  100. Cell_Info.CellListIndex = -1;
  101. m_addedToWorldTimestamp = 0;
  102. m_spawnAnim = 0;
  103. m_spawnAnimLeeway = 0;
  104. m_Update.SetName("Spawn::m_Update");
  105. m_requiredHistory.SetName("Spawn::m_requiredHistory");
  106. m_requiredQuests.SetName("Spawn::m_requiredQuests");
  107. last_heading_angle = 0.0;
  108. last_grid_update = 0;
  109. last_location_update = 0.0;
  110. last_movement_update = Timer::GetCurrentTime2();
  111. forceMapCheck = false;
  112. m_followDistance = 0;
  113. MCommandMutex.SetName("Entity::MCommandMutex");
  114. has_spawn_proximities = false;
  115. pickup_item_id = 0;
  116. pickup_unique_item_id = 0;
  117. disable_sounds = false;
  118. has_quests_required = false;
  119. has_history_required = false;
  120. is_flying_creature = false;
  121. is_water_creature = false;
  122. region_map = nullptr;
  123. current_map = nullptr;
  124. RegionMutex.SetName("Spawn::RegionMutex");
  125. pause_timer.Disable();
  126. m_SpawnMutex.SetName("Spawn::SpawnMutex");
  127. appearance_equipment_list.SetAppearanceType(1);
  128. is_transport_spawn = false;
  129. rail_id = 0;
  130. is_omitted_by_db_flag = false;
  131. loot_tier = 0;
  132. loot_drop_type = 0;
  133. deleted_spawn = false;
  134. is_collector = false;
  135. trigger_widget_id = 0;
  136. scared_by_strong_players = false;
  137. is_alive = true;
  138. SetLockedNoLoot(ENCOUNTER_STATE_AVAILABLE);
  139. }
  140. Spawn::~Spawn(){
  141. vector<Item*>::iterator itr;
  142. for (itr = loot_items.begin(); itr != loot_items.end(); itr++)
  143. safe_delete(*itr);
  144. loot_items.clear();
  145. RemovePrimaryCommands();
  146. for(int32 i=0;i<secondary_command_list.size();i++){
  147. safe_delete(secondary_command_list[i]);
  148. }
  149. secondary_command_list.clear();
  150. RemoveSpawnFromGroup();
  151. if (MMovementLocations)
  152. MMovementLocations->writelock(__FUNCTION__, __LINE__);
  153. if(movement_locations){
  154. while(movement_locations->size()){
  155. safe_delete(movement_locations->front());
  156. movement_locations->pop_front();
  157. }
  158. safe_delete(movement_locations);
  159. }
  160. if (MMovementLocations)
  161. MMovementLocations->releasewritelock(__FUNCTION__, __LINE__);
  162. safe_delete(MMovementLocations);
  163. MMovementLoop.lock();
  164. for (int32 i = 0; i < movement_loop.size(); i++)
  165. safe_delete(movement_loop.at(i));
  166. movement_loop.clear();
  167. MMovementLoop.unlock();
  168. m_requiredHistory.writelock(__FUNCTION__, __LINE__);
  169. map<int32, LUAHistory*>::iterator lua_itr;
  170. for (lua_itr = required_history.begin(); lua_itr != required_history.end(); lua_itr++) {
  171. safe_delete(lua_itr->second);
  172. }
  173. required_history.clear();
  174. m_requiredHistory.releasewritelock(__FUNCTION__, __LINE__);
  175. m_requiredQuests.writelock(__FUNCTION__, __LINE__);
  176. map<int32, vector<int16>* >::iterator rq_itr;
  177. for (rq_itr = required_quests.begin(); rq_itr != required_quests.end(); rq_itr++){
  178. safe_delete(rq_itr->second);
  179. }
  180. required_quests.clear();
  181. m_requiredQuests.releasewritelock(__FUNCTION__, __LINE__);
  182. // just in case to make sure data is destroyed
  183. RemoveSpawnProximities();
  184. Regions.clear();
  185. }
  186. void Spawn::RemovePrimaryCommands()
  187. {
  188. for (int32 i = 0; i < primary_command_list.size(); i++) {
  189. safe_delete(primary_command_list[i]);
  190. }
  191. primary_command_list.clear();
  192. }
  193. void Spawn::InitializeHeaderPacketData(Player* player, PacketStruct* header, int16 index) {
  194. header->setDataByName("index", index);
  195. if (GetSpawnAnim() > 0 && Timer::GetCurrentTime2() < (GetAddedToWorldTimestamp() + GetSpawnAnimLeeway())) {
  196. if (header->GetVersion() >= 57080)
  197. header->setDataByName("spawn_anim", GetSpawnAnim());
  198. else
  199. header->setDataByName("spawn_anim", (int16)GetSpawnAnim());
  200. }
  201. else {
  202. if (header->GetVersion() >= 57080)
  203. header->setDataByName("spawn_anim", 0xFFFFFFFF);
  204. else
  205. header->setDataByName("spawn_anim", 0xFFFF);
  206. }
  207. if (primary_command_list.size() > 0){
  208. if (primary_command_list.size() > 1) {
  209. header->setArrayLengthByName("command_list", primary_command_list.size());
  210. for (int32 i = 0; i < primary_command_list.size(); i++) {
  211. header->setArrayDataByName("command_list_name", primary_command_list[i]->name.c_str(), i);
  212. header->setArrayDataByName("command_list_max_distance", primary_command_list[i]->distance, i);
  213. header->setArrayDataByName("command_list_error", primary_command_list[i]->error_text.c_str(), i);
  214. header->setArrayDataByName("command_list_command", primary_command_list[i]->command.c_str(), i);
  215. }
  216. }
  217. if (header->GetVersion() <= 546) {
  218. header->setMediumStringByName("default_command", primary_command_list[0]->name.c_str());
  219. }
  220. else
  221. header->setMediumStringByName("default_command", primary_command_list[0]->command.c_str());
  222. header->setDataByName("max_distance", primary_command_list[0]->distance);
  223. }
  224. if (spawn_group_list && MSpawnGroup){
  225. MSpawnGroup->readlock(__FUNCTION__, __LINE__);
  226. header->setArrayLengthByName("group_size", spawn_group_list->size());
  227. vector<Spawn*>::iterator itr;
  228. int i = 0;
  229. for (itr = spawn_group_list->begin(); itr != spawn_group_list->end(); itr++, i++){
  230. int32 idx = 0;
  231. idx = player->GetIDWithPlayerSpawn((*itr));
  232. header->setArrayDataByName("group_spawn_id", idx, i);
  233. }
  234. MSpawnGroup->releasereadlock(__FUNCTION__, __LINE__);
  235. }
  236. header->setDataByName("spawn_id", player->GetIDWithPlayerSpawn(this));
  237. header->setDataByName("crc", 1);
  238. header->setDataByName("time_stamp", Timer::GetCurrentTime2());
  239. }
  240. void Spawn::InitializeVisPacketData(Player* player, PacketStruct* vis_packet) {
  241. int16 version = vis_packet->GetVersion();
  242. //why?
  243. /*if (IsPlayer()) {
  244. appearance.pos.grid_id = 0xFFFFFFFF;
  245. }*/
  246. int8 tag_icon = 0;
  247. int32 tmp_id = 0;
  248. if(faction_id && (tag_icon = player->MatchGMVisualFilter(GMTagFilterType::GMFILTERTYPE_FACTION, faction_id, "", true)) > 0);
  249. else if(IsGroundSpawn() && (tag_icon = player->MatchGMVisualFilter(GMTagFilterType::GMFILTERTYPE_GROUNDSPAWN, 1, "", true)) > 0);
  250. else if((this->GetSpawnGroupID() && (tag_icon = player->MatchGMVisualFilter(GMTagFilterType::GMFILTERTYPE_SPAWNGROUP, 1, "", true)) > 0) ||
  251. (!this->GetSpawnGroupID() && (tag_icon = player->MatchGMVisualFilter(GMTagFilterType::GMFILTERTYPE_SPAWNGROUP, 0, "", true)) > 0));
  252. else if((this->GetRace() && (tag_icon = player->MatchGMVisualFilter(GMTagFilterType::GMFILTERTYPE_RACE, GetRace(), "", true)) > 0));
  253. else if(((tmp_id = race_types_list.GetRaceType(GetModelType()) > 0) && (tag_icon = player->MatchGMVisualFilter(GMTagFilterType::GMFILTERTYPE_RACE, tmp_id, "", true)) > 0));
  254. else if(((tmp_id = race_types_list.GetRaceBaseType(GetModelType()) > 0) && (tag_icon = player->MatchGMVisualFilter(GMTagFilterType::GMFILTERTYPE_RACE, tmp_id, "", true)) > 0));
  255. else if(IsEntity() && (tag_icon = ((Entity*)this)->GetInfoStruct()->get_tag1()) > 0);
  256. vis_packet->setDataByName("tag1", tag_icon);
  257. if (IsPlayer())
  258. vis_packet->setDataByName("player", 1);
  259. if (version <= 546) {
  260. vis_packet->setDataByName("targetable", appearance.targetable);
  261. vis_packet->setDataByName("show_name", appearance.display_name);
  262. vis_packet->setDataByName("attackable", appearance.attackable);
  263. if(appearance.attackable == 1)
  264. vis_packet->setDataByName("attackable_icon", 1);
  265. if (IsPlayer()) {
  266. if (((Player*)this)->IsGroupMember(player))
  267. vis_packet->setDataByName("group_member", 1);
  268. }
  269. }
  270. if (appearance.targetable == 1 || appearance.show_level == 1 || appearance.display_name == 1) {
  271. if (!IsGroundSpawn()) {
  272. int8 arrow_color = ARROW_COLOR_WHITE;
  273. sint8 npc_con = player->GetFactions()->GetCon(faction_id);
  274. if (IsPlayer() && !((Player*)this)->CanSeeInvis(player))
  275. npc_con = 0;
  276. else if (!IsPlayer() && IsEntity() && !((Entity*)this)->CanSeeInvis(player))
  277. npc_con = 0;
  278. if (appearance.attackable == 1)
  279. arrow_color = player->GetArrowColor(GetLevel());
  280. if (version <= 283) {
  281. if (GetMerchantID() > 0)
  282. arrow_color += 7;
  283. else {
  284. if (primary_command_list.size() > 0) {
  285. int16 len = strlen(primary_command_list[0]->command.c_str());
  286. if(len >= 4 && strncmp(primary_command_list[0]->command.c_str(), "bank", 4) == 0)
  287. arrow_color += 14;
  288. else if (len >= 4 && strncmp(primary_command_list[0]->command.c_str(), "hail", 4) == 0)
  289. arrow_color += 21;
  290. else if (len >= 6 && strncmp(primary_command_list[0]->command.c_str(), "attack", 6) == 0) {
  291. if (arrow_color > 5)
  292. arrow_color = 34;
  293. else
  294. arrow_color += 29;
  295. }
  296. }
  297. }
  298. }
  299. if(IsNPC() && (((Entity*)this)->GetLockedNoLoot() == ENCOUNTER_STATE_BROKEN ||
  300. (((Entity*)this)->GetLockedNoLoot() == ENCOUNTER_STATE_OVERMATCHED) ||
  301. ((Entity*)this)->GetLockedNoLoot() == ENCOUNTER_STATE_LOCKED && !((NPC*)this)->Brain()->IsEntityInEncounter(player->GetID()))) {
  302. vis_packet->setDataByName("arrow_color", ARROW_COLOR_GRAY);
  303. }
  304. else {
  305. vis_packet->setDataByName("arrow_color", arrow_color);
  306. }
  307. if (appearance.attackable == 0 || IsPlayer() || IsBot() || (IsEntity() && ((Entity*)this)->GetOwner() &&
  308. (((Entity*)this)->GetOwner()->IsPlayer() || ((Entity*)this)->GetOwner()->IsBot()))) {
  309. vis_packet->setDataByName("locked_no_loot", 1);
  310. }
  311. else {
  312. vis_packet->setDataByName("locked_no_loot", appearance.locked_no_loot);
  313. }
  314. if (player->GetArrowColor(GetLevel()) == ARROW_COLOR_GRAY)
  315. if (npc_con == -4)
  316. npc_con = -3;
  317. vis_packet->setDataByName("npc_con", npc_con);
  318. if (appearance.attackable == 1 && IsNPC() && (player->GetFactions()->GetCon(faction_id) <= -4 || ((NPC*)this)->Brain()->GetHate(player) > 1)) {
  319. vis_packet->setDataByName("npc_hate", ((NPC*)this)->Brain()->GetHatePercentage(player));
  320. vis_packet->setDataByName("show_difficulty_arrows", 1);
  321. }
  322. int8 quest_flag = player->CheckQuestFlag(this);
  323. if (version < 1188 && quest_flag >= 16)
  324. quest_flag = 1;
  325. vis_packet->setDataByName("quest_flag", quest_flag);
  326. if (player->HasQuestUpdateRequirement(this)) {
  327. vis_packet->setDataByName("name_quest_icon", 1);
  328. }
  329. }
  330. }
  331. int8 vis_flags = 0;
  332. if (MeetsSpawnAccessRequirements(player)) {
  333. if (appearance.attackable == 1)
  334. vis_flags += 64; //attackable icon
  335. if (appearance.show_level == 1)
  336. vis_flags += 32;
  337. if (appearance.display_name == 1)
  338. vis_flags += 16;
  339. if (IsPlayer() || appearance.targetable == 1)
  340. vis_flags += 4;
  341. if (appearance.show_command_icon == 1)
  342. vis_flags += 2;
  343. if (this == player) {
  344. //if (version <= 283) {
  345. // vis_flags = 1;
  346. //}
  347. //else
  348. vis_flags += 1;
  349. }
  350. }
  351. else if (req_quests_override > 0)
  352. {
  353. //Check to see if there's an override value set
  354. vis_flags = req_quests_override & 0xFF;
  355. }
  356. if (player->HasGMVision())
  357. {
  358. if ((vis_flags & 16) == 0 && appearance.display_name == 0)
  359. vis_flags += 16;
  360. if ((vis_flags & 4) == 0)
  361. vis_flags += 4;
  362. }
  363. if (version <= 546 && (vis_flags > 1 || appearance.display_hand_icon > 0)) //interactable
  364. vis_flags = 1;
  365. vis_packet->setDataByName("vis_flags", vis_flags);
  366. if (MeetsSpawnAccessRequirements(player)) {
  367. vis_packet->setDataByName("hand_flag", appearance.display_hand_icon);
  368. }
  369. else {
  370. if ((req_quests_override & 256) > 0)
  371. vis_packet->setDataByName("hand_flag", 1);
  372. }
  373. if (version == 546 && GetMerchantID() > 0) {
  374. vis_packet->setDataByName("guild", "<Merchant>");
  375. }
  376. }
  377. void Spawn::InitializeFooterPacketData(Player* player, PacketStruct* footer) {
  378. if (IsWidget()){
  379. Widget* widget = (Widget*)this;
  380. if (widget->GetMultiFloorLift()) {
  381. footer->setDataByName("widget_x", widget->GetX());
  382. footer->setDataByName("widget_y", widget->GetY());
  383. footer->setDataByName("widget_z", widget->GetZ());
  384. }
  385. else {
  386. footer->setDataByName("widget_x", widget->GetWidgetX());
  387. footer->setDataByName("widget_y", widget->GetWidgetY());
  388. footer->setDataByName("widget_z", widget->GetWidgetZ());
  389. }
  390. footer->setDataByName("widget_id", widget->GetWidgetID());
  391. }
  392. else if (IsSign()){
  393. Sign* sign = (Sign*)this;
  394. footer->setDataByName("widget_id", sign->GetWidgetID());
  395. footer->setDataByName("widget_x", sign->GetWidgetX());
  396. footer->setDataByName("widget_y", sign->GetWidgetY());
  397. footer->setDataByName("widget_z", sign->GetWidgetZ());
  398. int8 showSignText = 1;
  399. if((HasQuestsRequired() || HasHistoryRequired()) && !MeetsSpawnAccessRequirements(player)) {
  400. showSignText = 0;
  401. }
  402. if (sign->GetSignTitle())
  403. footer->setMediumStringByName("title", sign->GetSignTitle());
  404. if (sign->GetSignDescription())
  405. footer->setMediumStringByName("description", sign->GetSignDescription());
  406. footer->setDataByName("sign_distance", sign->GetSignDistance());
  407. footer->setDataByName("show", showSignText);
  408. // in live we see that the language is set when the player does not have it, otherwise its left as 00's.
  409. if(!player->HasLanguage(sign->GetLanguage())) {
  410. footer->setDataByName("language", sign->GetLanguage());
  411. }
  412. }
  413. if ( IsPlayer())
  414. footer->setDataByName("is_player", 1);
  415. if (strlen(appearance.name) < 1)
  416. strncpy(appearance.name,to_string(GetID()).c_str(),128);
  417. footer->setMediumStringByName("name", appearance.name);
  418. footer->setMediumStringByName("guild", appearance.sub_title);
  419. footer->setMediumStringByName("prefix", appearance.prefix_title);
  420. footer->setMediumStringByName("suffix", appearance.suffix_title);
  421. footer->setMediumStringByName("last_name", appearance.last_name);
  422. if (appearance.attackable == 0 && GetLevel() > 0)
  423. footer->setDataByName("spawn_type", 1);
  424. else if (appearance.attackable == 0)
  425. footer->setDataByName("spawn_type", 6);
  426. else
  427. footer->setDataByName("spawn_type", 3);
  428. }
  429. EQ2Packet* Spawn::spawn_serialize(Player* player, int16 version, int16 offset, int32 value, int16 offset2, int16 offset3, int16 offset4, int32 value2) {
  430. // If spawn is NPC AND is pet && owner is a player && owner is the player passed to this function && player's char sheet pet id is 0
  431. m_Update.writelock(__FUNCTION__, __LINE__);
  432. int16 index = 0;
  433. if ((index = player->GetIndexForSpawn(this)) > 0) {
  434. player->SetSpawnMapIndex(this, index);
  435. }
  436. else {
  437. index = player->SetSpawnMapAndIndex(this);
  438. }
  439. // Jabantiz - [Bug] Client Crash on Revive
  440. if (player->GetIDWithPlayerSpawn(this) == 0) {
  441. player->SetSpawnMap(this);
  442. }
  443. PacketStruct* header = player->GetSpawnHeaderStruct();
  444. header->ResetData();
  445. InitializeHeaderPacketData(player, header, index);
  446. PacketStruct* footer = 0;
  447. if (IsWidget())
  448. footer = player->GetWidgetFooterStruct();
  449. else if (IsSign())
  450. footer = player->GetSignFooterStruct();
  451. else if (version > 546)
  452. footer = player->GetSpawnFooterStruct();
  453. if (footer) {
  454. footer->ResetData();
  455. InitializeFooterPacketData(player, footer);
  456. }
  457. PacketStruct* vis_struct = player->GetSpawnVisStruct();
  458. PacketStruct* info_struct = player->GetSpawnInfoStruct();
  459. PacketStruct* pos_struct = player->GetSpawnPosStruct();
  460. player->info_mutex.writelock(__FUNCTION__, __LINE__);
  461. player->vis_mutex.writelock(__FUNCTION__, __LINE__);
  462. player->pos_mutex.writelock(__FUNCTION__, __LINE__);
  463. info_struct->ResetData();
  464. InitializeInfoPacketData(player, info_struct);
  465. vis_struct->ResetData();
  466. InitializeVisPacketData(player, vis_struct);
  467. pos_struct->ResetData();
  468. InitializePosPacketData(player, pos_struct);
  469. if (version <= 283) {
  470. if (offset == 777) {
  471. info_struct->setDataByName("name", "This is a really long name\n");
  472. info_struct->setDataByName("last_name", "This is a really long LAST name\n");
  473. info_struct->setDataByName("name_suffix", "This is a really long SUFFIX\n");
  474. info_struct->setDataByName("name_prefix", "This is a really long PREFIX\n");
  475. info_struct->setDataByName("unknown", "This is a really long UNKNOWN\n");
  476. info_struct->setDataByName("second_suffix", "This is a really long 2nd SUFFIX\n");
  477. }
  478. //info_struct->setDataByName("unknown2", 3, 0); // level
  479. //info_struct->setDataByName("unknown2", 1, 1); //unknown, two down arrows
  480. //info_struct->setDataByName("unknown2", 1, 2); //unknown
  481. //info_struct->setDataByName("unknown2", 1, 3); //unknown
  482. //info_struct->setDataByName("unknown2", 1, 4); //solo fight
  483. //info_struct->setDataByName("unknown2", 1, 5); //unknown
  484. //info_struct->setDataByName("unknown2", 1, 6); //unknown
  485. //info_struct->setDataByName("unknown2", 1, 7); //merchant
  486. //info_struct->setDataByName("unknown2", 1, 8); //unknown
  487. //info_struct->setDataByName("unknown2", 1, 9); //unknown
  488. //info_struct->setDataByName("unknown2", 1, 10);
  489. //112: 00 00 00 01 02 03 04 05 - 06 07 08 09 0A 00 00 00 | ................ merchant, x4
  490. //112: 00 00 00 01 02 03 04 05 - 00 00 00 00 00 00 00 00 | ................ x4, epic, indifferent
  491. //info_struct->setDataByName("body_size", 42);
  492. //for(int i=0;i<8;i++)
  493. // info_struct->setDataByName("persistent_spell_visuals", 329, i);
  494. //info_struct->setDataByName("persistent_spell_levels", 20);
  495. }
  496. string* vis_data = vis_struct->serializeString();
  497. string* pos_data = pos_struct->serializeString();
  498. string* info_data = info_struct->serializeString();
  499. int16 part2_size = pos_data->length() + vis_data->length() + info_data->length();
  500. uchar* part2 = new uchar[part2_size];
  501. player->AddSpawnPosPacketForXOR(id, (uchar*)pos_data->c_str(), pos_data->length());
  502. player->AddSpawnVisPacketForXOR(id, (uchar*)vis_data->c_str(), vis_data->length());
  503. player->AddSpawnInfoPacketForXOR(id, (uchar*)info_data->c_str(), info_data->length());
  504. int32 vislength = vis_data->length();
  505. int32 poslength = pos_data->length();
  506. int32 infolength = info_data->length();
  507. uchar* ptr = part2;
  508. memcpy(ptr, pos_data->c_str(), pos_data->length());
  509. ptr += pos_data->length();
  510. memcpy(ptr, vis_data->c_str(), vis_data->length());
  511. ptr += vis_data->length();
  512. memcpy(ptr, info_data->c_str(), info_data->length());
  513. player->pos_mutex.releasewritelock(__FUNCTION__, __LINE__);
  514. player->info_mutex.releasewritelock(__FUNCTION__, __LINE__);
  515. player->vis_mutex.releasewritelock(__FUNCTION__, __LINE__);
  516. string* part1 = header->serializeString();
  517. string* part3 = 0;
  518. if (footer)
  519. part3 = footer->serializeString();
  520. //uchar blah7[] = {0x01,0x01,0x00,0x00,0x01,0x01,0x00,0x01,0x01,0x00 };
  521. //uchar blah7[] = { 0x03,0x01,0x00,0x01,0x01,0x01,0x00,0x01,0x01,0x00 }; base
  522. //uchar blah7[] = { 0x03,0x00,0x00,0x01,0x01,0x01,0x00,0x01,0x01,0x00 }; //no change
  523. //uchar blah7[] = { 0x03,0x00,0x00,0x00,0x01,0x01,0x00,0x01,0x01,0x00 }; //blue instead of green
  524. //uchar blah7[] = { 0x03,0x00,0x00,0x00,0x00,0x01,0x00,0x01,0x01,0x00 }; //no change
  525. //uchar blah7[] = { 0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00 }; //not selectable
  526. //uchar blah7[] = { 0x03,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x01,0x00 }; //no change
  527. //uchar blah7[] = { 0x03,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00 }; //no longer have the two down arrows
  528. //uchar blah7[] = { 0x01,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00 }; //arrow color green instead of white/gray
  529. //memcpy(part2 + 77, blah7, sizeof(blah7));
  530. //DumpPacket(part2, 885);
  531. if (offset > 0) {
  532. if (offset4 > 0 && offset4 >= offset3) {
  533. uchar* ptr2 = (uchar*)part2;
  534. ptr2 += offset3;
  535. while (offset4 >= offset3) {
  536. int8 jumpsize = 1;
  537. if (value2 > 0xFFFF) {
  538. memcpy(ptr2, (uchar*)&value2, 4);
  539. jumpsize = 4;
  540. }
  541. else if (value2 > 0xFF) {
  542. memcpy(ptr2, (uchar*)&value2, 2);
  543. jumpsize = 2;
  544. }
  545. else {
  546. memcpy(ptr2, (uchar*)&value2, 1);
  547. jumpsize = 1;
  548. }
  549. ptr2 += jumpsize;
  550. offset4 -= jumpsize;
  551. }
  552. }
  553. if (offset2 > 0 && offset2 >= offset) {
  554. uchar* ptr2 = (uchar*)part2;
  555. ptr2 += offset;
  556. while (offset2 >= offset) {
  557. int8 jumpsize = 1;
  558. if (value > 0xFFFF) {
  559. memcpy(ptr2, (uchar*)&value, 4);
  560. jumpsize = 4;
  561. }
  562. else if (value > 0xFF) {
  563. memcpy(ptr2, (uchar*)&value, 2);
  564. jumpsize = 2;
  565. }
  566. else
  567. memcpy(ptr2, (uchar*)&value, 1);
  568. ptr2 += jumpsize;
  569. offset2 -= jumpsize;
  570. }
  571. }
  572. else {
  573. uchar* ptr2 = (uchar*)part2;
  574. ptr2 += offset;
  575. if (value > 0xFFFF)
  576. memcpy(ptr2, (uchar*)&value, 4);
  577. else if (value > 0xFF)
  578. memcpy(ptr2, (uchar*)&value, 2);
  579. else
  580. memcpy(ptr2, (uchar*)&value, 1);
  581. }
  582. cout << "setting offset: " << offset << " to: " << value << endl;
  583. }
  584. //if (offset > 0)
  585. // DumpPacket(part2, part2_size);
  586. uchar tmp[4000];
  587. bool reverse = (version > 283);
  588. part2_size = Pack(tmp, part2, part2_size, 4000, version, reverse);
  589. int32 total_size = part1->length() + part2_size + 3;
  590. if (part3)
  591. total_size += part3->length();
  592. int32 final_packet_size = total_size + 1;
  593. if (version > 283)
  594. final_packet_size += 3;
  595. else {
  596. if (final_packet_size >= 255) {
  597. final_packet_size += 2;
  598. }
  599. }
  600. uchar* final_packet = new uchar[final_packet_size];
  601. ptr = final_packet;
  602. if (version <= 283) {
  603. if ((final_packet_size - total_size) > 1) {
  604. memcpy(ptr, &oversized_packet, sizeof(oversized_packet));
  605. ptr += sizeof(oversized_packet);
  606. memcpy(ptr, &total_size, 2);
  607. ptr += 2;
  608. }
  609. else {
  610. memcpy(ptr, &total_size, 1);
  611. ptr += 1;
  612. }
  613. }
  614. else {
  615. memcpy(ptr, &total_size, sizeof(total_size));
  616. ptr += sizeof(total_size);
  617. }
  618. memcpy(ptr, &oversized_packet, sizeof(oversized_packet));
  619. ptr += sizeof(oversized_packet);
  620. int16 opcode = 0;
  621. if(IsWidget())
  622. opcode = EQOpcodeManager[GetOpcodeVersion(version)]->EmuToEQ(OP_EqCreateWidgetCmd);
  623. else if(IsSign())
  624. opcode = EQOpcodeManager[GetOpcodeVersion(version)]->EmuToEQ(OP_EqCreateSignWidgetCmd);
  625. else
  626. opcode = EQOpcodeManager[GetOpcodeVersion(version)]->EmuToEQ(OP_EqCreateGhostCmd);
  627. memcpy(ptr, &opcode, sizeof(opcode));
  628. ptr += sizeof(opcode);
  629. memcpy(ptr, part1->c_str(), part1->length());
  630. ptr += part1->length();
  631. memcpy(ptr, tmp, part2_size);
  632. ptr += part2_size;
  633. if (part3)
  634. memcpy(ptr, part3->c_str(), part3->length());
  635. delete[] part2;
  636. //printf("SpawnPacket %s (id: %u, index: %u) to %s: p1: %i, p2: %i, p3: %i, ts: %i. poslength: %u, infolength: %u, vislength: %u\n", GetName(), GetID(), index, player->GetName(), part1->length(), part2_size, (part3 != nullptr) ? part3->length() : -1, total_size, poslength, infolength, vislength);
  637. EQ2Packet* ret = new EQ2Packet(OP_ClientCmdMsg, final_packet, final_packet_size);
  638. delete[] final_packet;
  639. m_Update.releasewritelock(__FUNCTION__, __LINE__);
  640. return ret;
  641. }
  642. uchar* Spawn::spawn_info_changes(Player* player, int16 version, int16* info_packet_size){
  643. int16 index = player->GetIndexForSpawn(this);
  644. PacketStruct* packet = player->GetSpawnInfoStruct();
  645. player->info_mutex.writelock(__FUNCTION__, __LINE__);
  646. packet->ResetData();
  647. InitializeInfoPacketData(player, packet);
  648. string* data = packet->serializeString();
  649. int32 size = data->length();
  650. uchar* xor_info_packet = player->GetTempInfoPacketForXOR();
  651. if (!xor_info_packet || size != player->GetTempInfoXorSize())
  652. {
  653. LogWrite(ZONE__DEBUG, 0, "Zone", "InstantiateInfoPacket: %i, %i", size, player->GetTempInfoXorSize());
  654. safe_delete(xor_info_packet);
  655. xor_info_packet = player->SetTempInfoPacketForXOR(size);
  656. }
  657. uchar* orig_packet = player->GetSpawnInfoPacketForXOR(id);
  658. if(orig_packet){
  659. memcpy(xor_info_packet, (uchar*)data->c_str(), size);
  660. Encode(xor_info_packet, orig_packet, size);
  661. }
  662. bool changed = false;
  663. for (int i = 0; i < size; ++i) {
  664. if (xor_info_packet[i]) {
  665. changed = true;
  666. break;
  667. }
  668. }
  669. if (!changed) {
  670. player->info_mutex.releasewritelock(__FUNCTION__, __LINE__);
  671. return nullptr;
  672. }
  673. uchar* tmp = new uchar[size + 1000];
  674. size = Pack(tmp, xor_info_packet, size, size+1000, version);
  675. player->info_mutex.releasewritelock(__FUNCTION__, __LINE__);
  676. int32 orig_size = size;
  677. size-=sizeof(int32);
  678. size+=CheckOverLoadSize(index);
  679. *info_packet_size = size + CheckOverLoadSize(size);
  680. uchar* tmp2 = new uchar[*info_packet_size];
  681. uchar* ptr = tmp2;
  682. ptr += DoOverLoad(size, ptr);
  683. ptr += DoOverLoad(index, ptr);
  684. memcpy(ptr, tmp+sizeof(int32), orig_size - sizeof(int32));
  685. delete[] tmp;
  686. return tmp2;
  687. }
  688. uchar* Spawn::spawn_vis_changes(Player* player, int16 version, int16* vis_packet_size){
  689. PacketStruct* vis_struct = player->GetSpawnVisStruct();
  690. int16 index = player->GetIndexForSpawn(this);
  691. player->vis_mutex.writelock(__FUNCTION__, __LINE__);
  692. uchar* orig_packet = player->GetSpawnVisPacketForXOR(id);
  693. vis_struct->ResetData();
  694. InitializeVisPacketData(player, vis_struct);
  695. string* data = vis_struct->serializeString();
  696. int32 size = data->length();
  697. uchar* xor_vis_packet = player->GetTempVisPacketForXOR();
  698. if (!xor_vis_packet || size != player->GetTempVisXorSize())
  699. {
  700. LogWrite(ZONE__DEBUG, 0, "Zone", "InstantiateVisPacket: %i, %i", size, player->GetTempVisXorSize());
  701. safe_delete(xor_vis_packet);
  702. xor_vis_packet = player->SetTempVisPacketForXOR(size);
  703. }
  704. if(orig_packet){
  705. memcpy(xor_vis_packet, (uchar*)data->c_str(), size);
  706. Encode(xor_vis_packet, orig_packet, size);
  707. }
  708. bool changed = false;
  709. for (int i = 0; i < size; ++i) {
  710. if (xor_vis_packet[i]) {
  711. changed = true;
  712. break;
  713. }
  714. }
  715. if (!changed) {
  716. player->vis_mutex.releasewritelock(__FUNCTION__, __LINE__);
  717. return nullptr;
  718. }
  719. uchar* tmp = new uchar[size + 10];
  720. size = Pack(tmp, xor_vis_packet, size, size, version);
  721. player->vis_mutex.releasewritelock(__FUNCTION__, __LINE__);
  722. int32 orig_size = size;
  723. size-=sizeof(int32);
  724. size+=CheckOverLoadSize(index);
  725. *vis_packet_size = size + CheckOverLoadSize(size);
  726. uchar* tmp2 = new uchar[*vis_packet_size];
  727. uchar* ptr = tmp2;
  728. ptr += DoOverLoad(size, ptr);
  729. ptr += DoOverLoad(index, ptr);
  730. memcpy(ptr, tmp+sizeof(int32), orig_size - sizeof(int32));
  731. delete[] tmp;
  732. return tmp2;
  733. }
  734. uchar* Spawn::spawn_pos_changes(Player* player, int16 version, int16* pos_packet_size) {
  735. int16 index = player->GetIndexForSpawn(this);
  736. PacketStruct* packet = player->GetSpawnPosStruct();
  737. player->pos_mutex.writelock(__FUNCTION__, __LINE__);
  738. uchar* orig_packet = player->GetSpawnPosPacketForXOR(id);
  739. packet->ResetData();
  740. InitializePosPacketData(player, packet, true);
  741. string* data = packet->serializeString();
  742. int32 size = data->length();
  743. uchar* xor_pos_packet = player->GetTempPosPacketForXOR();
  744. if (!xor_pos_packet || size != player->GetTempPosXorSize())
  745. {
  746. LogWrite(ZONE__DEBUG, 0, "Zone", "InstantiatePosPacket: %i, %i", size, player->GetTempPosXorSize());
  747. safe_delete(xor_pos_packet);
  748. xor_pos_packet = player->SetTempPosPacketForXOR(size);
  749. }
  750. if(orig_packet){
  751. memcpy(xor_pos_packet, (uchar*)data->c_str(), size);
  752. Encode(xor_pos_packet, orig_packet, size);
  753. }
  754. bool changed = false;
  755. for (int i = 0; i < size; ++i) {
  756. if (xor_pos_packet[i]) {
  757. changed = true;
  758. break;
  759. }
  760. }
  761. if (!changed) {
  762. player->pos_mutex.releasewritelock(__FUNCTION__, __LINE__);
  763. return nullptr;
  764. }
  765. uchar* tmp;
  766. if (IsPlayer() && version > 283)
  767. tmp = new uchar[size + 14];
  768. else
  769. tmp = new uchar[size + 10];
  770. size = Pack(tmp, xor_pos_packet, size, size, version);
  771. player->pos_mutex.releasewritelock(__FUNCTION__, __LINE__);
  772. int32 orig_size = size;
  773. // Needed for CoE+ clients
  774. if (version >= 1188)
  775. size += 1;
  776. if(IsPlayer() && version > 546)
  777. size += 4;
  778. size-=sizeof(int32);
  779. size+=CheckOverLoadSize(index);
  780. *pos_packet_size = size + CheckOverLoadSize(size);
  781. uchar* tmp2 = new uchar[*pos_packet_size];
  782. uchar* ptr = tmp2;
  783. ptr += DoOverLoad(size, ptr);
  784. ptr += DoOverLoad(index, ptr);
  785. // extra byte in coe+ clients, 0 for NPC's 1 for Players
  786. int8 x = 0;
  787. if (IsPlayer() && version > 546) {
  788. if (version >= 1188) {
  789. // set x to 1 and add it to the packet
  790. x = 1;
  791. memcpy(ptr, &x, sizeof(int8));
  792. ptr += sizeof(int8);
  793. }
  794. int32 now = Timer::GetCurrentTime2();
  795. memcpy(ptr, &now, sizeof(int32));
  796. ptr += sizeof(int32);
  797. }
  798. else if (version >= 1188) {
  799. // add x to packet
  800. memcpy(ptr, &x, sizeof(int8));
  801. ptr += sizeof(int8);
  802. }
  803. memcpy(ptr, tmp+sizeof(int32), orig_size - sizeof(int32));
  804. delete[] tmp;
  805. return tmp2;
  806. }
  807. EQ2Packet* Spawn::player_position_update_packet(Player* player, int16 version){
  808. if(!player || player->IsPlayer() == false){
  809. LogWrite(SPAWN__ERROR, 0, "Spawn", "Error: Called player_position_update_packet without player!");
  810. return 0;
  811. }
  812. else if(IsPlayer() == false){
  813. LogWrite(SPAWN__ERROR, 0, "Spawn", "Error: Called player_position_update_packet from spawn!");
  814. return 0;
  815. }
  816. static const int8 info_size = 1;
  817. static const int8 vis_size = 1;
  818. int16 pos_packet_size = 0;
  819. m_Update.writelock(__FUNCTION__, __LINE__);
  820. uchar* pos_changes = spawn_pos_changes(player, version, &pos_packet_size);
  821. if (pos_changes == NULL )
  822. {
  823. m_Update.releasewritelock(__FUNCTION__, __LINE__);
  824. return NULL;
  825. }
  826. int32 size = info_size + pos_packet_size + vis_size + 8;
  827. if (version >= 284)
  828. size += 3;
  829. else if (version <= 283 && size >= 255) {//1 byte to 3 for overloaded val
  830. size += 2;
  831. }
  832. static const int8 oversized = 255;
  833. int16 opcode_val = EQOpcodeManager[GetOpcodeVersion(version)]->EmuToEQ(OP_EqUpdateGhostCmd);
  834. uchar* tmp = new uchar[size];
  835. memset(tmp, 0, size);
  836. uchar* ptr = tmp;
  837. if (version >= 284) {
  838. size -= 4;
  839. memcpy(ptr, &size, sizeof(int32));
  840. size += 4;
  841. ptr += sizeof(int32);
  842. }
  843. else {
  844. if (size >= 255) {
  845. memcpy(ptr, &oversized, sizeof(int8));
  846. ptr += sizeof(int8);
  847. size -= 3;
  848. memcpy(ptr, &size, sizeof(int16));
  849. size += 3;
  850. ptr += 3;
  851. }
  852. else {
  853. size -= 1;
  854. memcpy(ptr, &size, sizeof(int8));
  855. ptr += sizeof(int8);
  856. size += 1;
  857. ptr += 1;
  858. }
  859. }
  860. memcpy(ptr, &oversized, sizeof(int8));
  861. ptr += sizeof(int8);
  862. memcpy(ptr, &opcode_val, sizeof(int16));
  863. ptr += sizeof(int16);
  864. if (version <= 283) {
  865. int32 timestamp = Timer::GetCurrentTime2();
  866. memcpy(ptr, &timestamp, sizeof(int32));
  867. }
  868. ptr += sizeof(int32);
  869. ptr += info_size;
  870. memcpy(ptr, pos_changes, pos_packet_size);
  871. delete[] pos_changes;
  872. m_Update.releasewritelock(__FUNCTION__, __LINE__);
  873. EQ2Packet* ret_packet = new EQ2Packet(OP_ClientCmdMsg, tmp, size);
  874. // DumpPacket(ret_packet);
  875. delete[] tmp;
  876. return ret_packet;
  877. }
  878. EQ2Packet* Spawn::spawn_update_packet(Player* player, int16 version, bool override_changes, bool override_vis_changes){
  879. if(!player || player->IsPlayer() == false){
  880. LogWrite(SPAWN__ERROR, 0, "Spawn", "Error: Called spawn_update_packet without player!");
  881. return 0;
  882. }
  883. else if((IsPlayer() && info_changed == false && vis_changed == false) || (info_changed == false && vis_changed == false && position_changed == false)){
  884. if(!override_changes && !override_vis_changes)
  885. return 0;
  886. }
  887. uchar* info_changes = 0;
  888. uchar* pos_changes = 0;
  889. uchar* vis_changes = 0;
  890. static const int8 oversized = 255;
  891. int16 opcode_val = EQOpcodeManager[GetOpcodeVersion(version)]->EmuToEQ(OP_EqUpdateGhostCmd);
  892. //We need to lock these variables up to make this thread safe
  893. m_Update.writelock(__FUNCTION__, __LINE__);
  894. //These variables are set in the spawn_info_changes, pos and vis changes functions
  895. int16 info_packet_size = 1;
  896. int16 pos_packet_size = 1;
  897. int16 vis_packet_size = 1;
  898. if (info_changed || override_changes)
  899. info_changes = spawn_info_changes(player, version, &info_packet_size);
  900. if ((position_changed || override_changes) && IsPlayer() == false)
  901. pos_changes = spawn_pos_changes(player, version, &pos_packet_size);
  902. if (vis_changed || override_changes || override_vis_changes)
  903. vis_changes = spawn_vis_changes(player, version, &vis_packet_size);
  904. int32 size = info_packet_size + pos_packet_size + vis_packet_size + 8;
  905. if (version >= 284)
  906. size += 3;
  907. else if (version <= 283 && size >= 255) {//1 byte to 3 for overloaded val
  908. size += 2;
  909. }
  910. uchar* tmp = new uchar[size];
  911. memset(tmp, 0, size);
  912. uchar* ptr = tmp;
  913. if (version >= 284) {
  914. size -= 4;
  915. memcpy(ptr, &size, sizeof(int32));
  916. size += 4;
  917. ptr += sizeof(int32);
  918. }
  919. else {
  920. if (size >= 255) {
  921. memcpy(ptr, &oversized, sizeof(int8));
  922. ptr += sizeof(int8);
  923. size -= 3;
  924. memcpy(ptr, &size, sizeof(int16));
  925. size += 3;
  926. ptr += 3;
  927. }
  928. else {
  929. size -= 1;
  930. memcpy(ptr, &size, sizeof(int8));
  931. ptr += sizeof(int8);
  932. size += 1;
  933. }
  934. }
  935. memcpy(ptr, &oversized, sizeof(int8));
  936. ptr += sizeof(int8);
  937. memcpy(ptr, &opcode_val, sizeof(int16));
  938. ptr += sizeof(int16);
  939. if (IsPlayer() == false || version <= 546) { //this isnt sent for player updates, it is sent on position update
  940. //int32 time = Timer::GetCurrentTime2();
  941. packet_num = Timer::GetCurrentTime2();
  942. memcpy(ptr, &packet_num, sizeof(int32));
  943. }
  944. ptr += sizeof(int32);
  945. if(info_changes)
  946. memcpy(ptr, info_changes, info_packet_size);
  947. ptr += info_packet_size;
  948. if(pos_changes)
  949. memcpy(ptr, pos_changes, pos_packet_size);
  950. ptr += pos_packet_size;
  951. if(vis_changes)
  952. memcpy(ptr, vis_changes, vis_packet_size);
  953. EQ2Packet* ret_packet = 0;
  954. if(info_packet_size + pos_packet_size + vis_packet_size > 0)
  955. ret_packet = new EQ2Packet(OP_ClientCmdMsg, tmp, size);
  956. delete[] tmp;
  957. safe_delete_array(info_changes);
  958. safe_delete_array(vis_changes);
  959. safe_delete_array(pos_changes);
  960. m_Update.releasewritelock(__FUNCTION__, __LINE__);
  961. return ret_packet;
  962. }
  963. uchar* Spawn::spawn_info_changes_ex(Player* player, int16 version, int16* info_packet_size) {
  964. int16 index = player->GetIndexForSpawn(this);
  965. PacketStruct* packet = player->GetSpawnInfoStruct();
  966. player->info_mutex.writelock(__FUNCTION__, __LINE__);
  967. packet->ResetData();
  968. InitializeInfoPacketData(player, packet);
  969. string* data = packet->serializeString();
  970. int32 size = data->length();
  971. uchar* xor_info_packet = player->GetTempInfoPacketForXOR();
  972. if (!xor_info_packet || size != player->GetTempInfoXorSize()) {
  973. LogWrite(ZONE__DEBUG, 0, "Zone", "InstantiateInfoExPacket: %i, %i", size, player->GetTempInfoXorSize());
  974. safe_delete(xor_info_packet);
  975. xor_info_packet = player->SetTempInfoPacketForXOR(size);
  976. }
  977. uchar* orig_packet = player->GetSpawnInfoPacketForXOR(id);
  978. if (orig_packet) {
  979. //if (!IsPlayer() && this->EngagedInCombat())
  980. //packet->PrintPacket();
  981. memcpy(xor_info_packet, (uchar*)data->c_str(), size);
  982. Encode(xor_info_packet, orig_packet, size);
  983. }
  984. bool changed = false;
  985. for (int i = 0; i < size; ++i) {
  986. if (xor_info_packet[i]) {
  987. changed = true;
  988. break;
  989. }
  990. }
  991. if (!changed) {
  992. player->info_mutex.releasewritelock(__FUNCTION__, __LINE__);
  993. return nullptr;
  994. }
  995. uchar* tmp = new uchar[size + 1000];
  996. size = Pack(tmp, xor_info_packet, size, size+1000, version);
  997. player->info_mutex.releasewritelock(__FUNCTION__, __LINE__);
  998. int32 orig_size = size;
  999. size -= sizeof(int32);
  1000. size += CheckOverLoadSize(index);
  1001. *info_packet_size = size;
  1002. uchar* tmp2 = new uchar[size];
  1003. uchar* ptr = tmp2;
  1004. ptr += DoOverLoad(index, ptr);
  1005. memcpy(ptr, tmp + sizeof(int32), orig_size - sizeof(int32));
  1006. delete[] tmp;
  1007. return move(tmp2);
  1008. }
  1009. uchar* Spawn::spawn_vis_changes_ex(Player* player, int16 version, int16* vis_packet_size) {
  1010. PacketStruct* vis_struct = player->GetSpawnVisStruct();
  1011. int16 index = player->GetIndexForSpawn(this);
  1012. player->vis_mutex.writelock(__FUNCTION__, __LINE__);
  1013. uchar* orig_packet = player->GetSpawnVisPacketForXOR(id);
  1014. vis_struct->ResetData();
  1015. InitializeVisPacketData(player, vis_struct);
  1016. string* data = vis_struct->serializeString();
  1017. int32 size = data->length();
  1018. uchar* xor_vis_packet = player->GetTempVisPacketForXOR();
  1019. if (!xor_vis_packet || size != player->GetTempVisXorSize()) {
  1020. LogWrite(ZONE__DEBUG, 0, "Zone", "InstantiateVisExPacket: %i, %i", size, player->GetTempVisXorSize());
  1021. safe_delete(xor_vis_packet);
  1022. xor_vis_packet = player->SetTempVisPacketForXOR(size);
  1023. }
  1024. if (orig_packet) {
  1025. //if (!IsPlayer() && this->EngagedInCombat())
  1026. // vis_struct->PrintPacket();
  1027. memcpy(xor_vis_packet, (uchar*)data->c_str(), size);
  1028. Encode(xor_vis_packet, orig_packet, size);
  1029. }
  1030. bool changed = false;
  1031. for (int i = 0; i < size; ++i) {
  1032. if (xor_vis_packet[i]) {
  1033. changed = true;
  1034. break;
  1035. }
  1036. }
  1037. if (!changed) {
  1038. player->vis_mutex.releasewritelock(__FUNCTION__, __LINE__);
  1039. return nullptr;
  1040. }
  1041. uchar* tmp = new uchar[size + 10];
  1042. size = Pack(tmp, xor_vis_packet, size, size, version);
  1043. player->vis_mutex.releasewritelock(__FUNCTION__, __LINE__);
  1044. int32 orig_size = size;
  1045. size -= sizeof(int32);
  1046. size += CheckOverLoadSize(index);
  1047. *vis_packet_size = size;
  1048. uchar* tmp2 = new uchar[size];
  1049. uchar* ptr = tmp2;
  1050. ptr += DoOverLoad(index, ptr);
  1051. memcpy(ptr, tmp + sizeof(int32), orig_size - sizeof(int32));
  1052. delete[] tmp;
  1053. return move(tmp2);
  1054. }
  1055. uchar* Spawn::spawn_pos_changes_ex(Player* player, int16 version, int16* pos_packet_size) {
  1056. int16 index = player->GetIndexForSpawn(this);
  1057. PacketStruct* packet = player->GetSpawnPosStruct();
  1058. player->pos_mutex.writelock(__FUNCTION__, __LINE__);
  1059. uchar* orig_packet = player->GetSpawnPosPacketForXOR(id);
  1060. packet->ResetData();
  1061. InitializePosPacketData(player, packet);
  1062. string* data = packet->serializeString();
  1063. int32 size = data->length();
  1064. uchar* xor_pos_packet = player->GetTempPosPacketForXOR();
  1065. if (!xor_pos_packet || size != player->GetTempPosXorSize()) {
  1066. LogWrite(ZONE__DEBUG, 0, "Zone", "InstantiatePosExPacket: %i, %i", size, player->GetTempPosXorSize());
  1067. safe_delete(xor_pos_packet);
  1068. xor_pos_packet = player->SetTempPosPacketForXOR(size);
  1069. }
  1070. if (orig_packet) {
  1071. //if (!IsPlayer() && this->EngagedInCombat())
  1072. // packet->PrintPacket();
  1073. memcpy(xor_pos_packet, (uchar*)data->c_str(), size);
  1074. Encode(xor_pos_packet, orig_packet, size);
  1075. }
  1076. bool changed = false;
  1077. for (int i = 0; i < size; ++i) {
  1078. if (xor_pos_packet[i]) {
  1079. changed = true;
  1080. break;
  1081. }
  1082. }
  1083. if (!changed) {
  1084. player->pos_mutex.releasewritelock(__FUNCTION__, __LINE__);
  1085. return nullptr;
  1086. }
  1087. uchar* tmp = new uchar[size + 10];
  1088. size = Pack(tmp, xor_pos_packet, size, size, version);
  1089. player->pos_mutex.releasewritelock(__FUNCTION__, __LINE__);
  1090. int32 orig_size = size;
  1091. if (version >= 1188) {
  1092. size += 1;
  1093. }
  1094. if (IsPlayer() && version > 546) {
  1095. size += 4;
  1096. }
  1097. size -= sizeof(int32);
  1098. size += CheckOverLoadSize(index);
  1099. *pos_packet_size = size;
  1100. uchar* tmp2 = new uchar[size];
  1101. uchar* ptr = tmp2;
  1102. ptr += DoOverLoad(index, ptr);
  1103. // extra byte in coe+ clients, 0 for NPC's 1 for Players
  1104. int8 x = 0;
  1105. if (version > 546) {
  1106. if (IsPlayer()) {
  1107. if (version >= 1188) {
  1108. x = 1;
  1109. memcpy(ptr, &x, sizeof(int8));
  1110. ptr += sizeof(int8);
  1111. }
  1112. int32 now = Timer::GetCurrentTime2();
  1113. memcpy(ptr, &now, sizeof(int32));
  1114. ptr += sizeof(int32);
  1115. }
  1116. else if (version >= 1188) {
  1117. memcpy(ptr, &x, sizeof(int8));
  1118. ptr += sizeof(int8);
  1119. }
  1120. }
  1121. memcpy(ptr, tmp + sizeof(int32), orig_size - sizeof(int32));
  1122. delete[] tmp;
  1123. return move(tmp2);
  1124. }
  1125. EQ2Packet* Spawn::serialize(Player* player, int16 version){
  1126. return 0;
  1127. }
  1128. Spawn* Spawn::GetTarget(){
  1129. Spawn* ret = 0;
  1130. // only attempt to get a spawn if we had a target stored
  1131. if (target != 0)
  1132. {
  1133. ret = GetZone()->GetSpawnByID(target);
  1134. if (!ret)
  1135. target = 0;
  1136. }
  1137. return ret;
  1138. }
  1139. void Spawn::SetTarget(Spawn* spawn){
  1140. SetInfo(&target, spawn ? spawn->GetID() : 0);
  1141. }
  1142. Spawn* Spawn::GetLastAttacker() {
  1143. Spawn* ret = 0;
  1144. ret = GetZone()->GetSpawnByID(last_attacker);
  1145. if (!ret)
  1146. last_attacker = 0;
  1147. return ret;
  1148. }
  1149. void Spawn::SetLastAttacker(Spawn* spawn){
  1150. last_attacker = spawn->GetID();
  1151. }
  1152. void Spawn::SetInvulnerable(bool val){
  1153. invulnerable = val;
  1154. }
  1155. bool Spawn::GetInvulnerable(){
  1156. return invulnerable;
  1157. }
  1158. bool Spawn::TakeDamage(int32 damage){
  1159. if(invulnerable)
  1160. return false;
  1161. if (IsEntity()) {
  1162. if (((Entity*)this)->IsMezzed())
  1163. ((Entity*)this)->RemoveAllMezSpells();
  1164. if (damage == 0)
  1165. return true;
  1166. }
  1167. int32 hp = GetHP();
  1168. if(damage >= hp) {
  1169. SetHP(0);
  1170. if (IsPlayer()) {
  1171. ((Player*)this)->InCombat(false);
  1172. ((Player*)this)->SetRangeAttack(false);
  1173. GetZone()->TriggerCharSheetTimer(); // force char sheet updates now
  1174. }
  1175. }
  1176. else {
  1177. SetHP(hp - damage);
  1178. // if player flag the char sheet as changed so the ui updates properly
  1179. if (IsPlayer())
  1180. ((Player*)this)->SetCharSheetChanged(true);
  1181. }
  1182. return true;
  1183. }
  1184. ZoneServer* Spawn::GetZone(){
  1185. return zone;
  1186. }
  1187. void Spawn::SetZone(ZoneServer* in_zone, int32 version){
  1188. zone = in_zone;
  1189. if(in_zone)
  1190. {
  1191. region_map = world.GetRegionMap(std::string(in_zone->GetZoneFile()), version);
  1192. current_map = world.GetMap(std::string(in_zone->GetZoneFile()), version);
  1193. }
  1194. else
  1195. {
  1196. region_map = nullptr;
  1197. current_map = nullptr;
  1198. }
  1199. }
  1200. /*** HIT POINT ***/
  1201. void Spawn::SetHP(sint32 new_val, bool setUpdateFlags){
  1202. if(new_val == 0){
  1203. ClearRunningLocations();
  1204. CalculateRunningLocation(true);
  1205. if(IsEntity()) {
  1206. is_alive = false;
  1207. }
  1208. }
  1209. if(IsNPC() && new_val > 0 && !is_alive) {
  1210. is_alive = true;
  1211. }
  1212. else if(IsPlayer() && new_val > 0 && !is_alive) {
  1213. LogWrite(SPAWN__ERROR, 0, "Spawn", "Cannot change player HP > 0 while dead (%s)! Player must revive.", GetName());
  1214. return;
  1215. }
  1216. if(new_val > basic_info.max_hp)
  1217. SetInfo(&basic_info.max_hp, new_val, setUpdateFlags);
  1218. SetInfo(&basic_info.cur_hp, new_val, setUpdateFlags);
  1219. if(/*IsPlayer() &&*/ GetZone() && basic_info.cur_hp > 0 && basic_info.cur_hp < basic_info.max_hp)
  1220. GetZone()->AddDamagedSpawn(this);
  1221. if (IsEntity() && ((Entity*)this)->GetGroupMemberInfo()) {
  1222. ((Entity*)this)->UpdateGroupMemberInfo();
  1223. if (IsPlayer())
  1224. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id, GetZone()->GetClientBySpawn(this));
  1225. else
  1226. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id);
  1227. }
  1228. if ( IsPlayer() && new_val == 0 ) // fixes on death not showing hp update for players
  1229. ((Player*)this)->SetCharSheetChanged(true);
  1230. if (IsNPC() && ((NPC*)this)->IsPet() && ((NPC*)this)->GetOwner() && ((NPC*)this)->GetOwner()->IsPlayer()) {
  1231. Player* player = (Player*)((NPC*)this)->GetOwner();
  1232. if (player->GetPet() && player->GetCharmedPet()) {
  1233. if (this == player->GetPet()) {
  1234. player->GetInfoStruct()->set_pet_health_pct((float)basic_info.cur_hp / (float)basic_info.max_hp);
  1235. player->SetCharSheetChanged(true);
  1236. }
  1237. }
  1238. else {
  1239. player->GetInfoStruct()->set_pet_health_pct((float)basic_info.cur_hp / (float)basic_info.max_hp);
  1240. player->SetCharSheetChanged(true);
  1241. }
  1242. }
  1243. }
  1244. void Spawn::SetTotalHP(sint32 new_val){
  1245. if(basic_info.hp_base == 0)
  1246. SetTotalHPBase(new_val);
  1247. SetInfo(&basic_info.max_hp, new_val);
  1248. if(GetZone() && basic_info.cur_hp > 0 && basic_info.cur_hp < basic_info.max_hp)
  1249. GetZone()->AddDamagedSpawn(this);
  1250. if (IsEntity() && ((Entity*)this)->GetGroupMemberInfo()) {
  1251. ((Entity*)this)->UpdateGroupMemberInfo();
  1252. if (IsPlayer())
  1253. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id, GetZone()->GetClientBySpawn(this));
  1254. else
  1255. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id);
  1256. }
  1257. if (IsNPC() && ((NPC*)this)->IsPet() && ((NPC*)this)->GetOwner() != nullptr && ((NPC*)this)->GetOwner()->IsPlayer()) {
  1258. Player* player = (Player*)((NPC*)this)->GetOwner();
  1259. if (basic_info.max_hp && player->GetPet() && player->GetCharmedPet()) {
  1260. if (this == player->GetPet()) {
  1261. player->GetInfoStruct()->set_pet_health_pct((float)basic_info.cur_hp / (float)basic_info.max_hp);
  1262. player->SetCharSheetChanged(true);
  1263. }
  1264. }
  1265. else if(basic_info.max_hp) {
  1266. player->GetInfoStruct()->set_pet_health_pct((float)basic_info.cur_hp / (float)basic_info.max_hp);
  1267. player->SetCharSheetChanged(true);
  1268. }
  1269. }
  1270. }
  1271. void Spawn::SetTotalHPBase(sint32 new_val)
  1272. {
  1273. SetInfo(&basic_info.hp_base, new_val);
  1274. if(GetZone() && basic_info.cur_hp > 0 && basic_info.cur_hp < basic_info.max_hp)
  1275. GetZone()->AddDamagedSpawn(this);
  1276. if (IsEntity() && ((Entity*)this)->GetGroupMemberInfo()) {
  1277. ((Entity*)this)->UpdateGroupMemberInfo();
  1278. if (IsPlayer())
  1279. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id, GetZone()->GetClientBySpawn(this));
  1280. else
  1281. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id);
  1282. }
  1283. }
  1284. sint32 Spawn::GetHP()
  1285. {
  1286. return basic_info.cur_hp;
  1287. }
  1288. sint32 Spawn::GetTotalHP()
  1289. {
  1290. return basic_info.max_hp;
  1291. }
  1292. sint32 Spawn::GetTotalHPBase()
  1293. {
  1294. return basic_info.hp_base;
  1295. }
  1296. /*** POWER ***/
  1297. void Spawn::SetPower(sint32 power, bool setUpdateFlags){
  1298. if(power > basic_info.max_power)
  1299. SetInfo(&basic_info.max_power, power, setUpdateFlags);
  1300. SetInfo(&basic_info.cur_power, power, setUpdateFlags);
  1301. if(/*IsPlayer() &&*/ GetZone() && basic_info.cur_power < basic_info.max_power)
  1302. GetZone()->AddDamagedSpawn(this);
  1303. if (IsEntity() && ((Entity*)this)->GetGroupMemberInfo()) {
  1304. ((Entity*)this)->UpdateGroupMemberInfo();
  1305. if (IsPlayer())
  1306. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id, GetZone()->GetClientBySpawn(this));
  1307. else
  1308. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id);
  1309. }
  1310. if (IsNPC() && ((NPC*)this)->IsPet() && ((NPC*)this)->GetOwner() != nullptr && ((NPC*)this)->GetOwner()->IsPlayer()) {
  1311. Player* player = (Player*)((NPC*)this)->GetOwner();
  1312. if (player->GetPet() && player->GetCharmedPet()) {
  1313. if (this == player->GetPet()) {
  1314. player->GetInfoStruct()->set_pet_power_pct((float)basic_info.cur_power / (float)basic_info.max_power);
  1315. player->SetCharSheetChanged(true);
  1316. }
  1317. }
  1318. else {
  1319. player->GetInfoStruct()->set_pet_power_pct((float)basic_info.cur_power / (float)basic_info.max_power);
  1320. player->SetCharSheetChanged(true);
  1321. }
  1322. }
  1323. }
  1324. void Spawn::SetTotalPower(sint32 new_val)
  1325. {
  1326. if(basic_info.power_base == 0)
  1327. SetTotalPowerBase(new_val);
  1328. SetInfo(&basic_info.max_power, new_val);
  1329. if(GetZone() && basic_info.cur_power < basic_info.max_power)
  1330. GetZone()->AddDamagedSpawn(this);
  1331. if (IsEntity() && ((Entity*)this)->GetGroupMemberInfo()) {
  1332. ((Entity*)this)->UpdateGroupMemberInfo();
  1333. if (IsPlayer())
  1334. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id, GetZone()->GetClientBySpawn(this));
  1335. else
  1336. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id);
  1337. }
  1338. if (IsNPC() && ((NPC*)this)->IsPet() && ((NPC*)this)->GetOwner() != nullptr && ((NPC*)this)->GetOwner()->IsPlayer()) {
  1339. Player* player = (Player*)((NPC*)this)->GetOwner();
  1340. if (player->GetPet() && player->GetCharmedPet()) {
  1341. if (this == player->GetPet()) {
  1342. player->GetInfoStruct()->set_pet_power_pct((float)basic_info.cur_power / (float)basic_info.max_power);
  1343. player->SetCharSheetChanged(true);
  1344. }
  1345. }
  1346. else {
  1347. player->GetInfoStruct()->set_pet_power_pct((float)basic_info.cur_power / (float)basic_info.max_power);
  1348. player->SetCharSheetChanged(true);
  1349. }
  1350. }
  1351. }
  1352. void Spawn::SetTotalPowerBase(sint32 new_val)
  1353. {
  1354. SetInfo(&basic_info.power_base, new_val);
  1355. if(GetZone() && basic_info.cur_power < basic_info.max_power)
  1356. GetZone()->AddDamagedSpawn(this);
  1357. if (IsEntity() && ((Entity*)this)->GetGroupMemberInfo()) {
  1358. ((Entity*)this)->UpdateGroupMemberInfo();
  1359. if (IsPlayer())
  1360. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id, GetZone()->GetClientBySpawn(this));
  1361. else
  1362. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id);
  1363. }
  1364. }
  1365. sint32 Spawn::GetPower()
  1366. {
  1367. return basic_info.cur_power;
  1368. }
  1369. sint32 Spawn::GetTotalPower(){
  1370. return basic_info.max_power;
  1371. }
  1372. sint32 Spawn::GetTotalPowerBase()
  1373. {
  1374. return basic_info.power_base;
  1375. }
  1376. /*** SAVAGERY ***/
  1377. void Spawn::SetSavagery(sint32 savagery, bool setUpdateFlags)
  1378. {
  1379. /* JA: extremely limited functionality until we better understand Savagery */
  1380. if(savagery > basic_info.max_savagery)
  1381. SetInfo(&basic_info.max_savagery, savagery, setUpdateFlags);
  1382. SetInfo(&basic_info.cur_savagery, savagery, setUpdateFlags);
  1383. }
  1384. void Spawn::SetTotalSavagery(sint32 new_val)
  1385. {
  1386. /* JA: extremely limited functionality until we better understand Savagery */
  1387. if(basic_info.savagery_base == 0)
  1388. SetTotalSavageryBase(new_val);
  1389. SetInfo(&basic_info.max_savagery, new_val);
  1390. }
  1391. void Spawn::SetTotalSavageryBase(sint32 new_val){
  1392. SetInfo(&basic_info.savagery_base, new_val);
  1393. if (IsEntity() && ((Entity*)this)->GetGroupMemberInfo()) {
  1394. ((Entity*)this)->UpdateGroupMemberInfo();
  1395. if (IsPlayer())
  1396. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id, GetZone()->GetClientBySpawn(this));
  1397. else
  1398. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id);
  1399. }
  1400. }
  1401. sint32 Spawn::GetTotalSavagery()
  1402. {
  1403. return basic_info.max_savagery;
  1404. }
  1405. sint32 Spawn::GetSavagery()
  1406. {
  1407. return basic_info.cur_savagery;
  1408. }
  1409. /*** DISSONANCE ***/
  1410. void Spawn::SetDissonance(sint32 dissonance, bool setUpdateFlags)
  1411. {
  1412. /* JA: extremely limited functionality until we better understand Dissonance */
  1413. if(dissonance > basic_info.max_dissonance)
  1414. SetInfo(&basic_info.max_dissonance, dissonance, setUpdateFlags);
  1415. SetInfo(&basic_info.cur_dissonance, dissonance, setUpdateFlags);
  1416. }
  1417. void Spawn::SetTotalDissonance(sint32 new_val)
  1418. {
  1419. /* JA: extremely limited functionality until we better understand Dissonance */
  1420. if(basic_info.dissonance_base == 0)
  1421. SetTotalDissonanceBase(new_val);
  1422. SetInfo(&basic_info.max_dissonance, new_val);
  1423. }
  1424. void Spawn::SetTotalDissonanceBase(sint32 new_val)
  1425. {
  1426. SetInfo(&basic_info.dissonance_base, new_val);
  1427. if (IsEntity() && ((Entity*)this)->GetGroupMemberInfo()) {
  1428. ((Entity*)this)->UpdateGroupMemberInfo();
  1429. if (IsPlayer())
  1430. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id, GetZone()->GetClientBySpawn(this));
  1431. else
  1432. world.GetGroupManager()->SendGroupUpdate(((Entity*)this)->GetGroupMemberInfo()->group_id);
  1433. }
  1434. }
  1435. sint32 Spawn::GetTotalDissonance()
  1436. {
  1437. return basic_info.max_dissonance;
  1438. }
  1439. sint32 Spawn::GetDissonance()
  1440. {
  1441. return basic_info.cur_dissonance;
  1442. }
  1443. /* --< Alternate Advancement Points >-- */
  1444. void Spawn::SetAssignedAA(sint16 new_val)
  1445. {
  1446. SetInfo(&basic_info.assigned_aa, new_val);
  1447. }
  1448. void Spawn::SetUnassignedAA(sint16 new_val)
  1449. {
  1450. SetInfo(&basic_info.unassigned_aa, new_val);
  1451. }
  1452. void Spawn::SetTradeskillAA(sint16 new_val)
  1453. {
  1454. SetInfo(&basic_info.tradeskill_aa, new_val);
  1455. }
  1456. void Spawn::SetUnassignedTradeskillAA(sint16 new_val)
  1457. {
  1458. SetInfo(&basic_info.unassigned_tradeskill_aa, new_val);
  1459. }
  1460. void Spawn::SetPrestigeAA(sint16 new_val)
  1461. {
  1462. SetInfo(&basic_info.prestige_aa, new_val);
  1463. }
  1464. void Spawn::SetUnassignedPrestigeAA(sint16 new_val)
  1465. {
  1466. SetInfo(&basic_info.unassigned_prestige_aa, new_val);
  1467. }
  1468. void Spawn::SetTradeskillPrestigeAA(sint16 new_val)
  1469. {
  1470. SetInfo(&basic_info.tradeskill_prestige_aa, new_val);
  1471. }
  1472. void Spawn::SetUnassignedTradeskillPrestigeAA(sint16 new_val)
  1473. {
  1474. SetInfo(&basic_info.unassigned_tradeskill_prestige_aa, new_val);
  1475. }
  1476. void Spawn::SetAAXPRewards(int32 value)
  1477. {
  1478. SetInfo(&basic_info.aaxp_rewards, value, false);
  1479. }
  1480. sint16 Spawn::GetAssignedAA()
  1481. {
  1482. return basic_info.assigned_aa;
  1483. }
  1484. sint16 Spawn::GetUnassignedAA()
  1485. {
  1486. return basic_info.unassigned_aa;
  1487. }
  1488. sint16 Spawn::GetTradeskillAA()
  1489. {
  1490. return basic_info.tradeskill_aa;
  1491. }
  1492. sint16 Spawn::GetUnassignedTradeskillAA()
  1493. {
  1494. return basic_info.unassigned_tradeskill_aa;
  1495. }
  1496. sint16 Spawn::GetPrestigeAA()
  1497. {
  1498. return basic_info.prestige_aa;
  1499. }
  1500. sint16 Spawn::GetUnassignedPretigeAA()
  1501. {
  1502. return basic_info.unassigned_prestige_aa;
  1503. }
  1504. sint16 Spawn::GetTradeskillPrestigeAA()
  1505. {
  1506. return basic_info.tradeskill_prestige_aa;
  1507. }
  1508. sint16 Spawn::GetUnassignedTradeskillPrestigeAA()
  1509. {
  1510. return basic_info.unassigned_tradeskill_prestige_aa;
  1511. }
  1512. int32 Spawn::GetAAXPRewards()
  1513. {
  1514. return basic_info.aaxp_rewards;
  1515. }
  1516. float Spawn::GetDistance(float x1, float y1, float z1, float x2, float y2, float z2){
  1517. x1 = x1 - x2;
  1518. y1 = y1 - y2;
  1519. z1 = z1 - z2;
  1520. return sqrt(x1*x1 + y1*y1 + z1*z1);
  1521. }
  1522. float Spawn::GetDistance(float x, float y, float z, float radius, bool ignore_y) {
  1523. if (ignore_y)
  1524. return GetDistance(x, y, z, GetX(), y, GetZ()) - radius;
  1525. else
  1526. return GetDistance(x, y, z, GetX(), GetY(), GetZ()) - radius;
  1527. }
  1528. float Spawn::GetDistance(float x, float y, float z, bool ignore_y) {
  1529. return GetDistance(x, y, z, 0.0f, ignore_y);
  1530. }
  1531. float Spawn::GetDistance(Spawn* spawn, bool ignore_y, bool includeRadius){
  1532. float ret = 0;
  1533. if (spawn)
  1534. {
  1535. float radius = 0.0f;
  1536. if (includeRadius)
  1537. radius = CalculateRadius(spawn);
  1538. ret = GetDistance(spawn->GetX(), spawn->GetY(), spawn->GetZ(), radius, ignore_y);
  1539. }
  1540. // maybe distance against ourselves, in that case we want to nullify the radius check
  1541. if (ret < 0)
  1542. ret = 0.0f;
  1543. return ret;
  1544. }
  1545. float Spawn::GetDistance(Spawn* spawn, float x1, float y1, float z1, bool includeRadius) {
  1546. float ret = 0;
  1547. if (spawn)
  1548. {
  1549. float radius = 0.0f;
  1550. if (includeRadius)
  1551. radius = CalculateRadius(spawn);
  1552. ret = GetDistance(x1, y1, z1, spawn->GetX(), spawn->GetY(), spawn->GetZ()) - radius;
  1553. }
  1554. // maybe distance against ourselves, in that case we want to nullify the radius check
  1555. if (ret < 0)
  1556. ret = 0.0f;
  1557. return ret;
  1558. }
  1559. float Spawn::CalculateRadius(Spawn* target)
  1560. {
  1561. float srcRadius = short_to_float(appearance.pos.collision_radius);
  1562. if (target)
  1563. {
  1564. float targRadius = short_to_float(target->appearance.pos.collision_radius);
  1565. return (targRadius / 32.0f) + (srcRadius / 32.0f);
  1566. }
  1567. else
  1568. return (srcRadius / 32.0f);
  1569. }
  1570. int32 Spawn::GetRespawnTime(){
  1571. return respawn;
  1572. }
  1573. void Spawn::SetRespawnTime(int32 time){
  1574. respawn = time;
  1575. }
  1576. int32 Spawn::GetExpireOffsetTime(){
  1577. return expire_offset;
  1578. }
  1579. void Spawn::SetExpireOffsetTime(int32 time){
  1580. expire_offset = time;
  1581. }
  1582. int32 Spawn::GetSpawnLocationID(){
  1583. return spawn_location_id;
  1584. }
  1585. void Spawn::SetSpawnLocationID(int32 id){
  1586. spawn_location_id = id;
  1587. }
  1588. int32 Spawn::GetSpawnEntryID(){
  1589. return spawn_entry_id;
  1590. }
  1591. void Spawn::SetSpawnEntryID(int32 id){
  1592. spawn_entry_id = id;
  1593. }
  1594. int32 Spawn::GetSpawnLocationPlacementID(){
  1595. return spawn_location_spawns_id;
  1596. }
  1597. void Spawn::SetSpawnLocationPlacementID(int32 id){
  1598. spawn_location_spawns_id = id;
  1599. }
  1600. const char* Spawn::GetSpawnScript(){
  1601. if(spawn_script.length() > 0)
  1602. return spawn_script.c_str();
  1603. else
  1604. return 0;
  1605. }
  1606. void Spawn::SetSpawnScript(string name){
  1607. spawn_script = name;
  1608. }
  1609. void Spawn::SetPrimaryCommand(const char* name, const char* command, float distance){
  1610. EntityCommand* entity_command = CreateEntityCommand(name, distance, command, "", 0, 0);
  1611. if(primary_command_list.size() > 0 && primary_command_list[0]){
  1612. safe_delete(primary_command_list[0]);
  1613. primary_command_list[0] = entity_command;
  1614. }
  1615. else
  1616. primary_command_list.push_back(entity_command);
  1617. }
  1618. void Spawn::SetSecondaryCommands(vector<EntityCommand*>* commands){
  1619. if(commands && commands->size() > 0){
  1620. vector<EntityCommand*>::iterator itr;
  1621. if(secondary_command_list.size() > 0){
  1622. for(itr = secondary_command_list.begin(); itr != secondary_command_list.end(); itr++){
  1623. safe_delete(*itr);
  1624. }
  1625. secondary_command_list.clear();
  1626. }
  1627. EntityCommand* command = 0;
  1628. for(itr = commands->begin(); itr != commands->end(); itr++){
  1629. command = CreateEntityCommand(*itr);
  1630. secondary_command_list.push_back(command);
  1631. }
  1632. }
  1633. }
  1634. void Spawn::SetPrimaryCommands(vector<EntityCommand*>* commands){
  1635. if(commands && commands->size() > 0){
  1636. vector<EntityCommand*>::iterator itr;
  1637. if(primary_command_list.size() > 0){
  1638. for(itr = primary_command_list.begin(); itr != primary_command_list.end(); itr++){
  1639. safe_delete(*itr);
  1640. }
  1641. primary_command_list.clear();
  1642. }
  1643. EntityCommand* command = 0;
  1644. for(itr = commands->begin(); itr != commands->end(); itr++){
  1645. command = CreateEntityCommand(*itr);
  1646. primary_command_list.push_back(command);
  1647. }
  1648. }
  1649. }
  1650. EntityCommand* Spawn::FindEntityCommand(string command, bool primaryOnly) {
  1651. EntityCommand* entity_command = 0;
  1652. if (primary_command_list.size() > 0) {
  1653. vector<EntityCommand*>::iterator itr;
  1654. for (itr = primary_command_list.begin(); itr != primary_command_list.end(); itr++) {
  1655. if ((*itr)->command.compare(command) == 0) {
  1656. entity_command = *itr;
  1657. break;
  1658. }
  1659. }
  1660. }
  1661. if (primaryOnly)
  1662. return entity_command;
  1663. if (!entity_command && secondary_command_list.size() > 0) {
  1664. vector<EntityCommand*>::iterator itr;
  1665. for (itr = secondary_command_list.begin(); itr != secondary_command_list.end(); itr++) {
  1666. if ((*itr)->command == command) {
  1667. entity_command = *itr;
  1668. break;
  1669. }
  1670. }
  1671. }
  1672. return entity_command;
  1673. }
  1674. void Spawn::SetSizeOffset(int8 offset){
  1675. size_offset = offset;
  1676. }
  1677. int8 Spawn::GetSizeOffset(){
  1678. return size_offset;
  1679. }
  1680. void Spawn::SetMerchantID(int32 val){
  1681. merchant_id = val;
  1682. }
  1683. int32 Spawn::GetMerchantID(){
  1684. return merchant_id;
  1685. }
  1686. void Spawn::SetMerchantType(int8 val) {
  1687. merchant_type = val;
  1688. }
  1689. int8 Spawn::GetMerchantType() {
  1690. return merchant_type;
  1691. }
  1692. void Spawn::SetMerchantLevelRange(int32 minLvl, int32 maxLvl) {
  1693. merchant_min_level = minLvl;
  1694. merchant_max_level = maxLvl;
  1695. }
  1696. int32 Spawn::GetMerchantMinLevel() {
  1697. return merchant_min_level;
  1698. }
  1699. int32 Spawn::GetMerchantMaxLevel() {
  1700. return merchant_max_level;
  1701. }
  1702. bool Spawn::IsClientInMerchantLevelRange(Client* client, bool sendMessageIfDenied)
  1703. {
  1704. if (!client)
  1705. return false;
  1706. if (GetMerchantMinLevel() && client->GetPlayer()->GetLevel() < GetMerchantMinLevel())
  1707. {
  1708. client->Message(CHANNEL_COLOR_RED, "You are unable to interact with this merchant due to a minimum level %u allowed.", GetMerchantMinLevel());
  1709. return false;
  1710. }
  1711. else if (GetMerchantMaxLevel() && client->GetPlayer()->GetLevel() > GetMerchantMaxLevel())
  1712. {
  1713. client->Message(CHANNEL_COLOR_RED, "You are unable to interact with this merchant due to a maximum level %u allowed.", GetMerchantMaxLevel());
  1714. return false;
  1715. }
  1716. return true;
  1717. }
  1718. void Spawn::SetQuestsRequired(Spawn* new_spawn){
  1719. m_requiredQuests.writelock(__FUNCTION__, __LINE__);
  1720. if(required_quests.size() > 0){
  1721. map<int32, vector<int16>* >::iterator itr;
  1722. for(itr = required_quests.begin(); itr != required_quests.end(); itr++){
  1723. vector<int16>* quest_steps = itr->second;
  1724. for (int32 i = 0; i < quest_steps->size(); i++)
  1725. new_spawn->SetQuestsRequired(itr->first, quest_steps->at(i));
  1726. }
  1727. }
  1728. m_requiredQuests.releasewritelock(__FUNCTION__, __LINE__);
  1729. }
  1730. void Spawn::SetQuestsRequired(int32 quest_id, int16 quest_step){
  1731. m_requiredQuests.writelock(__FUNCTION__, __LINE__);
  1732. if (required_quests.count(quest_id) == 0)
  1733. required_quests.insert(make_pair(quest_id, new vector<int16>));
  1734. else{
  1735. for (int32 i = 0; i < required_quests[quest_id]->size(); i++){
  1736. if (required_quests[quest_id]->at(i) == quest_step){
  1737. m_requiredQuests.releasewritelock(__FUNCTION__, __LINE__);
  1738. return;
  1739. }
  1740. }
  1741. }
  1742. has_quests_required = true;
  1743. required_quests[quest_id]->push_back(quest_step);
  1744. m_requiredQuests.releasewritelock(__FUNCTION__, __LINE__);
  1745. }
  1746. bool Spawn::HasQuestsRequired(){
  1747. return has_quests_required;
  1748. }
  1749. bool Spawn::HasHistoryRequired(){
  1750. return has_history_required;
  1751. }
  1752. void Spawn::SetRequiredHistory(int32 event_id, int32 value1, int32 value2){
  1753. LUAHistory* set_value = new LUAHistory();
  1754. set_value->Value = value1;
  1755. set_value->Value2 = value2;
  1756. set_value->SaveNeeded = false;
  1757. m_requiredHistory.writelock(__FUNCTION__, __LINE__);
  1758. if (required_history.count(event_id) == 0)
  1759. required_history.insert(make_pair(event_id, set_value));
  1760. else
  1761. {
  1762. LUAHistory* tmp_value = required_history[event_id];
  1763. required_history[event_id] = set_value;
  1764. safe_delete(tmp_value);
  1765. }
  1766. has_history_required = true;
  1767. m_requiredHistory.releasewritelock(__FUNCTION__, __LINE__);
  1768. }
  1769. void Spawn::SetTransporterID(int32 id){
  1770. transporter_id = id;
  1771. }
  1772. int32 Spawn::GetTransporterID(){
  1773. return transporter_id;
  1774. }
  1775. void Spawn::InitializePosPacketData(Player* player, PacketStruct* packet, bool bSpawnUpdate) {
  1776. int16 version = packet->GetVersion();
  1777. int32 new_grid_id = 0;
  1778. int32 new_widget_id = 0;
  1779. if(player->GetMap() != nullptr && player->GetMap()->IsMapLoaded())
  1780. {
  1781. m_GridMutex.writelock(__FUNCTION__, __LINE__);
  1782. std::map<int32,TimedGridData>::iterator itr = established_grid_id.find(version);
  1783. if ( itr == established_grid_id.end() || itr->second.timestamp <= (Timer::GetCurrentTime2()))
  1784. {
  1785. if(itr != established_grid_id.end() && itr->second.x == GetX() && itr->second.z == GetZ() && !itr->second.npc_save) {
  1786. itr->second.timestamp = Timer::GetCurrentTime2()+100;
  1787. itr->second.npc_save = false;
  1788. new_grid_id = itr->second.grid_id;
  1789. new_widget_id = itr->second.widget_id;
  1790. }
  1791. else {
  1792. auto loc = glm::vec3(GetX(), GetZ(), GetY());
  1793. float new_z = player->FindBestZ(loc, nullptr, &new_grid_id, &new_widget_id);
  1794. TimedGridData data;
  1795. data.grid_id = new_grid_id;
  1796. data.widget_id = new_widget_id;
  1797. data.x = GetX();
  1798. data.y = GetY();
  1799. data.z = GetZ();
  1800. data.npc_save = false;
  1801. data.timestamp = Timer::GetCurrentTime2()+100;
  1802. established_grid_id.insert(make_pair(packet->GetVersion(), data));
  1803. }
  1804. }
  1805. else {
  1806. new_grid_id = itr->second.grid_id;
  1807. new_widget_id = itr->second.widget_id;
  1808. }
  1809. m_GridMutex.releasewritelock(__FUNCTION__, __LINE__);
  1810. }
  1811. packet->setDataByName("pos_grid_id", new_grid_id != 0 ? new_grid_id : GetLocation());
  1812. bool include_heading = true;
  1813. if (IsWidget() && ((Widget*)this)->GetIncludeHeading() == false)
  1814. include_heading = false;
  1815. else if (IsSign() && ((Sign*)this)->GetIncludeHeading() == false)
  1816. include_heading = false;
  1817. if (include_heading){
  1818. packet->setDataByName("pos_heading1", appearance.pos.Dir1);
  1819. packet->setDataByName("pos_heading2", appearance.pos.Dir2);
  1820. }
  1821. if (version <= 910) {
  1822. packet->setDataByName("pos_collision_radius", appearance.pos.collision_radius > 0 ? appearance.pos.collision_radius : 32);
  1823. packet->setDataByName("pos_size", size > 0 ? size : 32);
  1824. packet->setDataByName("pos_size_multiplier", 32); //32 is normal
  1825. }
  1826. else {
  1827. if (size == 0)
  1828. size = 32;
  1829. packet->setDataByName("pos_collision_radius", appearance.pos.collision_radius > 0 ? appearance.pos.collision_radius : 32);
  1830. packet->setDataByName("pos_size", 1.0f);
  1831. if (!IsPlayer())
  1832. packet->setDataByName("pos_size", size > 0 ? (((float)size) / 32.0f) : 1.0f); // float not an integer
  1833. else
  1834. packet->setDataByName("pos_size", 1.0f);
  1835. // please do not remove! This makes it so NPCs for example do not resize large/small when you are in combat with them!
  1836. packet->setDataByName("pos_size_ratio", 1.0f);
  1837. }
  1838. packet->setDataByName("pos_state", appearance.pos.state);
  1839. bool include_location = true;
  1840. if (IsWidget() && ((Widget*)this)->GetIncludeLocation() == false)
  1841. include_location = false;
  1842. else if (IsSign() && ((Sign*)this)->GetIncludeLocation() == false)
  1843. include_location = false;
  1844. if (include_location){
  1845. if (IsWidget() && ((Widget*)this)->GetMultiFloorLift()) {
  1846. Widget* widget = (Widget*)this;
  1847. float x = appearance.pos.X - widget->GetWidgetX();
  1848. float y = appearance.pos.Y - widget->GetWidgetY();
  1849. float z = appearance.pos.Z - widget->GetWidgetZ();
  1850. packet->setDataByName("pos_x", x);
  1851. packet->setDataByName("pos_y", y);
  1852. packet->setDataByName("pos_z", z);
  1853. }
  1854. else {
  1855. packet->setDataByName("pos_x", appearance.pos.X);
  1856. packet->setDataByName("pos_y", appearance.pos.Y);
  1857. packet->setDataByName("pos_z", appearance.pos.Z);
  1858. }
  1859. if (IsSign())
  1860. packet->setDataByName("pos_unknown6", 3, 2);
  1861. }
  1862. if (IsPlayer()) {
  1863. Skill* skill = ((Player*)this)->GetSkillByName("Swimming", false);
  1864. sint16 swim_modifier = rule_manager.GetGlobalRule(R_Player, SwimmingSkillMinSpeed)->GetSInt16();
  1865. if(skill) {
  1866. sint16 max_val = 450;
  1867. if(skill->max_val > 0)
  1868. max_val = skill->max_val;
  1869. sint16 max_swim_mod = rule_manager.GetGlobalRule(R_Player, SwimmingSkillMaxSpeed)->GetSInt16();
  1870. float diff = (float)(skill->current_val + ((Player*)this)->GetStat(ITEM_STAT_SWIMMING)) / (float)max_val;
  1871. sint16 diff_mod = (sint16)(float)max_swim_mod * diff;
  1872. if(diff_mod > max_swim_mod)
  1873. swim_modifier = max_swim_mod;
  1874. else if(diff_mod > swim_modifier)
  1875. swim_modifier = diff_mod;
  1876. }
  1877. packet->setDataByName("pos_swim_speed_modifier", swim_modifier);
  1878. packet->setDataByName("pos_x_velocity", TransformFromFloat(GetSpeedX(), 5));
  1879. packet->setDataByName("pos_y_velocity", TransformFromFloat(GetSpeedY(), 5));
  1880. packet->setDataByName("pos_z_velocity", TransformFromFloat(GetSpeedZ(), 5));
  1881. }
  1882. if (appearance.pos.X2 == 0 && appearance.pos.Y2 == 0 && appearance.pos.Z2 && (appearance.pos.X != 0 || appearance.pos.Y != 0 || appearance.pos.Z != 0)) {
  1883. appearance.pos.X2 = appearance.pos.X;
  1884. appearance.pos.Y2 = appearance.pos.Y;
  1885. appearance.pos.Z2 = appearance.pos.Z;
  1886. }
  1887. if (appearance.pos.X3 == 0 && appearance.pos.Y3 == 0 && appearance.pos.Z3 && (appearance.pos.X != 0 || appearance.pos.Y != 0 || appearance.pos.Z != 0)) {
  1888. appearance.pos.X3 = appearance.pos.X;
  1889. appearance.pos.Y3 = appearance.pos.Y;
  1890. appearance.pos.Z3 = appearance.pos.Z;
  1891. }
  1892. //Transform To/From Float bits (original client)
  1893. //pos_loc_offset[3]: 5
  1894. //pos_x_velocity: 5
  1895. //pos_y_velocity: 5
  1896. //pos_z_velocity: 5
  1897. //pos_heading1: 6
  1898. //pos_heading2: 6
  1899. //pos_speed: 8
  1900. //pos_dest_loc_offset[3]: 5
  1901. //pos_dest_loc_offset2[3]: 5
  1902. //pos_heading_speed: 5
  1903. //pos_move_type: 5 (speed_modifier)
  1904. //pos_swim_speed_modifier: 5
  1905. //pos_side_speed: 8
  1906. //pos_vert_speed: 8
  1907. //pos_requested_pitch: 6
  1908. //pos_requested_pitch_speed: 5
  1909. //pos_pitch: 6
  1910. //pos_collision_radius: 5
  1911. //pos_size: 5
  1912. //actor_stop_range: 5
  1913. //this is for original box client, destinations used to be offsets
  1914. if (appearance.pos.X2 != 0 || appearance.pos.Y2 != 0 || appearance.pos.Z2 != 0) {
  1915. packet->setDataByName("pos_dest_loc_offset", TransformFromFloat(appearance.pos.X2 - appearance.pos.X, 5));
  1916. packet->setDataByName("pos_dest_loc_offset", TransformFromFloat(appearance.pos.Y2 - appearance.pos.Y, 5), 1);
  1917. packet->setDataByName("pos_dest_loc_offset", TransformFromFloat(appearance.pos.Z2 - appearance.pos.Z, 5), 2);
  1918. }
  1919. if (appearance.pos.X3 != 0 || appearance.pos.Y3 != 0 || appearance.pos.Z3 != 0) {
  1920. packet->setDataByName("pos_dest_loc_offset2", TransformFromFloat(appearance.pos.X3 - appearance.pos.X, 5));
  1921. packet->setDataByName("pos_dest_loc_offset2", TransformFromFloat(appearance.pos.Y3 - appearance.pos.Y, 5), 1);
  1922. packet->setDataByName("pos_dest_loc_offset2", TransformFromFloat(appearance.pos.Z3 - appearance.pos.Z, 5), 2);
  1923. }
  1924. bool bSendSpeed = true;
  1925. if (IsWidget() && ((Widget*)this)->GetMultiFloorLift()) {
  1926. Widget* widget = (Widget*)this;
  1927. float x;
  1928. float y;
  1929. float z;
  1930. if (IsRunning()){
  1931. x = appearance.pos.X2 - widget->GetWidgetX();
  1932. y = appearance.pos.Y2 - widget->GetWidgetY();
  1933. z = appearance.pos.Z2- widget->GetWidgetZ();
  1934. }
  1935. else {
  1936. x = appearance.pos.X - widget->GetWidgetX();
  1937. y = appearance.pos.Y - widget->GetWidgetY();
  1938. z = appearance.pos.Z - widget->GetWidgetZ();
  1939. }
  1940. packet->setDataByName("pos_next_x", x);
  1941. packet->setDataByName("pos_next_y", y);
  1942. packet->setDataByName("pos_next_z", z);
  1943. packet->setDataByName("pos_x3", x);
  1944. packet->setDataByName("pos_y3", y);
  1945. packet->setDataByName("pos_z3", z);
  1946. }
  1947. //If this is a spawn update or this spawn is currently moving we can send these values, otherwise set speed and next_xyz to 0
  1948. //This fixes the bug where spawns with movement scripts face south when initially spawning if they are at their target location.
  1949. else if (bSpawnUpdate || memcmp(&appearance.pos.X, &appearance.pos.X2, sizeof(float) * 3) != 0) {
  1950. packet->setDataByName("pos_next_x", appearance.pos.X2);
  1951. packet->setDataByName("pos_next_y", appearance.pos.Y2);
  1952. packet->setDataByName("pos_next_z", appearance.pos.Z2);
  1953. packet->setDataByName("pos_x3", appearance.pos.X3);
  1954. packet->setDataByName("pos_y3", appearance.pos.Y3);
  1955. packet->setDataByName("pos_z3", appearance.pos.Z3);
  1956. }
  1957. else
  1958. {
  1959. bSendSpeed = false;
  1960. }
  1961. //packet->setDataByName("pos_unknown2", 4, 2);
  1962. int16 speed_multiplier = rule_manager.GetGlobalRule(R_Spawn, SpeedMultiplier)->GetInt16(); // was 1280, 600 and now 300... investigating why
  1963. if (IsPlayer()) {
  1964. Player* player = static_cast<Player*>(this);
  1965. packet->setDataByName("pos_speed", player->GetPosPacketSpeed() * speed_multiplier);
  1966. packet->setDataByName("pos_side_speed", player->GetSideSpeed() * speed_multiplier);
  1967. }
  1968. else if (bSendSpeed) {
  1969. packet->setDataByName("pos_speed", GetSpeed() * speed_multiplier);
  1970. }
  1971. if (IsNPC() || IsPlayer()) {
  1972. packet->setDataByName("pos_move_type", 25);
  1973. }
  1974. else if (IsWidget() || IsSign()) {
  1975. packet->setDataByName("pos_move_type", 11);
  1976. }
  1977. else if(IsGroundSpawn()) {
  1978. packet->setDataByName("pos_move_type", 16);
  1979. }
  1980. if (!IsPlayer()) // has to be 2 or NPC's warp around when moving
  1981. packet->setDataByName("pos_movement_mode", 2);
  1982. packet->setDataByName("face_actor_id", 0xFFFFFFFF);
  1983. packet->setDataByName("pos_pitch1", appearance.pos.Pitch1);
  1984. packet->setDataByName("pos_pitch2", appearance.pos.Pitch2);
  1985. packet->setDataByName("pos_roll", appearance.pos.Roll);
  1986. }
  1987. void Spawn::InitializeInfoPacketData(Player* spawn, PacketStruct* packet) {
  1988. int16 version = packet->GetVersion();
  1989. bool spawnHiddenFromClient = false;
  1990. int8 classicFlags = 0;
  1991. // radius of 0 is always seen, -1 is never seen (unless items/spells override), larger than 0 is a defined radius to restrict visibility
  1992. sint32 radius = rule_manager.GetGlobalRule(R_PVP, InvisPlayerDiscoveryRange)->GetSInt32();
  1993. if (radius != 0 && (Spawn*)spawn != this && this->IsPlayer() && !spawn->CanSeeInvis((Entity*)this))
  1994. spawnHiddenFromClient = true;
  1995. if (!spawnHiddenFromClient && (appearance.targetable == 1 || appearance.show_level == 1 || appearance.display_name == 1)) {
  1996. if (!IsObject() && !IsGroundSpawn() && !IsWidget() && !IsSign()) {
  1997. int8 percent = 0;
  1998. if (GetHP() > 0)
  1999. percent = (int8)(((float)GetHP() / GetTotalHP()) * 100);
  2000. if (version >= 284) {
  2001. if (percent < 100) {
  2002. packet->setDataByName("hp_remaining", 100 ^ percent);
  2003. }
  2004. else
  2005. packet->setDataByName("hp_remaining", 0);
  2006. }
  2007. else {
  2008. if (percent > 100)
  2009. percent = 100;
  2010. packet->setDataByName("hp_remaining", percent);
  2011. }
  2012. if (GetTotalPower() > 0) {
  2013. percent = (int8)(((float)GetPower() / GetTotalPower()) * 100);
  2014. if (percent > 0)
  2015. packet->setDataByName("power_percent", percent);
  2016. else
  2017. packet->setDataByName("power_percent", 0);
  2018. }
  2019. }
  2020. }
  2021. if (version <= 546) {
  2022. packet->setDataByName("name", appearance.name);
  2023. for (int8 i = 0; i < 8; i++)
  2024. packet->setDataByName("unknown1", 0xFF, i);
  2025. if (appearance.show_level == 0)
  2026. packet->setDataByName("hide_health", 1);
  2027. }
  2028. if (GetHP() <= 0 && IsEntity()) {
  2029. packet->setDataByName("corpse", 1);
  2030. if(HasLoot())
  2031. packet->setDataByName("loot_icon", 1);
  2032. }
  2033. if (!IsPlayer())
  2034. packet->setDataByName("npc", 1);
  2035. if (GetMerchantID() > 0)
  2036. packet->setDataByName("merchant", 1);
  2037. packet->setDataByName("effective_level", IsEntity() && ((Entity*)this)->GetInfoStruct()->get_effective_level() != 0 ? (int8)((Entity*)this)->GetInfoStruct()->get_effective_level() : (int8)GetLevel());
  2038. packet->setDataByName("level", (int8)GetLevel());
  2039. packet->setDataByName("unknown4", (int8)GetLevel());
  2040. packet->setDataByName("difficulty", GetDifficulty()); //6);
  2041. packet->setDataByName("unknown6", 1);
  2042. packet->setDataByName("heroic_flag", appearance.heroic_flag);
  2043. packet->setDataByName("class", appearance.adventure_class);
  2044. int16 model_type = appearance.model_type;
  2045. if (GetIllusionModel() != 0) {
  2046. if (IsPlayer()) {
  2047. if (((Player*)this)->get_character_flag(CF_SHOW_ILLUSION)) {
  2048. model_type = GetIllusionModel();
  2049. }
  2050. }
  2051. else
  2052. model_type = GetIllusionModel();
  2053. }
  2054. int16 sogaModelType = appearance.soga_model_type;
  2055. if (spawnHiddenFromClient)
  2056. {
  2057. model_type = 0;
  2058. sogaModelType = 0;
  2059. }
  2060. packet->setDataByName("model_type", model_type);
  2061. if (appearance.soga_model_type == 0)
  2062. packet->setDataByName("soga_model_type", model_type);
  2063. else
  2064. packet->setDataByName("soga_model_type", sogaModelType);
  2065. if (GetTempActionState() >= 0)
  2066. packet->setDataByName("action_state", GetTempActionState());
  2067. else {
  2068. Client* client = spawn->GetClient();
  2069. int16 action_state = appearance.action_state;
  2070. if(IsEntity() && client) {
  2071. std::string actionState = ((Entity*)this)->GetInfoStruct()->get_action_state();
  2072. if(actionState.size() > 0) {
  2073. Emote* emote = visual_states.FindEmote(actionState, client->GetVersion());
  2074. if(emote != NULL)
  2075. action_state = emote->GetVisualState();
  2076. }
  2077. }
  2078. packet->setDataByName("action_state", action_state);
  2079. }
  2080. bool scaredOfPlayer = false;
  2081. if(IsCollector() && spawn->GetCollectionList()->HasCollectionsToHandIn())
  2082. packet->setDataByName("visual_state", VISUAL_STATE_COLLECTION_TURN_IN);
  2083. else if(!IsRunning() && IsNPC() && IsScaredByStrongPlayers() && spawn->GetArrowColor(GetLevel()) == ARROW_COLOR_GRAY &&
  2084. (GetDistance(spawn)) <= ((NPC*)this)->GetAggroRadius() && CheckLoS(spawn)) {
  2085. packet->setDataByName("visual_state", VISUAL_STATE_IDLE_AFRAID);
  2086. scaredOfPlayer = true;
  2087. }
  2088. else if (GetTempVisualState() >= 0)
  2089. packet->setDataByName("visual_state", GetTempVisualState());
  2090. else
  2091. packet->setDataByName("visual_state", appearance.visual_state);
  2092. if (IsNPC() && !IsPet() && !scaredOfPlayer)
  2093. {
  2094. if(((Entity*)this)->GetInfoStruct()->get_interaction_flag()) {
  2095. if(((Entity*)this)->GetInfoStruct()->get_interaction_flag() == 255) {
  2096. packet->setDataByName("interaction_flag", 0);
  2097. classicFlags += INFO_CLASSIC_FLAG_NOLOOK;
  2098. }
  2099. else {
  2100. packet->setDataByName("interaction_flag", ((Entity*)this)->GetInfoStruct()->get_interaction_flag()); //this makes NPCs head turn to look at you (12)
  2101. }
  2102. }
  2103. else {
  2104. packet->setDataByName("interaction_flag", 12); //turn head since no other value is set
  2105. }
  2106. }
  2107. packet->setDataByName("emote_state", appearance.emote_state);
  2108. packet->setDataByName("mood_state", appearance.mood_state);
  2109. packet->setDataByName("gender", appearance.gender);
  2110. packet->setDataByName("race", appearance.race);
  2111. packet->setDataByName("gender", appearance.gender);
  2112. if (IsEntity()) {
  2113. Entity* entity = ((Entity*)this);
  2114. packet->setDataByName("combat_voice", entity->GetCombatVoice());
  2115. packet->setDataByName("emote_voice", entity->GetEmoteVoice());
  2116. for (int i = 0; i < 25; i++) {
  2117. if (i == 2) { //don't send helm if hidden flag
  2118. if (IsPlayer()) {
  2119. if (((Player*)this)->get_character_flag(CF_HIDE_HELM)) {
  2120. packet->setDataByName("equipment_types", 0, i);
  2121. packet->setColorByName("equipment_colors", 0, i);
  2122. packet->setColorByName("equipment_highlights", 0, i);
  2123. continue;
  2124. }
  2125. }
  2126. if (IsBot()) {
  2127. if (!((Bot*)this)->ShowHelm) {
  2128. packet->setDataByName("equipment_types", 0, i);
  2129. packet->setColorByName("equipment_colors", 0, i);
  2130. packet->setColorByName("equipment_highlights", 0, i);
  2131. continue;
  2132. }
  2133. }
  2134. }
  2135. else if (i == 19) { //don't send cloak if hidden
  2136. if (IsPlayer()) {
  2137. if (!((Player*)this)->get_character_flag(CF_SHOW_CLOAK)) {
  2138. packet->setDataByName("equipment_types", 0, i);
  2139. packet->setColorByName("equipment_colors", 0, i);
  2140. packet->setColorByName("equipment_highlights", 0, i);
  2141. continue;
  2142. }
  2143. }
  2144. if (IsBot()) {
  2145. if (!((Bot*)this)->ShowCloak) {
  2146. packet->setDataByName("equipment_types", 0, i);
  2147. packet->setColorByName("equipment_colors", 0, i);
  2148. packet->setColorByName("equipment_highlights", 0, i);
  2149. continue;
  2150. }
  2151. }
  2152. }
  2153. entity->MEquipment.lock();
  2154. packet->setDataByName("equipment_types", entity->equipment.equip_id[i], i);
  2155. packet->setColorByName("equipment_colors", entity->equipment.color[i], i);
  2156. packet->setColorByName("equipment_highlights", entity->equipment.highlight[i], i);
  2157. entity->MEquipment.unlock();
  2158. }
  2159. packet->setDataByName("mount_type", entity->GetMount());
  2160. // find the visual flags
  2161. int8 vis_flag = 0;
  2162. //Invis + crouch flag check
  2163. if (entity->IsStealthed()) {
  2164. vis_flag += (INFO_VIS_FLAG_INVIS + INFO_VIS_FLAG_CROUCH);
  2165. classicFlags += INFO_VIS_FLAG_INVIS + INFO_VIS_FLAG_CROUCH;
  2166. }
  2167. //Invis flag check
  2168. else if (entity->IsInvis()) {
  2169. vis_flag += INFO_VIS_FLAG_INVIS;
  2170. classicFlags += INFO_VIS_FLAG_INVIS;
  2171. }
  2172. //Mount flag check
  2173. if (entity->GetMount() > 0) {
  2174. vis_flag += INFO_VIS_FLAG_MOUNTED;
  2175. }
  2176. //Hide hood check
  2177. bool vis_hide_hood = false;
  2178. if (IsPlayer() && ((Player*)this)->get_character_flag(CF_HIDE_HOOD)) {
  2179. if(version > 546) {
  2180. vis_flag += INFO_VIS_FLAG_HIDE_HOOD;
  2181. }
  2182. vis_hide_hood = true;
  2183. }
  2184. else if(IsPlayer()) {
  2185. classicFlags += INFO_CLASSIC_FLAG_SHOW_HOOD;
  2186. }
  2187. if(!vis_hide_hood && appearance.hide_hood && version > 546) {
  2188. vis_flag += INFO_VIS_FLAG_HIDE_HOOD;
  2189. }
  2190. if(version <= 546) {
  2191. packet->setDataByName("flags", classicFlags);
  2192. }
  2193. packet->setDataByName("visual_flag", vis_flag);
  2194. packet->setColorByName("mount_saddle_color", entity->GetMountSaddleColor());
  2195. packet->setColorByName("mount_color", entity->GetMountColor());
  2196. packet->setDataByName("hair_type_id", entity->features.hair_type);
  2197. packet->setDataByName("chest_type_id", entity->features.chest_type);
  2198. packet->setDataByName("wing_type_id", entity->features.wing_type);
  2199. packet->setDataByName("legs_type_id", entity->features.legs_type);
  2200. packet->setDataByName("soga_hair_type_id", entity->features.soga_hair_type);
  2201. packet->setDataByName("facial_hair_type_id", entity->features.hair_face_type);
  2202. packet->setDataByName("soga_facial_hair_type_id", entity->features.soga_hair_face_type);
  2203. for (int i = 0; i < 3; i++) {
  2204. packet->setDataByName("eye_type", entity->features.eye_type[i], i);
  2205. packet->setDataByName("ear_type", entity->features.ear_type[i], i);
  2206. packet->setDataByName("eye_brow_type", entity->features.eye_brow_type[i], i);
  2207. packet->setDataByName("cheek_type", entity->features.cheek_type[i], i);
  2208. packet->setDataByName("lip_type", entity->features.lip_type[i], i);
  2209. packet->setDataByName("chin_type", entity->features.chin_type[i], i);
  2210. packet->setDataByName("nose_type", entity->features.nose_type[i], i);
  2211. packet->setDataByName("soga_eye_type", entity->features.soga_eye_type[i], i);
  2212. packet->setDataByName("soga_ear_type", entity->features.soga_ear_type[i], i);
  2213. packet->setDataByName("soga_eye_brow_type", entity->features.soga_eye_brow_type[i], i);
  2214. packet->setDataByName("soga_cheek_type", entity->features.soga_cheek_type[i], i);
  2215. packet->setDataByName("soga_lip_type", entity->features.soga_lip_type[i], i);
  2216. packet->setDataByName("soga_chin_type", entity->features.soga_chin_type[i], i);
  2217. packet->setDataByName("soga_nose_type", entity->features.soga_nose_type[i], i);
  2218. }
  2219. packet->setColorByName("skin_color", entity->features.skin_color);
  2220. packet->setColorByName("model_color", entity->features.model_color);
  2221. packet->setColorByName("eye_color", entity->features.eye_color);
  2222. packet->setColorByName("hair_type_color", entity->features.hair_type_color);
  2223. packet->setColorByName("hair_type_highlight_color", entity->features.hair_type_highlight_color);
  2224. packet->setColorByName("hair_face_color", entity->features.hair_face_color);
  2225. packet->setColorByName("hair_face_highlight_color", entity->features.hair_face_highlight_color);
  2226. packet->setColorByName("hair_highlight", entity->features.hair_highlight_color);
  2227. packet->setColorByName("wing_color1", entity->features.wing_color1);
  2228. packet->setColorByName("wing_color2", entity->features.wing_color2);
  2229. packet->setColorByName("hair_color1", entity->features.hair_color1);
  2230. packet->setColorByName("hair_color2", entity->features.hair_color2);
  2231. packet->setColorByName("soga_skin_color", entity->features.soga_skin_color);
  2232. packet->setColorByName("soga_model_color", entity->features.soga_model_color);
  2233. packet->setColorByName("soga_eye_color", entity->features.soga_eye_color);
  2234. packet->setColorByName("soga_hair_color1", entity->features.soga_hair_color1);
  2235. packet->setColorByName("soga_hair_color2", entity->features.soga_hair_color2);
  2236. packet->setColorByName("soga_hair_type_color", entity->features.soga_hair_type_color);
  2237. packet->setColorByName("soga_hair_type_highlight_color", entity->features.soga_hair_type_highlight_color);
  2238. packet->setColorByName("soga_hair_face_color", entity->features.soga_hair_face_color);
  2239. packet->setColorByName("soga_hair_face_highlight_color", entity->features.soga_hair_face_highlight_color);
  2240. packet->setColorByName("soga_hair_highlight", entity->features.soga_hair_highlight_color);
  2241. packet->setDataByName("body_size", entity->features.body_size);
  2242. packet->setDataByName("body_age", entity->features.body_age);
  2243. packet->setDataByName("soga_body_size", entity->features.soga_body_size);
  2244. packet->setDataByName("soga_body_age", entity->features.soga_body_age);
  2245. }
  2246. else {
  2247. EQ2_Color empty;
  2248. empty.red = 255;
  2249. empty.blue = 255;
  2250. empty.green = 255;
  2251. packet->setColorByName("skin_color", empty);
  2252. packet->setColorByName("model_color", empty);
  2253. packet->setColorByName("eye_color", empty);
  2254. packet->setColorByName("soga_skin_color", empty);
  2255. packet->setColorByName("soga_model_color", empty);
  2256. packet->setColorByName("soga_eye_color", empty);
  2257. }
  2258. if (appearance.icon == 0) {
  2259. if (appearance.attackable == 1)
  2260. appearance.icon = 0;
  2261. else if (GetDifficulty() > 0)
  2262. appearance.icon = 4;
  2263. else
  2264. appearance.icon = 6;
  2265. }
  2266. // If Coe+ clients modify the values before we send
  2267. // if not then just send the value we have.
  2268. int8 temp_icon = appearance.icon;
  2269. //Check if we need to add the hand icon..
  2270. if ((temp_icon & 6) != 6 && appearance.display_hand_icon) {
  2271. temp_icon |= 6;
  2272. }
  2273. //Icon value 28 for boats, set this without modifying the value
  2274. if (version >= 1188 && temp_icon != 28) {
  2275. if ((temp_icon & 64) > 0) {
  2276. temp_icon -= 64; // remove the DoV value;
  2277. temp_icon += 128; // add the CoE value
  2278. }
  2279. if ((temp_icon & 32) > 0) {
  2280. temp_icon -= 32; // remove the DoV value;
  2281. temp_icon += 64; // add the CoE value
  2282. }
  2283. if ((temp_icon & 4) > 0) {
  2284. temp_icon -= 4; // remove DoV value
  2285. temp_icon += 8; // add the CoE icon
  2286. }
  2287. if ((temp_icon & 6) > 0) {
  2288. temp_icon -= 10; // remove DoV value
  2289. temp_icon += 12; // add the CoE icon
  2290. }
  2291. }
  2292. packet->setDataByName("icon", temp_icon);//appearance.icon);
  2293. int32 temp_activity_status = 0;
  2294. if (!Alive() && GetTotalHP() > 0 && !IsObject() && !IsGroundSpawn())
  2295. temp_activity_status = 1;
  2296. if(version >= 1188 && GetChestDropTime()) {
  2297. temp_activity_status = 0;
  2298. }
  2299. temp_activity_status += (IsNPC() || IsObject() || IsGroundSpawn()) ? 1 << 1 : 0;
  2300. if (version >= 1188) {
  2301. // Fix widget or sign having 'Play Legends of Norrath' or 'Tell' options in right click (client hard-coded entity commands)
  2302. if(IsWidget() || IsSign())
  2303. temp_activity_status = 2;
  2304. if (IsGroundSpawn() || GetShowHandIcon())
  2305. temp_activity_status += ACTIVITY_STATUS_INTERACTABLE_1188;
  2306. if ((appearance.activity_status & ACTIVITY_STATUS_ROLEPLAYING) > 0)
  2307. temp_activity_status += ACTIVITY_STATUS_ROLEPLAYING_1188;
  2308. if ((appearance.activity_status & ACTIVITY_STATUS_ANONYMOUS) > 0)
  2309. temp_activity_status += ACTIVITY_STATUS_ANONYMOUS_1188;
  2310. if ((appearance.activity_status & ACTIVITY_STATUS_LINKDEAD) > 0)
  2311. temp_activity_status += ACTIVITY_STATUS_LINKDEAD_1188;
  2312. if ((appearance.activity_status & ACTIVITY_STATUS_CAMPING) > 0)
  2313. temp_activity_status += ACTIVITY_STATUS_CAMPING_1188;
  2314. if ((appearance.activity_status & ACTIVITY_STATUS_LFG) > 0)
  2315. temp_activity_status += ACTIVITY_STATUS_LFG_1188;
  2316. if ((appearance.activity_status & ACTIVITY_STATUS_LFW) > 0)
  2317. temp_activity_status += ACTIVITY_STATUS_LFW_1188;
  2318. if ((appearance.activity_status & ACTIVITY_STATUS_SOLID) > 0)
  2319. temp_activity_status += ACTIVITY_STATUS_SOLID_1188;
  2320. if ((appearance.activity_status & ACTIVITY_STATUS_IMMUNITY_GAINED) > 0)
  2321. temp_activity_status += ACTIVITY_STATUS_IMMUNITY_GAINED_1188;
  2322. if ((appearance.activity_status & ACTIVITY_STATUS_IMMUNITY_REMAINING) > 0)
  2323. temp_activity_status += ACTIVITY_STATUS_IMMUNITY_REMAINING_1188;
  2324. if ((appearance.activity_status & ACTIVITY_STATUS_AFK) > 0)
  2325. temp_activity_status += ACTIVITY_STATUS_AFK_1188;
  2326. if (EngagedInCombat())
  2327. temp_activity_status += ACTIVITY_STATUS_INCOMBAT_1188;
  2328. // if this is either a boat or lift let the client be manipulated by the object
  2329. // doesn't work for DoF client version 546
  2330. if (appearance.icon == 28 || appearance.icon == 12 || IsTransportSpawn())
  2331. {
  2332. // there is some other flags that setting with a transport breaks their solidity/ability to properly transport
  2333. // thus we just consider the following flags for now as all necessary
  2334. temp_activity_status = ACTIVITY_STATUS_SOLID_1188;
  2335. temp_activity_status += ACTIVITY_STATUS_ISTRANSPORT_1188;
  2336. }
  2337. }
  2338. else
  2339. {
  2340. temp_activity_status = appearance.activity_status;
  2341. if(IsNPC())
  2342. temp_activity_status = 0xFF;
  2343. // this only partially fixes lifts in classic 283 client if you move just as the lift starts to move
  2344. if (appearance.icon == 28 || appearance.icon == 12)
  2345. packet->setDataByName("is_transport", 1);
  2346. if (MeetsSpawnAccessRequirements(spawn))
  2347. packet->setDataByName("hand_icon", appearance.display_hand_icon);
  2348. else {
  2349. if ((req_quests_override & 256) > 0)
  2350. packet->setDataByName("hand_icon", 1);
  2351. }
  2352. if (IsPlayer()) {
  2353. if (((Player*)this)->get_character_flag(CF_AFK))
  2354. packet->setDataByName("afk", 1);
  2355. if ((appearance.activity_status & ACTIVITY_STATUS_ROLEPLAYING) > 0)
  2356. packet->setDataByName("roleplaying", 1);
  2357. if ((appearance.activity_status & ACTIVITY_STATUS_ANONYMOUS) > 0)
  2358. packet->setDataByName("anonymous", 1);
  2359. if ((appearance.activity_status & ACTIVITY_STATUS_LINKDEAD) > 0)
  2360. packet->setDataByName("linkdead", 1);
  2361. if ((appearance.activity_status & ACTIVITY_STATUS_CAMPING) > 0)
  2362. packet->setDataByName("camping", 1);
  2363. if ((appearance.activity_status & ACTIVITY_STATUS_LFG) > 0)
  2364. packet->setDataByName("lfg", 1);
  2365. if (EngagedInCombat()) {
  2366. packet->setDataByName("auto_attack", 1);
  2367. }
  2368. }
  2369. if ((appearance.activity_status & ACTIVITY_STATUS_SOLID) > 0)
  2370. packet->setDataByName("solid_object", 1);
  2371. }
  2372. packet->setDataByName("activity_status", temp_activity_status); //appearance.activity_status);
  2373. // If player and player has a follow target
  2374. /* Jan 2021 Note!! Setting follow_target 0xFFFFFFFF has the result in causing strange behavior in swimming. Targetting a mob makes you focus down to its swim level, unable to swim above it.
  2375. ** in the same respect the player will drop like a rock to the bottom of the ocean (seems to be when self set to that flag?)
  2376. ** for now disabling this, if DoF needs it enabled for whatever reason then we need a version check added.
  2377. */
  2378. if (IsPlayer()) {
  2379. if (((Player*)this)->GetFollowTarget())
  2380. packet->setDataByName("follow_target", ((((Player*)this)->GetIDWithPlayerSpawn(((Player*)this)->GetFollowTarget()) * -1) - 1));
  2381. //else
  2382. // packet->setDataByName("follow_target", 0xFFFFFFFF);
  2383. }
  2384. //else if (!IsPet()) {
  2385. // packet->setDataByName("follow_target", 0xFFFFFFFF);
  2386. //}
  2387. // i think this is used in DoF as a way to make a client say they are in combat with this target and cannot camp, it forces you to stand up if self spawn sends this data
  2388. if ((version > 546 || spawn != this) && GetTarget() && GetTarget()->GetTargetable())
  2389. packet->setDataByName("target_id", ((spawn->GetIDWithPlayerSpawn(GetTarget()) * -1) - 1));
  2390. else
  2391. packet->setDataByName("target_id", 0xFFFFFFFF);
  2392. //Send spell effects for target window
  2393. if(IsEntity()){
  2394. InfoStruct* info = ((Entity*)this)->GetInfoStruct();
  2395. int8 i = 0;
  2396. int16 backdrop = 0;
  2397. int16 spell_icon = 0;
  2398. int32 spell_id = 0;
  2399. LuaSpell* spell = 0;
  2400. ((Entity*)this)->GetSpellEffectMutex()->readlock(__FUNCTION__, __LINE__);
  2401. while(i < 30){
  2402. //Change value of spell id for this packet if spell exists
  2403. spell_id = info->spell_effects[i].spell_id;
  2404. if(spell_id > 0)
  2405. spell_id = 0xFFFFFFFF - spell_id;
  2406. else
  2407. spell_id = 0;
  2408. packet->setSubstructDataByName("spell_effects", "spell_id", spell_id, i);
  2409. //Change value of spell icon for this packet if spell exists
  2410. spell_icon = info->spell_effects[i].icon;
  2411. if(spell_icon > 0){
  2412. if(!(spell_icon == 0xFFFF))
  2413. spell_icon = 0xFFFF - spell_icon;
  2414. }
  2415. else
  2416. spell_icon = 0;
  2417. packet->setSubstructDataByName("spell_effects", "spell_icon", spell_icon, i);
  2418. //Change backdrop values to match values in this packet
  2419. backdrop = info->spell_effects[i].icon_backdrop;
  2420. switch(backdrop){
  2421. case 312:
  2422. backdrop = 33080;
  2423. break;
  2424. case 313:
  2425. backdrop = 33081;
  2426. break;
  2427. case 314:
  2428. backdrop = 33082;
  2429. break;
  2430. case 315:
  2431. backdrop = 33083;
  2432. break;
  2433. case 316:
  2434. backdrop = 33084;
  2435. break;
  2436. case 317:
  2437. backdrop = 33085;
  2438. break;
  2439. case (318 || 319):
  2440. backdrop = 33086;
  2441. break;
  2442. default:
  2443. break;
  2444. }
  2445. packet->setSubstructDataByName("spell_effects", "spell_icon_backdrop", backdrop, i);
  2446. spell = info->spell_effects[i].spell;
  2447. if (spell)
  2448. packet->setSubstructDataByName("spell_effects", "spell_triggercount", spell->num_triggers, i);
  2449. i++;
  2450. }
  2451. ((Entity*)this)->GetSpellEffectMutex()->releasereadlock(__FUNCTION__, __LINE__);
  2452. }
  2453. }
  2454. void Spawn::MoveToLocation(Spawn* spawn, float distance, bool immediate, bool mapped){
  2455. if(!spawn)
  2456. return;
  2457. SetRunningTo(spawn);
  2458. FaceTarget(spawn, false);
  2459. if (!IsPlayer() && distance > 0.0f)
  2460. {
  2461. if ((IsFlyingCreature() || IsWaterCreature() || InWater()) && CheckLoS(spawn))
  2462. {
  2463. if (immediate)
  2464. ClearRunningLocations();
  2465. AddRunningLocation(spawn->GetX(), spawn->GetY(), spawn->GetZ(), GetSpeed(), distance, true, true, "", true);
  2466. }
  2467. else if (/*!mapped && */GetZone())
  2468. {
  2469. GetZone()->movementMgr->NavigateTo((Entity*)this, spawn->GetX(), spawn->GetY(), spawn->GetZ());
  2470. last_grid_update = Timer::GetCurrentTime2();
  2471. }
  2472. else
  2473. {
  2474. if (immediate)
  2475. ClearRunningLocations();
  2476. AddRunningLocation(spawn->GetX(), spawn->GetY(), spawn->GetZ(), GetSpeed(), distance, true, true, "", mapped);
  2477. }
  2478. }
  2479. }
  2480. void Spawn::ProcessMovement(bool isSpawnListLocked){
  2481. CheckProximities();
  2482. if(IsBot() && ((Bot*)this)->IsCamping()) {
  2483. ((Bot*)this)->Begin_Camp();
  2484. }
  2485. if(IsPlayer()){
  2486. //Check if player is riding a boat, if so update pos (boat's current location + XYZ offsets)
  2487. Player* player = ((Player*)this);
  2488. int32 boat_id = player->GetBoatSpawn();
  2489. Spawn* boat = 0;
  2490. if(boat_id > 0)
  2491. boat = GetZone()->GetSpawnByID(boat_id, isSpawnListLocked);
  2492. //TODO: MAYBE do this for real boats, not lifts... GetWidgetTypeNameByTypeID
  2493. /*if(boat){
  2494. SetX(boat->GetX() + player->GetBoatX());
  2495. SetY(boat->GetY() + player->GetBoatY());
  2496. SetZ(boat->GetZ() + player->GetBoatZ());
  2497. }*/
  2498. return;
  2499. }
  2500. if (forceMapCheck && GetZone() != nullptr && GetMap() != nullptr && GetMap()->IsMapLoaded())
  2501. {
  2502. FixZ(true);
  2503. forceMapCheck = false;
  2504. }
  2505. if (GetHP() <= 0 && !IsWidget())
  2506. return;
  2507. if (EngagedInCombat())
  2508. {
  2509. if(IsEntity() && (((Entity*)this)->IsMezzedOrStunned() || ((Entity*)this)->IsRooted())) {
  2510. SetAppearancePosition(GetX(),GetY(),GetZ());
  2511. if ( IsEntity() )
  2512. ((Entity*)this)->SetSpeed(0.0f);
  2513. SetSpeed(0.0f);
  2514. position_changed = true;
  2515. changed = true;
  2516. GetZone()->AddChangedSpawn(this);
  2517. StopMovement();
  2518. return;
  2519. }
  2520. int locations = 0;
  2521. if (movement_locations && MMovementLocations)
  2522. {
  2523. MMovementLocations->readlock(__FUNCTION__, __LINE__);
  2524. locations = movement_locations->size();
  2525. MMovementLocations->releasereadlock(__FUNCTION__, __LINE__);
  2526. }
  2527. if (locations < 1 && GetZone() && ((Entity*)this)->IsFeared())
  2528. {
  2529. CalculateNewFearpoint();
  2530. }
  2531. }
  2532. Spawn* followTarget = GetZone()->GetSpawnByID(m_followTarget, isSpawnListLocked);
  2533. if (!followTarget && m_followTarget > 0)
  2534. m_followTarget = 0;
  2535. if (following && !IsPauseMovementTimerActive() && followTarget && !((Entity*)this)->IsFeared()) {
  2536. // Need to clear m_followTarget before the zoneserver deletes it
  2537. if (followTarget->GetHP() <= 0) {
  2538. followTarget = 0;
  2539. return;
  2540. }
  2541. if (!IsEntity() || (!((Entity*)this)->IsCasting() && !((Entity*)this)->IsMezzedOrStunned() && !((Entity*)this)->IsRooted())) {
  2542. if (GetBaseSpeed() > 0) {
  2543. CalculateRunningLocation();
  2544. }
  2545. else {
  2546. float speed = 4.0f;
  2547. if (IsEntity())
  2548. speed = ((Entity*)this)->GetMaxSpeed();
  2549. if (IsEntity())
  2550. ((Entity*)this)->SetSpeed(speed);
  2551. SetSpeed(speed);
  2552. }
  2553. MovementLocation tmpLoc;
  2554. MovementLocation* loc = 0;
  2555. if(MMovementLocations) {
  2556. MMovementLocations->readlock(__FUNCTION__, __LINE__);
  2557. if(movement_locations && movement_locations->size() > 0){
  2558. loc = movement_locations->front();
  2559. if(loc) {
  2560. tmpLoc.attackable = loc->attackable;
  2561. tmpLoc.gridid = loc->gridid;
  2562. tmpLoc.lua_function = string(loc->lua_function);
  2563. tmpLoc.mapped = loc->mapped;
  2564. tmpLoc.reset_hp_on_runback = loc->reset_hp_on_runback;
  2565. tmpLoc.speed = loc->speed;
  2566. tmpLoc.stage = loc->stage;
  2567. tmpLoc.x = loc->x;
  2568. tmpLoc.y = loc->y;
  2569. tmpLoc.z = loc->z;
  2570. loc = &tmpLoc;
  2571. }
  2572. }
  2573. MMovementLocations->releasereadlock(__FUNCTION__, __LINE__);
  2574. }
  2575. float dist = GetDistance(followTarget, true);
  2576. if ((!EngagedInCombat() && m_followDistance > 0 && dist <= m_followDistance) ||
  2577. (dist <= rule_manager.GetGlobalRule(R_Combat, MaxCombatRange)->GetFloat())) {
  2578. ClearRunningLocations();
  2579. CalculateRunningLocation(true);
  2580. }
  2581. else if (loc) {
  2582. float distance = GetDistance(followTarget, loc->x, loc->y, loc->z);
  2583. if ( (!EngagedInCombat() && m_followDistance > 0 && distance > m_followDistance) ||
  2584. ( EngagedInCombat() && distance > rule_manager.GetGlobalRule(R_Combat, MaxCombatRange)->GetFloat())) {
  2585. MoveToLocation(followTarget, rule_manager.GetGlobalRule(R_Combat, MaxCombatRange)->GetFloat(), true, loc->mapped);
  2586. CalculateRunningLocation();
  2587. }
  2588. }
  2589. else {
  2590. MoveToLocation(followTarget, rule_manager.GetGlobalRule(R_Combat, MaxCombatRange)->GetFloat(), false);
  2591. CalculateRunningLocation();
  2592. }
  2593. }
  2594. }
  2595. bool movementCase = false;
  2596. // Movement loop is only for scripted paths
  2597. if(!EngagedInCombat() && !IsPauseMovementTimerActive() && !NeedsToResumeMovement() && (!IsNPC() || !((NPC*)this)->m_runningBack)){
  2598. MMovementLoop.writelock();
  2599. if(movement_loop.size() > 0 && movement_index < movement_loop.size())
  2600. {
  2601. movementCase = true;
  2602. // Get the target location
  2603. MovementData* data = movement_loop[movement_index];
  2604. // need to resume our movement
  2605. if(resume_movement){
  2606. if (movement_locations && MMovementLocations){
  2607. MMovementLocations->writelock(__FUNCTION__, __LINE__);
  2608. while (movement_locations->size()){
  2609. safe_delete(movement_locations->front());
  2610. movement_locations->pop_front();
  2611. }
  2612. movement_locations->clear();
  2613. MMovementLocations->releasewritelock(__FUNCTION__, __LINE__);
  2614. }
  2615. data = movement_loop[movement_index];
  2616. if(data)
  2617. {
  2618. ((Entity*)this)->SetSpeed(data->speed);
  2619. SetSpeed(data->speed);
  2620. if(data->use_movement_location_heading)
  2621. SetHeading(data->heading);
  2622. else if(!IsWidget())
  2623. FaceTarget(data->x, data->z);
  2624. // 0 delay at target location, need to set multiple locations
  2625. if(data->delay == 0 && movement_loop.size() > 0) {
  2626. int16 tmp_index = movement_index+1;
  2627. MovementData* data2 = 0;
  2628. if(tmp_index < movement_loop.size())
  2629. data2 = movement_loop[tmp_index];
  2630. else
  2631. data2 = movement_loop[0];
  2632. AddRunningLocation(data->x, data->y, data->z, data->speed, 0, true, false, "", true);
  2633. AddRunningLocation(data2->x, data2->y, data2->z, data2->speed, 0, true, true, "", true);
  2634. }
  2635. // delay at target location, only need to set 1 location
  2636. else
  2637. AddRunningLocation(data->x, data->y, data->z, data->speed);
  2638. }
  2639. movement_start_time = 0;
  2640. resume_movement = false;
  2641. }
  2642. // If we are not moving or we have arrived at our destination
  2643. else if(!IsRunning() || (data && data->x == GetX() && data->y == GetY() && data->z == GetZ())){
  2644. // If we were moving remove the last running location (the point we just arrived at)
  2645. if(IsRunning())
  2646. RemoveRunningLocation();
  2647. // If this waypoint has a delay and we just arrived here (movement_start_time == 0)
  2648. if(data && data->delay > 0 && movement_start_time == 0){
  2649. // Set the current time
  2650. movement_start_time = Timer::GetCurrentTime2();
  2651. // If this waypoint had a lua function then call it
  2652. if(data->lua_function.length() > 0)
  2653. GetZone()->CallSpawnScript(this, SPAWN_SCRIPT_CUSTOM, 0, data->lua_function.c_str());
  2654. int16 nextMove;
  2655. if ((int16)(movement_index + 1) < movement_loop.size())
  2656. nextMove = movement_index + 1;
  2657. else
  2658. nextMove = 0;
  2659. // Get the next target location
  2660. data = movement_loop[nextMove];
  2661. //Go ahead and face the next location
  2662. if(data)
  2663. FaceTarget(data->x, data->z);
  2664. }
  2665. // If this waypoint has no delay or we have waited the required time (current time >= delay + movement_start_time)
  2666. else if(data && data->delay == 0 || (data && data->delay > 0 && Timer::GetCurrentTime2() >= (data->delay+movement_start_time))) {
  2667. // if no delay at this waypoint but a lua function for it then call the function
  2668. if(data->delay == 0 && data->lua_function.length() > 0)
  2669. GetZone()->CallSpawnScript(this, SPAWN_SCRIPT_CUSTOM, 0, data->lua_function.c_str());
  2670. // since we ran a lua function make sure the movement loop is still alive and accurate
  2671. if(movement_loop.size() > 0)
  2672. {
  2673. // Advance the current movement loop index
  2674. if((int16)(movement_index+1) < movement_loop.size())
  2675. movement_index++;
  2676. else
  2677. movement_index = 0;
  2678. // Get the next target location
  2679. data = movement_loop[movement_index];
  2680. // set the speed for that location
  2681. SetSpeed(data->speed);
  2682. if(!IsWidget())
  2683. // turn towards the location
  2684. FaceTarget(data->x, data->z);
  2685. // If 0 delay at location get and set data for the point after it
  2686. if(data->delay == 0 && movement_loop.size() > 0){
  2687. if(movement_locations && MMovementLocations)
  2688. {
  2689. MMovementLocations->writelock(__FUNCTION__, __LINE__);
  2690. while (movement_locations->size()){
  2691. safe_delete(movement_locations->front());
  2692. movement_locations->pop_front();
  2693. }
  2694. // clear current target locations
  2695. movement_locations->clear();
  2696. MMovementLocations->releasewritelock(__FUNCTION__, __LINE__);
  2697. }
  2698. // get the data for the location after out new location
  2699. int16 tmp_index = movement_index+1;
  2700. MovementData* data2 = 0;
  2701. if(tmp_index < movement_loop.size())
  2702. data2 = movement_loop[tmp_index];
  2703. else
  2704. data2 = movement_loop[0];
  2705. // set the first location (adds it to movement_locations that we just cleared)
  2706. AddRunningLocation(data->x, data->y, data->z, data->speed, 0, true, false, "", true);
  2707. // set the location after that
  2708. AddRunningLocation(data2->x, data2->y, data2->z, data2->speed, 0, true, true, "", true);
  2709. }
  2710. // there is a delay at the next location so we only need to set it
  2711. else
  2712. AddRunningLocation(data->x, data->y, data->z, data->speed, 0, true, true, "", true);
  2713. // reset this timer to 0 now that we are moving again
  2714. movement_start_time = 0;
  2715. }
  2716. }
  2717. }
  2718. // moving and not at target location yet
  2719. else if(GetBaseSpeed() > 0)
  2720. CalculateRunningLocation();
  2721. // not moving, have a target location but not at it yet
  2722. else if (data) {
  2723. SetSpeed(data->speed);
  2724. AddRunningLocation(data->x, data->y, data->z, data->speed);
  2725. }
  2726. }
  2727. MMovementLoop.releasewritelock();
  2728. }
  2729. if (!movementCase && IsRunning() && !IsPauseMovementTimerActive()) {
  2730. CalculateRunningLocation();
  2731. //last_movement_update = Timer::GetCurrentTime2();
  2732. }
  2733. else if(movementCase)
  2734. {
  2735. //last_movement_update = Timer::GetCurrentTime2();
  2736. }
  2737. /*else if (IsNPC() && !IsRunning() && !EngagedInCombat() && ((NPC*)this)->GetRunbackLocation()) {
  2738. // Is an npc that is not moving and not engaged in combat but has a run back location set then clear the runback location
  2739. LogWrite(NPC_AI__DEBUG, 7, "NPC_AI", "Clear runback location for %s", GetName());
  2740. ((NPC*)this)->ClearRunback();
  2741. resume_movement = true;
  2742. NeedsToResumeMovement(false);
  2743. }*/
  2744. }
  2745. void Spawn::ResetMovement(bool inFlight){
  2746. if(!inFlight)
  2747. MMovementLoop.writelock();
  2748. vector<MovementData*>::iterator itr;
  2749. for(itr = movement_loop.begin(); itr != movement_loop.end(); itr++){
  2750. safe_delete(*itr);
  2751. }
  2752. movement_loop.clear();
  2753. movement_index = 0;
  2754. resume_movement = true;
  2755. ClearRunningLocations();
  2756. if(!inFlight)
  2757. MMovementLoop.releasewritelock();
  2758. }
  2759. void Spawn::AddMovementLocation(float x, float y, float z, float speed, int16 delay, const char* lua_function, float heading, bool include_heading){
  2760. LogWrite(LUA__DEBUG, 5, "LUA", "AddMovementLocation: x: %.2f, y: %.2f, z: %.2f, speed: %.2f, delay: %i, lua: %s",
  2761. x, y, z, speed, delay, string(lua_function).c_str());
  2762. MovementData* data = new MovementData;
  2763. data->x = x;
  2764. data->y = y;
  2765. data->z = z;
  2766. data->speed = speed;
  2767. data->delay = delay*1000;
  2768. if(lua_function)
  2769. data->lua_function = string(lua_function);
  2770. data->heading = heading;
  2771. data->use_movement_location_heading = include_heading;
  2772. MMovementLoop.lock();
  2773. movement_loop.push_back(data);
  2774. MMovementLoop.unlock();
  2775. }
  2776. bool Spawn::IsRunning(){
  2777. bool movement = false;
  2778. if(movement_locations && MMovementLocations)
  2779. {
  2780. MMovementLocations->readlock(__FUNCTION__, __LINE__);
  2781. movement = movement_locations->size() > 0;
  2782. MMovementLocations->releasereadlock(__FUNCTION__, __LINE__);
  2783. if(movement)
  2784. return true;
  2785. }
  2786. MMovementLoop.lock();
  2787. movement = movement_loop.size() > 0;
  2788. MMovementLoop.unlock();
  2789. return movement;
  2790. }
  2791. void Spawn::RunToLocation(float x, float y, float z, float following_x, float following_y, float following_z){
  2792. if(IsPauseMovementTimerActive() || (IsEntity() && (((Entity*)this)->IsMezzedOrStunned() || ((Entity*)this)->IsRooted())))
  2793. return;
  2794. if(!IsWidget())
  2795. FaceTarget(x, z);
  2796. SetPos(&appearance.pos.X2, x, false);
  2797. SetPos(&appearance.pos.Z2, z, false);
  2798. SetPos(&appearance.pos.Y2, y, false);
  2799. if(following_x == 0 && following_y == 0 && following_z == 0){
  2800. SetPos(&appearance.pos.X3, x, false);
  2801. SetPos(&appearance.pos.Z3, z, false);
  2802. SetPos(&appearance.pos.Y3, y, false);
  2803. }
  2804. else{
  2805. SetPos(&appearance.pos.X3, following_x, false);
  2806. SetPos(&appearance.pos.Y3, following_y, false);
  2807. SetPos(&appearance.pos.Z3, following_z, false);
  2808. }
  2809. position_changed = true;
  2810. changed = true;
  2811. GetZone()->AddChangedSpawn(this);
  2812. }
  2813. MovementLocation* Spawn::GetCurrentRunningLocation(){
  2814. MovementLocation* ret = 0;
  2815. if(MMovementLocations)
  2816. MMovementLocations->readlock(__FUNCTION__, __LINE__);
  2817. if(movement_locations && movement_locations->size() > 0){
  2818. ret = movement_locations->front();
  2819. }
  2820. if(MMovementLocations)
  2821. MMovementLocations->releasereadlock(__FUNCTION__, __LINE__);
  2822. return ret;
  2823. }
  2824. MovementLocation* Spawn::GetLastRunningLocation(){
  2825. MovementLocation* ret = 0;
  2826. if(MMovementLocations)
  2827. MMovementLocations->readlock(__FUNCTION__, __LINE__);
  2828. if(movement_locations && movement_locations->size() > 0){
  2829. ret = movement_locations->back();
  2830. }
  2831. if(MMovementLocations)
  2832. MMovementLocations->releasereadlock(__FUNCTION__, __LINE__);
  2833. return ret;
  2834. }
  2835. void Spawn::AddRunningLocation(float x, float y, float z, float speed, float distance_away, bool attackable, bool finished_adding_locations, string lua_function, bool isMapped){
  2836. if(speed == 0)
  2837. return;
  2838. if ( IsEntity() )
  2839. ((Entity*)this)->SetSpeed(speed);
  2840. else
  2841. this->SetSpeed(speed);
  2842. MovementLocation* current_location = 0;
  2843. float distance = GetDistance(x, y, z, distance_away != 0);
  2844. if(distance_away != 0){
  2845. distance -= distance_away;
  2846. x = x - (GetX() - x)*distance_away/distance;
  2847. z = z - (GetZ() - z)*distance_away/distance;
  2848. }
  2849. if(!movement_locations){
  2850. movement_locations = new deque<MovementLocation*>();
  2851. safe_delete(MMovementLocations);
  2852. MMovementLocations = new Mutex();
  2853. }
  2854. MovementLocation* data = new MovementLocation;
  2855. data->mapped = isMapped;
  2856. data->x = x;
  2857. data->y = y;
  2858. data->z = z;
  2859. data->speed = speed;
  2860. data->attackable = attackable;
  2861. data->lua_function = lua_function;
  2862. data->gridid = 0; // used for runback defaults
  2863. data->reset_hp_on_runback = false;
  2864. MMovementLocations->writelock(__FUNCTION__, __LINE__);
  2865. if(movement_locations->size() > 0)
  2866. current_location = movement_locations->back();
  2867. if(!current_location){
  2868. SetSpawnOrigX(GetX());
  2869. SetSpawnOrigY(GetY());
  2870. SetSpawnOrigZ(GetZ());
  2871. SetSpawnOrigHeading(GetHeading());
  2872. }
  2873. movement_locations->push_back(data);
  2874. MMovementLocations->releasewritelock(__FUNCTION__, __LINE__);
  2875. if(!IsPauseMovementTimerActive() && finished_adding_locations){
  2876. MMovementLocations->writelock(__FUNCTION__, __LINE__);
  2877. current_location = movement_locations->front();
  2878. SetSpeed(current_location->speed);
  2879. if(movement_locations->size() > 1){
  2880. data = movement_locations->at(1);
  2881. RunToLocation(current_location->x, current_location->y, current_location->z, data->x, data->y, data->z);
  2882. }
  2883. else
  2884. RunToLocation(current_location->x, current_location->y, current_location->z, 0, 0, 0);
  2885. MMovementLocations->releasewritelock(__FUNCTION__, __LINE__);
  2886. }
  2887. }
  2888. bool Spawn::RemoveRunningLocation(){
  2889. bool ret = false;
  2890. if(movement_locations){
  2891. MMovementLocations->writelock(__FUNCTION__, __LINE__);
  2892. if(movement_locations->size() > 0){
  2893. delete movement_locations->front();
  2894. movement_locations->pop_front();
  2895. ret = true;
  2896. }
  2897. MMovementLocations->releasewritelock(__FUNCTION__, __LINE__);
  2898. }
  2899. return ret;
  2900. }
  2901. void Spawn::ClearRunningLocations(){
  2902. while(RemoveRunningLocation()){}
  2903. }
  2904. void Spawn::NewWaypointChange(MovementLocation* data){
  2905. if(data){
  2906. if(NeedsToResumeMovement()){
  2907. resume_movement = true;
  2908. NeedsToResumeMovement(false);
  2909. }
  2910. if(!data->attackable)
  2911. SetHeading(GetSpawnOrigHeading());
  2912. }
  2913. if (data && data->lua_function.length() > 0)
  2914. GetZone()->CallSpawnScript(this, SPAWN_SCRIPT_CUSTOM, 0, data->lua_function.c_str());
  2915. RemoveRunningLocation();
  2916. }
  2917. bool Spawn::CalculateChange(){
  2918. bool remove_needed = false;
  2919. MovementLocation* data = 0;
  2920. MovementLocation tmpLoc;
  2921. if(movement_locations && MMovementLocations){
  2922. MMovementLocations->readlock(__FUNCTION__, __LINE__);
  2923. if(movement_locations->size() > 0){
  2924. // Target location
  2925. data = movement_locations->front();
  2926. if(data) {
  2927. tmpLoc.attackable = data->attackable;
  2928. tmpLoc.gridid = data->gridid;
  2929. tmpLoc.lua_function = string(data->lua_function);
  2930. tmpLoc.mapped = data->mapped;
  2931. tmpLoc.reset_hp_on_runback = data->reset_hp_on_runback;
  2932. tmpLoc.speed = data->speed;
  2933. tmpLoc.stage = data->stage;
  2934. tmpLoc.x = data->x;
  2935. tmpLoc.y = data->y;
  2936. tmpLoc.z = data->z;
  2937. data = &tmpLoc;
  2938. }
  2939. // If no target or we are at the target location need to remove this point
  2940. if(!data || (data->x == GetX() && data->y == GetY() && data->z == GetZ()))
  2941. remove_needed = true;
  2942. }
  2943. MMovementLocations->releasereadlock(__FUNCTION__, __LINE__);
  2944. }
  2945. if(remove_needed){
  2946. NewWaypointChange(data);
  2947. }
  2948. else if(data){
  2949. // Speed is per second so we need a time_step (amount of time since the last update) to modify movement by
  2950. float time_step = (Timer::GetCurrentTime2() - last_movement_update) * 0.001; // * 0.001 is the same as / 1000, float muliplications is suppose to be faster though
  2951. // Get current location
  2952. float nx = GetX();
  2953. float ny = GetY();
  2954. float nz = GetZ();
  2955. // Get Forward vecotr
  2956. float tar_vx = data->x - nx;
  2957. float tar_vy = data->y - ny;
  2958. float tar_vz = data->z - nz;
  2959. // Multiply speed by the time_step to get how much should have changed over the last tick
  2960. float speed = GetSpeed() * time_step;
  2961. // Normalize the forward vector and multiply by speed, this gives us our change in coords, just need to add them to our current coords
  2962. float len = sqrtf(tar_vx * tar_vx + tar_vy * tar_vy + tar_vz * tar_vz);
  2963. tar_vx = (tar_vx / len) * speed;
  2964. tar_vy = (tar_vy / len) * speed;
  2965. tar_vz = (tar_vz / len) * speed;
  2966. // Distance less then 0.5 just set the npc to the target location
  2967. if (GetDistance(data->x, data->y, data->z, IsWidget() ? false : true) <= speed) {
  2968. SetX(data->x, false);
  2969. SetZ(data->z, false);
  2970. SetY(data->y, false, true);
  2971. remove_needed = true;
  2972. NewWaypointChange(data);
  2973. }
  2974. else {
  2975. SetX(nx + tar_vx, false);
  2976. SetZ(nz + tar_vz, false);
  2977. if ( IsWidget() )
  2978. SetY(ny + tar_vy, false, true);
  2979. else
  2980. SetY(ny + tar_vy, false);
  2981. }
  2982. int32 newGrid = GetLocation();
  2983. if (GetMap() != nullptr) {
  2984. m_GridMutex.writelock(__FUNCTION__, __LINE__);
  2985. std::map<int32,TimedGridData>::iterator itr = established_grid_id.begin();
  2986. if ( itr == established_grid_id.end() || itr->second.timestamp <= (Timer::GetCurrentTime2()))
  2987. {
  2988. if(itr != established_grid_id.end() && itr->second.x == GetX() && itr->second.z == GetZ()) {
  2989. itr->second.timestamp = Timer::GetCurrentTime2()+1000;
  2990. itr->second.npc_save = true;
  2991. newGrid = itr->second.grid_id;
  2992. }
  2993. else {
  2994. auto loc = glm::vec3(GetX(), GetZ(), GetY());
  2995. float new_z = FindBestZ(loc, nullptr, &newGrid);
  2996. TimedGridData data;
  2997. data.grid_id = newGrid;
  2998. data.x = GetX();
  2999. data.y = GetY();
  3000. data.z = GetZ();
  3001. data.npc_save = true;
  3002. data.timestamp = Timer::GetCurrentTime2()+1000;
  3003. established_grid_id.insert(make_pair(0, data));
  3004. }
  3005. }
  3006. else
  3007. newGrid = itr->second.grid_id;
  3008. m_GridMutex.releasewritelock(__FUNCTION__, __LINE__);
  3009. }
  3010. if ((!IsFlyingCreature() || IsTransportSpawn()) && newGrid != 0 && newGrid != GetLocation())
  3011. SetLocation(newGrid);
  3012. }
  3013. return remove_needed;
  3014. }
  3015. void Spawn::CalculateRunningLocation(bool stop){
  3016. bool pauseTimerEnabled = IsPauseMovementTimerActive();
  3017. if (!pauseTimerEnabled && !stop && (last_location_update + 100) > Timer::GetCurrentTime2())
  3018. return;
  3019. else if (!pauseTimerEnabled && !stop)
  3020. last_location_update = Timer::GetCurrentTime2();
  3021. bool continueElseIf = true;
  3022. bool removed = CalculateChange();
  3023. if (stop || pauseTimerEnabled) {
  3024. //following = false;
  3025. SetPos(&appearance.pos.X2, GetX(), false);
  3026. SetPos(&appearance.pos.Y2, GetY(), false);
  3027. SetPos(&appearance.pos.Z2, GetZ(), false);
  3028. SetPos(&appearance.pos.X3, GetX(), false);
  3029. SetPos(&appearance.pos.Y3, GetY(), false);
  3030. SetPos(&appearance.pos.Z3, GetZ(), false);
  3031. continueElseIf = false;
  3032. }
  3033. else if (removed && movement_locations && MMovementLocations) {
  3034. if (MMovementLocations)
  3035. MMovementLocations->readlock(__FUNCTION__, __LINE__);
  3036. if(movement_locations->size() > 0) {
  3037. MovementLocation* current_location = movement_locations->at(0);
  3038. if (movement_locations->size() > 1) {
  3039. MovementLocation* data = movement_locations->at(1);
  3040. RunToLocation(current_location->x, current_location->y, current_location->z, data->x, data->y, data->z);
  3041. }
  3042. else
  3043. RunToLocation(current_location->x, current_location->y, current_location->z, 0, 0, 0);
  3044. continueElseIf = false;
  3045. }
  3046. if (MMovementLocations)
  3047. MMovementLocations->releasereadlock(__FUNCTION__, __LINE__);
  3048. }
  3049. if (continueElseIf && GetZone() && GetTarget() != NULL && EngagedInCombat())
  3050. {
  3051. if (GetDistance(GetTarget()) > rule_manager.GetGlobalRule(R_Combat, MaxCombatRange)->GetFloat())
  3052. {
  3053. if ((IsFlyingCreature() || IsWaterCreature() || InWater()) && CheckLoS(GetTarget()))
  3054. AddRunningLocation(GetTarget()->GetX(), GetTarget()->GetY(), GetTarget()->GetZ(), GetSpeed(), 0, false);
  3055. else
  3056. GetZone()->movementMgr->NavigateTo((Entity*)this, GetTarget()->GetX(), GetTarget()->GetY(), GetTarget()->GetZ());
  3057. }
  3058. else
  3059. ((Entity*)this)->HaltMovement();
  3060. }
  3061. else if (continueElseIf && !following)
  3062. {
  3063. position_changed = true;
  3064. changed = true;
  3065. GetZone()->AddChangedSpawn(this);
  3066. }
  3067. }
  3068. float Spawn::GetFaceTarget(float x, float z) {
  3069. float angle;
  3070. double diff_x = x - GetX();
  3071. double diff_z = z - GetZ();
  3072. //If we're very close to the same spot don't bother changing heading
  3073. if (sqrt(diff_x * diff_x * diff_z * diff_z) < .1) {
  3074. return GetHeading();
  3075. }
  3076. if (diff_z == 0) {
  3077. if (diff_x > 0)
  3078. angle = 90;
  3079. else
  3080. angle = 270;
  3081. }
  3082. else
  3083. angle = ((atan(diff_x / diff_z)) * 180) / 3.14159265358979323846;
  3084. if (angle < 0)
  3085. angle = angle + 360;
  3086. else
  3087. angle = angle + 180;
  3088. if (diff_x < 0)
  3089. angle = angle + 180;
  3090. if (last_heading_angle == angle) return angle;
  3091. return angle;
  3092. }
  3093. void Spawn::FaceTarget(float x, float z){
  3094. float angle;
  3095. double diff_x = x - GetX();
  3096. double diff_z = z - GetZ();
  3097. //If we're very close to the same spot don't bother changing heading
  3098. if (sqrt(diff_x * diff_x * diff_z * diff_z) < .1) {
  3099. return;
  3100. }
  3101. if(diff_z==0){
  3102. if(diff_x > 0)
  3103. angle = 90;
  3104. else
  3105. angle = 270;
  3106. }
  3107. else
  3108. angle = ((atan(diff_x / diff_z)) * 180) / 3.14159265358979323846;
  3109. if(angle < 0)
  3110. angle = angle + 360;
  3111. else
  3112. angle = angle + 180;
  3113. if(diff_x < 0)
  3114. angle = angle + 180;
  3115. if (last_heading_angle == angle) return;
  3116. SetHeading(angle);
  3117. }
  3118. void Spawn::FaceTarget(Spawn* target, bool disable_action_state){
  3119. if(!target)
  3120. return;
  3121. if(GetHP() > 0 && target->IsPlayer() && !EngagedInCombat()){
  3122. if(!IsPet() && disable_action_state) {
  3123. if(IsNPC()) {
  3124. ((NPC*)this)->StartRunback();
  3125. ((NPC*)this)->PauseMovement(30000);
  3126. }
  3127. SetTempActionState(0);
  3128. }
  3129. }
  3130. FaceTarget(target->GetX(), target->GetZ());
  3131. }
  3132. bool Spawn::MeetsSpawnAccessRequirements(Player* player){
  3133. bool ret = false;
  3134. Quest* quest = 0;
  3135. //Check if we meet all quest requirements first..
  3136. m_requiredQuests.readlock(__FUNCTION__, __LINE__);
  3137. if (player && required_quests.size() > 0) {
  3138. map<int32, vector<int16>* >::iterator itr;
  3139. for (itr = required_quests.begin(); itr != required_quests.end(); itr++) {
  3140. player->AddQuestRequiredSpawn(this, itr->first);
  3141. vector<int16>* quest_steps = itr->second;
  3142. for (int32 i = 0; i < quest_steps->size(); i++) {
  3143. quest = player->GetQuest(itr->first);
  3144. if (req_quests_continued_access) {
  3145. if (quest) {
  3146. if (quest->GetQuestStepCompleted(quest_steps->at(i))) {
  3147. ret = true;
  3148. break;
  3149. }
  3150. }
  3151. else if (player->HasQuestBeenCompleted(itr->first)) {
  3152. ret = true;
  3153. break;
  3154. }
  3155. }
  3156. if (quest && quest->QuestStepIsActive(quest_steps->at(i))) {
  3157. ret = true;
  3158. break;
  3159. }
  3160. }
  3161. }
  3162. }
  3163. else
  3164. ret = true;
  3165. m_requiredQuests.releasereadlock(__FUNCTION__, __LINE__);
  3166. if (!ret)
  3167. return ret;
  3168. //Now check if the player meets all history requirements
  3169. m_requiredHistory.readlock(__FUNCTION__, __LINE__);
  3170. if (required_history.size() > 0){
  3171. map<int32, LUAHistory*>::iterator itr;
  3172. for (itr = required_history.begin(); itr != required_history.end(); itr++){
  3173. player->AddHistoryRequiredSpawn(this, itr->first);
  3174. LUAHistory* player_history = player->GetLUAHistory(itr->first);
  3175. if (player_history){
  3176. if (player_history->Value != itr->second->Value || player_history->Value2 != itr->second->Value2)
  3177. ret = false;
  3178. }
  3179. else
  3180. ret = false;
  3181. if (!ret)
  3182. break;
  3183. }
  3184. }
  3185. m_requiredHistory.releasereadlock(__FUNCTION__, __LINE__);
  3186. return ret;
  3187. }
  3188. vector<Spawn*>* Spawn::GetSpawnGroup(){
  3189. vector<Spawn*>* ret_list = 0;
  3190. if(spawn_group_list){
  3191. ret_list = new vector<Spawn*>();
  3192. if(MSpawnGroup)
  3193. MSpawnGroup->readlock(__FUNCTION__, __LINE__);
  3194. ret_list->insert(ret_list->begin(), spawn_group_list->begin(), spawn_group_list->end());
  3195. if(MSpawnGroup)
  3196. MSpawnGroup->releasereadlock(__FUNCTION__, __LINE__);
  3197. }
  3198. return ret_list;
  3199. }
  3200. bool Spawn::HasSpawnGroup() {
  3201. return spawn_group_list && spawn_group_list->size() > 0;
  3202. }
  3203. bool Spawn::IsInSpawnGroup(Spawn* spawn) {
  3204. bool ret = false;
  3205. if (HasSpawnGroup() && spawn) {
  3206. vector<Spawn*>::iterator itr;
  3207. for (itr = spawn_group_list->begin(); itr != spawn_group_list->end(); itr++) {
  3208. if ((*itr) == spawn) {
  3209. ret = true;
  3210. break;
  3211. }
  3212. }
  3213. }
  3214. return ret;
  3215. }
  3216. Spawn* Spawn::IsSpawnGroupMembersAlive(Spawn* ignore_spawn, bool npc_only) {
  3217. Spawn* ret = nullptr;
  3218. if (MSpawnGroup && HasSpawnGroup()) {
  3219. MSpawnGroup->readlock(__FUNCTION__, __LINE__);
  3220. vector<Spawn*>::iterator itr;
  3221. for (itr = spawn_group_list->begin(); itr != spawn_group_list->end(); itr++) {
  3222. if ((*itr) != ignore_spawn && (*itr)->Alive() && (!npc_only || (npc_only && (*itr)->IsNPC()))) {
  3223. ret = (*itr);
  3224. break;
  3225. }
  3226. }
  3227. MSpawnGroup->releasereadlock(__FUNCTION__, __LINE__);
  3228. }
  3229. return ret;
  3230. }
  3231. void Spawn::UpdateEncounterState(int8 new_state) {
  3232. if (MSpawnGroup && HasSpawnGroup()) {
  3233. MSpawnGroup->readlock(__FUNCTION__, __LINE__);
  3234. vector<Spawn*>::iterator itr;
  3235. for (itr = spawn_group_list->begin(); itr != spawn_group_list->end(); itr++) {
  3236. if ((*itr)->Alive() && (*itr)->IsNPC()) {
  3237. NPC* npc = (NPC*)(*itr);
  3238. (*itr)->SetLockedNoLoot(new_state);
  3239. if(new_state == ENCOUNTER_STATE_BROKEN && npc->Brain()) {
  3240. npc->Brain()->ClearEncounter();
  3241. }
  3242. }
  3243. }
  3244. MSpawnGroup->releasereadlock(__FUNCTION__, __LINE__);
  3245. }
  3246. }
  3247. void Spawn::CheckEncounterState(Entity* victim) {
  3248. if(!IsEntity() || !victim->IsNPC())
  3249. return;
  3250. Entity* ent = ((Entity*)this);
  3251. if(victim->GetLockedNoLoot() == ENCOUNTER_STATE_AVAILABLE) {
  3252. if(!ent->GetInfoStruct()->get_engaged_encounter()) {
  3253. ent->GetInfoStruct()->set_engaged_encounter(1);
  3254. }
  3255. Entity* attacker = nullptr;
  3256. if(ent->GetOwner())
  3257. attacker = ent->GetOwner();
  3258. else
  3259. attacker = ent;
  3260. if(!attacker->GetInfoStruct()->get_engaged_encounter()) {
  3261. attacker->GetInfoStruct()->set_engaged_encounter(1);
  3262. }
  3263. int8 skip_loot_gray_mob_flag = rule_manager.GetGlobalRule(R_Loot, SkipLootGrayMob)->GetInt8();
  3264. int8 difficulty = attacker->GetArrowColor(victim->GetLevel());
  3265. int8 new_enc_state = ENCOUNTER_STATE_AVAILABLE;
  3266. if(skip_loot_gray_mob_flag && difficulty == ARROW_COLOR_GRAY) {
  3267. if(!attacker->IsPlayer() && !attacker->IsBot()) {
  3268. new_enc_state = ENCOUNTER_STATE_BROKEN;
  3269. }
  3270. else {
  3271. new_enc_state = ENCOUNTER_STATE_OVERMATCHED;
  3272. }
  3273. }
  3274. else {
  3275. if(attacker->IsPlayer() || attacker->IsBot()) {
  3276. new_enc_state = ENCOUNTER_STATE_LOCKED;
  3277. }
  3278. else {
  3279. new_enc_state = ENCOUNTER_STATE_BROKEN;
  3280. }
  3281. }
  3282. victim->SetLockedNoLoot(new_enc_state);
  3283. victim->UpdateEncounterState(new_enc_state);
  3284. }
  3285. }
  3286. void Spawn::AddTargetToEncounter(Entity* entity) {
  3287. if (MSpawnGroup && HasSpawnGroup()) {
  3288. MSpawnGroup->readlock(__FUNCTION__, __LINE__);
  3289. vector<Spawn*>::iterator itr;
  3290. for (itr = spawn_group_list->begin(); itr != spawn_group_list->end(); itr++) {
  3291. if ((*itr) != this && (*itr)->Alive() && (*itr)->IsNPC()) {
  3292. ((NPC*)(*itr))->Brain()->AddToEncounter(entity);
  3293. }
  3294. }
  3295. MSpawnGroup->releasereadlock(__FUNCTION__, __LINE__);
  3296. }
  3297. }
  3298. void Spawn::AddSpawnToGroup(Spawn* spawn){
  3299. if(!spawn)
  3300. return;
  3301. if(!spawn_group_list){
  3302. spawn_group_list = new vector<Spawn*>();
  3303. spawn_group_list->push_back(this);
  3304. safe_delete(MSpawnGroup);
  3305. MSpawnGroup = new Mutex();
  3306. MSpawnGroup->SetName("Spawn::MSpawnGroup");
  3307. }
  3308. vector<Spawn*>::iterator itr;
  3309. MSpawnGroup->writelock(__FUNCTION__, __LINE__);
  3310. for(itr = spawn_group_list->begin(); itr != spawn_group_list->end(); itr++){
  3311. if((*itr) == spawn){
  3312. MSpawnGroup->releasewritelock(__FUNCTION__, __LINE__);
  3313. return;
  3314. }
  3315. }
  3316. spawn_group_list->push_back(spawn);
  3317. spawn->SetSpawnGroupList(spawn_group_list, MSpawnGroup);
  3318. MSpawnGroup->releasewritelock(__FUNCTION__, __LINE__);
  3319. }
  3320. void Spawn::SetSpawnGroupList(vector<Spawn*>* list, Mutex* mutex){
  3321. spawn_group_list = list;
  3322. MSpawnGroup = mutex;
  3323. }
  3324. void Spawn::RemoveSpawnFromGroup(bool erase_all){
  3325. SetSpawnGroupID(0);
  3326. bool del = false;
  3327. if(MSpawnGroup){
  3328. MSpawnGroup->writelock(__FUNCTION__, __LINE__);
  3329. if(spawn_group_list){
  3330. vector<Spawn*>::iterator itr;
  3331. Spawn* spawn = 0;
  3332. if(spawn_group_list->size() == 1)
  3333. erase_all = true;
  3334. for(itr = spawn_group_list->begin(); itr != spawn_group_list->end(); itr++){
  3335. spawn = *itr;
  3336. if (spawn) {
  3337. if(!erase_all){
  3338. if(spawn == this){
  3339. spawn_group_list->erase(itr);
  3340. MSpawnGroup->releasewritelock(__FUNCTION__, __LINE__);
  3341. spawn_group_list = 0;
  3342. MSpawnGroup = 0;
  3343. return;
  3344. }
  3345. }
  3346. else{
  3347. if (spawn != this)
  3348. spawn->SetSpawnGroupList(0, 0);
  3349. }
  3350. }
  3351. }
  3352. if (erase_all)
  3353. spawn_group_list->clear();
  3354. del = (spawn_group_list->size() == 0);
  3355. }
  3356. MSpawnGroup->releasewritelock(__FUNCTION__, __LINE__);
  3357. if (del){
  3358. safe_delete(MSpawnGroup);
  3359. safe_delete(spawn_group_list);
  3360. }
  3361. }
  3362. }
  3363. void Spawn::SetSpawnGroupID(int32 id){
  3364. m_SpawnMutex.writelock();
  3365. group_id = id;
  3366. m_SpawnMutex.releasewritelock();
  3367. }
  3368. int32 Spawn::GetSpawnGroupID(){
  3369. int32 groupid = 0;
  3370. m_SpawnMutex.readlock();
  3371. groupid = group_id;
  3372. m_SpawnMutex.releasereadlock();
  3373. return groupid;
  3374. }
  3375. void Spawn::AddChangedZoneSpawn(){
  3376. if(send_spawn_changes && GetZone())
  3377. GetZone()->AddChangedSpawn(this);
  3378. }
  3379. void Spawn::RemoveSpawnAccess(Spawn* spawn) {
  3380. if (allowed_access.count(spawn->GetID()) > 0) {
  3381. allowed_access.erase(spawn->GetID());
  3382. GetZone()->HidePrivateSpawn(this);
  3383. }
  3384. }
  3385. void Spawn::SetFollowTarget(Spawn* spawn, int32 follow_distance) {
  3386. if (spawn && spawn != this) {
  3387. m_followTarget = spawn->GetID();
  3388. m_followDistance = follow_distance;
  3389. }
  3390. else {
  3391. m_followTarget = 0;
  3392. if (following)
  3393. following = false;
  3394. m_followDistance = 0;
  3395. }
  3396. }
  3397. void Spawn::AddTempVariable(string var, string val) {
  3398. m_tempVariableTypes[var] = 5;
  3399. m_tempVariables[var] = val;
  3400. }
  3401. void Spawn::AddTempVariable(string var, Spawn* val) {
  3402. m_tempVariableTypes[var] = 1;
  3403. m_tempVariableSpawn[var] = val->GetID();
  3404. }
  3405. void Spawn::AddTempVariable(string var, ZoneServer* val) {
  3406. m_tempVariableTypes[var] = 2;
  3407. m_tempVariableZone[var] = val;
  3408. }
  3409. void Spawn::AddTempVariable(string var, Item* val) {
  3410. m_tempVariableTypes[var] = 3;
  3411. m_tempVariableItem[var] = val;
  3412. }
  3413. void Spawn::AddTempVariable(string var, Quest* val) {
  3414. m_tempVariableTypes[var] = 4;
  3415. m_tempVariableQuest[var] = val;
  3416. }
  3417. string Spawn::GetTempVariable(string var) {
  3418. string ret = "";
  3419. if (m_tempVariables.count(var) > 0)
  3420. ret = m_tempVariables[var];
  3421. return ret;
  3422. }
  3423. Spawn* Spawn::GetTempVariableSpawn(string var) {
  3424. Spawn* ret = 0;
  3425. if (m_tempVariableSpawn.count(var) > 0)
  3426. ret = GetZone()->GetSpawnByID(m_tempVariableSpawn[var]);
  3427. return ret;
  3428. }
  3429. ZoneServer* Spawn::GetTempVariableZone(string var) {
  3430. ZoneServer* ret = 0;
  3431. if (m_tempVariableZone.count(var) > 0)
  3432. ret = m_tempVariableZone[var];
  3433. return ret;
  3434. }
  3435. Item* Spawn::GetTempVariableItem(string var) {
  3436. Item* ret = 0;
  3437. if (m_tempVariableItem.count(var) > 0)
  3438. ret = m_tempVariableItem[var];
  3439. return ret;
  3440. }
  3441. Quest* Spawn::GetTempVariableQuest(string var) {
  3442. Quest* ret = 0;
  3443. if (m_tempVariableQuest.count(var) > 0)
  3444. ret = m_tempVariableQuest[var];
  3445. return ret;
  3446. }
  3447. int8 Spawn::GetTempVariableType(string var) {
  3448. int8 ret = 0;
  3449. if (m_tempVariableTypes.count(var) > 0)
  3450. ret = m_tempVariableTypes[var];
  3451. return ret;
  3452. }
  3453. void Spawn::DeleteTempVariable(string var) {
  3454. int8 type = GetTempVariableType(var);
  3455. switch (type) {
  3456. case 1:
  3457. m_tempVariableSpawn.erase(var);
  3458. break;
  3459. case 2:
  3460. m_tempVariableZone.erase(var);
  3461. break;
  3462. case 3:
  3463. m_tempVariableItem.erase(var);
  3464. break;
  3465. case 4:
  3466. m_tempVariableQuest.erase(var);
  3467. break;
  3468. case 5:
  3469. m_tempVariables.erase(var);
  3470. break;
  3471. }
  3472. m_tempVariableTypes.erase(var);
  3473. }
  3474. Spawn* Spawn::GetRunningTo() {
  3475. return GetZone()->GetSpawnByID(running_to);
  3476. }
  3477. Spawn* Spawn::GetFollowTarget() {
  3478. return GetZone()->GetSpawnByID(m_followTarget);
  3479. }
  3480. void Spawn::CopySpawnAppearance(Spawn* spawn){
  3481. if (!spawn)
  3482. return;
  3483. //This function copies the appearace of the provided spawn to this one
  3484. if (spawn->IsEntity() && IsEntity()){
  3485. memcpy(&((Entity*)this)->features, &((Entity*)spawn)->features, sizeof(CharFeatures));
  3486. memcpy(&((Entity*)this)->equipment, &((Entity*)spawn)->equipment, sizeof(EQ2_Equipment));
  3487. }
  3488. SetSize(spawn->GetSize());
  3489. SetModelType(spawn->GetModelType());
  3490. }
  3491. void Spawn::SetY(float y, bool updateFlags, bool disableYMapCheck)
  3492. {
  3493. SetPos(&appearance.pos.Y, y, updateFlags);
  3494. if (!disableYMapCheck)
  3495. FixZ();
  3496. }
  3497. float Spawn::FindDestGroundZ(glm::vec3 dest, float z_offset)
  3498. {
  3499. float best_z = BEST_Z_INVALID;
  3500. if (GetZone() != nullptr && GetMap() != nullptr)
  3501. {
  3502. dest.z += z_offset;
  3503. best_z = FindBestZ(dest, nullptr);
  3504. }
  3505. return best_z;
  3506. }
  3507. float Spawn::FindBestZ(glm::vec3 loc, glm::vec3* result, int32* new_grid_id, int32* new_widget_id) {
  3508. std::shared_lock lock(MIgnoredWidgets);
  3509. if(!GetMap())
  3510. return BEST_Z_INVALID;
  3511. float new_z = GetMap()->FindBestZ(loc, nullptr, &ignored_widgets, new_grid_id, new_widget_id);
  3512. return new_z;
  3513. }
  3514. float Spawn::GetFixedZ(const glm::vec3& destination, int32 z_find_offset) {
  3515. BenchTimer timer;
  3516. timer.reset();
  3517. float new_z = destination.z;
  3518. if (GetZone() != nullptr && GetMap() != nullptr) {
  3519. /* if (flymode == GravityBehavior::Flying)
  3520. return new_z;
  3521. */
  3522. /* if (zone->HasWaterMap() && zone->watermap->InLiquid(glm::vec3(m_Position)))
  3523. return new_z;
  3524. */
  3525. /*
  3526. * Any more than 5 in the offset makes NPC's hop/snap to ceiling in small corridors
  3527. */
  3528. new_z = this->FindDestGroundZ(destination, z_find_offset);
  3529. if (new_z != BEST_Z_INVALID) {
  3530. if (new_z < -2000) {
  3531. new_z = GetY();
  3532. }
  3533. }
  3534. auto duration = timer.elapsed();
  3535. LogWrite(MAP__DEBUG, 0, "Map", "Mob::GetFixedZ() ([{%s}]) returned [{%f}] at [{%f}], [{%f}], [{%f}] - Took [{%f}]",
  3536. this->GetName(),
  3537. new_z,
  3538. destination.x,
  3539. destination.y,
  3540. destination.z,
  3541. duration);
  3542. }
  3543. return new_z;
  3544. }
  3545. void Spawn::FixZ(bool forceUpdate) {
  3546. if (!GetZone()) {
  3547. return;
  3548. }
  3549. /*
  3550. if (flymode == GravityBehavior::Flying) {
  3551. return;
  3552. }*/
  3553. /*
  3554. if (zone->watermap && zone->watermap->InLiquid(m_Position)) {
  3555. return;
  3556. }*/
  3557. // we do the inwater check here manually to avoid double calling for a Z coordinate
  3558. glm::vec3 current_loc(GetX(), GetZ(), GetY());
  3559. uint32 GridID = 0;
  3560. uint32 WidgetID = 0;
  3561. float new_z = GetY();
  3562. if(GetMap() != nullptr) {
  3563. float new_z = FindBestZ(current_loc, nullptr, &GridID, &WidgetID);
  3564. if ((IsTransportSpawn() || !IsFlyingCreature()) && GridID != 0 && GridID != GetLocation()) {
  3565. LogWrite(PLAYER__DEBUG, 0, "Player", "%s left grid %u and entered grid %u", appearance.name, GetLocation(), GridID);
  3566. const char* zone_script = world.GetZoneScript(GetZone()->GetZoneID());
  3567. if (zone_script && lua_interface) {
  3568. lua_interface->RunZoneScript(zone_script, "leave_location", GetZone(), this, GetLocation());
  3569. }
  3570. SetLocation(GridID);
  3571. if (zone_script && lua_interface) {
  3572. lua_interface->RunZoneScript(zone_script, "enter_location", GetZone(), this, GridID);
  3573. }
  3574. }
  3575. trigger_widget_id = WidgetID;
  3576. }
  3577. // no need to go any further for players, flying creatures or objects, just needed the grid id set
  3578. if (IsPlayer() || IsFlyingCreature() || IsObject()) {
  3579. return;
  3580. }
  3581. if ( region_map != nullptr )
  3582. {
  3583. glm::vec3 targPos(GetX(), GetY(), GetZ());
  3584. if(region_map->InWater(targPos, GetLocation()))
  3585. return;
  3586. }
  3587. if (new_z == GetY())
  3588. return;
  3589. if ((new_z > -2000) && new_z != BEST_Z_INVALID) {
  3590. SetY(new_z, forceUpdate, true);
  3591. }
  3592. else {
  3593. LogWrite(MAP__DEBUG, 0, "Map", "[{%s}] is failing to find Z [{%f}]", this->GetName(), std::abs(GetY() - new_z));
  3594. }
  3595. }
  3596. bool Spawn::CheckLoS(Spawn* target)
  3597. {
  3598. float radiusSrc = 2.0f;
  3599. float radiusTarg = 2.0f;
  3600. glm::vec3 targpos(target->GetX(), target->GetZ(), target->GetY()+radiusTarg);
  3601. glm::vec3 pos(GetX(), GetZ(), GetY()+radiusSrc);
  3602. return CheckLoS(pos, targpos);
  3603. }
  3604. bool Spawn::CheckLoS(glm::vec3 myloc, glm::vec3 oloc)
  3605. {
  3606. bool res = false;
  3607. ZoneServer* zone = GetZone();
  3608. if (zone == NULL || GetMap() == NULL || !GetMap()->IsMapLoaded())
  3609. return true;
  3610. else {
  3611. MIgnoredWidgets.lock_shared();
  3612. res = GetMap()->CheckLoS(myloc, oloc, &ignored_widgets);
  3613. MIgnoredWidgets.unlock_shared();
  3614. }
  3615. return res;
  3616. }
  3617. void Spawn::CalculateNewFearpoint()
  3618. {
  3619. if (GetZone() && GetZone()->pathing) {
  3620. auto Node = zone->pathing->GetRandomLocation(glm::vec3(GetX(), GetZ(), GetY()));
  3621. if (Node.x != 0.0f || Node.y != 0.0f || Node.z != 0.0f) {
  3622. AddRunningLocation(Node.x, Node.y, Node.z, GetSpeed(), 0, true, true, "", true);
  3623. }
  3624. }
  3625. }
  3626. Item* Spawn::LootItem(int32 id) {
  3627. Item* ret = 0;
  3628. vector<Item*>::iterator itr;
  3629. MLootItems.lock();
  3630. for (itr = loot_items.begin(); itr != loot_items.end(); itr++) {
  3631. if ((*itr)->details.item_id == id) {
  3632. ret = *itr;
  3633. loot_items.erase(itr);
  3634. break;
  3635. }
  3636. }
  3637. MLootItems.unlock();
  3638. return ret;
  3639. }
  3640. void Spawn::TransferLoot(Spawn* spawn) {
  3641. if(spawn == this || spawn == nullptr)
  3642. return; // mmm no
  3643. vector<Item*>::iterator itr;
  3644. MLootItems.lock();
  3645. for (itr = loot_items.begin(); itr != loot_items.end();) {
  3646. if (!(*itr)->IsBodyDrop()) {
  3647. spawn->AddLootItem(*itr);
  3648. itr = loot_items.erase(itr);
  3649. }
  3650. else {
  3651. itr++;
  3652. }
  3653. }
  3654. MLootItems.unlock();
  3655. }
  3656. int32 Spawn::GetLootItemID() {
  3657. int32 ret = 0;
  3658. vector<Item*>::iterator itr;
  3659. MLootItems.lock();
  3660. for (itr = loot_items.begin(); itr != loot_items.end(); itr++) {
  3661. ret = (*itr)->details.item_id;
  3662. break;
  3663. }
  3664. MLootItems.unlock();
  3665. return ret;
  3666. }
  3667. bool Spawn::HasLootItemID(int32 id) {
  3668. bool ret = false;
  3669. vector<Item*>::iterator itr;
  3670. MLootItems.readlock(__FUNCTION__, __LINE__);
  3671. for (itr = loot_items.begin(); itr != loot_items.end(); itr++) {
  3672. if ((*itr)->details.item_id == id) {
  3673. ret = true;
  3674. break;
  3675. }
  3676. }
  3677. MLootItems.releasereadlock(__FUNCTION__, __LINE__);
  3678. return ret;
  3679. }
  3680. void Spawn::CheckProximities()
  3681. {
  3682. if (!has_spawn_proximities)
  3683. return;
  3684. if (spawn_proximities.size() > 0)
  3685. {
  3686. MutexList<SpawnProximity*>::iterator itr = spawn_proximities.begin();
  3687. while (itr.Next()) {
  3688. SpawnProximity* prox = itr.value;
  3689. map<int32, bool>::iterator spawnsItr;
  3690. for (spawnsItr = prox->spawns_in_proximity.begin(); spawnsItr != prox->spawns_in_proximity.end(); spawnsItr++) {
  3691. Spawn* tmpSpawn = 0;
  3692. if (spawnsItr->first &&
  3693. ((prox->spawn_type == SPAWNPROXIMITY_DATABASE_ID && (tmpSpawn = GetZone()->GetSpawnByDatabaseID(spawnsItr->first)) != 0) ||
  3694. (prox->spawn_type == SPAWNPROXIMITY_LOCATION_ID && (tmpSpawn = GetZone()->GetSpawnByLocationID(spawnsItr->first)) != 0)))
  3695. {
  3696. if (!spawnsItr->second && tmpSpawn->GetDistance(this) <= prox->distance)
  3697. {
  3698. if (prox->in_range_lua_function.size() > 0)
  3699. GetZone()->CallSpawnScript(this, SPAWN_SCRIPT_CUSTOM, tmpSpawn, prox->in_range_lua_function.c_str());
  3700. spawnsItr->second = true;
  3701. }
  3702. else if (spawnsItr->second && tmpSpawn->GetDistance(this) > prox->distance)
  3703. {
  3704. if (prox->leaving_range_lua_function.size() > 0)
  3705. GetZone()->CallSpawnScript(this, SPAWN_SCRIPT_CUSTOM, tmpSpawn, prox->leaving_range_lua_function.c_str());
  3706. spawnsItr->second = false;
  3707. }
  3708. }
  3709. }
  3710. }
  3711. }
  3712. }
  3713. void Spawn::AddSpawnToProximity(int32 spawnValue, SpawnProximityType type)
  3714. {
  3715. if (!has_spawn_proximities)
  3716. return;
  3717. if (spawn_proximities.size() > 0)
  3718. {
  3719. MutexList<SpawnProximity*>::iterator itr = spawn_proximities.begin();
  3720. while (itr.Next()) {
  3721. SpawnProximity* prox = itr->value;
  3722. if (prox->spawn_value == spawnValue && prox->spawn_type == type)
  3723. prox->spawns_in_proximity.insert(make_pair(spawnValue, false));
  3724. }
  3725. }
  3726. }
  3727. void Spawn::RemoveSpawnFromProximity(int32 spawnValue, SpawnProximityType type)
  3728. {
  3729. if (!has_spawn_proximities)
  3730. return;
  3731. if (spawn_proximities.size() > 0)
  3732. {
  3733. MutexList<SpawnProximity*>::iterator itr = spawn_proximities.begin();
  3734. while (itr.Next()) {
  3735. SpawnProximity* prox = itr->value;
  3736. if (prox->spawn_value == spawnValue && prox->spawn_type == type &&
  3737. prox->spawns_in_proximity.count(spawnValue) > 0)
  3738. prox->spawns_in_proximity.erase(spawnValue);
  3739. }
  3740. }
  3741. }
  3742. void Spawn::AddPrimaryEntityCommand(const char* name, float distance, const char* command, const char* error_text, int16 cast_time, int32 spell_visual, bool defaultDenyList, Player* player) {
  3743. EntityCommand* cmd = FindEntityCommand(string(command), true);
  3744. bool newCommand = false;
  3745. if (!cmd)
  3746. {
  3747. newCommand = true;
  3748. cmd = CreateEntityCommand(name, distance, command, error_text, cast_time, spell_visual, !defaultDenyList);
  3749. }
  3750. if (defaultDenyList)
  3751. SetPermissionToEntityCommand(cmd, player, true);
  3752. if (newCommand)
  3753. primary_command_list.push_back(cmd);
  3754. }
  3755. void Spawn::RemovePrimaryEntityCommand(const char* command) {
  3756. vector<EntityCommand*>::iterator itr;
  3757. string tmpStr(command);
  3758. for (itr = primary_command_list.begin(); itr != primary_command_list.end(); itr++) {
  3759. EntityCommand* cmd = *itr;
  3760. if (cmd->command.compare(tmpStr) == 0)
  3761. {
  3762. primary_command_list.erase(itr);
  3763. delete cmd;
  3764. break;
  3765. }
  3766. }
  3767. }
  3768. bool Spawn::SetPermissionToEntityCommand(EntityCommand* command, Player* player, bool permissionValue)
  3769. {
  3770. if(!player)
  3771. return false;
  3772. return SetPermissionToEntityCommandByCharID(command, player->GetCharacterID(), permissionValue);
  3773. }
  3774. bool Spawn::SetPermissionToEntityCommandByCharID(EntityCommand* command, int32 charID, bool permissionValue)
  3775. {
  3776. map<int32, bool>::iterator itr = command->allow_or_deny.find(charID);
  3777. if (itr == command->allow_or_deny.end())
  3778. command->allow_or_deny.insert(make_pair(charID, permissionValue));
  3779. else if (itr->second != permissionValue)
  3780. itr->second = permissionValue;
  3781. return true;
  3782. }
  3783. void Spawn::RemoveSpawnFromPlayer(Player* player)
  3784. {
  3785. m_Update.writelock(__FUNCTION__, __LINE__);
  3786. player->RemoveSpawn(this); // sets it as removed
  3787. m_Update.releasewritelock(__FUNCTION__, __LINE__);
  3788. }
  3789. bool Spawn::InWater()
  3790. {
  3791. bool inWater = false;
  3792. if ( region_map != nullptr )
  3793. {
  3794. glm::vec3 targPos(GetX(), GetY(), GetZ());
  3795. if ( IsGroundSpawn() )
  3796. targPos.y -= .5f;
  3797. if(region_map->InWater(targPos, GetLocation()))
  3798. inWater = true;
  3799. }
  3800. return inWater;
  3801. }
  3802. bool Spawn::InLava()
  3803. {
  3804. bool inLava = false;
  3805. if ( region_map != nullptr )
  3806. {
  3807. glm::vec3 targPos(GetX(), GetY(), GetZ());
  3808. if ( IsGroundSpawn() )
  3809. targPos.y -= .5f;
  3810. if(region_map->InLava(targPos, GetLocation()))
  3811. inLava = true;
  3812. }
  3813. return inLava;
  3814. }
  3815. void Spawn::DeleteRegion(Region_Node* inNode, ZBSP_Node* rootNode)
  3816. {
  3817. map<map<Region_Node*, ZBSP_Node*>, Region_Status>::iterator testitr;
  3818. for (testitr = Regions.begin(); testitr != Regions.end(); testitr++)
  3819. {
  3820. map<Region_Node*, ZBSP_Node*>::const_iterator actualItr = testitr->first.begin();
  3821. Region_Node* node = actualItr->first;
  3822. ZBSP_Node* BSP_Root = actualItr->second;
  3823. if(inNode == node && rootNode == BSP_Root )
  3824. {
  3825. testitr = Regions.erase(testitr);
  3826. break;
  3827. }
  3828. }
  3829. }
  3830. bool Spawn::InRegion(Region_Node* inNode, ZBSP_Node* rootNode)
  3831. {
  3832. map<map<Region_Node*, ZBSP_Node*>, Region_Status>::iterator testitr;
  3833. for (testitr = Regions.begin(); testitr != Regions.end(); testitr++)
  3834. {
  3835. map<Region_Node*, ZBSP_Node*>::const_iterator actualItr = testitr->first.begin();
  3836. Region_Node* node = actualItr->first;
  3837. ZBSP_Node* BSP_Root = actualItr->second;
  3838. if(inNode == node && rootNode == BSP_Root )
  3839. {
  3840. return testitr->second.inRegion;
  3841. }
  3842. }
  3843. return false;
  3844. }
  3845. int32 Spawn::GetRegionType(Region_Node* inNode, ZBSP_Node* rootNode)
  3846. {
  3847. map<map<Region_Node*, ZBSP_Node*>, Region_Status>::iterator testitr;
  3848. for (testitr = Regions.begin(); testitr != Regions.end(); testitr++)
  3849. {
  3850. map<Region_Node*, ZBSP_Node*>::const_iterator actualItr = testitr->first.begin();
  3851. Region_Node* node = actualItr->first;
  3852. ZBSP_Node* BSP_Root = actualItr->second;
  3853. if(inNode == node && rootNode == BSP_Root )
  3854. {
  3855. return testitr->second.regionType;
  3856. }
  3857. }
  3858. return false;
  3859. }
  3860. float Spawn::SpawnAngle(Spawn* target, float selfx, float selfz)
  3861. {
  3862. if (!target || target == this)
  3863. return 0.0f;
  3864. float angle, lengthb, vectorx, vectorz, dotp;
  3865. float spx = (target->GetX()); // mob xloc (inverse because eq)
  3866. float spz = -(target->GetZ()); // mob yloc
  3867. float heading = target->GetHeading(); // mob heading
  3868. if (heading < 270)
  3869. heading += 90;
  3870. else
  3871. heading -= 270;
  3872. heading = heading * 3.1415f / 180.0f; // convert to radians
  3873. vectorx = spx + (10.0f * std::cos(heading)); // create a vector based on heading
  3874. vectorz = spz + (10.0f * std::sin(heading)); // of spawn length 10
  3875. // length of spawn to player vector
  3876. lengthb = (float) std::sqrt(((selfx - spx) * (selfx - spx)) + ((-selfz - spz) * (-selfz - spz)));
  3877. // calculate dot product to get angle
  3878. // Handle acos domain errors due to floating point rounding errors
  3879. dotp = ((vectorx - spx) * (selfx - spx) +
  3880. (vectorz - spz) * (-selfz - spz)) / (10.0f * lengthb);
  3881. if (dotp > 1)
  3882. return 0.0f;
  3883. else if (dotp < -1)
  3884. return 180.0f;
  3885. angle = std::acos(dotp);
  3886. angle = angle * 180.0f / 3.1415f;
  3887. return angle;
  3888. }
  3889. void Spawn::StopMovement()
  3890. {
  3891. ResetMovement(true);
  3892. }
  3893. bool Spawn::PauseMovement(int32 period_of_time_ms)
  3894. {
  3895. if(period_of_time_ms < 1)
  3896. period_of_time_ms = 1;
  3897. RunToLocation(GetX(),GetY(),GetZ());
  3898. pause_timer.Start(period_of_time_ms, true);
  3899. return true;
  3900. }
  3901. bool Spawn::IsPauseMovementTimerActive()
  3902. {
  3903. if(pause_timer.Check())
  3904. pause_timer.Disable();
  3905. return pause_timer.Enabled();
  3906. }
  3907. bool Spawn::IsFlyingCreature()
  3908. {
  3909. if(!IsEntity())
  3910. return false;
  3911. return ((Entity*)this)->GetInfoStruct()->get_flying_type();
  3912. }
  3913. bool Spawn::IsWaterCreature()
  3914. {
  3915. if(!IsEntity())
  3916. return false;
  3917. return ((Entity*)this)->GetInfoStruct()->get_water_type();
  3918. }
  3919. void Spawn::SetFlyingCreature() {
  3920. if(!IsEntity() || !rule_manager.GetGlobalRule(R_Spawn, UseHardCodeFlyingModelType)->GetInt8())
  3921. return;
  3922. if(((Entity*)this)->GetInfoStruct()->get_flying_type() > 0) // DB spawn npc flag already set
  3923. return;
  3924. switch (GetModelType())
  3925. {
  3926. case 260:
  3927. case 295:
  3928. ((Entity*)this)->GetInfoStruct()->set_flying_type(1);
  3929. is_flying_creature = true;
  3930. break;
  3931. default:
  3932. ((Entity*)this)->GetInfoStruct()->set_flying_type(0);
  3933. break;
  3934. }
  3935. }
  3936. void Spawn::SetWaterCreature() {
  3937. if(!IsEntity() || !rule_manager.GetGlobalRule(R_Spawn, UseHardCodeWaterModelType)->GetInt8())
  3938. return;
  3939. if(((Entity*)this)->GetInfoStruct()->get_water_type() > 0) // DB spawn npc flag already set
  3940. return;
  3941. switch (GetModelType())
  3942. {
  3943. case 194:
  3944. case 204:
  3945. case 210:
  3946. case 241:
  3947. case 242:
  3948. case 254:
  3949. case 10668:
  3950. case 20828:
  3951. ((Entity*)this)->GetInfoStruct()->set_water_type(1);
  3952. break;
  3953. default:
  3954. ((Entity*)this)->GetInfoStruct()->set_water_type(0);
  3955. break;
  3956. }
  3957. }
  3958. void Spawn::AddRailPassenger(int32 char_id)
  3959. {
  3960. std::lock_guard<std::mutex> lk(m_RailMutex);
  3961. rail_passengers.insert(make_pair(char_id,true));
  3962. }
  3963. void Spawn::RemoveRailPassenger(int32 char_id)
  3964. {
  3965. std::lock_guard<std::mutex> lk(m_RailMutex);
  3966. std::map<int32, bool>::iterator itr = rail_passengers.find(char_id);
  3967. if(itr != rail_passengers.end())
  3968. rail_passengers.erase(itr);
  3969. }
  3970. vector<Spawn*> Spawn::GetPassengersOnRail() {
  3971. vector<Spawn*> tmp_list;
  3972. Spawn* spawn;
  3973. m_RailMutex.lock();
  3974. std::map<int32, bool>::iterator itr = rail_passengers.begin();
  3975. while(itr != rail_passengers.end()){
  3976. Client* client = zone_list.GetClientByCharID(itr->first);
  3977. if(!client || !client->GetPlayer())
  3978. continue;
  3979. tmp_list.push_back(client->GetPlayer());
  3980. itr++;
  3981. }
  3982. m_RailMutex.unlock();
  3983. return tmp_list;
  3984. }
  3985. void Spawn::SetAppearancePosition(float x, float y, float z) {
  3986. appearance.pos.X = x;
  3987. appearance.pos.Y = y;
  3988. appearance.pos.Z = z;
  3989. appearance.pos.X2 = appearance.pos.X;
  3990. appearance.pos.Y2 = appearance.pos.Y;
  3991. appearance.pos.Z2 = appearance.pos.Z;
  3992. appearance.pos.X3 = appearance.pos.X;
  3993. appearance.pos.Y3 = appearance.pos.Y;
  3994. appearance.pos.Z3 = appearance.pos.Z;
  3995. SetSpeedX(0);
  3996. SetSpeedY(0);
  3997. SetSpeedZ(0);
  3998. if(IsPlayer()) {
  3999. ((Player*)this)->SetSideSpeed(0);
  4000. ((Player*)this)->pos_packet_speed = 0;
  4001. }
  4002. }
  4003. int32 Spawn::InsertRegionToSpawn(Region_Node* node, ZBSP_Node* bsp_root, WaterRegionType regionType, bool in_region) {
  4004. std::map<Region_Node*, ZBSP_Node*> newMap;
  4005. newMap.insert(make_pair(node, bsp_root));
  4006. Region_Status status;
  4007. status.inRegion = in_region;
  4008. status.regionType = regionType;
  4009. int32 returnValue = 0;
  4010. if(in_region) {
  4011. lua_interface->RunRegionScript(node->regionScriptName, "EnterRegion", GetZone(), this, regionType, &returnValue);
  4012. }
  4013. status.timerTic = returnValue;
  4014. status.lastTimerTic = returnValue ? Timer::GetCurrentTime2() : 0;
  4015. Regions.insert(make_pair(newMap, status));
  4016. return returnValue;
  4017. }
  4018. bool Spawn::HasRegionTracked(Region_Node* node, ZBSP_Node* bsp_root, bool in_region) {
  4019. map<map<Region_Node*, ZBSP_Node*>, Region_Status>::iterator testitr;
  4020. for (testitr = Regions.begin(); testitr != Regions.end(); testitr++)
  4021. {
  4022. map<Region_Node*, ZBSP_Node*>::const_iterator actualItr = testitr->first.begin();
  4023. Region_Node *node = actualItr->first;
  4024. ZBSP_Node *BSP_Root = actualItr->second;
  4025. if(node == actualItr->first && BSP_Root == actualItr->second) {
  4026. if(testitr->second.inRegion == in_region)
  4027. return true;
  4028. else
  4029. break;
  4030. }
  4031. }
  4032. return false;
  4033. }
  4034. void Spawn::SetLocation(int32 id, bool setUpdateFlags)
  4035. {
  4036. if(GetZone()) {
  4037. GetZone()->RemoveSpawnFromGrid(this, GetLocation());
  4038. SetPos(&appearance.pos.grid_id, id, setUpdateFlags);
  4039. GetZone()->AddSpawnToGrid(this, id);
  4040. }
  4041. else {
  4042. SetPos(&appearance.pos.grid_id, id, setUpdateFlags);
  4043. }
  4044. }
  4045. int8 Spawn::GetArrowColor(int8 spawn_level){
  4046. int8 color = 0;
  4047. sint16 diff = spawn_level - GetLevel();
  4048. if(GetLevel() < 10)
  4049. diff *= 3;
  4050. else if(GetLevel() <= 20)
  4051. diff *= 2;
  4052. if(diff >= 9)
  4053. color = ARROW_COLOR_RED;
  4054. else if(diff >= 5)
  4055. color = ARROW_COLOR_ORANGE;
  4056. else if(diff >= 1)
  4057. color = ARROW_COLOR_YELLOW;
  4058. else if(diff == 0)
  4059. color = ARROW_COLOR_WHITE;
  4060. else if(diff <= -11)
  4061. color = ARROW_COLOR_GRAY;
  4062. else if(diff <= -6)
  4063. color = ARROW_COLOR_GREEN;
  4064. else //if(diff < 0)
  4065. color = ARROW_COLOR_BLUE;
  4066. return color;
  4067. }
  4068. void Spawn::AddIgnoredWidget(int32 id) {
  4069. std::unique_lock lock(MIgnoredWidgets);
  4070. if(ignored_widgets.find(id) == ignored_widgets.end()) {
  4071. ignored_widgets.insert(make_pair(id,true));
  4072. }
  4073. }