Items.cpp 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278
  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 "Items.h"
  17. #include "../Spells.h"
  18. #include "../Quests.h"
  19. #include "../Player.h"
  20. #include "../classes.h"
  21. #include "math.h"
  22. #include "../World.h"
  23. #include "../LuaInterface.h"
  24. #include "../../common/Log.h"
  25. #include "../Entity.h"
  26. #include "../Recipes/Recipe.h"
  27. #include <algorithm>
  28. #include <sstream>
  29. #include <boost/algorithm/string.hpp>
  30. #include "../Rules/Rules.h"
  31. extern World world;
  32. extern MasterSpellList master_spell_list;
  33. extern MasterQuestList master_quest_list;
  34. extern MasterRecipeList master_recipe_list;
  35. extern ConfigReader configReader;
  36. extern LuaInterface* lua_interface;
  37. extern RuleManager rule_manager;
  38. MasterItemList::MasterItemList(){
  39. AddMappedItemStat(ITEM_STAT_ADORNING, std::string("adorning"));
  40. AddMappedItemStat(ITEM_STAT_AGGRESSION, std::string("aggression"));
  41. AddMappedItemStat(ITEM_STAT_ARTIFICING, std::string("artificing"));
  42. AddMappedItemStat(ITEM_STAT_ARTISTRY, std::string("artistry"));
  43. AddMappedItemStat(ITEM_STAT_CHEMISTRY, std::string("chemistry"));
  44. AddMappedItemStat(ITEM_STAT_CRUSHING, std::string("crushing"));
  45. AddMappedItemStat(ITEM_STAT_DEFENSE, std::string("defense"));
  46. AddMappedItemStat(ITEM_STAT_DEFLECTION, std::string("deflection"));
  47. AddMappedItemStat(ITEM_STAT_DISRUPTION, std::string("disruption"));
  48. AddMappedItemStat(ITEM_STAT_FISHING, std::string("fishing"));
  49. AddMappedItemStat(ITEM_STAT_FLETCHING, std::string("fletching"));
  50. AddMappedItemStat(ITEM_STAT_FOCUS, std::string("focus"));
  51. AddMappedItemStat(ITEM_STAT_FORESTING, std::string("foresting"));
  52. AddMappedItemStat(ITEM_STAT_GATHERING, std::string("gathering"));
  53. AddMappedItemStat(ITEM_STAT_METAL_SHAPING, std::string("metal shaping"));
  54. AddMappedItemStat(ITEM_STAT_METALWORKING, std::string("metalworking"));
  55. AddMappedItemStat(ITEM_STAT_MINING, std::string("mining"));
  56. AddMappedItemStat(ITEM_STAT_MINISTRATION, std::string("ministration"));
  57. AddMappedItemStat(ITEM_STAT_ORDINATION, std::string("ordination"));
  58. AddMappedItemStat(ITEM_STAT_ADORNING, std::string("adorning"));
  59. AddMappedItemStat(ITEM_STAT_PARRY, std::string("parry"));
  60. AddMappedItemStat(ITEM_STAT_PIERCING, std::string("piercing"));
  61. AddMappedItemStat(ITEM_STAT_RANGED, std::string("ranged"));
  62. AddMappedItemStat(ITEM_STAT_SAFE_FALL, std::string("safe fall"));
  63. AddMappedItemStat(ITEM_STAT_SCRIBING, std::string("scribing"));
  64. AddMappedItemStat(ITEM_STAT_SCULPTING, std::string("sculpting"));
  65. AddMappedItemStat(ITEM_STAT_SLASHING, std::string("slashing"));
  66. AddMappedItemStat(ITEM_STAT_SUBJUGATION, std::string("subjugation"));
  67. AddMappedItemStat(ITEM_STAT_SWIMMING, std::string("swimming"));
  68. AddMappedItemStat(ITEM_STAT_TAILORING, std::string("tailoring"));
  69. AddMappedItemStat(ITEM_STAT_TINKERING, std::string("tinkering"));
  70. AddMappedItemStat(ITEM_STAT_TRANSMUTING, std::string("transmuting"));
  71. AddMappedItemStat(ITEM_STAT_TRAPPING, std::string("trapping"));
  72. AddMappedItemStat(ITEM_STAT_WEAPON_SKILLS, std::string("weapon skills"));
  73. }
  74. void MasterItemList::AddMappedItemStat(int32 id, std::string lower_case_name)
  75. {
  76. mappedItemStatsStrings[lower_case_name] = id;
  77. mappedItemStatTypeIDs[id] = lower_case_name;
  78. }
  79. MasterItemList::~MasterItemList(){
  80. RemoveAll();
  81. }
  82. vector<Item*>* MasterItemList::GetItems(string name, int64 itype, int32 ltype, int32 btype, int64 minprice, int64 maxprice, int8 minskill, int8 maxskill, string seller, string adornment, int8 mintier, int8 maxtier, int16 minlevel, int16 maxlevel, sint8 itemclass){
  83. vector<Item*>* ret = new vector<Item*>;
  84. map<int32,Item*>::iterator iter;
  85. Item* item = 0;
  86. const char* chkname = 0;
  87. //const char* chkseller = 0;
  88. //const char* chkadornment = 0;
  89. if(name.length() > 0)
  90. chkname = name.c_str();
  91. //if(seller.length() > 0)
  92. // chkseller = seller.c_str();
  93. //if(adornment.length() > 0)
  94. // chkadornment = adornment.c_str();
  95. LogWrite(ITEM__WARNING, 0, "Item", "Get Items: %s (itype: %llu, ltype: %u, btype: %u, minskill: %u, maxskill: %u, mintier: %u, maxtier: %u, minlevel: %u, maxlevel: %u itemclass %i)", name.c_str(), itype, ltype, btype, minskill, maxskill, mintier, maxtier, minlevel, maxlevel, itemclass);
  96. bool should_add = true;
  97. for(iter = items.begin();iter != items.end(); iter++){
  98. item = iter->second;
  99. if(item){
  100. if(itype != ITEM_BROKER_TYPE_ANY && itype != ITEM_BROKER_TYPE_ANY64BIT){
  101. should_add = false;
  102. switch(itype){
  103. case ITEM_BROKER_TYPE_ADORNMENT:{
  104. if(item->IsAdornment())
  105. should_add = true;
  106. break;
  107. }
  108. case ITEM_BROKER_TYPE_AMMO:{
  109. if(item->IsAmmo())
  110. should_add = true;
  111. break;
  112. }
  113. case ITEM_BROKER_TYPE_ATTUNEABLE:{
  114. if(item->CheckFlag(ATTUNEABLE))
  115. should_add = true;
  116. break;
  117. }
  118. case ITEM_BROKER_TYPE_BAG:{
  119. if(item->IsBag())
  120. should_add = true;
  121. break;
  122. }
  123. case ITEM_BROKER_TYPE_BAUBLE:{
  124. if(item->IsBauble())
  125. should_add = true;
  126. break;
  127. }
  128. case ITEM_BROKER_TYPE_BOOK:{
  129. if(item->IsBook())
  130. should_add = true;
  131. break;
  132. }
  133. case ITEM_BROKER_TYPE_CHAINARMOR:{
  134. if(item->IsChainArmor())
  135. should_add = true;
  136. break;
  137. }
  138. case ITEM_BROKER_TYPE_CLOAK:{
  139. if(item->IsCloak())
  140. should_add = true;
  141. break;
  142. }
  143. case ITEM_BROKER_TYPE_CLOTHARMOR:{
  144. if(item->IsClothArmor())
  145. should_add = true;
  146. break;
  147. }
  148. case ITEM_BROKER_TYPE_COLLECTABLE:{
  149. if(item->IsCollectable())
  150. should_add = true;
  151. break;
  152. }
  153. case ITEM_BROKER_TYPE_CRUSHWEAPON:{
  154. if(item->IsCrushWeapon() && (item->weapon_info->wield_type == ITEM_WIELD_TYPE_DUAL || item->weapon_info->wield_type == ITEM_WIELD_TYPE_SINGLE))
  155. should_add = true;
  156. break;
  157. }
  158. case ITEM_BROKER_TYPE_DRINK:{
  159. if(item->IsFoodDrink())
  160. should_add = true;
  161. break;
  162. }
  163. case ITEM_BROKER_TYPE_FOOD:{
  164. if(item->IsFoodFood())
  165. should_add = true;
  166. break;
  167. }
  168. case ITEM_BROKER_TYPE_HOUSEITEM:{
  169. if(item->IsHouseItem())
  170. should_add = true;
  171. break;
  172. }
  173. case ITEM_BROKER_TYPE_JEWELRY:{
  174. if(item->IsJewelry())
  175. should_add = true;
  176. break;
  177. }
  178. case ITEM_BROKER_TYPE_LEATHERARMOR:{
  179. if(item->IsLeatherArmor())
  180. should_add = true;
  181. break;
  182. }
  183. case ITEM_BROKER_TYPE_LORE:{
  184. if(item->CheckFlag(LORE))
  185. should_add = true;
  186. break;
  187. }
  188. case ITEM_BROKER_TYPE_MISC:{
  189. if(item->IsMisc())
  190. should_add = true;
  191. break;
  192. }
  193. case ITEM_BROKER_TYPE_PIERCEWEAPON:{
  194. if(item->IsPierceWeapon() && (item->weapon_info->wield_type == ITEM_WIELD_TYPE_DUAL || item->weapon_info->wield_type == ITEM_WIELD_TYPE_SINGLE))
  195. should_add = true;
  196. break;
  197. }
  198. case ITEM_BROKER_TYPE_PLATEARMOR:{
  199. if(item->IsPlateArmor())
  200. should_add = true;
  201. break;
  202. }
  203. case ITEM_BROKER_TYPE_POISON:{
  204. if(item->IsPoison())
  205. should_add = true;
  206. break;
  207. }
  208. case ITEM_BROKER_TYPE_POTION:{
  209. if(item->IsPotion())
  210. should_add = true;
  211. break;
  212. }
  213. case ITEM_BROKER_TYPE_RECIPEBOOK:{
  214. if(item->IsRecipeBook())
  215. should_add = true;
  216. break;
  217. }
  218. case ITEM_BROKER_TYPE_SALESDISPLAY:{
  219. if(item->IsSalesDisplay())
  220. should_add = true;
  221. break;
  222. }
  223. case ITEM_BROKER_TYPE_SHIELD:{
  224. if(item->IsShield())
  225. should_add = true;
  226. break;
  227. }
  228. case ITEM_BROKER_TYPE_SLASHWEAPON:{
  229. if(item->IsSlashWeapon() && (item->weapon_info->wield_type == ITEM_WIELD_TYPE_DUAL || item->weapon_info->wield_type == ITEM_WIELD_TYPE_SINGLE))
  230. should_add = true;
  231. break;
  232. }
  233. case ITEM_BROKER_TYPE_SPELLSCROLL:{
  234. if(item->IsSpellScroll())
  235. should_add = true;
  236. break;
  237. }
  238. case ITEM_BROKER_TYPE_TINKERED:{
  239. if(item->IsTinkered())
  240. should_add = true;
  241. break;
  242. }
  243. case ITEM_BROKER_TYPE_TRADESKILL:{
  244. if(item->IsTradeskill())
  245. should_add = true;
  246. break;
  247. }
  248. case ITEM_BROKER_TYPE_2H_CRUSH:{
  249. should_add = item->IsWeapon() && item->weapon_info->wield_type == ITEM_WIELD_TYPE_TWO_HAND && item->generic_info.skill_req1 == SKILL_ID_STAFF;
  250. break;
  251. }
  252. case ITEM_BROKER_TYPE_2H_PIERCE:{
  253. should_add = item->IsWeapon() && item->weapon_info->wield_type == ITEM_WIELD_TYPE_TWO_HAND && item->generic_info.skill_req1 == SKILL_ID_GREATSPEAR;
  254. break;
  255. }
  256. case ITEM_BROKER_TYPE_2H_SLASH:{
  257. should_add = item->IsWeapon() && item->weapon_info->wield_type == ITEM_WIELD_TYPE_TWO_HAND && item->generic_info.skill_req1 == SKILL_ID_GREATSWORD;
  258. break;
  259. }
  260. }
  261. if(!should_add)
  262. continue;
  263. }
  264. if(ltype != ITEM_BROKER_SLOT_ANY){
  265. should_add = false;
  266. switch(ltype){
  267. case ITEM_BROKER_SLOT_AMMO:{
  268. should_add = item->HasSlot(EQ2_AMMO_SLOT);
  269. break;
  270. }
  271. case ITEM_BROKER_SLOT_CHARM:{
  272. should_add = item->HasSlot(EQ2_CHARM_SLOT_1, EQ2_CHARM_SLOT_2);
  273. break;
  274. }
  275. case ITEM_BROKER_SLOT_CHEST:{
  276. should_add = item->HasSlot(EQ2_CHEST_SLOT);
  277. break;
  278. }
  279. case ITEM_BROKER_SLOT_CLOAK:{
  280. should_add = item->HasSlot(EQ2_CLOAK_SLOT);
  281. break;
  282. }
  283. case ITEM_BROKER_SLOT_DRINK:{
  284. should_add = item->HasSlot(EQ2_DRINK_SLOT);
  285. break;
  286. }
  287. case ITEM_BROKER_SLOT_EARS:{
  288. should_add = item->HasSlot(EQ2_EARS_SLOT_1, EQ2_EARS_SLOT_2);
  289. break;
  290. }
  291. case ITEM_BROKER_SLOT_FEET:{
  292. should_add = item->HasSlot(EQ2_FEET_SLOT);
  293. break;
  294. }
  295. case ITEM_BROKER_SLOT_FOOD:{
  296. should_add = item->HasSlot(EQ2_FOOD_SLOT);
  297. break;
  298. }
  299. case ITEM_BROKER_SLOT_FOREARMS:{
  300. should_add = item->HasSlot(EQ2_FOREARMS_SLOT);
  301. break;
  302. }
  303. case ITEM_BROKER_SLOT_HANDS:{
  304. should_add = item->HasSlot(EQ2_HANDS_SLOT);
  305. break;
  306. }
  307. case ITEM_BROKER_SLOT_HEAD:{
  308. should_add = item->HasSlot(EQ2_HEAD_SLOT);
  309. break;
  310. }
  311. case ITEM_BROKER_SLOT_LEGS:{
  312. should_add = item->HasSlot(EQ2_LEGS_SLOT);
  313. break;
  314. }
  315. case ITEM_BROKER_SLOT_NECK:{
  316. should_add = item->HasSlot(EQ2_NECK_SLOT);
  317. break;
  318. }
  319. case ITEM_BROKER_SLOT_PRIMARY:{
  320. should_add = item->HasSlot(EQ2_PRIMARY_SLOT);
  321. break;
  322. }
  323. case ITEM_BROKER_SLOT_PRIMARY_2H:{
  324. should_add = item->HasSlot(EQ2_PRIMARY_SLOT) && item->IsWeapon() && item->weapon_info->wield_type == ITEM_WIELD_TYPE_TWO_HAND;
  325. break;
  326. }
  327. case ITEM_BROKER_SLOT_RANGE_WEAPON:{
  328. should_add = item->HasSlot(EQ2_RANGE_SLOT);
  329. break;
  330. }
  331. case ITEM_BROKER_SLOT_RING:{
  332. should_add = item->HasSlot(EQ2_LRING_SLOT, EQ2_RRING_SLOT);
  333. break;
  334. }
  335. case ITEM_BROKER_SLOT_SECONDARY:{
  336. should_add = item->HasSlot(EQ2_SECONDARY_SLOT);
  337. break;
  338. }
  339. case ITEM_BROKER_SLOT_SHOULDERS:{
  340. should_add = item->HasSlot(EQ2_SHOULDERS_SLOT);
  341. break;
  342. }
  343. case ITEM_BROKER_SLOT_WAIST:{
  344. should_add = item->HasSlot(EQ2_WAIST_SLOT);
  345. break;
  346. }
  347. case ITEM_BROKER_SLOT_WRIST:{
  348. should_add = item->HasSlot(EQ2_LWRIST_SLOT, EQ2_RWRIST_SLOT);
  349. break;
  350. }
  351. }
  352. if(!should_add)
  353. continue;
  354. }
  355. if(btype != 0xFFFFFFFF){
  356. vector<ItemStat*>::iterator itr;
  357. bool stat_found = false;
  358. should_add = false;
  359. switch(btype){
  360. case ITEM_BROKER_STAT_TYPE_NONE:{
  361. if (item->item_stats.size() == 0)
  362. should_add = true;
  363. break;
  364. }
  365. case ITEM_BROKER_STAT_TYPE_DEF:{
  366. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  367. if ((*itr)->stat_type_combined == ITEM_STAT_DEFLECTIONCHANCE) {
  368. stat_found = true;
  369. break;
  370. }
  371. }
  372. if (stat_found)
  373. should_add = true;
  374. break;
  375. }
  376. case ITEM_BROKER_STAT_TYPE_STR:{
  377. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  378. if ((*itr)->stat_type_combined == ITEM_STAT_STR) {
  379. stat_found = true;
  380. break;
  381. }
  382. }
  383. if (stat_found)
  384. should_add = true;
  385. break;
  386. }
  387. case ITEM_BROKER_STAT_TYPE_STA:{
  388. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  389. if ((*itr)->stat_type_combined == ITEM_STAT_STA) {
  390. stat_found = true;
  391. break;
  392. }
  393. }
  394. if (stat_found)
  395. should_add = true;
  396. break;
  397. }
  398. case ITEM_BROKER_STAT_TYPE_AGI:{
  399. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  400. if ((*itr)->stat_type_combined == ITEM_STAT_AGI) {
  401. stat_found = true;
  402. break;
  403. }
  404. }
  405. if (stat_found)
  406. should_add = true;
  407. break;
  408. }
  409. case ITEM_BROKER_STAT_TYPE_WIS:{
  410. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  411. if ((*itr)->stat_type_combined == ITEM_STAT_WIS) {
  412. stat_found = true;
  413. break;
  414. }
  415. }
  416. if (stat_found)
  417. should_add = true;
  418. break;
  419. }
  420. case ITEM_BROKER_STAT_TYPE_INT:{
  421. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  422. if ((*itr)->stat_type_combined == ITEM_STAT_INT) {
  423. stat_found = true;
  424. break;
  425. }
  426. }
  427. if (stat_found)
  428. should_add = true;
  429. break;
  430. }
  431. case ITEM_BROKER_STAT_TYPE_HEALTH:{
  432. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  433. if ((*itr)->stat_type_combined == ITEM_STAT_STR) {
  434. stat_found = true;
  435. break;
  436. }
  437. }
  438. if (stat_found)
  439. should_add = true;
  440. break;
  441. }
  442. case ITEM_BROKER_STAT_TYPE_POWER:{
  443. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  444. if ((*itr)->stat_type_combined == ITEM_STAT_STR) {
  445. stat_found = true;
  446. break;
  447. }
  448. }
  449. if (stat_found)
  450. should_add = true;
  451. break;
  452. }
  453. case ITEM_BROKER_STAT_TYPE_HEAT:{
  454. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  455. if ((*itr)->stat_type_combined == ITEM_STAT_VS_HEAT) {
  456. stat_found = true;
  457. break;
  458. }
  459. }
  460. if (stat_found)
  461. should_add = true;
  462. break;
  463. }
  464. case ITEM_BROKER_STAT_TYPE_COLD:{
  465. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  466. if ((*itr)->stat_type_combined == ITEM_STAT_VS_COLD) {
  467. stat_found = true;
  468. break;
  469. }
  470. }
  471. if (stat_found)
  472. should_add = true;
  473. break;
  474. }
  475. case ITEM_BROKER_STAT_TYPE_MAGIC:{
  476. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  477. if ((*itr)->stat_type_combined == ITEM_STAT_VS_MAGIC) {
  478. stat_found = true;
  479. break;
  480. }
  481. }
  482. if (stat_found)
  483. should_add = true;
  484. break;
  485. }
  486. case ITEM_BROKER_STAT_TYPE_MENTAL:{
  487. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  488. if ((*itr)->stat_type_combined == ITEM_STAT_VS_MENTAL) {
  489. stat_found = true;
  490. break;
  491. }
  492. }
  493. if (stat_found)
  494. should_add = true;
  495. break;
  496. }
  497. case ITEM_BROKER_STAT_TYPE_DIVINE:{
  498. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  499. if ((*itr)->stat_type_combined == ITEM_STAT_VS_DIVINE) {
  500. stat_found = true;
  501. break;
  502. }
  503. }
  504. if (stat_found)
  505. should_add = true;
  506. break;
  507. }
  508. case ITEM_BROKER_STAT_TYPE_POISON:{
  509. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  510. if ((*itr)->stat_type_combined == ITEM_STAT_VS_POISON) {
  511. stat_found = true;
  512. break;
  513. }
  514. }
  515. if (stat_found)
  516. should_add = true;
  517. break;
  518. }
  519. case ITEM_BROKER_STAT_TYPE_DISEASE:{
  520. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  521. if ((*itr)->stat_type_combined == ITEM_STAT_VS_DISEASE) {
  522. stat_found = true;
  523. break;
  524. }
  525. }
  526. if (stat_found)
  527. should_add = true;
  528. break;
  529. }
  530. case ITEM_BROKER_STAT_TYPE_CRUSH:{
  531. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  532. if ((*itr)->stat_type_combined == ITEM_STAT_DMG_CRUSH) {
  533. stat_found = true;
  534. break;
  535. }
  536. }
  537. if (stat_found)
  538. should_add = true;
  539. break;
  540. }
  541. case ITEM_BROKER_STAT_TYPE_SLASH:{
  542. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  543. if ((*itr)->stat_type_combined == ITEM_STAT_DMG_SLASH) {
  544. stat_found = true;
  545. break;
  546. }
  547. }
  548. if (stat_found)
  549. should_add = true;
  550. break;
  551. }
  552. case ITEM_BROKER_STAT_TYPE_PIERCE:{
  553. for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  554. if ((*itr)->stat_type_combined == ITEM_STAT_DMG_PIERCE) {
  555. stat_found = true;
  556. break;
  557. }
  558. }
  559. if (stat_found)
  560. should_add = true;
  561. break;
  562. }
  563. case ITEM_BROKER_STAT_TYPE_CRITICAL: {
  564. /*for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  565. if ((*itr)->stat_type_combined == ITEM_STAT_STR) {
  566. stat_found = true;
  567. break;
  568. }
  569. }
  570. if (stat_found)
  571. should_add = true;*/
  572. LogWrite(ITEM__DEBUG, 0, "Item", "Scatman debugging :). This needs to be updated when fully support the new expansion");
  573. break;
  574. }
  575. case ITEM_BROKER_STAT_TYPE_DBL_ATTACK:{
  576. /*for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  577. if ((*itr)->stat_type_combined == ITEM_STAT_STR) {
  578. stat_found = true;
  579. break;
  580. }
  581. }
  582. if (stat_found)
  583. should_add = true;*/
  584. LogWrite(ITEM__DEBUG, 0, "Item", "Scatman debugging :). This needs to be updated when fully support the new expansion");
  585. break;
  586. }
  587. case ITEM_BROKER_STAT_TYPE_ABILITY_MOD:{
  588. /*for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  589. if ((*itr)->stat_type_combined == ITEM_STAT_STR) {
  590. stat_found = true;
  591. break;
  592. }
  593. }
  594. if (stat_found)
  595. should_add = true;*/
  596. LogWrite(ITEM__DEBUG, 0, "Item", "Scatman debugging :). This needs to be updated when fully support the new expansion");
  597. break;
  598. }
  599. case ITEM_BROKER_STAT_TYPE_POTENCY:{
  600. /*for (itr = item->item_stats.begin(); itr != item->item_stats.end() && !stat_found; itr++) {
  601. if ((*itr)->stat_type_combined == ITEM_STAT_STR) {
  602. stat_found = true;
  603. break;
  604. }
  605. }
  606. if (stat_found)
  607. should_add = true;*/
  608. LogWrite(ITEM__DEBUG, 0, "Item", "Scatman debugging :). This needs to be updated when fully support the new expansion");
  609. break;
  610. }
  611. default: {
  612. LogWrite(ITEM__DEBUG, 0, "Item", "Unknown item broker stat type %u", btype);
  613. LogWrite(ITEM__DEBUG, 0, "Item", "If you have a client before the new expansion this may be the reason. Please be patient while we update items to support the new client.", btype);
  614. break;
  615. }
  616. }
  617. if (!should_add)
  618. continue;
  619. }
  620. if(itemclass > 0){
  621. int64 tmpVal = ((int64)2) << (itemclass-1);
  622. should_add = (item->generic_info.adventure_classes & tmpVal);
  623. if(!should_add && !(item->generic_info.tradeskill_classes & tmpVal))
  624. continue;
  625. }
  626. if(chkname && item->lowername.find(chkname) >= 0xFFFFFFFF)
  627. continue;
  628. if(item->generic_info.adventure_default_level == 0 && item->generic_info.tradeskill_default_level == 0 && minlevel > 0 && maxlevel > 0){
  629. if(item->details.recommended_level < minlevel)
  630. continue;
  631. if(item->details.recommended_level > maxlevel)
  632. continue;
  633. }
  634. else{
  635. if(minlevel > 0 && ((item->generic_info.adventure_default_level == 0 && item->generic_info.tradeskill_default_level == 0) || (item->generic_info.adventure_default_level > 0 && item->generic_info.adventure_default_level < minlevel) || (item->generic_info.tradeskill_default_level > 0 && item->generic_info.tradeskill_default_level < minlevel)))
  636. continue;
  637. if(maxlevel > 0 && ((item->generic_info.adventure_default_level > 0 && item->generic_info.adventure_default_level > maxlevel) || (item->generic_info.tradeskill_default_level > 0 && item->generic_info.tradeskill_default_level > maxlevel)))
  638. continue;
  639. }
  640. // mintier of 1 is 'ANY'
  641. if(mintier > 1 && item->details.tier < mintier)
  642. continue;
  643. if(maxtier > 0 && item->details.tier > maxtier)
  644. continue;
  645. /* these skill values are not fields provided in the UI beyond CLASSIC
  646. ** They are also not in line with skill_min, they provide a scale of 0-6, obselete is 0, 6 is red (cannot be used)
  647. if(minskill > 0 && item->generic_info.skill_min < minskill)
  648. continue;
  649. if(maxskill > 0 && item->generic_info.skill_min > maxskill)
  650. continue;
  651. */
  652. ret->push_back(item);
  653. }
  654. }
  655. return ret;
  656. }
  657. vector<Item*>* MasterItemList::GetItems(map<string, string> criteria){
  658. string name, seller, adornment;
  659. int64 itype = 0xFFFFFFFFFFFFFFFF;
  660. int32 ltype = 0xFFFFFFFF;
  661. int32 btype = 0xFFFFFFFF;
  662. int64 minprice = 0;
  663. int64 maxprice = 0;
  664. int8 minskill = 0;
  665. int8 maxskill = 0;
  666. int8 mintier = 0;
  667. int8 maxtier = 0;
  668. int16 minlevel = 0;
  669. int16 maxlevel = 0;
  670. sint8 itemclass = 0;
  671. int32 itemID = 0;
  672. if (criteria.count("ITEM") > 0)
  673. {
  674. if (IsNumber(criteria["ITEM"].c_str()))
  675. {
  676. itemID = atoul(criteria["ITEM"].c_str());
  677. Item* itm = GetItem(itemID);
  678. vector<Item*>* ret = new vector<Item*>;
  679. if (itm)
  680. ret->push_back(itm);
  681. return ret;
  682. }
  683. else
  684. name = criteria["ITEM"];
  685. }
  686. if(criteria.count("MINSKILL") > 0)
  687. minskill = (int8)ParseIntValue(criteria["MINSKILL"]);
  688. if(criteria.count("MAXSKILL") > 0)
  689. maxskill = (int8)ParseIntValue(criteria["MAXSKILL"]);
  690. if(criteria.count("MINTIER") > 0)
  691. mintier = (int8)ParseIntValue(criteria["MINTIER"]);
  692. if(criteria.count("MAXTIER") > 0)
  693. maxtier = (int8)ParseIntValue(criteria["MAXTIER"]);
  694. if(criteria.count("MINLEVEL") > 0)
  695. minlevel = (int16)ParseIntValue(criteria["MINLEVEL"]);
  696. if(criteria.count("MAXLEVEL") > 0)
  697. maxlevel = (int16)ParseIntValue(criteria["MAXLEVEL"]);
  698. if(criteria.count("ITYPE") > 0)
  699. itype = ParseLongLongValue(criteria["ITYPE"]);
  700. if(criteria.count("LTYPE") > 0)
  701. ltype = ParseIntValue(criteria["LTYPE"]);
  702. if(criteria.count("BTYPE") > 0)
  703. btype = ParseIntValue(criteria["BTYPE"]);
  704. if(criteria.count("SKILLNAME") > 0)
  705. itemclass = world.GetClassID(criteria["SKILLNAME"].c_str());
  706. return GetItems(name, itype, ltype, btype, minprice, maxprice, minskill, maxskill, seller, adornment, mintier, maxtier, minlevel, maxlevel, itemclass);
  707. }
  708. void MasterItemList::ResetUniqueID(int32 new_id){
  709. next_unique_id = new_id;
  710. }
  711. int32 MasterItemList::NextUniqueID(){
  712. next_unique_id++;
  713. if(next_unique_id >= 0xFFFFFFF0)
  714. next_unique_id = 1;
  715. return next_unique_id;
  716. }
  717. bool MasterItemList::IsBag(int32 item_id){
  718. Item* item = GetItem(item_id);
  719. if(item && item->details.num_slots > 0)
  720. return true;
  721. else
  722. return false;
  723. }
  724. Item* MasterItemList::GetItem(int32 id){
  725. Item* item = 0;
  726. if(items.count(id) > 0)
  727. item = items[id];
  728. return item;
  729. }
  730. Item* MasterItemList::GetItemByName(const char* name) {
  731. Item* item = 0;
  732. map<int32, Item*>::iterator itr;
  733. for (itr = items.begin(); itr != items.end(); itr++) {
  734. Item* current_item = itr->second;
  735. if (::ToLower(string(current_item->name.c_str())) == ::ToLower(string(name))) {
  736. item = current_item;
  737. break;
  738. }
  739. }
  740. return item;
  741. }
  742. ItemStatsValues* MasterItemList::CalculateItemBonuses(int32 item_id, Entity* entity){
  743. return CalculateItemBonuses(items[item_id], entity);
  744. }
  745. ItemStatsValues* MasterItemList::CalculateItemBonuses(Item* item, Entity* entity, ItemStatsValues* values){
  746. if(item){
  747. if(!values){
  748. values = new ItemStatsValues;
  749. memset(values, 0, sizeof(ItemStatsValues));
  750. }
  751. for(int32 i=0;i<item->item_stats.size();i++){
  752. ItemStat* stat = item->item_stats[i];
  753. int multiplier = 100;
  754. if(stat->stat_subtype > 99)
  755. multiplier = 1000;
  756. int32 id = 0;
  757. sint32 value = stat->value;
  758. if(stat->stat_type != 1)
  759. id = stat->stat_type*multiplier + stat->stat_subtype;
  760. else
  761. {
  762. int32 tmp_id = master_item_list.GetItemStatIDByName(stat->stat_name);
  763. if(tmp_id != 0xFFFFFFFF)
  764. {
  765. id = tmp_id;
  766. if(!value)
  767. value = stat->stat_subtype;
  768. }
  769. else
  770. id = stat->stat_type*multiplier + stat->stat_subtype;
  771. }
  772. world.AddBonuses(item, values, id, stat->value, entity);
  773. }
  774. return values;
  775. }
  776. return 0;
  777. }
  778. void MasterItemList::RemoveAll(){
  779. map<int32,Item*>::iterator iter;
  780. for(iter = items.begin();iter != items.end(); iter++){
  781. safe_delete(iter->second);
  782. }
  783. items.clear();
  784. if(lua_interface)
  785. lua_interface->DestroyItemScripts();
  786. }
  787. void MasterItemList::AddItem(Item* item){
  788. items[item->details.item_id] = item;
  789. }
  790. Item::Item(){
  791. item_script = "";
  792. sell_price = 0;
  793. sell_status = 0;
  794. max_sell_value = 0;
  795. save_needed = true;
  796. needs_deletion = false;
  797. weapon_info = 0;
  798. ranged_info = 0;
  799. adornment_info = 0;
  800. bag_info = 0;
  801. food_info = 0;
  802. bauble_info = 0;
  803. thrown_info = 0;
  804. skill_info = 0;
  805. recipebook_info = 0;
  806. itemset_info = 0;
  807. armor_info = 0;
  808. book_info = 0;
  809. book_info_pages = 0;
  810. houseitem_info = 0;
  811. housecontainer_info = 0;
  812. memset(&details, 0, sizeof(ItemCore));
  813. memset(&generic_info, 0, sizeof(Generic_Info));
  814. generic_info.condition = 100;
  815. no_buy_back = false;
  816. no_sale = false;
  817. created = std::time(nullptr);
  818. effect_type = NO_EFFECT_TYPE;
  819. }
  820. Item::Item(Item* in_item){
  821. needs_deletion = false;
  822. sell_price = in_item->sell_price;
  823. sell_status = in_item->sell_status;
  824. max_sell_value = in_item->max_sell_value;
  825. save_needed = true;
  826. SetItem(in_item);
  827. details.unique_id = master_item_list.NextUniqueID();
  828. if (IsBag())
  829. details.bag_id = details.unique_id;
  830. generic_info.condition = 100;
  831. spell_id = in_item->spell_id;
  832. spell_tier = in_item->spell_tier;
  833. no_buy_back = in_item->no_buy_back;
  834. no_sale = in_item->no_sale;
  835. created = in_item->created;
  836. grouped_char_ids.insert(in_item->grouped_char_ids.begin(), in_item->grouped_char_ids.end());
  837. effect_type = in_item->effect_type;
  838. }
  839. Item::~Item(){
  840. for(int32 i=0;i<item_stats.size();i++)
  841. safe_delete(item_stats[i]);
  842. for(int32 i=0;i<item_string_stats.size();i++)
  843. safe_delete(item_string_stats[i]);
  844. for(int32 i=0;i<item_level_overrides.size();i++)
  845. safe_delete(item_level_overrides[i]);
  846. for(int32 i=0;i<item_effects.size();i++)
  847. safe_delete(item_effects[i]);
  848. for (int32 i = 0; i < book_pages.size(); i++)
  849. safe_delete(book_pages[i]);
  850. safe_delete(weapon_info);
  851. safe_delete(ranged_info);
  852. safe_delete(adornment_info);
  853. safe_delete(bag_info);
  854. safe_delete(food_info);
  855. safe_delete(bauble_info);
  856. safe_delete(thrown_info);
  857. safe_delete(armor_info);
  858. safe_delete(skill_info);
  859. safe_delete(recipebook_info);
  860. safe_delete(itemset_info);
  861. safe_delete(book_info);
  862. safe_delete(houseitem_info);
  863. safe_delete(housecontainer_info);
  864. DeleteItemSets();
  865. }
  866. void Item::SetItem(Item* old_item){
  867. if(old_item->GetItemScript())
  868. SetItemScript(old_item->GetItemScript());
  869. name = old_item->name;
  870. lowername = old_item->lowername;
  871. description = old_item->description;
  872. memcpy(&generic_info, &old_item->generic_info, sizeof(Generic_Info));
  873. weapon_info = 0;
  874. ranged_info = 0;
  875. adornment_info = 0;
  876. adorn0 = 0;
  877. adorn1 = 0;
  878. adorn2 = 0;
  879. bag_info = 0;
  880. food_info = 0;
  881. bauble_info = 0;
  882. thrown_info = 0;
  883. skill_info = 0;
  884. recipebook_info = 0;
  885. itemset_info = 0;
  886. armor_info = 0;
  887. book_info = 0;
  888. book_info_pages = 0;
  889. houseitem_info = 0;
  890. housecontainer_info = 0;
  891. stack_count = old_item->stack_count;
  892. generic_info.skill_req1 = old_item->generic_info.skill_req1;
  893. generic_info.skill_req2 = old_item->generic_info.skill_req2;
  894. memcpy(&details, &old_item->details, sizeof(ItemCore));
  895. weapon_type = old_item->GetWeaponType();
  896. switch(old_item->generic_info.item_type){
  897. case ITEM_TYPE_WEAPON:{
  898. weapon_info = new Weapon_Info;
  899. memcpy(weapon_info, old_item->weapon_info, sizeof(Weapon_Info));
  900. break;
  901. }
  902. case ITEM_TYPE_RANGED:{
  903. ranged_info = new Ranged_Info;
  904. memcpy(ranged_info, old_item->ranged_info, sizeof(Ranged_Info));
  905. break;
  906. }
  907. case ITEM_TYPE_SHIELD:
  908. case ITEM_TYPE_ARMOR:{
  909. armor_info = new Armor_Info;
  910. memcpy(armor_info, old_item->armor_info, sizeof(Armor_Info));
  911. break;
  912. }
  913. case ITEM_TYPE_BAG:{
  914. bag_info = new Bag_Info;
  915. memcpy(bag_info, old_item->bag_info, sizeof(Bag_Info));
  916. break;
  917. }
  918. case ITEM_TYPE_FOOD:{
  919. food_info = new Food_Info;
  920. memcpy(food_info, old_item->food_info, sizeof(Food_Info));
  921. break;
  922. }
  923. case ITEM_TYPE_BAUBLE:{
  924. bauble_info = new Bauble_Info;
  925. memcpy(bauble_info, old_item->bauble_info, sizeof(Bauble_Info));
  926. break;
  927. }
  928. case ITEM_TYPE_SKILL:{
  929. skill_info = new Skill_Info;
  930. memcpy(skill_info, old_item->skill_info, sizeof(Skill_Info));
  931. break;
  932. }
  933. case ITEM_TYPE_THROWN:{
  934. thrown_info = new Thrown_Info;
  935. memcpy(thrown_info, old_item->thrown_info, sizeof(Thrown_Info));
  936. break;
  937. }
  938. case ITEM_TYPE_BOOK:{
  939. book_info = new Book_Info;
  940. book_info->language = old_item->book_info->language;
  941. book_info->author.data = old_item->book_info->author.data;
  942. book_info->author.size = old_item->book_info->author.size;
  943. book_info->title.data = old_item->book_info->title.data;
  944. book_info->title.size = old_item->book_info->title.size;
  945. break;
  946. }
  947. case ITEM_TYPE_HOUSE:{
  948. houseitem_info = new HouseItem_Info;
  949. memcpy(houseitem_info, old_item->houseitem_info, sizeof(HouseItem_Info));
  950. break;
  951. }
  952. case ITEM_TYPE_RECIPE:{
  953. // Recipe Book
  954. recipebook_info = new RecipeBook_Info;
  955. if (old_item->recipebook_info) {
  956. recipebook_info->uses = old_item->recipebook_info->uses;
  957. for (int32 i = 0; i < old_item->recipebook_info->recipes.size(); i++)
  958. recipebook_info->recipes.push_back(old_item->recipebook_info->recipes.at(i));
  959. }
  960. break;
  961. }
  962. case ITEM_TYPE_ADORNMENT:{
  963. adornment_info = new Adornment_Info;
  964. memcpy(adornment_info, old_item->adornment_info, sizeof(Adornment_Info));
  965. break;
  966. }
  967. case ITEM_TYPE_HOUSE_CONTAINER:{
  968. // House Containers
  969. housecontainer_info = new HouseContainer_Info;
  970. if (old_item->housecontainer_info) {
  971. housecontainer_info->broker_commission = old_item->housecontainer_info->broker_commission;
  972. housecontainer_info->fence_commission = old_item->housecontainer_info->fence_commission;
  973. housecontainer_info->allowed_types = old_item->housecontainer_info->allowed_types;
  974. housecontainer_info->num_slots = old_item->housecontainer_info->num_slots;
  975. }
  976. break;
  977. }
  978. }
  979. creator = old_item->creator;
  980. adornment = old_item->adornment;
  981. DeleteItemSets();
  982. for (int32 i = 0; i<old_item->item_sets.size(); i++){
  983. ItemSet* set = old_item->item_sets[i];
  984. if (set){
  985. ItemSet* set2 = new ItemSet;
  986. set2->item_id = set->item_id;
  987. set2->item_crc = set->item_crc;
  988. set2->item_icon = set->item_icon;
  989. set2->item_stack_size = set->item_stack_size;
  990. set2->item_list_color = set->item_list_color;
  991. item_sets.push_back(set2);
  992. }
  993. }
  994. item_stats.clear();
  995. for(int32 i=0;i<old_item->item_stats.size();i++){
  996. ItemStat* stat = old_item->item_stats[i];
  997. if(stat){
  998. ItemStat* stat2 = new ItemStat;
  999. stat2->stat_name = stat->stat_name;
  1000. stat2->stat_type = stat->stat_type;
  1001. stat2->stat_subtype = stat->stat_subtype;
  1002. stat2->value = stat->value;
  1003. stat2->stat_type_combined = stat->stat_type_combined;
  1004. item_stats.push_back(stat2);
  1005. }
  1006. }
  1007. item_string_stats.clear();
  1008. for(int32 i=0;i<old_item->item_string_stats.size();i++){
  1009. ItemStatString* stat = old_item->item_string_stats[i];
  1010. if(stat){
  1011. ItemStatString* stat2 = new ItemStatString;
  1012. stat2->stat_string.data = stat->stat_string.data;
  1013. stat2->stat_string.size = stat->stat_string.size;
  1014. item_string_stats.push_back(stat2);
  1015. }
  1016. }
  1017. item_level_overrides.clear();
  1018. for(int32 i=0;i<old_item->item_level_overrides.size();i++){
  1019. ItemLevelOverride* item_override = old_item->item_level_overrides[i];
  1020. if(item_override){
  1021. ItemLevelOverride* item_override2 = new ItemLevelOverride;
  1022. memcpy(item_override2, item_override, sizeof(ItemLevelOverride));
  1023. item_level_overrides.push_back(item_override2);
  1024. }
  1025. }
  1026. item_effects.clear();
  1027. for(int32 i=0;i<old_item->item_effects.size();i++){
  1028. ItemEffect* effect = old_item->item_effects[i];
  1029. if(effect){
  1030. ItemEffect* effect_2 = new ItemEffect;
  1031. effect_2->effect = effect->effect;
  1032. effect_2->percentage = effect->percentage;
  1033. effect_2->subbulletflag = effect->subbulletflag;
  1034. item_effects.push_back(effect_2);
  1035. }
  1036. }
  1037. book_pages.clear();
  1038. for (int32 i = 0; i < old_item->book_pages.size(); i++) {
  1039. BookPage* bookpage = old_item->book_pages[i];
  1040. if (bookpage) {
  1041. BookPage* bookpage_2 = new BookPage;
  1042. bookpage_2->page = bookpage->page;
  1043. bookpage_2->page_text.data = bookpage->page_text.data;
  1044. bookpage_2->page_text.size = bookpage->page_text.size;
  1045. bookpage_2->valign = bookpage->valign;
  1046. bookpage_2->halign = bookpage->halign;
  1047. book_pages.push_back(bookpage_2);
  1048. }
  1049. }
  1050. slot_data.clear();
  1051. slot_data = old_item->slot_data;
  1052. spell_id = old_item->spell_id;
  1053. spell_tier = old_item->spell_tier;
  1054. }
  1055. bool Item::CheckArchetypeAdvSubclass(int8 adventure_class, map<int8, int16>* adv_class_levels) {
  1056. if (adventure_class > FIGHTER && adventure_class < ANIMALIST) {
  1057. int8 check = adventure_class % 10;
  1058. if (check == 2 || check == 5 || check == 8) {
  1059. int64 adv_classes = 0;
  1060. int16 level = 0;
  1061. for (int i = adventure_class + 1; i < adventure_class + 3; i++) {
  1062. if (adv_class_levels) { //need to match levels
  1063. if (level == 0) {
  1064. if (adv_class_levels->count(i) > 0)
  1065. level = adv_class_levels->at(i);
  1066. else
  1067. return false;
  1068. }
  1069. else{
  1070. if (adv_class_levels->count(i) > 0 && adv_class_levels->at(i) != level)
  1071. return false;
  1072. }
  1073. }
  1074. else {
  1075. adv_classes = ((int64)2) << (i - 1);
  1076. if (!(generic_info.adventure_classes & adv_classes))
  1077. return false;
  1078. }
  1079. }
  1080. return true;
  1081. }
  1082. }
  1083. return false;
  1084. }
  1085. bool Item::CheckArchetypeAdvClass(int8 adventure_class, map<int8, int16>* adv_class_levels) {
  1086. if (adventure_class == 1 || adventure_class == 11 || adventure_class == 21 || adventure_class == 31) {
  1087. //if the class is an archetype class and the subclasses have access, then allow
  1088. if (CheckArchetypeAdvSubclass(adventure_class + 1, adv_class_levels) && CheckArchetypeAdvSubclass(adventure_class + 4, adv_class_levels) && CheckArchetypeAdvSubclass(adventure_class + 7, adv_class_levels)) {
  1089. if (adv_class_levels) {
  1090. int16 level = 0;
  1091. for (int i = adventure_class + 1; i <= adventure_class + 7; i += 3) {
  1092. if (adv_class_levels->count(i+1) == 0 || adv_class_levels->count(i + 2) == 0)
  1093. return false;
  1094. if(level == 0)
  1095. level = adv_class_levels->at(i+1);
  1096. if (adv_class_levels->at(i+1) != level) //already verified the classes, just need to verify the subclasses have the same levels
  1097. return false;
  1098. }
  1099. }
  1100. return true;
  1101. }
  1102. }
  1103. else if (CheckArchetypeAdvSubclass(adventure_class, adv_class_levels)) {//check archetype subclass
  1104. return true;
  1105. }
  1106. return false;
  1107. }
  1108. bool Item::CheckClass(int8 adventure_class, int8 tradeskill_class) {
  1109. int64 adv_classes = ((int64)2) << (adventure_class - 1);
  1110. int64 ts_classes = ((int64)2) << (tradeskill_class - 1);
  1111. if( ((generic_info.adventure_classes & adv_classes) || generic_info.adventure_classes == 0) && ((generic_info.tradeskill_classes & ts_classes) || generic_info.tradeskill_classes == 0) )
  1112. return true;
  1113. //check arechtype classes as last resort
  1114. return CheckArchetypeAdvClass(adventure_class);
  1115. }
  1116. bool Item::CheckLevel(int8 adventure_class, int8 tradeskill_class, int16 level) {
  1117. if ((level >= generic_info.adventure_default_level && adventure_class < 255) && (level >= generic_info.tradeskill_default_level && tradeskill_class < 255))
  1118. return true;
  1119. return false;
  1120. }
  1121. void Item::AddStat(ItemStat* in_stat){
  1122. item_stats.push_back(in_stat);
  1123. }
  1124. bool Item::HasStat(uint32 statID)
  1125. {
  1126. vector<ItemStat*>::iterator itr;
  1127. for (itr = item_stats.begin(); itr != item_stats.end(); itr++) {
  1128. if ((*itr)->stat_type_combined == statID) {
  1129. return true;
  1130. break;
  1131. }
  1132. }
  1133. return false;
  1134. }
  1135. void Item::DeleteItemSets()
  1136. {
  1137. for (int32 i = 0; i < item_sets.size(); i++){
  1138. ItemSet* set = item_sets[i];
  1139. safe_delete(set);
  1140. }
  1141. item_sets.clear();
  1142. }
  1143. void Item::AddSet(ItemSet* in_set){
  1144. item_sets.push_back(in_set);
  1145. }
  1146. void Item::AddStatString(ItemStatString* in_stat){
  1147. item_string_stats.push_back(in_stat);
  1148. }
  1149. bool Item::IsNormal(){
  1150. return generic_info.item_type == ITEM_TYPE_NORMAL;
  1151. }
  1152. bool Item::IsWeapon(){
  1153. return generic_info.item_type == ITEM_TYPE_WEAPON;
  1154. }
  1155. bool Item::IsArmor(){
  1156. return generic_info.item_type == ITEM_TYPE_ARMOR || generic_info.item_type == ITEM_TYPE_SHIELD;
  1157. }
  1158. bool Item::IsRanged(){
  1159. return generic_info.item_type == ITEM_TYPE_RANGED;
  1160. }
  1161. bool Item::IsBag(){
  1162. return generic_info.item_type == ITEM_TYPE_BAG;
  1163. }
  1164. bool Item::IsFood(){
  1165. return generic_info.item_type == ITEM_TYPE_FOOD;
  1166. }
  1167. bool Item::IsBauble(){
  1168. return generic_info.item_type == ITEM_TYPE_BAUBLE;
  1169. }
  1170. bool Item::IsSkill(){
  1171. return generic_info.item_type == ITEM_TYPE_SKILL;
  1172. }
  1173. bool Item::IsHouseItem(){
  1174. return generic_info.item_type == ITEM_TYPE_HOUSE;
  1175. }
  1176. bool Item::IsHouseContainer(){
  1177. return generic_info.item_type == ITEM_TYPE_HOUSE_CONTAINER;
  1178. }
  1179. bool Item::IsShield(){
  1180. return generic_info.item_type == ITEM_TYPE_SHIELD;
  1181. }
  1182. bool Item::IsAdornment(){
  1183. LogWrite(MISC__TODO, 1, "TODO", "Item Adornments\n\t(%s, function: %s, line #: %i)", __FILE__, __FUNCTION__, __LINE__);
  1184. return generic_info.item_type == ITEM_TYPE_ADORNMENT && !CheckFlag2(ORNATE);
  1185. }
  1186. bool Item::IsAmmo(){
  1187. return HasSlot(EQ2_AMMO_SLOT);
  1188. }
  1189. bool Item::HasAdorn0(){
  1190. if (adorn0 > 0)
  1191. return true;
  1192. return false;
  1193. }
  1194. bool Item::HasAdorn1(){
  1195. if (adorn1 > 0)
  1196. return true;
  1197. return false;
  1198. }
  1199. bool Item::HasAdorn2(){
  1200. if (adorn2 > 0)
  1201. return true;
  1202. return false;
  1203. }
  1204. bool Item::IsBook(){
  1205. return generic_info.item_type == ITEM_TYPE_BOOK;
  1206. }
  1207. bool Item::IsChainArmor(){
  1208. return generic_info.item_type == ITEM_TYPE_ARMOR && (generic_info.skill_req1 == 2246237129UL || generic_info.skill_req2 == 2246237129UL);
  1209. }
  1210. bool Item::IsClothArmor(){
  1211. return generic_info.item_type == ITEM_TYPE_ARMOR && (generic_info.skill_req1 == 3539032716UL || generic_info.skill_req2 == 3539032716UL);
  1212. }
  1213. bool Item::IsCollectable(){
  1214. return generic_info.collectable == 1;
  1215. }
  1216. bool Item::HasSlot(int8 slot, int8 slot2){
  1217. for(int32 i=0;i<slot_data.size();i++){
  1218. if(slot_data[i] == EQ2_LRING_SLOT && (slot == EQ2_RRING_SLOT || slot2 == EQ2_RRING_SLOT))
  1219. return true;
  1220. else if(slot_data[i] == EQ2_LWRIST_SLOT && (slot == EQ2_RWRIST_SLOT || slot2 == EQ2_RWRIST_SLOT))
  1221. return true;
  1222. else if(slot_data[i] == EQ2_EARS_SLOT_1 && (slot == EQ2_EARS_SLOT_2 || slot2 == EQ2_EARS_SLOT_2))
  1223. return true;
  1224. else if(slot_data[i] == EQ2_CHARM_SLOT_1 && (slot == EQ2_CHARM_SLOT_2 || slot2 == EQ2_CHARM_SLOT_2))
  1225. return true;
  1226. else if(slot_data[i] == slot || slot_data[i] == slot2)
  1227. return true;
  1228. }
  1229. return false;
  1230. }
  1231. bool Item::IsCloak(){
  1232. return HasSlot(EQ2_CLOAK_SLOT);
  1233. }
  1234. bool Item::IsCrushWeapon(){
  1235. return generic_info.item_type == ITEM_TYPE_WEAPON && weapon_type == 1;
  1236. }
  1237. bool Item::IsFoodFood(){
  1238. return generic_info.item_type == ITEM_TYPE_FOOD && food_info && food_info->type == 1;
  1239. }
  1240. bool Item::IsFoodDrink(){
  1241. return generic_info.item_type == ITEM_TYPE_FOOD && food_info && food_info->type == 0;
  1242. }
  1243. bool Item::IsJewelry(){
  1244. if(generic_info.item_type != ITEM_TYPE_ARMOR || (generic_info.skill_req1 != 2072844078 && generic_info.skill_req2 != 2072844078))
  1245. return false;
  1246. for(int32 i=0;i<slot_data.size();i++){
  1247. if(slot_data[i] == EQ2_LRING_SLOT || slot_data[i] == EQ2_RRING_SLOT || slot_data[i] == EQ2_EARS_SLOT_1 || slot_data[i] == EQ2_EARS_SLOT_2 || slot_data[i] == EQ2_NECK_SLOT || slot_data[i] == EQ2_LWRIST_SLOT || slot_data[i] == EQ2_RWRIST_SLOT)
  1248. return true;
  1249. }
  1250. return false;
  1251. }
  1252. bool Item::IsLeatherArmor(){
  1253. return generic_info.item_type == ITEM_TYPE_ARMOR && (generic_info.skill_req1 == 2897193374UL || generic_info.skill_req2 == 2897193374UL);
  1254. }
  1255. bool Item::IsMisc(){
  1256. return IsNormal();
  1257. }
  1258. bool Item::IsPierceWeapon(){
  1259. return generic_info.item_type == ITEM_TYPE_WEAPON && weapon_type == 2;
  1260. }
  1261. bool Item::IsPlateArmor(){
  1262. return generic_info.item_type == ITEM_TYPE_ARMOR && (generic_info.skill_req1 == 241174330UL || generic_info.skill_req2 == 241174330UL);
  1263. }
  1264. bool Item::IsPoison(){
  1265. LogWrite(MISC__TODO, 1, "TODO", "Separate poisons from potions\n\t(%s, function: %s, line #: %i)", __FILE__, __FUNCTION__, __LINE__);
  1266. return IsBauble();
  1267. }
  1268. bool Item::IsPotion(){
  1269. LogWrite(MISC__TODO, 1, "TODO", "Separate poisons from potions\n\t(%s, function: %s, line #: %i)", __FILE__, __FUNCTION__, __LINE__);
  1270. return IsBauble();
  1271. }
  1272. bool Item::IsRecipeBook(){
  1273. return generic_info.item_type == ITEM_TYPE_RECIPE;
  1274. }
  1275. bool Item::IsSalesDisplay(){
  1276. LogWrite(MISC__TODO, 1, "TODO", "Item Sales Displays\n\t(%s, function: %s, line #: %i)", __FILE__, __FUNCTION__, __LINE__);
  1277. return false;
  1278. }
  1279. bool Item::IsSlashWeapon(){
  1280. return generic_info.item_type == ITEM_TYPE_WEAPON && weapon_type == 0;
  1281. }
  1282. bool Item::IsSpellScroll(){
  1283. return IsSkill();
  1284. }
  1285. bool Item::IsTinkered(){
  1286. LogWrite(MISC__TODO, 1, "TODO", "Item Is Tinkered\n\t(%s, function: %s, line #: %i)", __FILE__, __FUNCTION__, __LINE__);
  1287. return false;
  1288. }
  1289. bool Item::IsThrown(){
  1290. return generic_info.item_type == ITEM_TYPE_THROWN;
  1291. }
  1292. bool Item::IsHarvest() {
  1293. return generic_info.harvest == 1;
  1294. }
  1295. bool Item::IsBodyDrop() {
  1296. return generic_info.body_drop == 1;
  1297. }
  1298. bool Item::IsTradeskill(){
  1299. LogWrite(MISC__TODO, 1, "TODO", "Item Is Crafted\n\t(%s, function: %s, line #: %i)", __FILE__, __FUNCTION__, __LINE__);
  1300. return false;
  1301. }
  1302. void Item::SetItemType(int8 in_type){
  1303. generic_info.item_type = in_type;
  1304. if(IsArmor() && !armor_info){
  1305. armor_info = new Armor_Info;
  1306. memset(armor_info, 0, sizeof(Armor_Info));
  1307. }
  1308. else if (IsWeapon() && !weapon_info){
  1309. weapon_info = new Weapon_Info;
  1310. memset(weapon_info, 0, sizeof(Weapon_Info));
  1311. }
  1312. else if (IsAdornment() && !adornment_info){
  1313. adornment_info = new Adornment_Info;
  1314. memset(adornment_info, 0, sizeof(Adornment_Info));
  1315. }
  1316. else if(IsRanged() && !ranged_info){
  1317. ranged_info = new Ranged_Info;
  1318. memset(ranged_info, 0, sizeof(Ranged_Info));
  1319. }
  1320. else if(IsBag() && !bag_info){
  1321. bag_info = new Bag_Info;
  1322. memset(bag_info, 0, sizeof(Bag_Info));
  1323. }
  1324. else if(IsFood() && !food_info){
  1325. food_info = new Food_Info;
  1326. memset(food_info, 0, sizeof(Food_Info));
  1327. }
  1328. else if(IsBauble() && !bauble_info){
  1329. bauble_info = new Bauble_Info;
  1330. memset(bauble_info, 0, sizeof(Bauble_Info));
  1331. }
  1332. else if(IsThrown() && !thrown_info){
  1333. thrown_info = new Thrown_Info;
  1334. memset(thrown_info, 0, sizeof(Thrown_Info));
  1335. }
  1336. else if(IsSkill() && !skill_info){
  1337. skill_info = new Skill_Info;
  1338. memset(skill_info, 0, sizeof(Skill_Info));
  1339. }
  1340. else if(IsRecipeBook() && !recipebook_info){
  1341. recipebook_info = new RecipeBook_Info;
  1342. recipebook_info->uses = 0;
  1343. }
  1344. else if(IsBook() && !book_info){
  1345. book_info = new Book_Info;
  1346. book_info->language = 0;
  1347. book_info->author.size = 0;
  1348. book_info->title.size = 0;
  1349. }
  1350. else if(IsHouseItem() && !houseitem_info){
  1351. houseitem_info = new HouseItem_Info;
  1352. memset(houseitem_info, 0, sizeof(HouseItem_Info));
  1353. }
  1354. else if(IsHouseContainer() && !housecontainer_info){
  1355. housecontainer_info = new HouseContainer_Info;
  1356. housecontainer_info->allowed_types = 0;
  1357. housecontainer_info->broker_commission = 0;
  1358. housecontainer_info->fence_commission = 0;
  1359. housecontainer_info->num_slots = 0;
  1360. }
  1361. }
  1362. bool Item::CheckFlag2(int32 flag){
  1363. int32 value = 0;
  1364. int32 flag_val = generic_info.item_flags2;
  1365. while (flag_val > 0){
  1366. if (flag_val >= FLAGS2_32768)
  1367. value = FLAGS2_32768;
  1368. else if (flag_val >= FREE_REFORGE)
  1369. value = FREE_REFORGE;
  1370. else if (flag_val >= BUILDING_BLOCK)
  1371. value = BUILDING_BLOCK;
  1372. else if (flag_val >= FLAGS2_4096)
  1373. value = FLAGS2_4096;
  1374. else if (flag_val >= HOUSE_LORE)
  1375. value = HOUSE_LORE;
  1376. else if (flag_val >= NO_EXPERIMENT)
  1377. value = NO_EXPERIMENT;
  1378. else if (flag_val >= INDESTRUCTABLE)
  1379. value = INDESTRUCTABLE;
  1380. else if (flag_val >= NO_SALVAGE)
  1381. value = NO_SALVAGE;
  1382. else if (flag_val >= REFINED)
  1383. value = REFINED;
  1384. else if (flag_val >= ETHERAL)
  1385. value = ETHERAL;
  1386. else if (flag_val >= NO_REPAIR)
  1387. value = NO_REPAIR;
  1388. else if (flag_val >= REFORGED)
  1389. value = REFORGED;
  1390. else if (flag_val >= UNLOCKED)
  1391. value = UNLOCKED;
  1392. else if (flag_val >= APPEARANCE_ONLY)
  1393. value = APPEARANCE_ONLY;
  1394. else if (flag_val >= HEIRLOOM)
  1395. value = HEIRLOOM;
  1396. else if (flag_val >= ORNATE)
  1397. value = ORNATE;
  1398. if (value == flag)
  1399. return true;
  1400. else
  1401. flag_val -= value;
  1402. }
  1403. return false;
  1404. }
  1405. bool Item::CheckFlag(int32 flag){
  1406. int32 value = 0;
  1407. int32 flag_val = generic_info.item_flags;
  1408. while(flag_val>0){
  1409. if (flag_val >= CURSED) //change this
  1410. value = CURSED;
  1411. else if (flag_val >= NO_TRANSMUTE) //change this
  1412. value = NO_TRANSMUTE;
  1413. else if (flag_val >= LORE_EQUIP) //change this
  1414. value = LORE_EQUIP;
  1415. else if (flag_val >= STACK_LORE) //change this
  1416. value = STACK_LORE;
  1417. else if(flag_val >= EVIL_ONLY)
  1418. value = EVIL_ONLY;
  1419. else if(flag_val >= GOOD_ONLY)
  1420. value = GOOD_ONLY;
  1421. else if(flag_val >= CRAFTED)
  1422. value = CRAFTED;
  1423. else if(flag_val >= NO_DESTROY)
  1424. value = NO_DESTROY;
  1425. else if(flag_val >= NO_ZONE)
  1426. value = NO_ZONE;
  1427. else if(flag_val >= NO_VALUE)
  1428. value = NO_VALUE;
  1429. else if(flag_val >= NO_TRADE)
  1430. value = NO_TRADE;
  1431. else if(flag_val >= TEMPORARY)
  1432. value = TEMPORARY;
  1433. else if(flag_val >= LORE)
  1434. value = LORE;
  1435. else if(flag_val >= ARTIFACT)
  1436. value = ARTIFACT;
  1437. else if(flag_val >= ATTUNEABLE)
  1438. value = ATTUNEABLE;
  1439. else if(flag_val >= ATTUNED)
  1440. value = ATTUNED;
  1441. if(value == flag)
  1442. return true;
  1443. else
  1444. flag_val -= value;
  1445. }
  1446. return false;
  1447. }
  1448. void Item::SetSlots(int32 slots){
  1449. if(slots & PRIMARY_SLOT)
  1450. AddSlot(EQ2_PRIMARY_SLOT);
  1451. if(slots & SECONDARY_SLOT)
  1452. AddSlot(EQ2_SECONDARY_SLOT);
  1453. if(slots & HEAD_SLOT)
  1454. AddSlot(EQ2_HEAD_SLOT);
  1455. if(slots & CHEST_SLOT)
  1456. AddSlot(EQ2_CHEST_SLOT);
  1457. if(slots & SHOULDERS_SLOT)
  1458. AddSlot(EQ2_SHOULDERS_SLOT);
  1459. if(slots & FOREARMS_SLOT)
  1460. AddSlot(EQ2_FOREARMS_SLOT);
  1461. if(slots & HANDS_SLOT)
  1462. AddSlot(EQ2_HANDS_SLOT);
  1463. if(slots & LEGS_SLOT)
  1464. AddSlot(EQ2_LEGS_SLOT);
  1465. if(slots & FEET_SLOT)
  1466. AddSlot(EQ2_FEET_SLOT);
  1467. if(slots & LRING_SLOT)
  1468. AddSlot(EQ2_LRING_SLOT);
  1469. if(slots & RRING_SLOT)
  1470. AddSlot(EQ2_RRING_SLOT);
  1471. if(slots & EARS_SLOT_1)
  1472. AddSlot(EQ2_EARS_SLOT_1);
  1473. if(slots & EARS_SLOT_2)
  1474. AddSlot(EQ2_EARS_SLOT_2);
  1475. if(slots & NECK_SLOT)
  1476. AddSlot(EQ2_NECK_SLOT);
  1477. if(slots & LWRIST_SLOT)
  1478. AddSlot(EQ2_LWRIST_SLOT);
  1479. if(slots & RWRIST_SLOT)
  1480. AddSlot(EQ2_RWRIST_SLOT);
  1481. if(slots & RANGE_SLOT)
  1482. AddSlot(EQ2_RANGE_SLOT);
  1483. if(slots & AMMO_SLOT)
  1484. AddSlot(EQ2_AMMO_SLOT);
  1485. if(slots & WAIST_SLOT)
  1486. AddSlot(EQ2_WAIST_SLOT);
  1487. if(slots & CLOAK_SLOT)
  1488. AddSlot(EQ2_CLOAK_SLOT);
  1489. if(slots & CHARM_SLOT_1)
  1490. AddSlot(EQ2_CHARM_SLOT_1);
  1491. if(slots & CHARM_SLOT_2)
  1492. AddSlot(EQ2_CHARM_SLOT_2);
  1493. if(slots & FOOD_SLOT)
  1494. AddSlot(EQ2_FOOD_SLOT);
  1495. if(slots & DRINK_SLOT)
  1496. AddSlot(EQ2_DRINK_SLOT);
  1497. if(slots & TEXTURES_SLOT)
  1498. AddSlot(EQ2_TEXTURES_SLOT);
  1499. }
  1500. void Item::AddStat(int8 type, int16 subtype, float value, int8 level, char* name){
  1501. char item_stat_combined_string[8] = {0};
  1502. if(name && strlen(name) > 0 && type != 1){
  1503. ItemStatString* stat = new ItemStatString;
  1504. stat->stat_string.data = string(name);
  1505. stat->stat_string.size = stat->stat_string.data.length();
  1506. AddStatString(stat);
  1507. }
  1508. else{
  1509. ItemStat* stat = new ItemStat;
  1510. if(name && strlen(name) > 0)
  1511. stat->stat_name = string(name);
  1512. stat->stat_type = type;
  1513. stat->stat_subtype = subtype;
  1514. stat->value = value;
  1515. stat->level = level;
  1516. snprintf(item_stat_combined_string, 7, "%u%02u", type, subtype);
  1517. stat->stat_type_combined = atoi(item_stat_combined_string);
  1518. AddStat(stat);
  1519. }
  1520. }
  1521. void Item::AddSet(int32 item_id, int32 item_crc, int16 item_icon, int32 item_stack_size, int32 item_list_color, std::string name, int8 language){
  1522. ItemSet* set = new ItemSet;
  1523. set->item_id = item_id;
  1524. set->item_icon = item_icon;
  1525. set->item_crc = item_crc;
  1526. set->item_stack_size = item_stack_size;
  1527. set->item_list_color = item_list_color;
  1528. set->name = string(name);
  1529. set->language = language;
  1530. AddSet(set);
  1531. }
  1532. int16 Item::GetOverrideLevel(int8 adventure_class, int8 tradeskill_class){
  1533. int16 ret = 0;
  1534. int8 tmp_class = 0;
  1535. bool found_class = false;
  1536. for(int32 i=0;i<item_level_overrides.size();i++){
  1537. found_class = false;
  1538. if(adventure_class != 255){
  1539. tmp_class = item_level_overrides[i]->adventure_class;
  1540. if(tmp_class == PRIEST && (adventure_class >= CLERIC && adventure_class <= DEFILER))
  1541. found_class = true;
  1542. else if(tmp_class == MAGE && (adventure_class >= SORCERER && adventure_class <= NECROMANCER))
  1543. found_class = true;
  1544. else if(tmp_class == SCOUT && (adventure_class >= ROGUE && adventure_class <= ASSASSIN))
  1545. found_class = true;
  1546. else if(tmp_class == adventure_class || tmp_class == COMMONER || (tmp_class == FIGHTER && (adventure_class >= WARRIOR && adventure_class <= PALADIN)))
  1547. found_class = true;
  1548. }
  1549. else if(tradeskill_class != 255){
  1550. tmp_class = item_level_overrides[i]->tradeskill_class;
  1551. if(tmp_class == CRAFTSMAN && (tradeskill_class >= PROVISIONER && adventure_class <= CARPENTER))
  1552. found_class = true;
  1553. else if(tmp_class == OUTFITTER && (tradeskill_class >= ARMORER && tradeskill_class <= TAILOR))
  1554. found_class = true;
  1555. else if(tmp_class == SCHOLAR && (tradeskill_class >= JEWELER && tradeskill_class <= ALCHEMIST))
  1556. found_class = true;
  1557. else if(tmp_class == tradeskill_class || tmp_class == ARTISAN)
  1558. found_class = true;
  1559. }
  1560. if(found_class){
  1561. ret = item_level_overrides[i]->level;
  1562. break;
  1563. }
  1564. }
  1565. return ret;
  1566. }
  1567. void Item::serialize(PacketStruct* packet, bool show_name, Player* player, int16 packet_type, int8 subtype, bool loot_item){
  1568. int64 classes = 0;
  1569. Client *client;
  1570. int8 tmp_subtype = 0;
  1571. if (!packet || !player)
  1572. return;
  1573. client = player->GetZone()->GetClientBySpawn(player);
  1574. if (!client)
  1575. return;
  1576. if(creator.length() > 0){
  1577. packet->setSubstructSubstructDataByName("header", "info_header", "creator_flag", 1);
  1578. packet->setSubstructSubstructDataByName("header", "info_header", "creator", creator.c_str());
  1579. }
  1580. if(show_name)
  1581. packet->setSubstructSubstructDataByName("header", "info_header", "show_name", show_name);
  1582. if (packet_type == 20)
  1583. cout << "";
  1584. if(packet_type == 0)
  1585. packet->setSubstructSubstructDataByName("header", "info_header", "packettype", GetItemPacketType(packet->GetVersion()));
  1586. else
  1587. packet->setSubstructSubstructDataByName("header", "info_header", "packettype", packet_type);
  1588. packet->setSubstructSubstructDataByName("header", "info_header", "packetsubtype", subtype); // should be substype
  1589. /*
  1590. 0 red
  1591. 1 orange
  1592. 2 yellow
  1593. 3 white
  1594. 4 blue
  1595. 5 green
  1596. 6 grey
  1597. 7 purple*/
  1598. int32 color = 3;
  1599. if(player)
  1600. {
  1601. int32 effective_level = player->GetInfoStructUInt("effective_level");
  1602. if(effective_level && effective_level < player->GetLevel() && details.recommended_level > effective_level)
  1603. color = 7;
  1604. }
  1605. packet->setSubstructDataByName("header_info", "footer_type", color);
  1606. packet->setSubstructDataByName("header_info", "item_id", details.item_id);
  1607. if (!loot_item)
  1608. packet->setSubstructDataByName("header_info", "broker_item_id", details.item_id);
  1609. else
  1610. packet->setSubstructDataByName("header_info", "broker_item_id", 0xFFFFFFFFFFFFFFFF);
  1611. if(details.unique_id == 0)
  1612. packet->setSubstructDataByName("header_info", "unique_id", details.item_id);
  1613. else
  1614. packet->setSubstructDataByName("header_info", "unique_id", details.unique_id);
  1615. packet->setSubstructDataByName("header_info", "icon", details.icon);
  1616. packet->setSubstructDataByName("header_info", "tier", details.tier);
  1617. packet->setSubstructDataByName("header_info", "flags", generic_info.item_flags);
  1618. packet->setSubstructDataByName("header_info", "flags2", generic_info.item_flags2);
  1619. if(item_stats.size() > 0){
  1620. //packet->setSubstructArrayLengthByName("header_info", "stat_count", item_stats.size());
  1621. int8 dropstat = 0;
  1622. int8 bluemod = 0;
  1623. for (int32 i = 0; i < item_stats.size(); i++){
  1624. ItemStat* stat = item_stats[i];
  1625. if(!stat)
  1626. {
  1627. LogWrite(ITEM__ERROR, 0, "Item", "%s: %s (itemid: %u) Error Serializing Item: Invalid item in item_stats position %u", client->GetPlayer()->GetName(), this->name.c_str(), this->details.item_id, i);
  1628. continue;
  1629. }
  1630. if (stat->stat_type == 9){
  1631. bluemod += 1;
  1632. }
  1633. if (stat->stat_type == 6 || stat->stat_type == 7){ //Convert stats to proper client
  1634. //if (client->GetVersion() >= 63137){ //TEST
  1635. // tmp_subtype =stat->stat_subtype;
  1636. //}
  1637. if(stat->stat_type == 7){
  1638. tmp_subtype = stat->stat_subtype;
  1639. }
  1640. else if ((client->GetVersion() >= 63119) || client->GetVersion() == 61331){ //KA
  1641. tmp_subtype = world.GetItemStatKAValue(stat->stat_subtype);
  1642. }
  1643. else if(client->GetVersion() >= 60085 ) {
  1644. tmp_subtype = world.GetItemStatAOMValue(stat->stat_subtype);
  1645. }
  1646. else if (client->GetVersion() >= 57107){ //TOV
  1647. tmp_subtype = world.GetItemStatTOVValue(stat->stat_subtype);
  1648. }
  1649. else if (client->GetVersion() >= 1193){ //COE
  1650. tmp_subtype = world.GetItemStatCOEValue(stat->stat_subtype);
  1651. //tmp_subtype = stat->stat_subtype;
  1652. }
  1653. else if (client->GetVersion() >= 1096){ //DOV
  1654. tmp_subtype = world.GetItemStatDOVValue(stat->stat_subtype);
  1655. //tmp_subtype = stat->stat_subtype; //comment for normal use
  1656. }
  1657. }
  1658. else
  1659. tmp_subtype = stat->stat_subtype;
  1660. if (tmp_subtype == 255 ){
  1661. dropstat += 1;
  1662. }
  1663. }
  1664. packet->setSubstructArrayLengthByName("header_info", "stat_count", item_stats.size() - dropstat);
  1665. dropstat = 0;
  1666. for (int32 i = 0; i < item_stats.size(); i++) {
  1667. ItemStat* stat = item_stats[i];
  1668. if (stat->stat_type == 6 || stat->stat_type == 7){ //Convert stats to proper client
  1669. if(stat->stat_type == 7){
  1670. tmp_subtype = stat->stat_subtype;
  1671. }
  1672. else if ((client->GetVersion() >= 63119) || client->GetVersion() == 61331){ //KA
  1673. tmp_subtype = world.GetItemStatKAValue(stat->stat_subtype);
  1674. }
  1675. else if(client->GetVersion() >= 60085 ) {
  1676. tmp_subtype = world.GetItemStatAOMValue(stat->stat_subtype);
  1677. }
  1678. else if (client->GetVersion() >= 57107){ //TOV
  1679. tmp_subtype = world.GetItemStatTOVValue(stat->stat_subtype);
  1680. }
  1681. else if (client->GetVersion() >= 1193){ //COE
  1682. tmp_subtype = world.GetItemStatCOEValue(stat->stat_subtype);
  1683. //tmp_subtype = stat->stat_subtype;
  1684. }
  1685. else if (client->GetVersion() >= 1096){ //DOV
  1686. tmp_subtype = world.GetItemStatDOVValue(stat->stat_subtype); //comment out for testing
  1687. //tmp_subtype = stat->stat_subtype; //comment for normal use
  1688. }
  1689. }
  1690. else
  1691. tmp_subtype = stat->stat_subtype;
  1692. if (tmp_subtype == 255 ){
  1693. dropstat += 1;
  1694. //packet->setSubstructArrayLengthByName("header_info", "stat_count", item_stats.size()-dropstat);
  1695. }
  1696. else {
  1697. packet->setArrayDataByName("stat_type", stat->stat_type, i-dropstat);
  1698. packet->setArrayDataByName("stat_subtype", tmp_subtype, i-dropstat);
  1699. }
  1700. if (stat->stat_name.length() > 0)
  1701. packet->setArrayDataByName("stat_name", stat->stat_name.c_str(), i-dropstat);
  1702. /* SF client */
  1703. float statValue = stat->value;
  1704. if(player)
  1705. {
  1706. int32 effective_level = player->GetInfoStructUInt("effective_level");
  1707. if(effective_level && effective_level < player->GetLevel() && details.recommended_level > effective_level)
  1708. {
  1709. int32 diff = details.recommended_level - effective_level;
  1710. float tmpValue = (float)statValue;
  1711. statValue = (sint32)(float)(tmpValue / (1.0f + ((float)diff * rule_manager.GetGlobalRule(R_Player, MentorItemDecayRate)->GetFloat())));
  1712. }
  1713. }
  1714. if ((client->GetVersion() >= 63119) || client->GetVersion() == 61331) {
  1715. if (stat->stat_type == 6){
  1716. packet->setArrayDataByName("value", statValue , i - dropstat);//63119 or when diety started (this is actually the modified stat
  1717. packet->setArrayDataByName("value2", stat->value, i - dropstat);//63119 temp will be replace by modified value (this is the unmodified stat
  1718. }
  1719. else {
  1720. packet->setArrayDataByName("value", (sint16)statValue , i - dropstat, 0U, true);
  1721. packet->setArrayDataByName("value2", stat->value, i - dropstat);//63119 temp will be replace by modified value
  1722. }
  1723. }
  1724. else if (client->GetVersion() >= 1028) {
  1725. if (stat->stat_type == 6){
  1726. packet->setArrayDataByName("value", statValue , i - dropstat);//63119 or when diety started (this is actually the infused modified stat
  1727. packet->setArrayDataByName("value2", stat->value, i - dropstat);//63119 temp will be replace by modified value (this is the unmodified stat
  1728. }
  1729. else {
  1730. packet->setArrayDataByName("value", (sint16)statValue , i - dropstat, 0U, true);
  1731. packet->setArrayDataByName("value2", stat->value, i - dropstat);//63119 temp will be replace by modified value
  1732. }
  1733. }
  1734. else{
  1735. packet->setArrayDataByName("value", (sint16)statValue , i - dropstat);
  1736. packet->setArrayDataByName("value2", stat->value, i - dropstat);//63119 temp will be replace by modified value
  1737. }
  1738. }
  1739. }
  1740. if (item_string_stats.size() > 0 && !loot_item){
  1741. if ((client->GetVersion() >= 63119) || client->GetVersion() == 61331) {
  1742. packet->setSubstructArrayLengthByName("header_info", "mod_count", item_string_stats.size());
  1743. for (int32 i = 0; i < item_string_stats.size(); i++){
  1744. ItemStatString* stat = item_string_stats[i];
  1745. packet->setArrayDataByName("mod_string", &(stat->stat_string), i);
  1746. packet->setArrayDataByName("mod_need", 0, i);
  1747. }
  1748. }
  1749. else if (client->GetVersion() >= 1096) {
  1750. packet->setSubstructArrayLengthByName("header_info", "stat_string_count", item_string_stats.size());
  1751. for (int32 i = 0; i < item_string_stats.size(); i++){
  1752. ItemStatString* stat = item_string_stats[i];
  1753. packet->setArrayDataByName("stat_string", &(stat->stat_string), i);
  1754. }
  1755. }
  1756. }
  1757. if (item_sets.size() > 0){
  1758. packet->setArrayLengthByName("num_pieces", item_sets.size());
  1759. for (int32 i = 0; i < item_sets.size(); i++){
  1760. ItemSet* set = item_sets[i];
  1761. packet->setArrayDataByName("item_id", set->item_id, i);
  1762. packet->setArrayDataByName("item_crc", set->item_crc, i);
  1763. packet->setArrayDataByName("item_icon", set->item_icon, i);
  1764. packet->setArrayDataByName("item_unknown1", set->item_stack_size, i);
  1765. Item* item2 = master_item_list.GetItem(set->item_id);
  1766. if (item2)
  1767. packet->setArrayDataByName("item_name", item2->name.c_str(), i);
  1768. packet->setArrayDataByName("item_unknown2", set->item_list_color, i);
  1769. }
  1770. }
  1771. if(!loot_item && item_effects.size() > 0){
  1772. packet->setSubstructArrayLengthByName("footer", "num_effects", item_effects.size());
  1773. for(int32 i=0;i<item_effects.size();i++){
  1774. ItemEffect* effect = item_effects[i];
  1775. packet->setArrayDataByName("subbulletflag", effect->subbulletflag, i);
  1776. packet->setArrayDataByName("effect", &(effect->effect), i);
  1777. packet->setArrayDataByName("percentage", effect->percentage, i);
  1778. }
  1779. }
  1780. if (packet->GetVersion() < 1096) {
  1781. packet->setSubstructDataByName("header_info", "adornment_id", 0xFFFFFFFF); // Send no ID for now
  1782. packet->setSubstructDataByName("header_info", "unknown3", 0xFFFFFFFF);
  1783. }
  1784. packet->setSubstructDataByName("header_info", "unknown21", 0x00000000);
  1785. packet->setSubstructDataByName("header_info", "condition", generic_info.condition);
  1786. packet->setSubstructDataByName("header_info", "weight", generic_info.weight);
  1787. if (packet->GetVersion() <= 283) { //orig client only has one skill
  1788. if (generic_info.skill_req1 == 0 || generic_info.skill_req1 == 0xFFFFFFFF) {
  1789. if (generic_info.skill_req2 != 0 && generic_info.skill_req2 != 0xFFFFFFFF) {
  1790. packet->setSubstructDataByName("header_info", "skill_req1", generic_info.skill_req2);
  1791. }
  1792. else {
  1793. packet->setSubstructDataByName("header_info", "skill_req1", 0xFFFFFFFF);
  1794. }
  1795. }
  1796. else {
  1797. packet->setSubstructDataByName("header_info", "skill_req1", generic_info.skill_req1);
  1798. }
  1799. }
  1800. else {
  1801. if (generic_info.skill_req1 == 0)
  1802. packet->setSubstructDataByName("header_info", "skill_req1", 0xFFFFFFFF);
  1803. else
  1804. packet->setSubstructDataByName("header_info", "skill_req1", generic_info.skill_req1);
  1805. if (generic_info.skill_req2 == 0)
  1806. packet->setSubstructDataByName("header_info", "skill_req2", 0xFFFFFFFF);
  1807. else
  1808. packet->setSubstructDataByName("header_info", "skill_req2", generic_info.skill_req2);
  1809. }
  1810. if(generic_info.skill_min != 0)
  1811. packet->setSubstructDataByName("header_info", "skill_min", generic_info.skill_min);
  1812. if (client->GetVersion() <= 283) {
  1813. string flags;
  1814. if (CheckFlag(NO_TRADE))
  1815. flags += "NO-TRADE ";
  1816. if (CheckFlag(NO_VALUE))
  1817. flags += "NO-VALUE ";
  1818. if(flags.length() > 0)
  1819. packet->setSubstructDataByName("header_info", "flag_names", flags.c_str());
  1820. }
  1821. if (generic_info.adventure_classes > 0 || generic_info.tradeskill_classes > 0 || item_level_overrides.size() > 0) {
  1822. //int64 classes = 0;
  1823. int16 tmp_level = 0;
  1824. map<int8, int16> adv_class_levels;
  1825. map<int8, int16> tradeskill_class_levels;
  1826. map<int8, int16>::iterator itr;
  1827. int64 tmpVal = 0;
  1828. int8 temp = ASSASSIN;
  1829. // AoD + clients with beastlords
  1830. if (packet->GetVersion() >= 1142)
  1831. temp += 2;
  1832. // Chaneler class, get a more accurate version
  1833. if (packet->GetVersion() >= 60000)
  1834. temp += 2;
  1835. for (int32 i = 0; i <= temp; i++) {
  1836. tmpVal = (int64)pow(2.0, (double)i);
  1837. if ((generic_info.adventure_classes & tmpVal)) {
  1838. //classes += 2 << (i - 1);
  1839. classes += tmpVal;
  1840. tmp_level = GetOverrideLevel(i, 255);
  1841. if (tmp_level == 0)
  1842. adv_class_levels[i] = generic_info.adventure_default_level;
  1843. else
  1844. adv_class_levels[i] = tmp_level;
  1845. }
  1846. if (tmpVal == 0) {
  1847. if (packet->GetVersion() >= 60000)
  1848. classes = 576379072454289112;
  1849. else if (packet->GetVersion() >= 57048)
  1850. classes = 6281081087704;
  1851. else if (packet->GetVersion() >= 1142)
  1852. classes = 144095080877876952;
  1853. else
  1854. classes = 36024082983773912;
  1855. }
  1856. }
  1857. for (int i = ALCHEMIST + 1 - ARTISAN; i >= 0; i--) {
  1858. //tmpVal = 2 << i;
  1859. tmpVal = (int64)pow(2.0, (double)i);
  1860. if ((generic_info.tradeskill_classes & tmpVal)) {
  1861. classes += pow(2, (i + ARTISAN));
  1862. //classes += 2 << (i+ARTISAN-1);
  1863. tmp_level = GetOverrideLevel(i, 255);
  1864. if (tmp_level == 0)
  1865. tradeskill_class_levels[i] = generic_info.tradeskill_default_level;
  1866. else
  1867. tradeskill_class_levels[i] = tmp_level;
  1868. }
  1869. }
  1870. bool simplified_display = false;
  1871. if (client->GetVersion() <= 546) { //simplify display (if possible)
  1872. map<int8, int16> new_adv_class_levels;
  1873. for (int i = 1; i <= 31; i += 10) {
  1874. bool add_archetype = CheckArchetypeAdvClass(i, &adv_class_levels);
  1875. if (add_archetype) {
  1876. new_adv_class_levels[i] = 0;
  1877. }
  1878. else {
  1879. for (int x = 1; x <= 7; x += 3) {
  1880. if (CheckArchetypeAdvSubclass(i+x, &adv_class_levels)) {
  1881. new_adv_class_levels[i+x] = 0;
  1882. }
  1883. }
  1884. }
  1885. }
  1886. if (new_adv_class_levels.size() > 0) {
  1887. simplified_display = true;
  1888. int8 i = 0;
  1889. for (itr = new_adv_class_levels.begin(); itr != new_adv_class_levels.end(); itr++) {
  1890. i = itr->first;
  1891. if ((i % 10) == 1) {
  1892. int16 level = 0;
  1893. for (int x = i; x < i+10; x++) {
  1894. if (adv_class_levels.count(x) > 0) {
  1895. if(level == 0)
  1896. level = adv_class_levels.at(x);
  1897. adv_class_levels.erase(x);
  1898. }
  1899. }
  1900. adv_class_levels[i] = level;
  1901. }
  1902. else {
  1903. int16 level = 0;
  1904. for (int x = i+1; x < i + 3; x++) {
  1905. if (adv_class_levels.count(x) > 0) {
  1906. if (level == 0)
  1907. level = adv_class_levels.at(x);
  1908. adv_class_levels.erase(x);
  1909. }
  1910. }
  1911. adv_class_levels[i] = level;
  1912. }
  1913. }
  1914. }
  1915. }
  1916. packet->setSubstructArrayLengthByName("header_info", "class_count", adv_class_levels.size() + tradeskill_class_levels.size());
  1917. int i = 0;
  1918. for (itr = adv_class_levels.begin(); itr != adv_class_levels.end(); itr++, i++) {
  1919. packet->setArrayDataByName("adventure_class", itr->first, i);
  1920. packet->setArrayDataByName("tradeskill_class", 255, i);
  1921. packet->setArrayDataByName("level", itr->second * 10, i);
  1922. }
  1923. for (itr = tradeskill_class_levels.begin(); itr != tradeskill_class_levels.end(); itr++, i++) {
  1924. packet->setArrayDataByName("adventure_class", 255, i);
  1925. packet->setArrayDataByName("tradeskill_class", itr->first, i);
  1926. packet->setArrayDataByName("level", itr->second, i);
  1927. }
  1928. packet->setSubstructDataByName("footer", "required_classes", classes);
  1929. }
  1930. else {
  1931. if (packet->GetVersion() >= 60000)
  1932. classes = 576379072454289112;
  1933. else if (packet->GetVersion() >= 57048)
  1934. classes = 6281081087704;
  1935. else if (packet->GetVersion() >= 1142)
  1936. classes = 144095080877876952;
  1937. else
  1938. classes = 36024082983773912;
  1939. packet->setSubstructDataByName("footer", "required_classes", classes);
  1940. }
  1941. // Is this a copy and paste error???
  1942. packet->setSubstructDataByName("footer", "required_classes2", classes);
  1943. {
  1944. if (packet->GetVersion() >= 60000)
  1945. classes = 576379072454289112;
  1946. else if (packet->GetVersion() >= 57048)
  1947. classes = 6281081087704;
  1948. else if (packet->GetVersion() >= 1142)
  1949. classes = 144095080877876952;
  1950. else
  1951. classes = 36024082983773912;
  1952. }
  1953. if (client->GetVersion() <= 283 && generic_info.adventure_default_level > 0) {
  1954. packet->setSubstructDataByName("header_info", "skill_min", (generic_info.adventure_default_level-1)*5+1);
  1955. packet->setSubstructDataByName("header_info", "skill_recommended", details.recommended_level * 5);
  1956. }
  1957. packet->setSubstructDataByName("footer", "recommended_level", details.recommended_level);
  1958. if(generic_info.adventure_default_level > 0){
  1959. packet->setSubstructDataByName("footer", "required_level", generic_info.adventure_default_level);
  1960. packet->setSubstructDataByName("footer", "footer_unknown2", 0);// remove defualt
  1961. }
  1962. else{
  1963. packet->setSubstructDataByName("footer", "required_level", generic_info.tradeskill_default_level);
  1964. packet->setSubstructDataByName("footer", "footer_unknown2", 0);//remove default
  1965. }
  1966. if(slot_data.size() > 0){
  1967. packet->setSubstructArrayLengthByName("header_info", "slot_count", slot_data.size());
  1968. for(int32 i=0;i<slot_data.size();i++){
  1969. int8 slot = slot_data[i];
  1970. if (client->GetVersion() <= 283) {
  1971. if (slot > EQ2_EARS_SLOT_1 && slot <= EQ2_WAIST_SLOT) //they added a second ear slot later, adjust for only 1 original slot
  1972. slot -= 1;
  1973. else if (slot == EQ2_FOOD_SLOT)
  1974. slot = EQ2_ORIG_FOOD_SLOT;
  1975. else if(slot == EQ2_DRINK_SLOT)
  1976. slot = EQ2_ORIG_DRINK_SLOT;
  1977. }
  1978. else if (client->GetVersion() <= 546) {
  1979. if (slot > EQ2_EARS_SLOT_1 && slot <= EQ2_WAIST_SLOT) //they added a second ear slot later, adjust for only 1 original slot
  1980. slot -= 1;
  1981. else if (slot == EQ2_FOOD_SLOT)
  1982. slot = EQ2_DOF_FOOD_SLOT;
  1983. else if (slot == EQ2_DRINK_SLOT)
  1984. slot = EQ2_DOF_DRINK_SLOT;
  1985. }
  1986. packet->setArrayDataByName("slot", slot, i);
  1987. }
  1988. }
  1989. if(!loot_item){
  1990. if (adornment_info)
  1991. LogWrite(ITEM__DEBUG, 0, "Items", "\ttype: %i, Duration: %i, item_types_: %i, slot_type: %i", generic_info.item_type, adornment_info->duration, adornment_info->item_types, adornment_info->slot_type);
  1992. packet->setSubstructDataByName("header", "item_type", generic_info.item_type);
  1993. switch(generic_info.item_type){
  1994. case ITEM_TYPE_WEAPON:{
  1995. if(weapon_info){
  1996. if (client->GetVersion() <= 283) {
  1997. packet->setSubstructDataByName("details", "wield_type", weapon_info->wield_type);
  1998. packet->setSubstructDataByName("details", "damage_low1", weapon_info->damage_low1);
  1999. packet->setSubstructDataByName("details", "damage_high1", weapon_info->damage_high1);
  2000. packet->setSubstructDataByName("details", "damage_low2", weapon_info->damage_low2);
  2001. packet->setSubstructDataByName("details", "damage_high2", weapon_info->damage_high2);
  2002. packet->setSubstructDataByName("details", "damage_type", weapon_type);
  2003. packet->setSubstructDataByName("details", "delay", weapon_info->delay);
  2004. }
  2005. else {
  2006. packet->setDataByName("wield_type", weapon_info->wield_type);
  2007. packet->setDataByName("damage_low1", weapon_info->damage_low1);
  2008. packet->setDataByName("damage_high1", weapon_info->damage_high1);
  2009. packet->setDataByName("damage_low2", weapon_info->damage_low2);
  2010. packet->setDataByName("damage_high2", weapon_info->damage_high2);
  2011. packet->setDataByName("damage_low3", weapon_info->damage_low3);
  2012. packet->setDataByName("damage_high3", weapon_info->damage_high3);
  2013. packet->setDataByName("damage_type", weapon_type);
  2014. packet->setDataByName("delay", weapon_info->delay);
  2015. packet->setDataByName("rating", weapon_info->rating);
  2016. }
  2017. }
  2018. break;
  2019. }
  2020. case ITEM_TYPE_RANGED:{
  2021. if(ranged_info){
  2022. if (client->GetVersion() <= 283) {
  2023. packet->setSubstructDataByName("details", "damage_low1", ranged_info->weapon_info.damage_low1);
  2024. packet->setSubstructDataByName("details", "damage_high1", ranged_info->weapon_info.damage_high1);
  2025. packet->setSubstructDataByName("details", "damage_low2", ranged_info->weapon_info.damage_low2);
  2026. packet->setSubstructDataByName("details", "damage_high2", ranged_info->weapon_info.damage_high2);
  2027. packet->setSubstructDataByName("details", "delay", ranged_info->weapon_info.delay);
  2028. packet->setSubstructDataByName("details", "range_low", ranged_info->range_low);
  2029. packet->setSubstructDataByName("details", "range_high", ranged_info->range_high);
  2030. }
  2031. else {
  2032. packet->setDataByName("damage_low1", ranged_info->weapon_info.damage_low1);
  2033. packet->setDataByName("damage_high1", ranged_info->weapon_info.damage_high1);
  2034. packet->setDataByName("damage_low2", ranged_info->weapon_info.damage_low2);
  2035. packet->setDataByName("damage_high2", ranged_info->weapon_info.damage_high2);
  2036. packet->setDataByName("damage_low3", ranged_info->weapon_info.damage_low3);
  2037. packet->setDataByName("damage_high3", ranged_info->weapon_info.damage_high3);
  2038. packet->setDataByName("delay", ranged_info->weapon_info.delay);
  2039. packet->setDataByName("range_low", ranged_info->range_low);
  2040. packet->setDataByName("range_high", ranged_info->range_high);
  2041. packet->setDataByName("rating", ranged_info->weapon_info.rating);
  2042. }
  2043. }
  2044. break;
  2045. }
  2046. case ITEM_TYPE_SHIELD:
  2047. case ITEM_TYPE_ARMOR:{
  2048. if(armor_info){
  2049. if (client->GetVersion() <= 283) {
  2050. packet->setSubstructDataByName("details", "mitigation_low", armor_info->mitigation_low);
  2051. packet->setSubstructDataByName("details", "mitigation_high", armor_info->mitigation_high);
  2052. }
  2053. else {
  2054. packet->setDataByName("mitigation_low", armor_info->mitigation_low);
  2055. packet->setDataByName("mitigation_high", armor_info->mitigation_high);
  2056. }
  2057. }
  2058. break;
  2059. }
  2060. case ITEM_TYPE_BAG:{
  2061. if(bag_info){
  2062. if (client->GetVersion() <= 283) {
  2063. if (bag_info->num_slots > CLASSIC_EQ_MAX_BAG_SLOTS)
  2064. bag_info->num_slots = CLASSIC_EQ_MAX_BAG_SLOTS;
  2065. packet->setSubstructDataByName("details", "num_slots", bag_info->num_slots);
  2066. packet->setSubstructDataByName("details", "weight_reduction", bag_info->weight_reduction);
  2067. }
  2068. else {
  2069. int16 free_slots = bag_info->num_slots;
  2070. if (player) {
  2071. Item* bag = player->GetPlayerItemList()->GetItemFromUniqueID(details.unique_id, true);
  2072. if (bag && bag->IsBag()) {
  2073. vector<Item*>* bag_items = player->GetPlayerItemList()->GetItemsInBag(bag);
  2074. if (bag_items->size() > bag->bag_info->num_slots) {
  2075. free_slots = 0;
  2076. packet->setArrayLengthByName("num_names", bag->bag_info->num_slots);
  2077. }
  2078. else {
  2079. free_slots = bag->bag_info->num_slots - bag_items->size();
  2080. packet->setArrayLengthByName("num_names", bag_items->size());
  2081. }
  2082. vector<Item*>::iterator itr;
  2083. int16 i = 0;
  2084. Item* tmp_bag_item = 0;
  2085. for (itr = bag_items->begin(); itr != bag_items->end(); itr++) {
  2086. tmp_bag_item = *itr;
  2087. if (tmp_bag_item && tmp_bag_item->details.slot_id < bag->bag_info->num_slots) {
  2088. packet->setArrayDataByName("item_name", tmp_bag_item->name.c_str(), i);
  2089. i++;
  2090. }
  2091. }
  2092. safe_delete(bag_items);
  2093. }
  2094. }
  2095. packet->setDataByName("num_slots", bag_info->num_slots);
  2096. packet->setDataByName("num_empty", free_slots);
  2097. packet->setDataByName("weight_reduction", bag_info->weight_reduction);
  2098. packet->setDataByName("item_score", 2);
  2099. //packet->setDataByName("unknown5", 0x1e50a86f);
  2100. //packet->setDataByName("unknown6", 0x2c17f61d);
  2101. //1 armorer
  2102. //2 weaponsmith
  2103. //4 tailor
  2104. //16 jeweler
  2105. //32 sage
  2106. //64 alchemist
  2107. //120 all scholars
  2108. //250 all craftsman
  2109. //int8 blah[] = {0x00,0x00,0x01,0x01,0xb6,0x01,0x01};
  2110. //int8 blah[] = {0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
  2111. int8 blah[] = { 0xd8,0x66,0x9b,0x6d,0xb6,0xfb,0x7f };
  2112. for (int8 i = 0; i < sizeof(blah); i++)
  2113. packet->setSubstructDataByName("footer", "footer_unknown_0", blah[i], 0, i);
  2114. }
  2115. }
  2116. break;
  2117. }
  2118. case ITEM_TYPE_FOOD:{
  2119. if(food_info && client->GetVersion() >=284){
  2120. packet->setDataByName("food_type", food_info->type);
  2121. packet->setDataByName("level", food_info->level);
  2122. packet->setDataByName("duration", food_info->duration);
  2123. }
  2124. break;
  2125. }
  2126. case ITEM_TYPE_SKILL:{
  2127. //Spell Books
  2128. if(skill_info->spell_id > 0){
  2129. Spell* spell = master_spell_list.GetSpell(skill_info->spell_id, skill_info->spell_tier);
  2130. if(spell){
  2131. if(player && client->GetVersion() >= 284) {
  2132. packet->setSubstructDataByName("header_info", "footer_type", 0);
  2133. spell->SetPacketInformation(packet, player->GetZone()->GetClientBySpawn(player));
  2134. if (player->HasSpell(skill_info->spell_id, skill_info->spell_tier, true))
  2135. packet->setDataByName("scribed", 1);
  2136. if (packet->GetVersion() >= 927){
  2137. if (player->HasSpell(skill_info->spell_id, skill_info->spell_tier, true))
  2138. packet->setAddToPacketByName("scribed_better_version", 1);// need to confirm
  2139. }
  2140. else
  2141. packet->setAddToPacketByName("scribed_better_version", 0); //if not scribed
  2142. // either don't require previous tier or check that we have the lower tier spells potentially
  2143. int32 tier_up = player->GetTierUp(skill_info->spell_tier);
  2144. if (!rule_manager.GetGlobalRule(R_Spells, RequirePreviousTierScribe)->GetInt8() || player->HasSpell(skill_info->spell_id, tier_up, false, true))
  2145. packet->setDataByName("require_previous", 1, 0);
  2146. // membership required
  2147. //packet->setDataByName("unknown_1188_2_MJ", 1, 1);
  2148. }
  2149. else {
  2150. spell->SetPacketInformation(packet);
  2151. }
  2152. //packet->setDataByName("unknown26", 0);
  2153. }
  2154. }
  2155. break;
  2156. }
  2157. case ITEM_TYPE_BAUBLE:{
  2158. if(bauble_info && client->GetVersion() >= 284){
  2159. packet->setDataByName("cast", bauble_info->cast);
  2160. packet->setDataByName("recovery", bauble_info->recovery);
  2161. packet->setDataByName("duration", bauble_info->duration);
  2162. packet->setDataByName("recast", bauble_info->recast);
  2163. packet->setDataByName("display_slot_optional", bauble_info->display_slot_optional);
  2164. packet->setDataByName("display_cast_time", bauble_info->display_cast_time);
  2165. packet->setDataByName("display_bauble_type", bauble_info->display_bauble_type);
  2166. packet->setDataByName("effect_radius", bauble_info->effect_radius);
  2167. packet->setDataByName("max_aoe_targets", bauble_info->max_aoe_targets);
  2168. packet->setDataByName("display_until_cancelled", bauble_info->display_until_cancelled);
  2169. //packet->setDataByName("item_score", 1);
  2170. }
  2171. break;
  2172. }
  2173. case ITEM_TYPE_THROWN:{
  2174. if(thrown_info && client->GetVersion() >= 284){
  2175. packet->setDataByName("range", thrown_info->range);
  2176. packet->setDataByName("damage_modifier", thrown_info->damage_modifier);
  2177. packet->setDataByName("hit_bonus", thrown_info->hit_bonus);
  2178. packet->setDataByName("damage_type", thrown_info->damage_type);
  2179. }
  2180. break;
  2181. }
  2182. case ITEM_TYPE_HOUSE:{
  2183. if(houseitem_info && client->GetVersion() >= 284){
  2184. packet->setDataByName("status_rent_reduction", houseitem_info->status_rent_reduction);
  2185. packet->setDataByName("coin_rent_reduction", houseitem_info->coin_rent_reduction);
  2186. packet->setDataByName("house_only", houseitem_info->house_only);
  2187. }
  2188. break;
  2189. }
  2190. case ITEM_TYPE_BOOK:{
  2191. if(book_info && client->GetVersion() >= 284){
  2192. packet->setDataByName("language", book_info->language);
  2193. packet->setMediumStringByName("author", book_info->author.data.c_str());
  2194. packet->setMediumStringByName("title", book_info->title.data.c_str());
  2195. }
  2196. if (packet->GetVersion() <= 1096) packet->setDataByName("item_type", 13);
  2197. break;
  2198. }
  2199. case ITEM_TYPE_RECIPE:{
  2200. // Recipe Books
  2201. if(recipebook_info){
  2202. packet->setArrayLengthByName("num_recipes", recipebook_info->recipes.size());
  2203. for(int32 i = 0; i < recipebook_info->recipes.size(); i++){
  2204. packet->setArrayDataByName("recipe_name", recipebook_info->recipes.at(i).c_str(), i);
  2205. Recipe* recipe = master_recipe_list.GetRecipeByName(recipebook_info->recipes.at(i).c_str());
  2206. if (recipe) {
  2207. packet->setArrayDataByName("recipe_id", recipe->GetID(), i);
  2208. packet->setArrayDataByName("recipe_icon", recipe->GetIcon(), i);
  2209. }
  2210. }
  2211. packet->setDataByName("uses", recipebook_info->uses);
  2212. if(player->GetRecipeBookList()->HasRecipeBook(details.item_id))
  2213. packet->setDataByName("scribed", 1);
  2214. else
  2215. packet->setDataByName("scribed", 0);
  2216. }
  2217. break;
  2218. }
  2219. case ITEM_TYPE_ADORNMENT:{
  2220. //Adornements
  2221. if (client->GetVersion() >= 284) {
  2222. packet->setDataByName("item_types", adornment_info->item_types);
  2223. packet->setDataByName("duration", adornment_info->duration); // need to calcualte for remaining duration
  2224. packet->setDataByName("slot_type", adornment_info->slot_type);
  2225. packet->setDataByName("footer_set_name", "test footer set name");
  2226. packet->setArrayLengthByName("footer_set_bonus_list_count", 1);// list of the bonus items
  2227. packet->setArrayDataByName("footer_set_bonus_items_needed", 2, 0); //this is nember of items needed for granteing that stat //name,value,array
  2228. packet->setSubArrayLengthByName("footer_set_bonus_stats_count", 2, 0);//name,value,array,subarray
  2229. packet->setSubArrayDataByName("set_stat_type", 5, 0, 0);
  2230. packet->setSubArrayDataByName("set_stat_subtype", 1, 0, 0);
  2231. packet->setSubArrayDataByName("set_value", 25000, 0, 0);
  2232. }
  2233. }
  2234. case ITEM_TYPE_HOUSE_CONTAINER:{
  2235. //House Containers
  2236. if(housecontainer_info && client->GetVersion() >= 284){
  2237. packet->setDataByName("allowed_types", housecontainer_info->allowed_types);
  2238. packet->setDataByName("num_slots", housecontainer_info->num_slots);
  2239. packet->setDataByName("broker_commission", housecontainer_info->broker_commission);
  2240. packet->setDataByName("fence_commission", housecontainer_info->fence_commission);
  2241. }
  2242. }
  2243. }
  2244. }
  2245. LogWrite(MISC__TODO, 1, "TODO", "Item Set information\n\t(%s, function: %s, line #: %i)", __FILE__, __FUNCTION__, __LINE__);
  2246. if (IsBauble()) {
  2247. packet->setSubstructDataByName("footer", "stack_size", stack_count);
  2248. }
  2249. else {
  2250. packet->setSubstructDataByName("footer", "stack_size", stack_count);
  2251. }
  2252. packet->setSubstructDataByName("footer", "collectable", generic_info.collectable);
  2253. packet->setSubstructDataByName("footer", "status_item", sell_status);
  2254. LogWrite(MISC__TODO, 1, "TODO", "Set collection_needed information properly\n\t(%s, function: %s, line #: %i)", __FILE__, __FUNCTION__, __LINE__);
  2255. packet->setSubstructDataByName("footer", "collection_needed", player->GetCollectionList()->NeedsItem(this) ? 1 : 0);
  2256. if(generic_info.offers_quest_id > 0){
  2257. Quest* quest = master_quest_list.GetQuest(generic_info.offers_quest_id, false);
  2258. if(quest){
  2259. packet->setSubstructDataByName("footer", "offers_quest", strlen(generic_info.offers_quest_name) ? generic_info.offers_quest_name : quest->GetName());
  2260. packet->setSubstructDataByName("footer", "quest_color", player->GetArrowColor(quest->GetQuestLevel()));
  2261. }
  2262. }
  2263. if(generic_info.part_of_quest_id > 0){
  2264. Quest* quest = master_quest_list.GetQuest(generic_info.part_of_quest_id, false);
  2265. if(quest){
  2266. packet->setSubstructDataByName("footer", "part_of_quest", strlen(generic_info.required_by_quest_name) ? generic_info.required_by_quest_name : quest->GetName());
  2267. packet->setSubstructDataByName("footer", "quest_color", player->GetArrowColor(quest->GetQuestLevel()));
  2268. }
  2269. }
  2270. if(generic_info.max_charges > 0){
  2271. packet->setSubstructDataByName("footer", "charges", 1);
  2272. packet->setSubstructDataByName("footer", "total_charges", generic_info.max_charges);
  2273. packet->setSubstructDataByName("footer", "charges_left", details.count);
  2274. packet->setSubstructDataByName("footer", "display_charges", generic_info.display_charges);
  2275. }
  2276. if ((packet->GetVersion() >= 63119) || packet->GetVersion() == 61331){
  2277. if (sell_status > 0){
  2278. }
  2279. }
  2280. //packet->setSubstructDataByName("footer", "status_item", 0);
  2281. if (IsHarvest()){
  2282. packet->setSubstructDataByName("footer", "crafting_flag", 1);
  2283. }
  2284. // Set these to 0 for now
  2285. if(packet->GetVersion() >= 1188){
  2286. packet->setSubstructDataByName("footer", "locked_flag", 0);
  2287. packet->setSubstructDataByName("footer", "account_retricted", 0);
  2288. }
  2289. // Adorns, set all to FF for now
  2290. if (packet->GetVersion() >= 1096) {// changed to 1096 for dov from 1188
  2291. packet->setSubstructDataByName("footer", "adorn_slots", 0xFF, 0, 0);
  2292. packet->setSubstructDataByName("footer", "adorn_slots", 0xFF, 0, 1);
  2293. packet->setSubstructDataByName("footer", "adorn_slots", 0xFF, 0, 2);
  2294. packet->setSubstructDataByName("footer", "adorn_slots", 0xFF, 0, 3);
  2295. packet->setSubstructDataByName("footer", "adorn_slots", 0xFF, 0, 4);
  2296. packet->setSubstructDataByName("footer", "adorn_slots", 0xFF, 0, 5);
  2297. }
  2298. if (packet->GetVersion() >= 1289) {// at some point after this there are 10 adornment slots all FF for now but will skip this if not needed for a version
  2299. packet->setSubstructDataByName("footer", "adorn_slots", 0xFF, 0, 6);
  2300. packet->setSubstructDataByName("footer", "adorn_slots", 0xFF, 0, 7);
  2301. packet->setSubstructDataByName("footer", "adorn_slots", 0xFF, 0, 8);
  2302. packet->setSubstructDataByName("footer", "adorn_slots", 0xFF, 0, 9);
  2303. packet->setSubstructDataByName("footer", "adorn_slots", 0xFF, 0, 10);
  2304. }
  2305. packet->setSubstructDataByName("footer", "name", name.c_str());
  2306. packet->setSubstructDataByName("footer", "description", description.c_str());
  2307. LogWrite(ITEM__PACKET, 0, "Items", "Dump/Print Packet in func: %s, line: %i", __FUNCTION__, __LINE__);
  2308. //packet->PrintPacket();
  2309. #if EQDEBUG >= 9
  2310. packet->PrintPacket();
  2311. #endif
  2312. }
  2313. PacketStruct* Item::PrepareItem(int16 version, bool merchant_item, bool loot_item){
  2314. PacketStruct* packet = 0;
  2315. if(loot_item && version > 546)
  2316. packet = configReader.getStruct("WS_LootItemGeneric", version);
  2317. else{
  2318. int8 tmpType = generic_info.item_type;
  2319. if (version <= 283 && generic_info.item_type > ITEM_TYPE_RECIPE)
  2320. tmpType = 0;
  2321. switch(tmpType){
  2322. case ITEM_TYPE_WEAPON:{
  2323. if(merchant_item)
  2324. packet = configReader.getStruct("WS_MerchantItemWeapon", version);
  2325. else
  2326. packet = configReader.getStruct("WS_ItemWeapon", version);
  2327. break;
  2328. }
  2329. case ITEM_TYPE_RANGED:{
  2330. if(merchant_item)
  2331. packet = configReader.getStruct("WS_MerchantItemRange", version);
  2332. else
  2333. packet = configReader.getStruct("WS_ItemRange", version);
  2334. break;
  2335. }
  2336. case ITEM_TYPE_SHIELD:{
  2337. if (merchant_item)
  2338. packet = configReader.getStruct("WS_MerchantItemShield", version);
  2339. else
  2340. packet = configReader.getStruct("WS_ItemShield", version);
  2341. break;
  2342. }
  2343. case ITEM_TYPE_ARMOR:{
  2344. if(merchant_item)
  2345. packet = configReader.getStruct("WS_MerchantItemArmor", version);
  2346. else
  2347. packet = configReader.getStruct("WS_ItemArmor", version);
  2348. break;
  2349. }
  2350. case ITEM_TYPE_BAG:{
  2351. if(merchant_item)
  2352. packet = configReader.getStruct("WS_MerchantItemBag", version);
  2353. else
  2354. packet = configReader.getStruct("WS_ItemBag", version);
  2355. break;
  2356. }
  2357. case ITEM_TYPE_BOOK:{
  2358. if(merchant_item)
  2359. packet = configReader.getStruct("WS_MerchantItemBook", version);
  2360. else
  2361. packet = configReader.getStruct("WS_ItemBook", version);
  2362. break;
  2363. }
  2364. case ITEM_TYPE_SKILL:{
  2365. if(merchant_item)
  2366. packet = configReader.getStruct("WS_MerchantItemSkill", version);
  2367. else
  2368. packet = configReader.getStruct("WS_ItemSkill", version);
  2369. break;
  2370. }
  2371. case ITEM_TYPE_RECIPE:{
  2372. if(merchant_item)
  2373. packet = configReader.getStruct("WS_MerchantItemRecipeBook", version);
  2374. else
  2375. packet = configReader.getStruct("WS_ItemRecipeBook", version);
  2376. break;
  2377. }
  2378. case ITEM_TYPE_FOOD:{
  2379. if(merchant_item)
  2380. packet = configReader.getStruct("WS_MerchantItemFood", version);
  2381. else
  2382. packet = configReader.getStruct("WS_ItemFood", version);
  2383. break;
  2384. }
  2385. case ITEM_TYPE_BAUBLE:{
  2386. if(merchant_item)
  2387. packet = configReader.getStruct("WS_MerchantItemBauble", version);
  2388. else
  2389. packet = configReader.getStruct("WS_ItemBauble", version);
  2390. break;
  2391. }
  2392. case ITEM_TYPE_ITEMCRATE:{
  2393. if (merchant_item)
  2394. packet = configReader.getStruct("WS_MerchantItemSet", version);
  2395. else
  2396. packet = configReader.getStruct("WS_ItemSet", version);
  2397. break;
  2398. }
  2399. case ITEM_TYPE_HOUSE:{
  2400. if(merchant_item)
  2401. packet = configReader.getStruct("WS_MerchantItemHouse", version);
  2402. else
  2403. packet = configReader.getStruct("WS_ItemHouse", version);
  2404. break;
  2405. }
  2406. case ITEM_TYPE_THROWN:{
  2407. if(merchant_item)
  2408. packet = configReader.getStruct("WS_MerchantItemThrown", version);
  2409. else
  2410. packet = configReader.getStruct("WS_ItemThrown", version);
  2411. break;
  2412. }
  2413. case ITEM_TYPE_HOUSE_CONTAINER:{
  2414. if(merchant_item)
  2415. packet = configReader.getStruct("WS_MerchantItemHouseContainer", version);
  2416. else
  2417. packet = configReader.getStruct("WS_ItemHouseContainer", version);
  2418. break;
  2419. }
  2420. case ITEM_TYPE_ADORNMENT:{
  2421. if(merchant_item)
  2422. packet = configReader.getStruct("WS_MerchantAdornment", version);
  2423. else
  2424. packet = configReader.getStruct("WS_ItemAdornment", version);
  2425. break;
  2426. }
  2427. default:{
  2428. if(merchant_item)
  2429. packet = configReader.getStruct("WS_MerchantItemGeneric", version);
  2430. else
  2431. packet = configReader.getStruct("WS_ItemGeneric", version);
  2432. }
  2433. }
  2434. if (packet && loot_item)
  2435. packet->AddFlag("loot");
  2436. }
  2437. if(!packet){
  2438. LogWrite(ITEM__ERROR, 0, "Item", "Unhandled Item type: %i", (int)generic_info.item_type);
  2439. return 0;
  2440. }
  2441. return packet;
  2442. }
  2443. EQ2Packet* Item::serialize(int16 version, bool show_name, Player* player, bool include_twice, int16 packet_type, int8 subtype, bool merchant_item, bool loot_item){
  2444. PacketStruct* packet = PrepareItem(version, merchant_item, loot_item);
  2445. if(!packet)
  2446. return 0;
  2447. if (version <= 546) {
  2448. include_twice = false;
  2449. packet_type = 0;
  2450. }
  2451. if(include_twice && IsBag() == false && IsBauble() == false && IsFood() == false)
  2452. serialize(packet, show_name, player, packet_type, 0x80, loot_item);
  2453. else
  2454. serialize(packet, show_name, player, packet_type, 0, loot_item);
  2455. if(merchant_item)
  2456. packet->setSubstructDataByName("header_info", "unique_id", 0xFFFFFFFF);
  2457. string* generic_string_data = packet->serializeString();
  2458. //packet->PrintPacket();
  2459. //LogWrite(ITEM__DEBUG, 9, "Items", "generic_string_data:");
  2460. //DumpPacket((uchar*)generic_string_data->c_str(), generic_string_data->length());
  2461. int32 size = generic_string_data->length();
  2462. if(include_twice && IsBag() == false && IsBauble() == false && IsFood() == false)
  2463. size = (size*2)-13;
  2464. uchar* out_data = new uchar[size+1];
  2465. uchar* out_ptr = out_data;
  2466. memcpy(out_ptr, (uchar*)generic_string_data->c_str(), generic_string_data->length());
  2467. out_ptr += generic_string_data->length();
  2468. if(include_twice && IsBag() == false && IsBauble() == false && IsFood() == false){
  2469. memcpy(out_ptr, (uchar*)generic_string_data->c_str() + 13, generic_string_data->length() -13);
  2470. }
  2471. int32 size2 = size;
  2472. if (version <= 283) {
  2473. uchar* out_ptr2 = out_data;
  2474. if (size2 >= 0xFF) {
  2475. size2 -= 3;
  2476. out_ptr2[0] = 0xFF;
  2477. out_ptr2 += sizeof(int8);
  2478. memcpy(out_ptr2, &size2, sizeof(int16));
  2479. }
  2480. else {
  2481. size2 -= 1;
  2482. out_ptr2[0] = size2;
  2483. }
  2484. }
  2485. else {
  2486. size2 -= 4;
  2487. memcpy(out_data, &size2, sizeof(int32));
  2488. }
  2489. EQ2Packet* outapp = new EQ2Packet(OP_ClientCmdMsg, out_data, size);
  2490. //DumpPacket(outapp);
  2491. safe_delete(packet);
  2492. safe_delete_array(out_data);
  2493. return outapp;
  2494. }
  2495. void Item::SetAppearance(ItemAppearance* appearance){
  2496. SetAppearance(appearance->type, appearance->red, appearance->green, appearance->blue, appearance->highlight_red, appearance->highlight_green, appearance->highlight_blue);
  2497. }
  2498. void Item::SetAppearance(int16 type, int8 red, int8 green, int8 blue, int8 highlight_red, int8 highlight_green, int8 highlight_blue){
  2499. generic_info.appearance_id = type;
  2500. generic_info.appearance_red = red;
  2501. generic_info.appearance_green = green;
  2502. generic_info.appearance_blue = blue;
  2503. generic_info.appearance_highlight_red = highlight_red;
  2504. generic_info.appearance_highlight_green = highlight_green;
  2505. generic_info.appearance_highlight_blue = highlight_blue;
  2506. }
  2507. void Item::AddEffect(string effect, int8 percentage, int8 subbulletflag){
  2508. ItemEffect* item_effect = new ItemEffect;
  2509. item_effect->subbulletflag = subbulletflag;
  2510. item_effect->effect.data = effect;
  2511. item_effect->effect.size = effect.length();
  2512. item_effect->percentage = percentage;
  2513. item_effects.push_back(item_effect);
  2514. }
  2515. void Item::AddBookPage(int8 page, string page_text, int8 valign, int8 halign) {
  2516. BookPage * bookpage = new BookPage;
  2517. bookpage->page = page;
  2518. bookpage->page_text.data = page_text;
  2519. bookpage->page_text.size = page_text.length();
  2520. bookpage->valign = valign;
  2521. bookpage->halign = halign;
  2522. book_pages.push_back(bookpage);
  2523. }
  2524. void Item::AddLevelOverride(ItemLevelOverride* level_override){
  2525. AddLevelOverride(level_override->adventure_class, level_override->tradeskill_class, level_override->level);
  2526. }
  2527. void Item::AddLevelOverride(int8 adventure_class, int8 tradeskill_class, int16 level){
  2528. ItemLevelOverride* item_override = new ItemLevelOverride;
  2529. item_override->adventure_class = adventure_class;
  2530. item_override->tradeskill_class = tradeskill_class;
  2531. item_override->level = level;
  2532. item_level_overrides.push_back(item_override);
  2533. }
  2534. void Item::AddSlot(int8 slot_id){
  2535. slot_data.push_back(slot_id);
  2536. }
  2537. void Item::SetWeaponType(int8 type){
  2538. weapon_type = type;
  2539. }
  2540. int8 Item::GetWeaponType(){
  2541. return weapon_type;
  2542. }
  2543. int32 Item::GetMaxSellValue(){
  2544. return max_sell_value;
  2545. }
  2546. void Item::SetMaxSellValue(int32 val){
  2547. max_sell_value = val;
  2548. }
  2549. void Item::SetItemScript(string name){
  2550. item_script = name;
  2551. }
  2552. const char* Item::GetItemScript(){
  2553. if(item_script.length() > 0)
  2554. return item_script.c_str();
  2555. return 0;
  2556. }
  2557. int32 Item::CalculateRepairCost() {
  2558. if (generic_info.condition == 100)
  2559. return 0;
  2560. float repair_cost = (float)generic_info.adventure_default_level * (10.0 - ((float)generic_info.condition * 0.1));
  2561. if (details.tier == ITEM_TAG_LEGENDARY)
  2562. repair_cost *= 4;
  2563. else if (details.tier == ITEM_TAG_FABLED)
  2564. repair_cost *= 8;
  2565. else if (details.tier == ITEM_TAG_MYTHICAL)
  2566. repair_cost *= 12;
  2567. return (int32)repair_cost;
  2568. }
  2569. PlayerItemList::PlayerItemList(){
  2570. packet_count = 0;
  2571. xor_packet = 0;
  2572. orig_packet = 0;
  2573. MPlayerItems.SetName("PlayerItemList::MPlayerItems");
  2574. }
  2575. PlayerItemList::~PlayerItemList(){
  2576. safe_delete_array(xor_packet);
  2577. safe_delete_array(orig_packet);
  2578. map<sint32, map<int8, map<int16, Item*>> >::iterator bag_iter;
  2579. map<int16, Item*>::iterator itr;
  2580. for(bag_iter = items.begin(); bag_iter != items.end(); bag_iter++){
  2581. for(itr = bag_iter->second[0].begin(); itr != bag_iter->second[0].end(); itr++){
  2582. safe_delete(itr->second);
  2583. }
  2584. for(itr = bag_iter->second[1].begin(); itr != bag_iter->second[1].end(); itr++){
  2585. safe_delete(itr->second);
  2586. }
  2587. bag_iter->second.clear();
  2588. }
  2589. items.clear();
  2590. while (!overflowItems.empty()){
  2591. safe_delete(overflowItems.back());
  2592. overflowItems.pop_back();
  2593. }
  2594. }
  2595. map<int32, Item*>* PlayerItemList::GetAllItems(){
  2596. map<int32, Item*>* ret = new map<int32, Item*>;
  2597. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  2598. ret->insert(indexed_items.begin(), indexed_items.end());
  2599. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  2600. return ret;
  2601. }
  2602. Item* PlayerItemList::GetItemFromIndex(int32 index){
  2603. Item* ret = 0;
  2604. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  2605. if(indexed_items.count(index) > 0)
  2606. ret = indexed_items[index];
  2607. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  2608. return ret;
  2609. }
  2610. Item* PlayerItemList::GetItem(sint32 bag_slot, int16 slot, int8 appearance_type){
  2611. Item* ret = 0;
  2612. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  2613. if(items.count(bag_slot) > 0 && items[bag_slot][appearance_type].count(slot) > 0)
  2614. ret = items[bag_slot][appearance_type][slot];
  2615. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  2616. return ret;
  2617. }
  2618. bool PlayerItemList::AddItem(Item* item){ //is called with a slot already set
  2619. //quick check to verify item
  2620. if(!item)
  2621. return false;
  2622. else{
  2623. if(item->details.inv_slot_id != 0){
  2624. Item* bag = GetItemFromUniqueID(item->details.inv_slot_id, true);
  2625. if(bag && bag->IsBag()){
  2626. if(item->details.slot_id > bag->details.num_slots){
  2627. LogWrite(ITEM__ERROR, 0, "Item", "Error Adding Item: Invalid slot for item unique id: %u (%s - %i), InvSlotID: %u, slotid: %u, numslots: %u", item->details.unique_id, item->name.c_str(),
  2628. item->details.item_id, item->details.inv_slot_id, item->details.slot_id, bag->details.num_slots);
  2629. safe_delete(item);
  2630. return false;
  2631. }
  2632. }
  2633. }
  2634. }
  2635. int32 max_index = indexed_items.size();
  2636. int32 new_index = 0;
  2637. map<int32, Item*>::iterator itr;
  2638. MPlayerItems.writelock(__FUNCTION__, __LINE__);
  2639. for(itr = indexed_items.begin();itr != indexed_items.end(); itr++){
  2640. if(itr->first > max_index) //just grab the highest index val for next loop
  2641. max_index = itr->first;
  2642. }
  2643. for(int32 i=0;i<max_index;i++){
  2644. if(!indexed_items[i]){
  2645. new_index = i;
  2646. break;
  2647. }
  2648. }
  2649. if(new_index == 0 && max_index > 0)
  2650. new_index = max_index;
  2651. indexed_items[new_index] = item;
  2652. item->details.index = new_index;
  2653. items[item->details.inv_slot_id][item->details.appearance_type][item->details.slot_id] = item;
  2654. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  2655. return true;
  2656. }
  2657. Item* PlayerItemList::GetBag(int8 inventory_slot, bool lock){
  2658. Item* bag = 0;
  2659. if(lock)
  2660. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  2661. if(items.count(0) > 0 && items[0][BASE_EQUIPMENT].count(inventory_slot) > 0 && items[0][BASE_EQUIPMENT][inventory_slot]->IsBag())
  2662. bag = items[0][BASE_EQUIPMENT][inventory_slot];
  2663. if(lock)
  2664. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  2665. return bag;
  2666. }
  2667. Item* PlayerItemList::GetBankBag(int8 inventory_slot, bool lock){
  2668. Item* bag = 0;
  2669. if(lock)
  2670. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  2671. if(items.count(-3) > 0 && items[-3][BASE_EQUIPMENT].count(inventory_slot) > 0 && items[-3][BASE_EQUIPMENT][inventory_slot]->IsBag())
  2672. bag = items[-3][BASE_EQUIPMENT][inventory_slot];
  2673. if(lock)
  2674. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  2675. return bag;
  2676. }
  2677. int16 PlayerItemList::GetNumberOfFreeSlots(){
  2678. int16 count = 0;
  2679. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  2680. for(int8 i=0;i<NUM_INV_SLOTS;i++){
  2681. if(items.count(i) == 0)
  2682. count++;
  2683. }
  2684. Item* bag = 0;
  2685. for(int8 i=0;i<NUM_INV_SLOTS;i++){
  2686. bag = GetBag(i, false);
  2687. if(bag && bag->details.num_slots > 0){
  2688. if(items.count(bag->details.bag_id) > 0){
  2689. for(int16 x=0;x<bag->details.num_slots;x++){
  2690. if(items[bag->details.bag_id][BASE_EQUIPMENT].count(x) == 0)
  2691. count++;
  2692. }
  2693. }
  2694. else
  2695. count += bag->bag_info->num_slots; //if the bag hasnt been used yet, add all the free slots
  2696. }
  2697. }
  2698. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  2699. return count;
  2700. }
  2701. bool PlayerItemList::HasFreeBagSlot(){
  2702. bool ret = false;
  2703. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  2704. if(items.count(0) > 0){
  2705. for(int8 i=0;i<NUM_INV_SLOTS;i++){
  2706. if(items[0][BASE_EQUIPMENT].count(i) == 0){
  2707. ret = true;
  2708. break;
  2709. }
  2710. }
  2711. }
  2712. else
  2713. ret = true;
  2714. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  2715. return ret;
  2716. }
  2717. bool PlayerItemList::HasFreeSlot(){
  2718. bool ret = false;
  2719. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  2720. if(items.count(0) > 0){
  2721. for(int8 i=0;i<NUM_INV_SLOTS;i++){
  2722. if(items[0][BASE_EQUIPMENT].count(i) == 0){
  2723. ret = true;
  2724. break;
  2725. }
  2726. }
  2727. }
  2728. else
  2729. ret = true;
  2730. if(!ret){ //inventory slots full, check bags
  2731. Item* bag = 0;
  2732. for(int8 i=0;!ret && i<NUM_INV_SLOTS;i++){
  2733. bag = GetBag(i, false);
  2734. if(bag && bag->details.num_slots > 0){
  2735. if(items.count(bag->details.bag_id) > 0){
  2736. for(int16 x=0;x<bag->details.num_slots;x++){
  2737. if(items[bag->details.bag_id][BASE_EQUIPMENT].count(x) == 0){
  2738. ret = true;
  2739. break;
  2740. }
  2741. }
  2742. }
  2743. else{ //if the bag hasnt been used yet, then all slots are free
  2744. ret = true;
  2745. break;
  2746. }
  2747. }
  2748. }
  2749. }
  2750. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  2751. return ret;
  2752. }
  2753. bool PlayerItemList::GetFirstFreeBankSlot(sint32* bag_id, sint16* slot) {
  2754. bool ret = false;
  2755. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  2756. if (items.count(-3) > 0) {
  2757. for (int8 i = 0; i < NUM_BANK_SLOTS; i++) {
  2758. if (items[-3][BASE_EQUIPMENT].count(i) == 0) {
  2759. *bag_id = -3;
  2760. *slot = i;
  2761. ret = true;
  2762. break;
  2763. }
  2764. }
  2765. }
  2766. else {
  2767. *bag_id = -3;
  2768. *slot = 0;
  2769. ret = true;
  2770. }
  2771. if(!ret) {
  2772. // Inventory slots were full so check bags
  2773. Item* bag = 0;
  2774. for(int8 i = 0; !ret && i < NUM_BANK_SLOTS; i++) {
  2775. // Check to see if the item in the inventory slot is a bag and it has slots
  2776. bag = GetBankBag(i, false);
  2777. if(bag && bag->details.num_slots > 0) {
  2778. // Item was a bag so lets loop through the slots and try to find an empty one
  2779. if(items.count(bag->details.bag_id) > 0) {
  2780. for(int16 x = 0; x < bag->details.num_slots; x++) {
  2781. if(items[bag->details.bag_id][BASE_EQUIPMENT].count(x) == 0) {
  2782. // Found a free slot, get the bag id of this bag
  2783. *bag_id = bag->details.bag_id;
  2784. // Get the slot
  2785. *slot = x;
  2786. ret = true;
  2787. break;
  2788. }
  2789. }
  2790. }
  2791. else {
  2792. //if the bag hasnt been used yet, then all slots are free, so set the bag_id to this bag
  2793. // and the slot to 0 (the first slot)
  2794. *bag_id = bag->details.bag_id;
  2795. *slot = 0;
  2796. ret = true;
  2797. break;
  2798. }
  2799. }
  2800. }
  2801. }
  2802. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  2803. return ret;
  2804. }
  2805. bool PlayerItemList::GetFirstFreeSlot(sint32* bag_id, sint16* slot) {
  2806. // Mostly copy and paste from the above function
  2807. bool ret = false;
  2808. // Try to place the item in the normal inventory slots first
  2809. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  2810. if(items.count(0) > 0){
  2811. for(int8 i=0; i < NUM_INV_SLOTS; i++) {
  2812. if(items[0][BASE_EQUIPMENT].count(i) == 0) {
  2813. // Found an empty slot, store the slot id and set the return value
  2814. *bag_id = 0;
  2815. *slot = i;
  2816. ret = true;
  2817. break;
  2818. }
  2819. }
  2820. }
  2821. else {
  2822. // no items in the players inventory, set it to the first slot
  2823. *bag_id = 0;
  2824. *slot = 0;
  2825. ret = true;
  2826. }
  2827. if(!ret) {
  2828. // Inventory slots were full so check bags
  2829. Item* bag = 0;
  2830. for(int8 i = 0; !ret && i < NUM_INV_SLOTS; i++) {
  2831. // Check to see if the item in the inventory slot is a bag and it has slots
  2832. bag = GetBag(i, false);
  2833. if(bag && bag->details.num_slots > 0) {
  2834. // Item was a bag so lets loop through the slots and try to find an empty one
  2835. if(items.count(bag->details.bag_id) > 0) {
  2836. for(int16 x = 0; x < bag->details.num_slots; x++) {
  2837. if(items[bag->details.bag_id][BASE_EQUIPMENT].count(x) == 0) {
  2838. // Found a free slot, get the bag id of this bag
  2839. *bag_id = bag->details.bag_id;
  2840. // Get the slot
  2841. *slot = x;
  2842. ret = true;
  2843. break;
  2844. }
  2845. }
  2846. }
  2847. else {
  2848. //if the bag hasnt been used yet, then all slots are free, so set the bag_id to this bag
  2849. // and the slot to 0 (the first slot)
  2850. *bag_id = bag->details.bag_id;
  2851. *slot = 0;
  2852. ret = true;
  2853. break;
  2854. }
  2855. }
  2856. }
  2857. }
  2858. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  2859. return ret;
  2860. }
  2861. Item* PlayerItemList::CanStack(Item* item, bool include_bank){
  2862. if(!item)
  2863. return 0;
  2864. Item* ret = 0;
  2865. map<sint32, map<int8, map<int16, Item*>> >::iterator itr;
  2866. map<int16, Item*>::iterator slot_itr;
  2867. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  2868. for(itr = items.begin(); itr != items.end(); itr++){
  2869. if(include_bank || (!include_bank && itr->first >= 0)){
  2870. for(slot_itr=itr->second[0].begin();slot_itr!=itr->second[0].end(); slot_itr++){
  2871. if(slot_itr->second && slot_itr->second->details.item_id == item->details.item_id && ((slot_itr->second->details.count + item->details.count) <= slot_itr->second->stack_count)){
  2872. ret = slot_itr->second;
  2873. break;
  2874. }
  2875. }
  2876. for(slot_itr=itr->second[1].begin();slot_itr!=itr->second[1].end(); slot_itr++){
  2877. if(slot_itr->second && slot_itr->second->details.item_id == item->details.item_id && ((slot_itr->second->details.count + item->details.count) <= slot_itr->second->stack_count)){
  2878. ret = slot_itr->second;
  2879. break;
  2880. }
  2881. }
  2882. }
  2883. if(ret)
  2884. break;
  2885. }
  2886. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  2887. return ret;
  2888. }
  2889. void PlayerItemList::Stack(Item* orig_item, Item* item){
  2890. if(!orig_item || !item)
  2891. return;
  2892. orig_item->details.count += item->details.count;
  2893. orig_item->save_needed = true;
  2894. }
  2895. bool PlayerItemList::AssignItemToFreeSlot(Item* item){
  2896. if(item){
  2897. Item* orig_item = CanStack(item);
  2898. if(orig_item){
  2899. Stack(orig_item, item);
  2900. return true;
  2901. }
  2902. bool use_bag_freeslot = false;
  2903. if(item->IsBag())
  2904. use_bag_freeslot = HasFreeBagSlot();
  2905. MPlayerItems.writelock(__FUNCTION__, __LINE__);
  2906. if(!use_bag_freeslot){
  2907. Item* bag = 0;
  2908. for(int8 i=0;i<NUM_INV_SLOTS;i++){
  2909. bag = GetBag(i, false);
  2910. if(bag && bag->details.num_slots > 0){
  2911. for(int16 x=0;x<bag->details.num_slots;x++){
  2912. if(items[bag->details.bag_id][BASE_EQUIPMENT].count(x) == 0){
  2913. item->details.inv_slot_id = bag->details.bag_id;
  2914. item->details.slot_id = x;
  2915. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  2916. bool ret = AddItem(item);
  2917. return ret;
  2918. }
  2919. }
  2920. }
  2921. }
  2922. }
  2923. //bags full, check inventory slots
  2924. for(int8 i=0;i<NUM_INV_SLOTS;i++){
  2925. if(items[0][BASE_EQUIPMENT].count(i) == 0){
  2926. item->details.inv_slot_id = 0;
  2927. item->details.slot_id = i;
  2928. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  2929. bool ret = AddItem(item);
  2930. return ret;
  2931. }
  2932. }
  2933. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  2934. }
  2935. return false;
  2936. }
  2937. void PlayerItemList::RemoveItem(Item* item, bool delete_item){
  2938. MPlayerItems.writelock(__FUNCTION__, __LINE__);
  2939. if(items.count(item->details.inv_slot_id) > 0 && items[item->details.inv_slot_id][item->details.appearance_type].count(item->details.slot_id) > 0){
  2940. items[item->details.inv_slot_id][item->details.appearance_type].erase(item->details.slot_id);
  2941. indexed_items[item->details.index] = 0;
  2942. }
  2943. if(item->IsBag() && item->details.inv_slot_id == 0 && item->details.slot_id < NUM_INV_SLOTS && items.count(item->details.bag_id) > 0){
  2944. map<int16, Item*>::iterator itr;
  2945. for(itr = items[item->details.bag_id][item->details.appearance_type].begin(); itr != items[item->details.bag_id][item->details.appearance_type].end(); itr++){
  2946. indexed_items[itr->second->details.index] = 0;
  2947. if(delete_item){
  2948. if(itr->second == item) {
  2949. item = nullptr;
  2950. }
  2951. safe_delete(itr->second);
  2952. }
  2953. }
  2954. items.erase(item->details.bag_id);
  2955. }
  2956. if(delete_item){
  2957. map<int32, Item*>::iterator itr = indexed_items.find(item->details.index);
  2958. if(itr != indexed_items.end() && item == indexed_items[item->details.index])
  2959. indexed_items[item->details.index] = 0;
  2960. safe_delete(item);
  2961. }
  2962. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  2963. }
  2964. void PlayerItemList::DestroyItem(int16 index){
  2965. MPlayerItems.writelock(__FUNCTION__, __LINE__);
  2966. Item* item = indexed_items[index];
  2967. map<int16, Item*>::iterator itr;
  2968. if(item && item->IsBag() && item->details.inv_slot_id == 0 && item->details.slot_id < NUM_INV_SLOTS && items.count((sint32)item->details.bag_id) > 0){ //inventory
  2969. map<int16, Item*>* tmp_map = &(items[(sint32)item->details.bag_id][item->details.appearance_type]);
  2970. for(itr = tmp_map->begin(); itr != tmp_map->end(); itr++){
  2971. indexed_items[itr->second->details.index] = 0;
  2972. if(itr->second != item){
  2973. safe_delete(itr->second);
  2974. }
  2975. }
  2976. items.erase(item->details.bag_id);
  2977. }
  2978. if(item && items.count(item->details.inv_slot_id) > 0 && items[item->details.inv_slot_id][item->details.appearance_type].count(item->details.slot_id) > 0)
  2979. items[item->details.inv_slot_id][item->details.appearance_type].erase(item->details.slot_id);
  2980. indexed_items[index] = 0;
  2981. safe_delete(item);
  2982. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  2983. }
  2984. void PlayerItemList::MoveItem(Item* item, sint32 inv_slot, int16 slot, int8 appearance_type, bool erase_old){
  2985. if(erase_old && items.count(item->details.inv_slot_id) > 0 && items[item->details.inv_slot_id][BASE_EQUIPMENT].count(item->details.slot_id))
  2986. items[item->details.inv_slot_id][BASE_EQUIPMENT].erase(item->details.slot_id);
  2987. items[inv_slot][BASE_EQUIPMENT][slot] = item;
  2988. item->details.inv_slot_id = inv_slot;
  2989. item->details.slot_id = slot;
  2990. item->details.appearance_type = 0;
  2991. item->save_needed = true;
  2992. }
  2993. int16 PlayerItemList::GetNumberOfItems(){
  2994. int16 ret = 0;
  2995. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  2996. if(items.size() > 0){
  2997. map<sint32, map<int8, map<int16, Item*>> >::iterator itr;
  2998. sint32 bag_id = 0;
  2999. for(itr = items.begin(); itr != items.end(); itr++){
  3000. bag_id = itr->first;
  3001. if(items[bag_id].count(0))
  3002. ret += items[bag_id][BASE_EQUIPMENT].size();
  3003. }
  3004. }
  3005. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3006. return ret;
  3007. }
  3008. bool PlayerItemList::MoveItem(sint32 to_bag_id, int16 from_index, sint8 to, int8 appearance_type, int8 charges){
  3009. MPlayerItems.writelock(__FUNCTION__, __LINE__);
  3010. Item* item_from = indexed_items[from_index];
  3011. Item* item_to = 0;
  3012. if(item_from){
  3013. if(to_bag_id > 0){ //bag item
  3014. Item* bag = GetItemFromUniqueID(to_bag_id, true, false);
  3015. if(bag && bag->details.num_slots > to)
  3016. item_to = items[to_bag_id][BASE_EQUIPMENT][to];
  3017. else{
  3018. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  3019. return false;
  3020. }
  3021. }
  3022. else
  3023. item_to = items[to_bag_id][BASE_EQUIPMENT][to];
  3024. if(charges > 0) {
  3025. if (item_to && item_from->details.item_id == item_to->details.item_id){
  3026. if(item_to->details.count > 0 && item_to->details.count < item_to->stack_count){
  3027. int32 total_tmp_price = 0;
  3028. if((item_to->details.count + item_from->details.count) <= item_to->stack_count){
  3029. total_tmp_price = (item_to->GetMaxSellValue()*item_to->details.count) + (item_from->GetMaxSellValue()*item_from->details.count);
  3030. item_to->details.count += item_from->details.count;
  3031. indexed_items[from_index] = 0;
  3032. items[item_from->details.inv_slot_id][BASE_EQUIPMENT].erase(item_from->details.slot_id);
  3033. item_from->needs_deletion = true;
  3034. item_to->save_needed = true;
  3035. }
  3036. else{
  3037. int8 diff = item_to->stack_count - item_to->details.count;
  3038. total_tmp_price = (item_to->GetMaxSellValue()*item_to->details.count) + (item_from->GetMaxSellValue()*diff);
  3039. item_to->details.count = item_to->stack_count;
  3040. item_from->details.count -= diff;
  3041. item_to->save_needed = true;
  3042. }
  3043. item_to->SetMaxSellValue(total_tmp_price/item_to->details.count);
  3044. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  3045. return true;
  3046. }
  3047. }
  3048. else {
  3049. if (item_from->details.count == charges) {
  3050. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  3051. if (item_to)
  3052. MoveItem(item_to, item_from->details.inv_slot_id, item_from->details.slot_id, BASE_EQUIPMENT, true);
  3053. MoveItem(item_from, to_bag_id, to, BASE_EQUIPMENT, item_to ? false:true);
  3054. }
  3055. else {
  3056. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  3057. if (item_to) {
  3058. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  3059. return false;
  3060. }
  3061. item_from->details.count -= charges;
  3062. Item* new_item = new Item(master_item_list.GetItem(item_from->details.item_id));
  3063. new_item->details.count = charges;
  3064. new_item->details.slot_id = to;
  3065. new_item->details.inv_slot_id = to_bag_id;
  3066. new_item->details.appearance_type = 0;
  3067. new_item->save_needed = true;
  3068. AddItem(new_item);
  3069. if (item_from->details.count == 0)
  3070. RemoveItem(item_from);
  3071. }
  3072. return true;
  3073. }
  3074. }
  3075. else if(item_to && item_to->IsBag() && item_to->details.num_slots > 0){
  3076. // if item we are moving is a bag
  3077. if (item_from->IsBag() && item_from->details.num_slots > 0) {
  3078. for (int8 i = 0; i < item_from->details.num_slots; i++) {
  3079. // if there is something in the bag return, can't put bags with items into other bags
  3080. if (items[item_from->details.bag_id][BASE_EQUIPMENT].count(i) != 0) {
  3081. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  3082. return false;
  3083. }
  3084. }
  3085. }
  3086. if(items.count(item_to->details.bag_id) > 0){
  3087. for(int8 i=0;i<item_to->details.num_slots;i++){
  3088. if(items[item_to->details.bag_id][BASE_EQUIPMENT].count(i) == 0){
  3089. MoveItem(item_from, item_to->details.bag_id, i, 0, true);
  3090. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  3091. return true;
  3092. }
  3093. }
  3094. }
  3095. else{
  3096. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  3097. MoveItem(item_from, item_to->details.bag_id, 0, BASE_EQUIPMENT, true);
  3098. return true;
  3099. }
  3100. }
  3101. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  3102. if (item_to)
  3103. MoveItem(item_to, item_from->details.inv_slot_id, item_from->details.slot_id, BASE_EQUIPMENT, true);
  3104. MoveItem(item_from, to_bag_id, to, BASE_EQUIPMENT, item_to ? false:true);
  3105. return true;
  3106. }
  3107. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  3108. return false;
  3109. }
  3110. EQ2Packet* PlayerItemList::serialize(Player* player, int16 version){
  3111. EQ2Packet* app = 0;
  3112. PacketStruct* packet = configReader.getStruct("WS_UpdateInventory",version);
  3113. Item* item = 0;
  3114. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  3115. if(packet && indexed_items.size() > 0){
  3116. int8 packet_size = 0;
  3117. int16 size = indexed_items.size();
  3118. if (overflowItems.size() > 0)
  3119. size++;
  3120. PacketStruct* packet2 = configReader.getStruct("Substruct_Item", version);
  3121. packet_size = packet2->GetTotalPacketSize();
  3122. safe_delete(packet2);
  3123. packet->setArrayLengthByName("item_count", size);
  3124. if(packet_count < size){
  3125. if(!orig_packet){
  3126. xor_packet = new uchar[packet_size * size];
  3127. orig_packet = new uchar[packet_size * size];
  3128. memset(xor_packet, 0, packet_size * size);
  3129. memset(orig_packet, 0, packet_size * size);
  3130. }
  3131. else{
  3132. uchar* tmp = new uchar[packet_size * size];
  3133. memset(tmp, 0, packet_size * size);
  3134. memcpy(tmp, orig_packet, packet_size * packet_count);
  3135. safe_delete_array(orig_packet);
  3136. orig_packet = tmp;
  3137. safe_delete_array(xor_packet);
  3138. xor_packet = new uchar[packet_size * size];
  3139. }
  3140. packet_count = size;
  3141. }
  3142. for(int16 i = 0; i < indexed_items.size(); i++){
  3143. item = indexed_items[i];
  3144. if (item && item->details.item_id > 0)
  3145. AddItemToPacket(packet, player, item, i);
  3146. }
  3147. if (overflowItems.size() > 0) {
  3148. // We have overflow items, lets get the first one
  3149. item = overflowItems.at(0);
  3150. // Lets make sure the item is valid
  3151. if (item && item->details.item_id > 0) {
  3152. // Set the slot to 6 as that is what overflow requires to work
  3153. item->details.slot_id = 6;
  3154. // now add it to the packet
  3155. AddItemToPacket(packet, player, item, size - 1, true);
  3156. }
  3157. }
  3158. LogWrite(ITEM__PACKET, 0, "Items", "Dump/Print Packet in func: %s, line: %i", __FUNCTION__, __LINE__);
  3159. #if EQDEBUG >= 9
  3160. packet->PrintPacket();
  3161. #endif
  3162. packet->setDataByName("equip_flag",0);
  3163. app = packet->serializeCountPacket(version, 1, orig_packet, xor_packet);
  3164. safe_delete(packet);
  3165. }
  3166. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3167. return app;
  3168. }
  3169. void PlayerItemList::AddItemToPacket(PacketStruct* packet, Player* player, Item* item, int16 i, bool overflow){
  3170. Client *client;
  3171. int8 tmp_subtype = 0;
  3172. if (!packet || !player)
  3173. return;
  3174. client = player->GetZone()->GetClientBySpawn(player);
  3175. if (!client)
  3176. return;
  3177. int32 menu_data = 3;
  3178. if(item->slot_data.size() > 0)
  3179. menu_data -= ITEM_MENU_TYPE_GENERIC;
  3180. if (item->details.num_slots > 0) {
  3181. if (packet->GetVersion() <= 283 && item->details.num_slots > CLASSIC_EQ_MAX_BAG_SLOTS)
  3182. item->details.num_slots = CLASSIC_EQ_MAX_BAG_SLOTS;
  3183. menu_data += ITEM_MENU_TYPE_BAG;
  3184. if (item->details.num_free_slots == item->details.num_slots)
  3185. menu_data += ITEM_MENU_TYPE_EMPTY_BAG;
  3186. }
  3187. if (item->details.item_id == 21355) {
  3188. //menu_data += ITEM_MENU_TYPE_GENERIC;
  3189. //menu_data += ITEM_MENU_TYPE_EQUIP;
  3190. menu_data += ITEM_MENU_TYPE_BOOK;
  3191. //menu_data += ITEM_MENU_TYPE_BAG;
  3192. //menu_data += ITEM_MENU_TYPE_HOUSE;
  3193. //menu_data += ITEM_MENU_TYPE_TEST12;
  3194. //menu_data += ITEM_MENU_TYPE_SCRIBE;
  3195. //menu_data += ITEM_MENU_TYPE_TEST13;
  3196. //menu_data += ITEM_MENU_TYPE_INVALID;
  3197. //menu_data += ITEM_MENU_TYPE_TEST14;
  3198. //menu_data += ITEM_MENU_TYPE_BROKEN;
  3199. }
  3200. if (item->details.item_id == 21356) {
  3201. //menu_data += ITEM_MENU_TYPE_TEST15;
  3202. menu_data += ITEM_MENU_TYPE_ATTUNED;
  3203. menu_data += ITEM_MENU_TYPE_ATTUNEABLE;
  3204. menu_data += ITEM_MENU_TYPE_BOOK;
  3205. menu_data += ITEM_MENU_TYPE_DISPLAY_CHARGES;
  3206. menu_data += ITEM_MENU_TYPE_TEST1;
  3207. menu_data += ITEM_MENU_TYPE_NAMEPET;
  3208. menu_data += ITEM_MENU_TYPE_MENTORED;
  3209. menu_data += ITEM_MENU_TYPE_CONSUME;
  3210. menu_data += ITEM_MENU_TYPE_USE;
  3211. }
  3212. if (item->details.item_id == 21357) {
  3213. menu_data += ITEM_MENU_TYPE_CONSUME_OFF ;
  3214. menu_data += ITEM_MENU_TYPE_TEST3 ;
  3215. menu_data += ITEM_MENU_TYPE_TEST4 ;
  3216. menu_data += ITEM_MENU_TYPE_TEST5 ;
  3217. menu_data += ITEM_MENU_TYPE_TEST6 ;
  3218. menu_data += ITEM_MENU_TYPE_TEST7 ;
  3219. menu_data += ITEM_MENU_TYPE_TEST8 ;
  3220. menu_data += ITEM_MENU_TYPE_TEST9 ;
  3221. menu_data += ITEM_MENU_TYPE_DAMAGED ;
  3222. menu_data += ITEM_MENU_TYPE_BROKEN2 ;
  3223. menu_data += ITEM_MENU_TYPE_REDEEM ;
  3224. menu_data += ITEM_MENU_TYPE_TEST10 ;
  3225. menu_data += ITEM_MENU_TYPE_UNPACK ;
  3226. }
  3227. if(item->IsSkill()){
  3228. Spell* spell = master_spell_list.GetSpell(item->skill_info->spell_id, item->skill_info->spell_tier);
  3229. if (spell && spell->ScribeAllowed(player))
  3230. menu_data += ITEM_MENU_TYPE_SCRIBE;
  3231. else
  3232. menu_data += ITEM_MENU_TYPE_INSUFFICIENT_KNOWLEDGE;
  3233. }
  3234. if(item->IsRecipeBook()){
  3235. //TODO: Add check to allow scribe
  3236. menu_data += ITEM_MENU_TYPE_SCRIBE;
  3237. }
  3238. if (item->generic_info.item_type == 10){
  3239. menu_data += ITEM_MENU_TYPE_TEST1;
  3240. menu_data += ITEM_MENU_TYPE_HOUSE;
  3241. }
  3242. if (item->generic_info.item_type == 18){
  3243. menu_data += ITEM_MENU_TYPE_UNPACK;
  3244. packet->setSubstructArrayDataByName("items", "unknown3", ITEM_MENU_TYPE2_UNPACK, 0, i);
  3245. }
  3246. if(item->generic_info.condition == 0)
  3247. menu_data += ITEM_MENU_TYPE_BROKEN;
  3248. if (client->GetVersion() <= 283){
  3249. string flags;
  3250. if (item->CheckFlag(NO_TRADE))
  3251. flags += "NO-TRADE ";
  3252. if (item->CheckFlag(NO_VALUE))
  3253. flags += "NO-VALUE ";
  3254. if (flags.length() > 0)
  3255. packet->setSubstructArrayDataByName("items", "flag_names", flags.c_str(), 0, i);
  3256. }
  3257. if (item->CheckFlag(ATTUNED) || item->CheckFlag(NO_TRADE)) {
  3258. if (client->GetVersion() <= 283)
  3259. menu_data += ORIG_ITEM_MENU_TYPE_ATTUNED;
  3260. else
  3261. menu_data += ITEM_MENU_TYPE_ATTUNED;
  3262. }
  3263. else if (item->CheckFlag(ATTUNEABLE)) {
  3264. if (client->GetVersion() <= 283)
  3265. menu_data += ORIG_ITEM_MENU_TYPE_ATTUNEABLE;
  3266. else
  3267. menu_data += ITEM_MENU_TYPE_ATTUNEABLE;
  3268. }
  3269. if (item->generic_info.usable == 1)
  3270. menu_data += ITEM_MENU_TYPE_USE;
  3271. if (item->details.count > 0 && item->stack_count > 1) {
  3272. if (client->GetVersion() <= 283)
  3273. menu_data += ORIG_ITEM_MENU_TYPE_STACKABLE;
  3274. else
  3275. menu_data += ITEM_MENU_TYPE_DISPLAY_CHARGES;
  3276. }
  3277. if(item->details.item_locked) {
  3278. menu_data += ITEM_MENU_TYPE_BROKEN; // broken is also used to lock item during crafting
  3279. }
  3280. // Added the if (overflow) so mouseover examines work properly
  3281. if (overflow)
  3282. packet->setSubstructArrayDataByName("items", "unique_id", item->details.item_id, 0, i);
  3283. else
  3284. packet->setSubstructArrayDataByName("items", "unique_id", item->details.unique_id, 0, i);
  3285. packet->setSubstructArrayDataByName("items", "bag_id", item->details.bag_id, 0, i);
  3286. packet->setSubstructArrayDataByName("items", "inv_slot_id", item->details.inv_slot_id, 0, i);
  3287. packet->setSubstructArrayDataByName("items", "menu_type", menu_data, 0, i);
  3288. if (overflow)
  3289. packet->setSubstructArrayDataByName("items", "index", 0xFFFF, 0, i);
  3290. else
  3291. packet->setSubstructArrayDataByName("items", "index", i, 0, i);
  3292. item->details.index = i;
  3293. packet->setSubstructArrayDataByName("items", "icon", item->details.icon, 0, i);
  3294. packet->setSubstructArrayDataByName("items", "slot_id", item->details.slot_id, 0, i);
  3295. if (client->GetVersion() <= 1208) {
  3296. packet->setSubstructArrayDataByName("items", "count", (std::min)(item->details.count, (int16)255), 0, i);
  3297. }
  3298. else
  3299. packet->setSubstructArrayDataByName("items", "count", item->details.count, 0, i);
  3300. //packet->setSubstructArrayDataByName("items", "unknown4", 5, 0, i);
  3301. // need item level
  3302. packet->setSubstructArrayDataByName("items", "item_level", item->details.recommended_level , 0, i);
  3303. packet->setSubstructArrayDataByName("items", "tier", item->details.tier, 0, i);
  3304. packet->setSubstructArrayDataByName("items", "num_slots", item->details.num_slots, 0, i);
  3305. // need empty slots
  3306. packet->setSubstructArrayDataByName("items", "item_id", item->details.item_id, 0, i);
  3307. //need broker id
  3308. packet->setSubstructArrayDataByName("items", "name", item->name.c_str(), 0, i);
  3309. }
  3310. bool PlayerItemList::AddOverflowItem(Item* item) {
  3311. bool ret = false;
  3312. MPlayerItems.writelock(__FUNCTION__, __LINE__);
  3313. if (item && item->details.item_id > 0 && overflowItems.size() < 255) {
  3314. item->details.slot_id = 6;
  3315. item->details.inv_slot_id = -2;
  3316. overflowItems.push_back(item);
  3317. ret = true;
  3318. }
  3319. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  3320. return ret;
  3321. }
  3322. Item* PlayerItemList::GetOverflowItem() {
  3323. return overflowItems.at(0);
  3324. }
  3325. void PlayerItemList::RemoveOverflowItem(Item* item) {
  3326. MPlayerItems.writelock(__FUNCTION__, __LINE__);
  3327. vector<Item*>::iterator itr = std::find(overflowItems.begin(), overflowItems.end(), item);
  3328. overflowItems.erase(itr);
  3329. MPlayerItems.releasewritelock(__FUNCTION__, __LINE__);
  3330. }
  3331. vector<Item*>* PlayerItemList::GetOverflowItemList() {
  3332. vector<Item*>* ret = new vector<Item*>;
  3333. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  3334. vector<Item*>::iterator itr= ret->begin();
  3335. ret->insert(itr, overflowItems.begin(), overflowItems.end());
  3336. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3337. return ret;
  3338. }
  3339. bool PlayerItemList::HasItem(int32 id, bool include_bank){
  3340. map<sint32, map<int8, map<int16, Item*>> >::iterator itr;
  3341. map<int16, Item*>::iterator slot_itr;
  3342. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  3343. for(itr = items.begin(); itr != items.end(); itr++){
  3344. if(include_bank || (!include_bank && itr->first >= 0)){
  3345. for(slot_itr=itr->second[BASE_EQUIPMENT].begin();slot_itr!=itr->second[BASE_EQUIPMENT].end(); slot_itr++){
  3346. if(slot_itr->second && slot_itr->second->details.item_id == id){
  3347. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3348. return true;
  3349. }
  3350. }
  3351. for(slot_itr=itr->second[APPEARANCE_EQUIPMENT].begin();slot_itr!=itr->second[APPEARANCE_EQUIPMENT].end(); slot_itr++){
  3352. if(slot_itr->second && slot_itr->second->details.item_id == id){
  3353. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3354. return true;
  3355. }
  3356. }
  3357. }
  3358. }
  3359. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3360. return false;
  3361. }
  3362. bool PlayerItemList::SharedBankAddAllowed(Item* item){
  3363. if(!item || item->CheckFlag(NO_TRADE))
  3364. return false;
  3365. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  3366. if(item->IsBag() && items.count(item->details.bag_id) > 0){
  3367. map<int16, Item*>::iterator itr;
  3368. for(itr = items[item->details.bag_id][BASE_EQUIPMENT].begin(); itr != items[item->details.bag_id][BASE_EQUIPMENT].end(); itr++){
  3369. if(itr->second->CheckFlag(NO_TRADE)){
  3370. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3371. return false;
  3372. }
  3373. }
  3374. }
  3375. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3376. return true;
  3377. }
  3378. vector<Item*>* PlayerItemList::GetItemsFromBagID(sint32 bag_id){
  3379. vector<Item*>* ret = new vector<Item*>;
  3380. if(items.count(bag_id) > 0){
  3381. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  3382. map<int16, Item*>::iterator itr;
  3383. map<int16, Item*>::iterator itr2;
  3384. Item* item = 0;
  3385. for(itr = items[bag_id][BASE_EQUIPMENT].begin(); itr != items[bag_id][BASE_EQUIPMENT].end(); itr++){
  3386. item = itr->second;
  3387. if(item)
  3388. ret->push_back(item);
  3389. }
  3390. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3391. }
  3392. return ret;
  3393. }
  3394. vector<Item*>* PlayerItemList::GetItemsInBag(Item* bag){
  3395. vector<Item*>* ret_items = new vector<Item*>;
  3396. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  3397. if(bag && bag->IsBag() && items.count(bag->details.bag_id) > 0){
  3398. map<int16, Item*>::iterator itr;
  3399. for(itr = items[bag->details.bag_id][BASE_EQUIPMENT].begin(); itr != items[bag->details.bag_id][BASE_EQUIPMENT].end(); itr++){
  3400. ret_items->push_back(itr->second);
  3401. }
  3402. }
  3403. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3404. return ret_items;
  3405. }
  3406. Item* PlayerItemList::GetItemFromID(int32 id, int8 count, bool include_bank, bool lock){
  3407. //first check for an exact count match
  3408. map<sint32, map<int8, map<int16, Item*>> >::iterator itr;
  3409. map<int16, Item*>::iterator slot_itr;
  3410. if(lock)
  3411. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  3412. for(itr = items.begin(); itr != items.end(); itr++){
  3413. if(include_bank || (!include_bank && itr->first >= 0)){
  3414. for(int8 i=0;i<MAX_EQUIPMENT;i++)
  3415. {
  3416. for(slot_itr=itr->second[i].begin();slot_itr!=itr->second[i].end(); slot_itr++){
  3417. if(slot_itr->second && slot_itr->second->details.item_id == id && (count == 0 || slot_itr->second->details.count == count)){
  3418. if(lock)
  3419. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3420. return slot_itr->second;
  3421. }
  3422. }
  3423. }
  3424. }
  3425. }
  3426. //couldn't find an exact match, look for closest
  3427. Item* closest = 0;
  3428. for(itr = items.begin(); itr != items.end(); itr++){
  3429. if(include_bank || (!include_bank && itr->first >= 0)){
  3430. for(int8 i=0;i<MAX_EQUIPMENT;i++)
  3431. {
  3432. for(slot_itr=itr->second[i].begin();slot_itr!=itr->second[i].end(); slot_itr++){
  3433. if(slot_itr->second && slot_itr->second->details.item_id == id && slot_itr->second->details.count > count && (closest == 0 || slot_itr->second->details.count < closest->details.count))
  3434. closest = slot_itr->second;
  3435. }
  3436. }
  3437. }
  3438. }
  3439. if(lock)
  3440. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3441. return closest;
  3442. }
  3443. sint32 PlayerItemList::GetAllStackCountItemFromID(int32 id, int8 count, bool include_bank, bool lock){
  3444. sint32 stack_count = 0;
  3445. //first check for an exact count match
  3446. map<sint32, map<int8, map<int16, Item*>> >::iterator itr;
  3447. map<int16, Item*>::iterator slot_itr;
  3448. if(lock)
  3449. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  3450. for(itr = items.begin(); itr != items.end(); itr++){
  3451. if(include_bank || (!include_bank && itr->first >= 0)){
  3452. for(int8 i=0;i<MAX_EQUIPMENT;i++)
  3453. {
  3454. for(slot_itr=itr->second[i].begin();slot_itr!=itr->second[i].end(); slot_itr++){
  3455. if(slot_itr->second && slot_itr->second->details.item_id == id && (count == 0 || slot_itr->second->details.count == count)){
  3456. stack_count += slot_itr->second->details.count;
  3457. }
  3458. }
  3459. }
  3460. }
  3461. }
  3462. //couldn't find an exact match, look for closest
  3463. Item* closest = 0;
  3464. for(itr = items.begin(); itr != items.end(); itr++){
  3465. if(include_bank || (!include_bank && itr->first >= 0)){
  3466. for(int8 i=0;i<MAX_EQUIPMENT;i++)
  3467. {
  3468. for(slot_itr=itr->second[i].begin();slot_itr!=itr->second[i].end(); slot_itr++){
  3469. if(slot_itr->second && slot_itr->second->details.item_id == id && slot_itr->second->details.count > count && (closest == 0 || slot_itr->second->details.count < closest->details.count))
  3470. stack_count += slot_itr->second->details.count;
  3471. }
  3472. }
  3473. }
  3474. }
  3475. if(lock)
  3476. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3477. return stack_count;
  3478. }
  3479. Item* PlayerItemList::GetItemFromUniqueID(int32 id, bool include_bank, bool lock){
  3480. map<sint32, map<int8, map<int16, Item*>> >::iterator itr;
  3481. map<int16, Item*>::iterator slot_itr;
  3482. if(lock)
  3483. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  3484. for(itr = items.begin(); itr != items.end(); itr++){
  3485. if(include_bank || (!include_bank && itr->first >= 0)){
  3486. for(slot_itr=itr->second[0].begin();slot_itr!=itr->second[0].end(); slot_itr++){
  3487. if(slot_itr->second && slot_itr->second->details.unique_id == id){
  3488. if(lock)
  3489. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3490. return slot_itr->second;
  3491. }
  3492. }
  3493. for(slot_itr=itr->second[1].begin();slot_itr!=itr->second[1].end(); slot_itr++){
  3494. if(slot_itr->second && slot_itr->second->details.unique_id == id){
  3495. if(lock)
  3496. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3497. return slot_itr->second;
  3498. }
  3499. }
  3500. }
  3501. }
  3502. if(lock)
  3503. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3504. return 0;
  3505. }
  3506. bool PlayerItemList::HasFreeBankSlot() {
  3507. bool ret = false;
  3508. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  3509. if (items[-3][BASE_EQUIPMENT].size() < 12) //12 slots in the bank
  3510. ret = true;
  3511. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3512. return ret;
  3513. }
  3514. int8 PlayerItemList::FindFreeBankSlot() {
  3515. int8 ret = 0;
  3516. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  3517. for (int8 i = 0; i < 12; i++) { //12 slots in the bank
  3518. if (items[-3][BASE_EQUIPMENT].count(i) == 0) {
  3519. ret = i;
  3520. break;
  3521. }
  3522. }
  3523. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3524. return ret;
  3525. }
  3526. void PlayerItemList::ResetPackets() {
  3527. safe_delete_array(orig_packet);
  3528. safe_delete_array(xor_packet);
  3529. orig_packet = 0;
  3530. xor_packet = 0;
  3531. packet_count = 0;
  3532. }
  3533. int32 PlayerItemList::CheckSlotConflict(Item* item, bool check_lore_only, bool lock, int16* lore_stack_count) {
  3534. bool is_lore = false;
  3535. bool is_stack_lore = false;
  3536. if(!(is_lore = item->CheckFlag(LORE)) && !(is_stack_lore = item->CheckFlag(STACK_LORE)) && check_lore_only) {
  3537. return 0;
  3538. }
  3539. if(!check_lore_only && !is_lore && !is_stack_lore && !item->CheckFlag(LORE_EQUIP)) {
  3540. return 0;
  3541. }
  3542. int32 conflict = 0;
  3543. if(lock)
  3544. MPlayerItems.readlock(__FUNCTION__, __LINE__);
  3545. map<sint32, map<int8, map<int16, Item*>> >::iterator itr;
  3546. map<int16, Item*>::iterator slot_itr;
  3547. for(itr = items.begin(); itr != items.end(); itr++){
  3548. for(slot_itr=itr->second[0].begin();slot_itr!=itr->second[0].end(); slot_itr++){
  3549. if(slot_itr->second && slot_itr->second->details.item_id == item->details.item_id){
  3550. if(lore_stack_count) {
  3551. *lore_stack_count += slot_itr->second->details.count;
  3552. }
  3553. if(!is_stack_lore && slot_itr->second->CheckFlag(LORE)) {
  3554. conflict = LORE;
  3555. break;
  3556. }
  3557. else if(is_stack_lore && (*lore_stack_count + item->details.count) > slot_itr->second->stack_count) {
  3558. conflict = STACK_LORE;
  3559. break;
  3560. }
  3561. else if(!check_lore_only && slot_itr->second->CheckFlag(LORE_EQUIP)) {
  3562. conflict = LORE_EQUIP;
  3563. break;
  3564. }
  3565. }
  3566. }
  3567. if(conflict > 0)
  3568. break;
  3569. for(slot_itr=itr->second[1].begin();slot_itr!=itr->second[1].end(); slot_itr++){
  3570. if(slot_itr->second && slot_itr->second->details.item_id == item->details.item_id){
  3571. if(lore_stack_count) {
  3572. *lore_stack_count += slot_itr->second->details.count;
  3573. }
  3574. if(!is_stack_lore && slot_itr->second->CheckFlag(LORE)) {
  3575. conflict = LORE;
  3576. break;
  3577. }
  3578. else if(is_stack_lore && (*lore_stack_count + item->details.count) > slot_itr->second->stack_count) {
  3579. conflict = STACK_LORE;
  3580. break;
  3581. }
  3582. else if(!check_lore_only && slot_itr->second->CheckFlag(LORE_EQUIP)) {
  3583. conflict = LORE_EQUIP;
  3584. break;
  3585. }
  3586. }
  3587. }
  3588. if(conflict > 0)
  3589. break;
  3590. }
  3591. if(lock)
  3592. MPlayerItems.releasereadlock(__FUNCTION__, __LINE__);
  3593. return conflict;
  3594. }
  3595. EquipmentItemList::EquipmentItemList(){
  3596. orig_packet = 0;
  3597. xor_packet = 0;
  3598. for(int8 i=0;i<NUM_SLOTS;i++)
  3599. items[i] = 0;
  3600. MEquipmentItems.SetName("EquipmentItemList::MEquipmentItems");
  3601. AppearanceType = 0;
  3602. }
  3603. EquipmentItemList::EquipmentItemList(const EquipmentItemList& list){
  3604. orig_packet = 0;
  3605. xor_packet = 0;
  3606. for(int8 i=0;i<NUM_SLOTS;i++)
  3607. items[i] = 0;
  3608. MEquipmentItems.SetName("EquipmentItemList::MEquipmentItems");
  3609. }
  3610. EquipmentItemList::~EquipmentItemList(){
  3611. for(int8 i=0;i<NUM_SLOTS;i++)
  3612. safe_delete(items[i]);
  3613. safe_delete_array(orig_packet);
  3614. safe_delete_array(xor_packet);
  3615. }
  3616. void EquipmentItemList::ResetPackets() {
  3617. safe_delete_array(orig_packet);
  3618. safe_delete_array(xor_packet);
  3619. orig_packet = 0;
  3620. xor_packet = 0;
  3621. }
  3622. bool EquipmentItemList::AddItem(int8 slot, Item* item){
  3623. if(item){
  3624. MEquipmentItems.lock();
  3625. Item* curItem = GetItem(slot);
  3626. if (curItem) // existing item in slot
  3627. {
  3628. MEquipmentItems.unlock();
  3629. LogWrite(ITEM__ERROR, 0, "Items", "%s: Error in AddItem, curItem %s in slot %u, cannot put %s in slot.", __FUNCTION__, curItem->name.c_str(), slot, item->name.c_str());
  3630. return false;
  3631. }
  3632. SetItem(slot, item, true);
  3633. if (item->details.unique_id == 0) {
  3634. GetItem(slot)->details.unique_id = MasterItemList::NextUniqueID();
  3635. if (item->IsBag())
  3636. item->details.bag_id = item->details.unique_id;
  3637. }
  3638. MEquipmentItems.unlock();
  3639. return true;
  3640. }
  3641. return false;
  3642. }
  3643. int8 EquipmentItemList::GetNumberOfItems(){
  3644. int8 ret = 0;
  3645. MEquipmentItems.lock();
  3646. for(int8 i=0;i<NUM_SLOTS;i++){
  3647. if(items[i])
  3648. ret++;
  3649. }
  3650. MEquipmentItems.unlock();
  3651. return ret;
  3652. }
  3653. void EquipmentItemList::SetItem(int8 slot_id, Item* item, bool locked){
  3654. if(!locked)
  3655. MEquipmentItems.lock();
  3656. item->details.inv_slot_id = 0;
  3657. item->details.slot_id = slot_id;
  3658. item->details.index = slot_id;
  3659. item->details.appearance_type = GetAppearanceType();
  3660. items[slot_id] = item;
  3661. if(!locked)
  3662. MEquipmentItems.unlock();
  3663. }
  3664. vector<Item*>* EquipmentItemList::GetAllEquippedItems(){
  3665. vector<Item*>* ret = new vector<Item*>;
  3666. MEquipmentItems.lock();
  3667. for(int8 i=0;i<NUM_SLOTS;i++){
  3668. if(items[i])
  3669. ret->push_back(items[i]);
  3670. }
  3671. MEquipmentItems.unlock();
  3672. return ret;
  3673. }
  3674. Item* EquipmentItemList::GetItem(int8 slot_id){
  3675. return items[slot_id];
  3676. }
  3677. void EquipmentItemList::SendEquippedItems(Player* player){
  3678. if(!player->GetClient())
  3679. return;
  3680. for(int16 i=0;i<NUM_SLOTS;i++){
  3681. Item* item = items[i];
  3682. if(item && item->details.item_id > 0)
  3683. player->GetClient()->QueuePacket(item->serialize(player->GetClient()->GetVersion(), false, player));
  3684. }
  3685. }
  3686. EQ2Packet* EquipmentItemList::serialize(int16 version, Player* player){
  3687. EQ2Packet* app = 0;
  3688. Item* item = 0;
  3689. PacketStruct* packet = configReader.getStruct("WS_UpdateInventory", version);
  3690. if(packet){
  3691. int8 packet_size = 0;
  3692. PacketStruct* packet2 = configReader.getStruct("Substruct_Item", version);
  3693. packet_size = packet2->GetTotalPacketSize();
  3694. safe_delete(packet2);
  3695. int8 num_slots = NUM_SLOTS;
  3696. if (version <= 564)
  3697. num_slots = 22;
  3698. packet->setArrayLengthByName("item_count", num_slots);
  3699. if(!orig_packet){
  3700. xor_packet = new uchar[packet_size* num_slots];
  3701. orig_packet = new uchar[packet_size* num_slots];
  3702. memset(xor_packet, 0, packet_size* num_slots);
  3703. memset(orig_packet, 0, packet_size* num_slots);
  3704. }
  3705. MEquipmentItems.lock();
  3706. int32 menu_data = 3;
  3707. int32 effective_level = player->GetInfoStructUInt("effective_level");
  3708. int32 levelsLowered = (effective_level > 0 && effective_level < player->GetLevel()) ? player->GetLevel() - effective_level : 0;
  3709. for(int16 i=0;i<NUM_SLOTS;i++){
  3710. menu_data = 3;
  3711. item = items[i];
  3712. if(item && item->details.item_id > 0){
  3713. if(item->slot_data.size() > 0)
  3714. menu_data -= ITEM_MENU_TYPE_GENERIC;
  3715. if (item->details.num_slots > 0) {
  3716. if (packet->GetVersion() <= 283 && item->details.num_slots > CLASSIC_EQ_MAX_BAG_SLOTS)
  3717. item->details.num_slots = CLASSIC_EQ_MAX_BAG_SLOTS;
  3718. menu_data += ITEM_MENU_TYPE_BAG;
  3719. if (item->details.num_free_slots == item->details.num_slots)
  3720. menu_data += ITEM_MENU_TYPE_EMPTY_BAG;
  3721. }
  3722. if(item->IsSkill())
  3723. menu_data += ITEM_MENU_TYPE_SCRIBE;
  3724. if(item->generic_info.condition == 0)
  3725. menu_data += ITEM_MENU_TYPE_BROKEN2;
  3726. else if (item->generic_info.condition <= 20)
  3727. menu_data += ITEM_MENU_TYPE_DAMAGED;
  3728. if (item->CheckFlag(ATTUNED) || item->CheckFlag(NO_TRADE)) {
  3729. if (version <= 283)
  3730. menu_data += ORIG_ITEM_MENU_TYPE_ATTUNED;
  3731. else
  3732. menu_data += ITEM_MENU_TYPE_ATTUNED;
  3733. }
  3734. else if (item->CheckFlag(ATTUNEABLE)) {
  3735. if (version <= 283)
  3736. menu_data += ORIG_ITEM_MENU_TYPE_ATTUNEABLE;
  3737. else
  3738. menu_data += ITEM_MENU_TYPE_ATTUNEABLE;
  3739. }
  3740. if (item->generic_info.usable == 1)
  3741. menu_data += ITEM_MENU_TYPE_USE;
  3742. if (item->IsFood())
  3743. {
  3744. if (version <= 283) {
  3745. if (item->IsFoodDrink())
  3746. menu_data += ORIG_ITEM_MENU_TYPE_DRINK;
  3747. else
  3748. menu_data += ORIG_ITEM_MENU_TYPE_FOOD;
  3749. }
  3750. else {
  3751. menu_data += ITEM_MENU_TYPE_CONSUME;
  3752. if (player && ((item->IsFoodFood() && player->get_character_flag(CF_FOOD_AUTO_CONSUME)) || (item->IsFoodDrink() && player->get_character_flag(CF_DRINK_AUTO_CONSUME))))
  3753. {
  3754. // needs all 3 to display 'auto consume' off option as well as set the yellowish tint in the background
  3755. menu_data += ITEM_MENU_TYPE_CONSUME_OFF;
  3756. menu_data += ORIG_ITEM_MENU_TYPE_DRINK;
  3757. menu_data += ORIG_ITEM_MENU_TYPE_FOOD;
  3758. }
  3759. }
  3760. }
  3761. packet->setSubstructArrayDataByName("items", "unique_id", item->details.unique_id, 0, i);
  3762. packet->setSubstructArrayDataByName("items", "bag_id", item->details.bag_id, 0, i);
  3763. packet->setSubstructArrayDataByName("items", "inv_slot_id", item->details.inv_slot_id, 0, i);
  3764. if (item->details.count > 0 && item->stack_count > 1) {
  3765. if (version <= 283)
  3766. menu_data += ORIG_ITEM_MENU_TYPE_STACKABLE;
  3767. else
  3768. menu_data += ITEM_MENU_TYPE_DISPLAY_CHARGES;
  3769. }
  3770. if(levelsLowered && item->details.recommended_level > effective_level)
  3771. menu_data += ITEM_MENU_TYPE_MENTORED;
  3772. packet->setSubstructArrayDataByName("items", "menu_type", menu_data, 0, i);
  3773. packet->setSubstructArrayDataByName("items", "icon", item->details.icon, 0, i);
  3774. packet->setSubstructArrayDataByName("items", "slot_id", item->details.slot_id, 0, i);
  3775. packet->setSubstructArrayDataByName("items", "count", item->details.count, 0, i);
  3776. // item level needed here
  3777. packet->setSubstructArrayDataByName("items", "tier", item->details.tier, 0, i);
  3778. packet->setSubstructArrayDataByName("items", "num_slots", item->details.num_slots, 0, i);
  3779. //empty slots needed here
  3780. packet->setSubstructArrayDataByName("items", "item_id", item->details.item_id, 0, i);
  3781. //broker id needed here
  3782. packet->setSubstructArrayDataByName("items", "name", item->name.c_str(), 0, i);
  3783. //packet->setSubstructArrayDataByName("items", "unknown4", 10, 0, i);
  3784. item->details.index = i;
  3785. }
  3786. packet->setSubstructArrayDataByName("items", "index", i, 0, i);
  3787. }
  3788. MEquipmentItems.unlock();
  3789. packet->setDataByName("equip_flag", GetAppearanceType() ? 2 : 1);
  3790. app = packet->serializeCountPacket(version, 1, orig_packet, xor_packet);
  3791. safe_delete(packet);
  3792. }
  3793. return app;
  3794. }
  3795. ItemStatsValues* EquipmentItemList::CalculateEquipmentBonuses(Entity* entity){
  3796. ItemStatsValues* stats = new ItemStatsValues;
  3797. memset(stats, 0, sizeof(ItemStatsValues));
  3798. entity->GetInfoStruct()->set_mitigation_base(0);
  3799. MEquipmentItems.lock();
  3800. for(int8 i=0;i<NUM_SLOTS;i++){
  3801. if(items[i] && items[i]->details.item_id > 0){
  3802. master_item_list.CalculateItemBonuses(items[i], entity, stats);
  3803. if (items[i]->armor_info && !items[i]->IsShield())
  3804. entity->GetInfoStruct()->add_mitigation_base(items[i]->armor_info->mitigation_high);
  3805. }
  3806. }
  3807. MEquipmentItems.unlock();
  3808. return stats;
  3809. }
  3810. bool EquipmentItemList::HasItem(int32 id){
  3811. MEquipmentItems.lock();
  3812. for(int8 i=0;i<NUM_SLOTS;i++){
  3813. if(items[i] && items[i]->details.item_id == id){
  3814. MEquipmentItems.unlock();
  3815. return true;
  3816. }
  3817. }
  3818. MEquipmentItems.unlock();
  3819. return false;
  3820. }
  3821. void EquipmentItemList::RemoveItem(int8 slot, bool delete_item){
  3822. if(slot < NUM_SLOTS){
  3823. MEquipmentItems.lock();
  3824. if(items[slot] && items[slot]->details.appearance_type)
  3825. items[slot]->details.appearance_type = 0;
  3826. if(delete_item){
  3827. safe_delete(items[slot]);
  3828. }
  3829. items[slot] = 0;
  3830. MEquipmentItems.unlock();
  3831. }
  3832. }
  3833. Item* EquipmentItemList::GetItemFromUniqueID(int32 item_id){
  3834. MEquipmentItems.lock();
  3835. for(int8 i=0;i<NUM_SLOTS;i++){
  3836. if(items[i] && items[i]->details.unique_id == item_id){
  3837. MEquipmentItems.unlock();
  3838. return items[i];
  3839. }
  3840. }
  3841. MEquipmentItems.unlock();
  3842. return 0;
  3843. }
  3844. Item* EquipmentItemList::GetItemFromItemID(int32 item_id) {
  3845. Item* item = 0;
  3846. MEquipmentItems.lock();
  3847. for(int8 i = 0; i < NUM_SLOTS; i++) {
  3848. if(items[i] && items[i]->details.item_id == item_id) {
  3849. item = items[i];
  3850. break;
  3851. }
  3852. }
  3853. MEquipmentItems.unlock();
  3854. return item;
  3855. }
  3856. bool EquipmentItemList::CanItemBeEquippedInSlot(Item* tmp, int8 slot){
  3857. MEquipmentItems.lock();
  3858. for(int8 i=0;tmp && i<tmp->slot_data.size();i++){
  3859. if(tmp->slot_data[i] == slot){
  3860. MEquipmentItems.unlock();
  3861. return true;
  3862. }
  3863. }
  3864. MEquipmentItems.unlock();
  3865. return false;
  3866. }
  3867. bool EquipmentItemList::CheckEquipSlot(Item* tmp, int8 slot){
  3868. MEquipmentItems.lock();
  3869. for(int8 i=0;tmp && i<tmp->slot_data.size();i++){
  3870. if(tmp->slot_data[i] == slot){
  3871. Item* tmp_item = GetItem(tmp->slot_data[i]);
  3872. if(!tmp_item || tmp_item->details.item_id == 0){
  3873. if(slot == EQ2_SECONDARY_SLOT)
  3874. {
  3875. Item* primary = GetItem(EQ2_PRIMARY_SLOT);
  3876. if(primary && primary->weapon_info->wield_type == ITEM_WIELD_TYPE_TWO_HAND)
  3877. continue;
  3878. }
  3879. MEquipmentItems.unlock();
  3880. return true;
  3881. }
  3882. }
  3883. }
  3884. MEquipmentItems.unlock();
  3885. return false;
  3886. }
  3887. int8 EquipmentItemList::GetFreeSlot(Item* tmp, int8 slot_id){
  3888. int8 slot = 0;
  3889. MEquipmentItems.lock();
  3890. for(int8 i=0;tmp && i<tmp->slot_data.size();i++){
  3891. slot = tmp->slot_data[i];
  3892. if(slot_id == 255 || slot == slot_id){
  3893. Item* tmp_item = GetItem(slot);
  3894. if(!tmp_item || tmp_item->details.item_id == 0){
  3895. if(slot == EQ2_SECONDARY_SLOT)
  3896. {
  3897. Item* primary = GetItem(EQ2_PRIMARY_SLOT);
  3898. if(primary && primary->weapon_info->wield_type == ITEM_WIELD_TYPE_TWO_HAND)
  3899. continue;
  3900. }
  3901. MEquipmentItems.unlock();
  3902. return slot;
  3903. }
  3904. else if ( slot == EQ2_LRING_SLOT || slot == EQ2_EARS_SLOT_1 || slot == EQ2_LWRIST_SLOT || slot == EQ2_CHARM_SLOT_1)
  3905. {
  3906. Item* rslot = GetItem(slot+1);
  3907. if(!rslot)
  3908. {
  3909. MEquipmentItems.unlock();
  3910. return slot+1;
  3911. }
  3912. }
  3913. }
  3914. }
  3915. MEquipmentItems.unlock();
  3916. return 255;
  3917. }
  3918. int32 EquipmentItemList::CheckSlotConflict(Item* item, bool check_lore_only, int16* lore_stack_count) {
  3919. bool is_lore = false;
  3920. bool is_stack_lore = false;
  3921. if(!(is_lore = item->CheckFlag(LORE)) && !(is_stack_lore = item->CheckFlag(STACK_LORE)) && check_lore_only) {
  3922. return 0;
  3923. }
  3924. if(!check_lore_only && !is_lore && !is_stack_lore && !item->CheckFlag(LORE_EQUIP)) {
  3925. return 0;
  3926. }
  3927. int32 conflict = 0;
  3928. MEquipmentItems.lock();
  3929. for(int8 i=0;i<NUM_SLOTS;i++){
  3930. if(items[i] && items[i]->details.item_id == item->details.item_id) {
  3931. if(lore_stack_count)
  3932. *lore_stack_count += items[i]->details.count;
  3933. if(!is_stack_lore && items[i]->CheckFlag(LORE)) {
  3934. conflict = LORE;
  3935. break;
  3936. }
  3937. else if(is_stack_lore && (*lore_stack_count + item->details.count) > items[i]->stack_count) {
  3938. conflict = STACK_LORE;
  3939. break;
  3940. }
  3941. else if(!check_lore_only && items[i]->CheckFlag(LORE_EQUIP)) {
  3942. conflict = LORE_EQUIP;
  3943. break;
  3944. }
  3945. }
  3946. }
  3947. MEquipmentItems.unlock();
  3948. return conflict;
  3949. }
  3950. int8 EquipmentItemList::GetSlotByItem(Item* item) {
  3951. int8 slot = 255;
  3952. for (int8 i = 0; i < NUM_SLOTS; i++) {
  3953. if (items[i] && items[i] == item) {
  3954. slot = i;
  3955. break;
  3956. }
  3957. }
  3958. return slot;
  3959. }
  3960. string Item::CreateItemLink(int16 client_Version, bool bUseUniqueID) {
  3961. ostringstream ss;
  3962. if(client_Version > 546)
  3963. ss << "\\aITEM " << details.item_id << ' ' << (bUseUniqueID ? details.unique_id : 0) << ':' << name << "\\/a";
  3964. else {
  3965. if(bUseUniqueID)
  3966. ss << "\\aITEM " << details.item_id << ' ' << details.unique_id << ':' << name << "\\/a";
  3967. else
  3968. ss << "\\aITEM " << details.item_id << ' ' << name << ':' << name << "\\/a";
  3969. }
  3970. return ss.str();
  3971. }
  3972. int32 MasterItemList::GetItemStatIDByName(std::string name)
  3973. {
  3974. boost::to_lower(name);
  3975. map<std::string, int32>::iterator itr = mappedItemStatsStrings.find(name.c_str());
  3976. if(itr != mappedItemStatsStrings.end())
  3977. return itr->second;
  3978. return 0xFFFFFFFF;
  3979. }
  3980. std::string MasterItemList::GetItemStatNameByID(int32 id)
  3981. {
  3982. map<int32, std::string>::iterator itr = mappedItemStatTypeIDs.find(id);
  3983. if(itr != mappedItemStatTypeIDs.end())
  3984. return itr->second;
  3985. return std::string("");
  3986. }