Player.cpp 211 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121
  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 "Player.h"
  17. #include "../common/MiscFunctions.h"
  18. #include "World.h"
  19. #include "WorldDatabase.h"
  20. #include <math.h>
  21. #include "classes.h"
  22. #include "LuaInterface.h"
  23. #include "../common/Log.h"
  24. #include "Rules/Rules.h"
  25. #include "Titles.h"
  26. #include "Languages.h"
  27. #include "SpellProcess.h"
  28. #include <algorithm>
  29. #include <regex>
  30. #include "ClientPacketFunctions.h"
  31. extern Classes classes;
  32. extern WorldDatabase database;
  33. extern World world;
  34. extern ConfigReader configReader;
  35. extern MasterSkillList master_skill_list;
  36. extern MasterSpellList master_spell_list;
  37. extern MasterQuestList master_quest_list;
  38. extern Variables variables;
  39. extern LuaInterface* lua_interface;
  40. extern MasterItemList master_item_list;
  41. extern RuleManager rule_manager;
  42. extern MasterTitlesList master_titles_list;
  43. extern MasterLanguagesList master_languages_list;
  44. Player::Player(){
  45. tutorial_step = 0;
  46. char_id = 0;
  47. group = 0;
  48. appearance.pos.grid_id = 0;
  49. spawn_index = 0;
  50. info = 0;
  51. movement_packet = 0;
  52. fully_logged_in = false;
  53. last_movement_activity = 0;
  54. //speed = 0;
  55. packet_num = 0;
  56. range_attack = false;
  57. old_movement_packet = 0;
  58. charsheet_changed = false;
  59. quickbar_updated = false;
  60. custNPC = false;
  61. spawn_tmp_vis_xor_packet = 0;
  62. spawn_tmp_pos_xor_packet = 0;
  63. spawn_tmp_info_xor_packet = 0;
  64. pending_collection_reward = 0;
  65. pos_packet_speed = 0;
  66. LogWrite(MISC__TODO, 1, "TODO", "Add player commands here\n\t(%s, function: %s, line #: %i)", __FILE__, __FUNCTION__, __LINE__);
  67. appearance.display_name = 1;
  68. appearance.show_command_icon = 1;
  69. appearance.player_flag = 1;
  70. appearance.targetable = 1;
  71. appearance.show_level = 1;
  72. spell_count = 0;
  73. spell_orig_packet = 0;
  74. spell_xor_packet = 0;
  75. resurrecting = false;
  76. spawn_id = 1;
  77. spawn_type = 4;
  78. player_spawn_id_map[1] = this;
  79. player_spawn_reverse_id_map[this] = 1;
  80. MPlayerQuests.SetName("Player::MPlayerQuests");
  81. test_time = 0;
  82. returning_from_ld = false;
  83. away_message = "Sorry, I am A.F.K. (Away From Keyboard)";
  84. AddSecondaryEntityCommand("Inspect", 10000, "inspect_player", "", 0, 0);
  85. AddSecondaryEntityCommand("Who", 10000, "who", "", 0, 0);
  86. // commented out commands a player canNOT use on themselves... move these to Client::HandleVerbRequest()?
  87. //AddSecondaryEntityCommand("Assist", 10, "assist", "", 0, 0);
  88. //AddSecondaryEntityCommand("Duel", 10, "duel", "", 0, 0);
  89. //AddSecondaryEntityCommand("Duel Bet", 10, "duelbet", "", 0, 0);
  90. //AddSecondaryEntityCommand("Trade", 10, "trade", "", 0, 0);
  91. is_tracking = false;
  92. guild = 0;
  93. following = false;
  94. combat_target = 0;
  95. InitXPTable();
  96. pending_deletion = false;
  97. spawn_vis_struct = 0;
  98. spawn_pos_struct = 0;
  99. spawn_info_struct = 0;
  100. spawn_header_struct = 0;
  101. spawn_footer_struct = 0;
  102. widget_footer_struct = 0;
  103. sign_footer_struct = 0;
  104. pos_xor_size = 0;
  105. info_xor_size = 0;
  106. vis_xor_size = 0;
  107. pos_mutex.SetName("Player::pos_mutex");
  108. vis_mutex.SetName("Player::vis_mutex");
  109. info_mutex.SetName("Player::info_mutex");
  110. index_mutex.SetName("Player::index_mutex");
  111. m_playerSpawnQuestsRequired.SetName("Player::player_spawn_quests_required");
  112. m_playerSpawnHistoryRequired.SetName("Player::player_spawn_history_required");
  113. gm_vision = false;
  114. }
  115. Player::~Player(){
  116. for(int32 i=0;i<spells.size();i++){
  117. safe_delete(spells[i]);
  118. }
  119. for(int32 i=0;i<quickbar_items.size();i++){
  120. safe_delete(quickbar_items[i]);
  121. }
  122. map<int32, vector<int32>*>::iterator itr;
  123. for (itr = player_spawn_quests_required.begin(); itr != player_spawn_quests_required.end(); itr++){
  124. safe_delete(itr->second);
  125. }
  126. for (itr = player_spawn_history_required.begin(); itr != player_spawn_history_required.end(); itr++){
  127. safe_delete(itr->second);
  128. }
  129. map<int8, map<int8, vector<HistoryData*> > >::iterator itr1;
  130. map<int8, vector<HistoryData*> >::iterator itr2;
  131. vector<HistoryData*>::iterator itr3;
  132. // Type
  133. for (itr1 = m_characterHistory.begin(); itr1 != m_characterHistory.end(); itr1++) {
  134. // Sub type
  135. for (itr2 = itr1->second.begin(); itr2 != itr1->second.end(); itr2++) {
  136. // vector of data
  137. for (itr3 = itr2->second.begin(); itr3 != itr2->second.end(); itr3++) {
  138. safe_delete(*itr3);
  139. }
  140. }
  141. }
  142. mLUAHistory.writelock();
  143. map<int32, LUAHistory*>::iterator itr4;
  144. for (itr4 = m_charLuaHistory.begin(); itr4 != m_charLuaHistory.end(); itr4++) {
  145. safe_delete(itr4->second);
  146. }
  147. m_charLuaHistory.clear();
  148. mLUAHistory.releasewritelock();
  149. safe_delete_array(movement_packet);
  150. safe_delete_array(old_movement_packet);
  151. safe_delete_array(spawn_tmp_info_xor_packet);
  152. safe_delete_array(spawn_tmp_vis_xor_packet);
  153. safe_delete_array(spawn_tmp_pos_xor_packet);
  154. safe_delete_array(spell_xor_packet);
  155. safe_delete_array(spell_orig_packet);
  156. DestroyQuests();
  157. WritePlayerStatistics();
  158. RemovePlayerStatistics();
  159. DeleteMail();
  160. world.RemoveLottoPlayer(GetCharacterID());
  161. safe_delete(info);
  162. index_mutex.writelock(__FUNCTION__, __LINE__);
  163. player_spawn_index_map.clear();
  164. player_spawn_map.clear();
  165. player_spawn_reverse_id_map.clear();
  166. player_removed_spawns.clear();
  167. player_spawn_id_map.clear();
  168. index_mutex.releasewritelock(__FUNCTION__, __LINE__);
  169. info_mutex.writelock(__FUNCTION__, __LINE__);
  170. spawn_info_packet_list.clear();
  171. info_mutex.releasewritelock(__FUNCTION__, __LINE__);
  172. vis_mutex.writelock(__FUNCTION__, __LINE__);
  173. spawn_vis_packet_list.clear();
  174. vis_mutex.releasewritelock(__FUNCTION__, __LINE__);
  175. pos_mutex.writelock(__FUNCTION__, __LINE__);
  176. spawn_pos_packet_list.clear();
  177. pos_mutex.releasewritelock(__FUNCTION__, __LINE__);
  178. safe_delete(spawn_header_struct);
  179. safe_delete(spawn_footer_struct);
  180. safe_delete(sign_footer_struct);
  181. safe_delete(widget_footer_struct);
  182. safe_delete(spawn_info_struct);
  183. safe_delete(spawn_vis_struct);
  184. safe_delete(spawn_pos_struct);
  185. ClearPendingSelectableItemRewards(0, true);
  186. ClearPendingItemRewards();
  187. }
  188. EQ2Packet* Player::serialize(Player* player, int16 version){
  189. return spawn_serialize(player, version);
  190. }
  191. EQ2Packet* Player::Move(float x, float y, float z, int16 version, float heading){
  192. PacketStruct* packet = configReader.getStruct("WS_MoveClient", version);
  193. if(packet){
  194. packet->setDataByName("x", x);
  195. packet->setDataByName("y", y);
  196. packet->setDataByName("z", z);
  197. packet->setDataByName("unknown", 1); // 1 seems to force the client to re-render the zone at the new location
  198. packet->setDataByName("location", 0xFFFFFFFF); //added in 869
  199. if (heading != -1.0f)
  200. packet->setDataByName("heading", heading);
  201. EQ2Packet* outapp = packet->serialize();
  202. safe_delete(packet);
  203. return outapp;
  204. }
  205. return 0;
  206. }
  207. void Player::DestroyQuests(){
  208. MPlayerQuests.lock();
  209. map<int32, Quest*>::iterator itr;
  210. for(itr = completed_quests.begin(); itr != completed_quests.end(); itr++){
  211. safe_delete(itr->second);
  212. }
  213. completed_quests.clear();
  214. for(itr = player_quests.begin(); itr != player_quests.end(); itr++){
  215. safe_delete(itr->second);
  216. }
  217. player_quests.clear();
  218. for(itr = pending_quests.begin(); itr != pending_quests.end(); itr++){
  219. safe_delete(itr->second);
  220. }
  221. pending_quests.clear();
  222. MPlayerQuests.unlock();
  223. }
  224. PlayerInfo* Player::GetPlayerInfo(){
  225. if(info == 0)
  226. info = new PlayerInfo(this);
  227. return info;
  228. }
  229. void PlayerInfo::CalculateXPPercentages(){
  230. int32 xp_needed = info_struct->get_xp_needed();
  231. if(xp_needed > 0){
  232. float percentage = ((double)info_struct->get_xp() / xp_needed) * 1000;
  233. info_struct->set_xp_yellow((int16)percentage);
  234. info_struct->set_xp_blue((int16)(percentage-info_struct->get_xp_yellow())*1000);
  235. info_struct->set_xp_blue_vitality_bar(0);
  236. info_struct->set_xp_yellow_vitality_bar(0);
  237. if(player->GetXPVitality() > 0){
  238. float vitality_total = player->GetXPVitality()*10 + percentage;
  239. vitality_total -= ((int)(percentage/100)*100);
  240. if(vitality_total < 100){ //10%
  241. info_struct->set_xp_blue_vitality_bar(info_struct->get_xp_blue() + (int16)(player->GetXPVitality() *10));
  242. }
  243. else
  244. info_struct->set_xp_yellow_vitality_bar(info_struct->get_xp_yellow() + (int16)(player->GetXPVitality() *10));
  245. }
  246. }
  247. }
  248. void PlayerInfo::CalculateTSXPPercentages(){
  249. int32 ts_xp_needed = info_struct->get_ts_xp_needed();
  250. if(ts_xp_needed > 0){
  251. float percentage = ((double)info_struct->get_ts_xp() / ts_xp_needed) * 1000;
  252. info_struct->set_tradeskill_exp_yellow((int16)percentage);
  253. info_struct->set_tradeskill_exp_blue((int16)((percentage - info_struct->get_tradeskill_exp_yellow()) * 1000));
  254. /*info_struct->xp_blue_vitality_bar = 0;
  255. info_struct->xp_yellow_vitality_bar = 0;
  256. if(player->GetXPVitality() > 0){
  257. float vitality_total = player->GetXPVitality()*10 + percentage;
  258. vitality_total -= ((int)(percentage/100)*100);
  259. if(vitality_total < 100){ //10%
  260. info_struct->xp_blue_vitality_bar = info_struct->xp_blue + (int16)(player->GetXPVitality() *10);
  261. }
  262. else
  263. info_struct->xp_yellow_vitality_bar = info_struct->xp_yellow + (int16)(player->GetXPVitality() *10);
  264. }*/
  265. }
  266. }
  267. void PlayerInfo::SetHouseZone(int32 id){
  268. house_zone_id = id;
  269. }
  270. void PlayerInfo::SetBindZone(int32 id){
  271. bind_zone_id = id;
  272. }
  273. void PlayerInfo::SetBindX(float x){
  274. bind_x = x;
  275. }
  276. void PlayerInfo::SetBindY(float y){
  277. bind_y = y;
  278. }
  279. void PlayerInfo::SetBindZ(float z){
  280. bind_z = z;
  281. }
  282. void PlayerInfo::SetBindHeading(float heading){
  283. bind_heading = heading;
  284. }
  285. int32 PlayerInfo::GetHouseZoneID(){
  286. return house_zone_id;
  287. }
  288. int32 PlayerInfo::GetBindZoneID(){
  289. return bind_zone_id;
  290. }
  291. float PlayerInfo::GetBindZoneX(){
  292. return bind_x;
  293. }
  294. float PlayerInfo::GetBindZoneY(){
  295. return bind_y;
  296. }
  297. float PlayerInfo::GetBindZoneZ(){
  298. return bind_z;
  299. }
  300. float PlayerInfo::GetBindZoneHeading(){
  301. return bind_heading;
  302. }
  303. PacketStruct* PlayerInfo::serialize2(int16 version){
  304. player->CalculateBonuses();
  305. PacketStruct* packet = configReader.getStruct("WS_CharacterSheet", version);
  306. if(packet){
  307. //TODO: 2021 FIX THIS CASTING
  308. char deity[32];
  309. strncpy(deity, info_struct->get_deity().c_str(), 32);
  310. packet->setDataByName("deity", deity);
  311. char name[40];
  312. strncpy(name, info_struct->get_name().c_str(), 40);
  313. packet->setDataByName("character_name", name);
  314. packet->setDataByName("race", info_struct->get_race());
  315. packet->setDataByName("gender", info_struct->get_gender());
  316. packet->setDataByName("class1", info_struct->get_class1());
  317. packet->setDataByName("class2", info_struct->get_class2());
  318. packet->setDataByName("class3", info_struct->get_class3());
  319. packet->setDataByName("tradeskill_class1", info_struct->get_tradeskill_class1());
  320. packet->setDataByName("tradeskill_class2", info_struct->get_tradeskill_class2());
  321. packet->setDataByName("tradeskill_class3", info_struct->get_tradeskill_class3());
  322. packet->setDataByName("level", info_struct->get_level());
  323. packet->setDataByName("effective_level", info_struct->get_effective_level() != 0 ? info_struct->get_effective_level() : info_struct->get_level());
  324. packet->setDataByName("tradeskill_level", info_struct->get_tradeskill_level());
  325. packet->setDataByName("account_age_base", info_struct->get_account_age_base());
  326. // for(int8 i=0;i<19;i++)
  327. // {
  328. // packet->setDataByName("account_age_bonus", info_struct->get_account_age_bonus(i));
  329. // }
  330. //
  331. packet->setDataByName("current_hp", player->GetHP());
  332. packet->setDataByName("max_hp",player-> GetTotalHP());
  333. packet->setDataByName("base_hp", player->GetTotalHPBase());
  334. float bonus_health = floor( (float)(info_struct->get_sta() * player->CalculateBonusMod()));
  335. packet->setDataByName("bonus_health", bonus_health);
  336. packet->setDataByName("stat_bonus_health", player->CalculateBonusMod());
  337. packet->setDataByName("current_power", player->GetPower());
  338. packet->setDataByName("max_power", player->GetTotalPower());
  339. packet->setDataByName("base_power", player->GetTotalPowerBase());
  340. packet->setDataByName("bonus_power", floor( (float)(player->GetPrimaryStat() * player->CalculateBonusMod())));
  341. packet->setDataByName("stat_bonus_power", player->CalculateBonusMod());
  342. packet->setDataByName("conc_used", info_struct->get_cur_concentration());
  343. packet->setDataByName("conc_max", info_struct->get_max_concentration());
  344. packet->setDataByName("attack", info_struct->get_cur_attack());
  345. packet->setDataByName("attack_base", info_struct->get_attack_base());
  346. packet->setDataByName("absorb", info_struct->get_absorb());
  347. packet->setDataByName("mitigation_skill1", info_struct->get_mitigation_skill1());
  348. packet->setDataByName("mitigation_skill2", info_struct->get_mitigation_skill2());
  349. packet->setDataByName("mitigation_skill3", info_struct->get_mitigation_skill3());
  350. CalculateXPPercentages();
  351. packet->setDataByName("exp_yellow", info_struct->get_xp_yellow());
  352. packet->setDataByName("exp_blue", info_struct->get_xp_blue());
  353. packet->setDataByName("tradeskill_exp_yellow", info_struct->get_tradeskill_exp_yellow());
  354. packet->setDataByName("tradeskill_exp_blue", info_struct->get_tradeskill_exp_blue());
  355. packet->setDataByName("flags", info_struct->get_flags());
  356. packet->setDataByName("flags2", info_struct->get_flags2());
  357. packet->setDataByName("str", info_struct->get_str());
  358. packet->setDataByName("sta", info_struct->get_sta());
  359. packet->setDataByName("agi", info_struct->get_agi());
  360. packet->setDataByName("wis", info_struct->get_wis());
  361. packet->setDataByName("int", info_struct->get_intel());
  362. packet->setDataByName("str_base", info_struct->get_str_base());
  363. packet->setDataByName("sta_base", info_struct->get_sta_base());
  364. packet->setDataByName("agi_base", info_struct->get_agi_base());
  365. packet->setDataByName("wis_base", info_struct->get_wis_base());
  366. packet->setDataByName("int_base", info_struct->get_intel_base());
  367. packet->setDataByName("mitigation_cur", info_struct->get_cur_mitigation());
  368. packet->setDataByName("mitigation_max", info_struct->get_max_mitigation());
  369. packet->setDataByName("mitigation_base", info_struct->get_mitigation_base());
  370. packet->setDataByName("heat", info_struct->get_heat());
  371. packet->setDataByName("cold", info_struct->get_cold());
  372. packet->setDataByName("magic", info_struct->get_magic());
  373. packet->setDataByName("mental", info_struct->get_mental());
  374. packet->setDataByName("divine", info_struct->get_divine());
  375. packet->setDataByName("disease", info_struct->get_disease());
  376. packet->setDataByName("poison", info_struct->get_poison());
  377. packet->setDataByName("heat_base", info_struct->get_heat_base());
  378. packet->setDataByName("cold_base", info_struct->get_cold_base());
  379. packet->setDataByName("magic_base", info_struct->get_magic_base());
  380. packet->setDataByName("mental_base", info_struct->get_mental_base());
  381. packet->setDataByName("divine_base", info_struct->get_divine_base());
  382. packet->setDataByName("disease_base", info_struct->get_disease_base());
  383. packet->setDataByName("poison_base", info_struct->get_poison_base());
  384. packet->setDataByName("mitigation_cur2", info_struct->get_cur_mitigation());
  385. packet->setDataByName("mitigation_max2", info_struct->get_max_mitigation());
  386. packet->setDataByName("mitigation_base2", info_struct->get_mitigation_base());
  387. packet->setDataByName("coins_copper", info_struct->get_coin_copper());
  388. packet->setDataByName("coins_silver", info_struct->get_coin_silver());
  389. packet->setDataByName("coins_gold", info_struct->get_coin_gold());
  390. packet->setDataByName("coins_plat", info_struct->get_coin_plat());
  391. packet->setDataByName("weight", info_struct->get_weight());
  392. packet->setDataByName("max_weight", info_struct->get_max_weight());
  393. char pet_name[32];
  394. strncpy(pet_name, info_struct->get_pet_name().c_str(), 32);
  395. packet->setDataByName("pet_name", pet_name);
  396. packet->setDataByName("status_points", info_struct->get_status_points());
  397. if(bind_zone_id > 0){
  398. string bind_name = database.GetZoneName(bind_zone_id);
  399. if (bind_name.length() > 0)
  400. packet->setDataByName("bind_zone", bind_name.c_str());
  401. }
  402. else
  403. packet->setDataByName("bind_zone", "None");
  404. if(house_zone_id > 0){
  405. string house_name = database.GetZoneName(house_zone_id);
  406. if (house_name.length() > 0)
  407. packet->setDataByName("house_zone", house_name.c_str());
  408. }
  409. else
  410. packet->setDataByName("house_zone", "None");
  411. //packet->setDataByName("account_age_base", 14);
  412. if(player->GetHPRegen() == 0)
  413. player->SetHPRegen((int)(info_struct->get_level()*.75)+(int)(info_struct->get_level()/10)+3);
  414. if(player->GetPowerRegen() == 0)
  415. player->SetPowerRegen(info_struct->get_level()+(int)(info_struct->get_level()/10)+4);
  416. packet->setDataByName("hp_regen", player->GetHPRegen());
  417. packet->setDataByName("power_regen", player->GetPowerRegen());
  418. /*packet->setDataByName("unknown11", -1, 0);
  419. packet->setDataByName("unknown11", -1, 1);
  420. packet->setDataByName("unknown13", 201, 0);
  421. packet->setDataByName("unknown13", 201, 1);
  422. packet->setDataByName("unknown13", 234, 2);
  423. packet->setDataByName("unknown13", 201, 3);
  424. packet->setDataByName("unknown13", 214, 4);
  425. packet->setDataByName("unknown13", 234, 5);
  426. packet->setDataByName("unknown13", 234, 6);
  427. packet->setDataByName("unknown14", 78);
  428. */
  429. packet->setDataByName("adventure_exp_vitality", (int16)(player->GetXPVitality() *10));
  430. //packet->setDataByName("unknown15b", 9911);
  431. packet->setDataByName("unknown15a", 78);
  432. packet->setDataByName("xp_yellow_vitality_bar", info_struct->get_xp_yellow_vitality_bar());
  433. packet->setDataByName("xp_blue_vitality_bar", info_struct->get_xp_blue_vitality_bar());
  434. packet->setDataByName("tradeskill_exp_vitality", 100);
  435. packet->setDataByName("unknown15c", 200);
  436. //packet->setDataByName("unknown15", 100, 10);
  437. packet->setDataByName("unknown18", 16880, 1);
  438. /*packet->setDataByName("unknown19", 1);
  439. packet->setDataByName("unknown19", 3, 1);
  440. packet->setDataByName("unknown19", 1074301064, 2);
  441. packet->setDataByName("unknown19", 1, 3);
  442. packet->setDataByName("unknown19", 3, 4);
  443. packet->setDataByName("unknown19", 1074301064, 5);
  444. packet->setDataByName("unknown19", 6, 6);
  445. packet->setDataByName("unknown19", 14, 7);
  446. packet->setDataByName("unknown19", 1083179008, 8);*/
  447. player->SetGroupInformation(packet);
  448. packet->setDataByName("unknown20", 1, 107);
  449. packet->setDataByName("unknown20", 1, 108);
  450. packet->setDataByName("unknown20", 1, 109);
  451. packet->setDataByName("unknown20", 1, 110);
  452. packet->setDataByName("unknown20", 1, 111);
  453. //packet->setDataByName("unknown20b", 255);
  454. //packet->setDataByName("unknown20b", 255, 1);
  455. //packet->setDataByName("unknown20b", 255, 2);
  456. packet->setDataByName("unknown11", 123);
  457. packet->setDataByName("unknown11", 234, 1);
  458. //packet->setDataByName("in_combat", 32768);
  459. //make name flash red
  460. /*packet->setDataByName("unknown20", 8);
  461. packet->setDataByName("unknown20", 38, 70);
  462. packet->setDataByName("unknown20", 17, 77);
  463. packet->setDataByName("unknown20", 1, 112); //melee stats and such
  464. packet->setDataByName("unknown20", 1, 113);
  465. packet->setDataByName("unknown20", 1, 114);
  466. packet->setDataByName("unknown20", 1, 115);
  467. packet->setDataByName("unknown20", 4294967295, 309);
  468. packet->setDataByName("unknown22", 2, 4);
  469. packet->setDataByName("unknown23", 2, 29);
  470. */
  471. //packet->setDataByName("unknown20b", 1, i); // pet bar in here
  472. // for(int i=0;i<19;i++)
  473. // packet->setDataByName("unknown7", 257, i);
  474. //packet->setDataByName("unknown21", info_struct->rain, 2);
  475. packet->setDataByName("rain", info_struct->get_rain());
  476. packet->setDataByName("rain2", info_struct->get_wind()); //-102.24);
  477. /*packet->setDataByName("unknown22", 3, 4);
  478. packet->setDataByName("unknown23", 3, 161);
  479. packet->setDataByName("unknown20", 103);
  480. packet->setDataByName("unknown20", 1280, 70);
  481. packet->setDataByName("unknown20", 9, 71);
  482. packet->setDataByName("unknown20", 5, 72);
  483. packet->setDataByName("unknown20", 4294967271, 73);
  484. packet->setDataByName("unknown20", 5, 75);
  485. packet->setDataByName("unknown20", 1051, 77);
  486. packet->setDataByName("unknown20", 3, 78);
  487. packet->setDataByName("unknown20", 6, 104);
  488. packet->setDataByName("unknown20", 1, 105);
  489. packet->setDataByName("unknown20", 20, 106);
  490. packet->setDataByName("unknown20", 3, 107);
  491. packet->setDataByName("unknown20", 1, 108);
  492. packet->setDataByName("unknown20", 1, 109);
  493. packet->setDataByName("unknown20", 4278190080, 494);
  494. packet->setDataByName("unknown20b", 255);
  495. packet->setDataByName("unknown20b", 255, 1);
  496. packet->setDataByName("unknown20b", 255, 2);
  497. packet->setDataByName("unknown20", 50, 75);
  498. */
  499. //packet->setDataByName("rain2", -102.24);
  500. for(int i=0;i<45;i++){
  501. if(i < 30){
  502. packet->setSubstructDataByName("maintained_effects", "name", info_struct->maintained_effects[i].name, i, 0);
  503. packet->setSubstructDataByName("maintained_effects", "target", info_struct->maintained_effects[i].target, i, 0);
  504. packet->setSubstructDataByName("maintained_effects", "spell_id", info_struct->maintained_effects[i].spell_id, i, 0);
  505. packet->setSubstructDataByName("maintained_effects", "slot_pos", info_struct->maintained_effects[i].slot_pos, i, 0);
  506. packet->setSubstructDataByName("maintained_effects", "icon", info_struct->maintained_effects[i].icon, i, 0);
  507. packet->setSubstructDataByName("maintained_effects", "icon_type", info_struct->maintained_effects[i].icon_backdrop, i, 0);
  508. packet->setSubstructDataByName("maintained_effects", "conc_used", info_struct->maintained_effects[i].conc_used, i, 0);
  509. packet->setSubstructDataByName("maintained_effects", "unknown3", 1, i, 0);
  510. packet->setSubstructDataByName("maintained_effects", "total_time", info_struct->maintained_effects[i].total_time, i, 0);
  511. packet->setSubstructDataByName("maintained_effects", "expire_timestamp", info_struct->maintained_effects[i].expire_timestamp, i, 0);
  512. }
  513. else if(version < 942)//version 942 added 15 additional spell effect slots
  514. break;
  515. packet->setSubstructDataByName("spell_effects", "spell_id", info_struct->spell_effects[i].spell_id, i, 0);
  516. if(info_struct->spell_effects[i].spell_id > 0 && info_struct->spell_effects[i].spell_id < 0xFFFFFFFF)
  517. packet->setSubstructDataByName("spell_effects", "unknown2", 514, i, 0);
  518. packet->setSubstructDataByName("spell_effects", "total_time", info_struct->spell_effects[i].total_time, i, 0);
  519. packet->setSubstructDataByName("spell_effects", "expire_timestamp", info_struct->spell_effects[i].expire_timestamp, i, 0);
  520. packet->setSubstructDataByName("spell_effects", "icon", info_struct->spell_effects[i].icon, i, 0);
  521. packet->setSubstructDataByName("spell_effects", "icon_type", info_struct->spell_effects[i].icon_backdrop, i, 0);
  522. }
  523. return packet;
  524. }
  525. return 0;
  526. }
  527. EQ2Packet* PlayerInfo::serialize3(PacketStruct* packet, int16 version){
  528. if(packet){
  529. string* data = packet->serializeString();
  530. int32 size = data->length();
  531. //DumpPacket((uchar*)data->c_str(), size);
  532. uchar* tmp = new uchar[size];
  533. if(!changes){
  534. orig_packet = new uchar[size];
  535. changes = new uchar[size];
  536. memcpy(orig_packet, (uchar*)data->c_str(), size);
  537. size = Pack(tmp, (uchar*)data->c_str(), size, size, version);
  538. }
  539. else{
  540. memcpy(changes, (uchar*)data->c_str(), size);
  541. Encode(changes, orig_packet, size);
  542. size = Pack(tmp, changes, size, size, version);
  543. //cout << "INFO HERE:\n";
  544. //DumpPacket(tmp, size);
  545. }
  546. EQ2Packet* ret_packet = new EQ2Packet(OP_UpdateCharacterSheetMsg, tmp, size+4);
  547. safe_delete_array(tmp);
  548. safe_delete(packet);
  549. return ret_packet;
  550. }
  551. return 0;
  552. }
  553. void PlayerInfo::SetAccountAge(int16 age){
  554. info_struct->set_account_age_base(age);
  555. }
  556. EQ2Packet* PlayerInfo::serialize(int16 version, int16 modifyPos, int32 modifyValue) {
  557. player->CalculateBonuses();
  558. /* info_struct->heat = 15;
  559. info_struct->heat_base = 13;
  560. info_struct->divine = 14;
  561. info_struct->divine_base = 11;
  562. info_struct->cur_attack = 5;
  563. info_struct->attack_base = 5;
  564. info_struct->coin_copper = 1;
  565. info_struct->coin_silver = 2;
  566. info_struct->coin_gold = 3;
  567. info_struct->coin_plat = 4;*/
  568. int8 blah1 = 90;
  569. int8 blah2 = 120;
  570. /*for (int i = 0; i < 12; i++) {
  571. info_struct->maintained_effects[i].icon = 8+i;
  572. info_struct->maintained_effects[i].icon_backdrop = 315+i;
  573. strcpy(info_struct->maintained_effects[i].name, "Testing Spell");
  574. info_struct->maintained_effects[i].spell_id = 3000+i;
  575. info_struct->maintained_effects[i].slot_pos = i;
  576. info_struct->maintained_effects[i].expire_timestamp = Timer::GetCurrentTime2() + 72000;
  577. if(i<2)
  578. info_struct->maintained_effects[i].conc_used = 1;
  579. info_struct->maintained_effects[i].total_time = 60+i;
  580. }*/
  581. PacketStruct* packet = configReader.getStruct("WS_CharacterSheet", version);
  582. /*for (int i = 0; i < 1; i++) {
  583. info_struct->spell_effects[i].icon = 303;
  584. info_struct->spell_effects[i].icon_backdrop = 317;
  585. info_struct->spell_effects[i].spell_id = 8308;
  586. info_struct->spell_effects[i].expire_timestamp = Timer::GetCurrentTime2() + 72000;
  587. if (i < 5)
  588. packet->setSubstructDataByName("spell_effects", "cancellable", 1, i);
  589. }*/
  590. //0-69, locked screen movement
  591. //30-69 normal movement
  592. //10-30 normal movement
  593. //for (int i = 5; i < 10; i++)
  594. //packet->setDataByName("unknown19", 1+i, i);
  595. //Sleep(5000);
  596. if (packet) {
  597. char name[40];
  598. strncpy(name,info_struct->get_name().c_str(),40);
  599. packet->setDataByName("character_name", name);
  600. // packet->setDataByName("unknown_1_1_MJ", 99);//unknown_1_1_MJ
  601. packet->setDataByName("race", info_struct->get_race());
  602. packet->setDataByName("gender", info_struct->get_gender());
  603. packet->setDataByName("exiled", 0); // need exiled data
  604. packet->setDataByName("class1", info_struct->get_class1());
  605. packet->setDataByName("class2", info_struct->get_class2());
  606. packet->setDataByName("class3", info_struct->get_class3());
  607. packet->setDataByName("tradeskill_class1", info_struct->get_tradeskill_class1());
  608. packet->setDataByName("tradeskill_class2", info_struct->get_tradeskill_class2());
  609. packet->setDataByName("tradeskill_class3", info_struct->get_tradeskill_class3());
  610. packet->setDataByName("level", info_struct->get_level());
  611. packet->setDataByName("effective_level", info_struct->get_effective_level() != 0 ? info_struct->get_effective_level() : info_struct->get_level());
  612. packet->setDataByName("tradeskill_level", info_struct->get_tradeskill_level());
  613. // packet->setDataByName("unknown_1_2_MJ", 98); //unknown_1_2_MJ
  614. packet->setDataByName("account_age_base", info_struct->get_account_age_base());
  615. //TODO: 2021 FIX THIS CASTING
  616. for (int8 i = 0; i < 19; i++)
  617. packet->setDataByName("account_age_bonus", 0);
  618. //TODO: 2021 FIX THIS CASTING
  619. char deity[32];
  620. strncpy(deity, info_struct->get_deity().c_str(), 32);
  621. packet->setDataByName("deity", deity);
  622. packet->setDataByName("last_name", player->GetLastName());
  623. // packet->setDataByName("unknown_1_3_MJ", 97);//unknown_1_3_MJ
  624. packet->setDataByName("current_hp", player->GetHP());
  625. packet->setDataByName("max_hp", player->GetTotalHP());
  626. packet->setDataByName("base_hp", player->GetTotalHPBase());
  627. packet->setDataByName("current_power", player->GetPower());
  628. packet->setDataByName("max_power", player->GetTotalPower());
  629. packet->setDataByName("base_power", player->GetTotalPowerBase());
  630. packet->setDataByName("conc_used", info_struct->get_cur_concentration());
  631. packet->setDataByName("conc_max", info_struct->get_max_concentration());
  632. if (player->GetHPRegen() == 0)
  633. player->SetHPRegen((int)(info_struct->get_level() * .75) + (int)(info_struct->get_level() / 10) + 1);
  634. if (player->GetPowerRegen() == 0)
  635. player->SetPowerRegen(info_struct->get_level() + (int)(info_struct->get_level() / 10) + 4);
  636. packet->setDataByName("hp_regen", player->GetHPRegen() + player->stats[ITEM_STAT_HPREGEN]);
  637. packet->setDataByName("power_regen", player->GetPowerRegen() + player->stats[ITEM_STAT_MANAREGEN]);
  638. // packet->setDataByName("unknown_1_4a_MJ", 96); //-1// was unknown11
  639. // packet->setDataByName("unknown_1_4b_MJ", 96); //-1
  640. packet->setDataByName("stat_bonus_health", player->CalculateBonusMod());//bonus health and bonus power getting same value?
  641. packet->setDataByName("stat_bonus_power", player->CalculateBonusMod());//bonus health and bonus power getting same value?
  642. float bonus_health = floor((float)(info_struct->get_sta() * player->CalculateBonusMod()));
  643. packet->setDataByName("bonus_health", bonus_health);
  644. packet->setDataByName("bonus_power", floor((float)(player->GetPrimaryStat() * player->CalculateBonusMod())));
  645. packet->setDataByName("stat_bonus_damage", 95); //stat_bonus_damage
  646. packet->setDataByName("mitigation_cur", info_struct->get_cur_mitigation());// confirmed DoV
  647. packet->setDataByName("mitigation_base", info_struct->get_mitigation_base());// confirmed DoV
  648. packet->setDataByName("mitigation_pct_pve", 392); // % calculation Mitigation % vs PvE 392 = 39.2%// confirmed DoV
  649. packet->setDataByName("mitigation_pct_pvp", 559); // % calculation Mitigation % vs PvP 559 = 55.9%// confirmed DoV
  650. packet->setDataByName("toughness", 0);//toughness// confirmed DoV
  651. packet->setDataByName("toughness_resist_dmg_pvp", 0);//toughness_resist_dmg_pvp 73 = 7300% // confirmed DoV
  652. packet->setDataByName("avoidance_pct", 0);//avoidance_pct 192 = 19.2% // confirmed DoV
  653. packet->setDataByName("avoidance_base", info_struct->get_avoidance_base()); // confirmed DoV
  654. packet->setDataByName("avoidance", info_struct->get_cur_avoidance());
  655. // packet->setDataByName("unknown_1096_1_MJ", 90);//unknown_1096_1_MJ
  656. packet->setDataByName("base_avoidance_pct", info_struct->get_base_avoidance_pct());// confirmed DoV
  657. // packet->setDataByName("unknown_1096_2_MJ", 89);//unknown_1096_2_MJ
  658. packet->setDataByName("parry", info_struct->get_parry_base());// confirmed DoV
  659. // packet->setDataByName("unknown_1096_3_MJ", 88);//unknown_1096_3_MJ
  660. packet->setDataByName("block", info_struct->get_block_base());// confirmed DoV
  661. // packet->setDataByName("unknown_1096_4_MJ", 87);//unknown_1096_4_MJ
  662. packet->setDataByName("uncontested_block", info_struct->get_uncontested_block());// confirmed DoV
  663. // packet->setDataByName("unknown_1096_5_MJ", 86);//unknown_1096_5_MJ
  664. packet->setDataByName("str", info_struct->get_str());// confirmed DoV
  665. packet->setDataByName("sta", info_struct->get_sta());// confirmed DoV
  666. packet->setDataByName("agi", info_struct->get_agi());// confirmed DoV
  667. packet->setDataByName("wis", info_struct->get_wis());// confirmed DoV
  668. packet->setDataByName("int", info_struct->get_intel());// confirmed DoV
  669. packet->setDataByName("str_base", info_struct->get_str_base()); // confirmed DoV
  670. packet->setDataByName("sta_base", info_struct->get_sta_base());// confirmed DoV
  671. packet->setDataByName("agi_base", info_struct->get_agi_base());// confirmed DoV
  672. packet->setDataByName("wis_base", info_struct->get_wis_base());// confirmed DoV
  673. packet->setDataByName("int_base", info_struct->get_intel_base());// confirmed DoV
  674. // packet->setDataByName("unknown_1096_6_MJ", 86);//unknown_1096_6_MJ
  675. if (version <= 996) {
  676. packet->setDataByName("heat", info_struct->get_heat());
  677. packet->setDataByName("cold", info_struct->get_cold());
  678. packet->setDataByName("magic", info_struct->get_magic());
  679. packet->setDataByName("mental", info_struct->get_mental());
  680. packet->setDataByName("divine", info_struct->get_divine());
  681. packet->setDataByName("disease", info_struct->get_disease());
  682. packet->setDataByName("poison", info_struct->get_poison());
  683. packet->setDataByName("heat_base", info_struct->get_heat_base());
  684. packet->setDataByName("cold_base", info_struct->get_cold_base());
  685. packet->setDataByName("magic_base", info_struct->get_magic_base());
  686. packet->setDataByName("mental_base", info_struct->get_mental_base());
  687. packet->setDataByName("divine_base", info_struct->get_divine_base());
  688. packet->setDataByName("disease_base", info_struct->get_disease_base());
  689. packet->setDataByName("poison_base", info_struct->get_poison_base());
  690. }
  691. else {
  692. packet->setDataByName("elemental", info_struct->get_heat());// confirmed DoV
  693. packet->setDataByName("noxious", info_struct->get_poison());// confirmed DoV
  694. packet->setDataByName("arcane", info_struct->get_magic());// confirmed DoV
  695. // packet->setDataByName("unknown_1096_7_MJ", 85);//unknown_1096_7_MJ
  696. packet->setDataByName("elemental_base", info_struct->get_elemental_base());// confirmed DoV
  697. packet->setDataByName("noxious_base", info_struct->get_noxious_base());// confirmed DoV
  698. packet->setDataByName("arcane_base", info_struct->get_arcane_base());// confirmed DoV
  699. }
  700. // packet->setDataByName("unknown_1096_8_MJ", 205);//unknown_1096_8_MJ
  701. packet->setDataByName("elemental_absorb_pve", 0); //210 = 21.0% confirmed DoV
  702. packet->setDataByName("noxious_absorb_pve", 0);//210 = 21.0% confirmed DoV
  703. packet->setDataByName("arcane_absorb_pve", 0);//210 = 21.0% confirmed DoV
  704. // packet->setDataByName("unknown_1096_9_MJ", 240);//unknown_1096_9_MJ
  705. packet->setDataByName("elemental_absorb_pvp", 0);//210 = 21.0% confirmed DoV
  706. packet->setDataByName("noxious_absorb_pvp", 0);//210 = 21.0% confirmed DoV
  707. packet->setDataByName("arcane_absorb_pvp", 0);//210 = 21.0% confirmed DoV
  708. // packet->setDataByName("unknown_1096_10_MJ", 280);//unknown_1096_10_MJ
  709. packet->setDataByName("elemental_dmg_reduction", 0);// confirmed DoV
  710. packet->setDataByName("noxious_dmg_reduction", 0);// confirmed DoV
  711. packet->setDataByName("arcane_dmg_reduction", 0);// confirmed DoV
  712. // packet->setDataByName("unknown_1096_11_MJ", 320);//unknown_1096_11_MJ
  713. packet->setDataByName("elemental_dmg_reduction_pct", 0);//210 = 21.0% confirmed DoV
  714. packet->setDataByName("noxious_dmg_reduction_pct", 0);//210 = 21.0% confirmed DoV
  715. packet->setDataByName("arcane_dmg_reduction_pct", 0);//210 = 21.0% confirmed DoV
  716. CalculateXPPercentages();
  717. packet->setDataByName("current_adv_xp", info_struct->get_xp()); // confirmed DoV
  718. packet->setDataByName("needed_adv_xp", info_struct->get_xp_needed());// confirmed DoV
  719. packet->setDataByName("debt_adv_xp", 0);//95= 9500% //confirmed DoV
  720. packet->setDataByName("current_trade_xp", info_struct->get_ts_xp());// confirmed DoV
  721. packet->setDataByName("needed_trade_xp", info_struct->get_ts_xp_needed());// confirmed DoV
  722. packet->setDataByName("debt_trade_xp", 0);//95= 9500% //confirmed DoV
  723. packet->setDataByName("server_bonus", 0);//confirmed DoV
  724. packet->setDataByName("adventure_vet_bonus", 145);//confirmed DoV
  725. packet->setDataByName("tradeskill_vet_bonus", 123);//confirmed DoV
  726. packet->setDataByName("recruit_friend", 110);// 110 = 11000% //confirmed DoV
  727. packet->setDataByName("recruit_friend_bonus", 0);//confirmed DoV
  728. packet->setDataByName("adventure_vitality", (int16)(player->GetXPVitality() * 10)); // a %%
  729. packet->setDataByName("adventure_vitality_yellow_arrow", info_struct->get_xp_yellow_vitality_bar()); //change info_struct to match struct
  730. packet->setDataByName("adventure_vitality_blue_arrow", info_struct->get_xp_blue_vitality_bar()); //change info_struct to match struct
  731. packet->setDataByName("tradeskill_vitality", 300); //300 = 30%
  732. packet->setDataByName("tradeskill_vitality_purple_arrow", 0);// dov confirmed
  733. packet->setDataByName("tradeskill_vitality_blue_arrow", 0);// dov confirmed
  734. packet->setDataByName("mentor_bonus", 50);//mentor_bonus //this converts wrong says mentor bonus enabled but earning 0
  735. packet->setDataByName("assigned_aa", player->GetAssignedAA());
  736. packet->setDataByName("max_aa", rule_manager.GetGlobalRule(R_Player, MaxAA)->GetInt16());
  737. packet->setDataByName("unassigned_aa", player->GetUnassignedAA()); // dov confirmed
  738. packet->setDataByName("aa_green_bar", 0);// dov confirmed
  739. packet->setDataByName("adv_xp_to_aa_xp_slider", 0); // aa slider max // dov confirmed
  740. packet->setDataByName("adv_xp_to_aa_xp_max", 100); // aa slider position // dov confirmed
  741. packet->setDataByName("aa_blue_bar", 0);// dov confirmed
  742. packet->setDataByName("bonus_achievement_xp", 0); // dov confirmed
  743. // packet->setDataByName("unknown_1096_12_MJ", 90);
  744. packet->setDataByName("items_found", 62);// dov confirmed
  745. packet->setDataByName("named_npcs_killed", 192);// dov confirmed
  746. packet->setDataByName("quests_completed", 670);// dov confirmed
  747. packet->setDataByName("exploration_events", 435);// dov confirmed
  748. packet->setDataByName("completed_collections", 144);// dov confirmed
  749. packet->setDataByName("unknown_1096_13_MJ", 80);//unknown_1096_13_MJ
  750. packet->setDataByName("unknown_1096_14_MJ", 50);//unknown_1096_14_MJ
  751. packet->setDataByName("coins_copper", info_struct->get_coin_copper());// dov confirmed
  752. packet->setDataByName("coins_silver", info_struct->get_coin_silver());// dov confirmed
  753. packet->setDataByName("coins_gold", info_struct->get_coin_gold());// dov confirmed
  754. packet->setDataByName("coins_plat", info_struct->get_coin_plat());// dov confirmed
  755. //packet->setDataByName("unknown_1096_15_MJ", 50);//unknown_1096_15_MJ
  756. //////Spell Effects go here, but are below
  757. //////Dettrimental effects go here, but are below
  758. packet->setDataByName("trauma_count", 45);// added with spells leave here for testing//dov confirmed
  759. packet->setDataByName("arcane_count", 255);// added with spells leave here for testing//dov confirmed
  760. packet->setDataByName("noxious_count", 47);// added with spells leave here for testing//dov confirmed
  761. packet->setDataByName("elemental_count", 255);// added with spells leave here for testing//dov confirmed
  762. packet->setDataByName("curse_count", 49);// added with spells leave here for testing//dov confirmed
  763. // packet->setDataByName("unknown_1096_17_MJ", 30);//unknown_1096_17_MJ
  764. //////Maintained effects go here, but are below
  765. packet->setDataByName("breath", 30);
  766. //packet->setDataByName("unknown_1096_18_MJ", 1000);//16880
  767. packet->setDataByName("melee_pri_dmg_min", player->GetPrimaryWeaponMinDamage());// dov confirmed
  768. packet->setDataByName("melee_pri_dmg_max", player->GetPrimaryWeaponMaxDamage());// dov confirmed
  769. packet->setDataByName("melee_sec_dmg_min", player->GetSecondaryWeaponMinDamage());// dov confirmed
  770. packet->setDataByName("melee_sec_dmg_max", player->GetSecondaryWeaponMaxDamage());// dov confirmed // this is off when using 2 handed weapon
  771. packet->setDataByName("ranged_dmg_min", player->GetRangedWeaponMinDamage());// dov confirmed
  772. packet->setDataByName("ranged_dmg_max", player->GetRangedWeaponMaxDamage());// dov confirmed
  773. if (info_struct->get_attackspeed() > 0) {
  774. packet->setDataByName("melee_pri_delay", (((float)player->GetPrimaryWeaponDelay() * 1.33) / player->CalculateAttackSpeedMod()) * .001);// dov confirmed
  775. packet->setDataByName("melee_sec_delay", (((float)player->GetSecondaryWeaponDelay() * 1.33) / player->CalculateAttackSpeedMod()) * .001);// dov confirmed
  776. packet->setDataByName("ranged_delay", (((float)player->GetRangeWeaponDelay() * 1.33) / player->CalculateAttackSpeedMod()) * .001);// dov confirmed
  777. }
  778. else {
  779. packet->setDataByName("melee_pri_delay", (float)player->GetPrimaryWeaponDelay() * .001);// dov confirmed
  780. packet->setDataByName("melee_sec_delay", (float)player->GetSecondaryWeaponDelay() * .001);// dov confirmed
  781. packet->setDataByName("ranged_delay", (float)player->GetRangeWeaponDelay() * .001);// dov confirmed
  782. }
  783. //packet->setDataByName("unknown_1096_18_MJ", 99);//unknown_1096_19a_MJ
  784. //packet->setDataByName("unknown_1096_18_MJ", 98);//unknown_1096_19b_MJ
  785. //packet->setDataByName("unknown_1096_18_MJ", 97);//unknown_1096_19c_MJ
  786. //packet->setDataByName("unknown_1096_18_MJ", 96);//unknown_1096_19d_MJ
  787. packet->setDataByName("ability_mod_pve", info_struct->get_ability_modifier());// dov confirmed
  788. packet->setDataByName("base_melee_crit", 85);//85 = 8500% dov confirmed
  789. packet->setDataByName("base_spell_crit", 84);// dov confirmed
  790. packet->setDataByName("base_taunt_crit", 83);// dov confirmed
  791. packet->setDataByName("base_heal_crit", 82);// dov confirmed
  792. packet->setDataByName("flags", info_struct->get_flags());
  793. packet->setDataByName("flags2", info_struct->get_flags2());
  794. if (version == 546) {
  795. if (player->get_character_flag(CF_ANONYMOUS))
  796. packet->setDataByName("flags_anonymous", 1);
  797. if (player->get_character_flag(CF_ROLEPLAYING))
  798. packet->setDataByName("flags_roleplaying", 1);
  799. if (player->get_character_flag(CF_AFK))
  800. packet->setDataByName("flags_afk", 1);
  801. if (player->get_character_flag(CF_LFG))
  802. packet->setDataByName("flags_lfg", 1);
  803. if (player->get_character_flag(CF_LFW))
  804. packet->setDataByName("flags_lfw", 1);
  805. if (!player->get_character_flag(CF_HIDE_HOOD) && !player->get_character_flag(CF_HIDE_HELM))
  806. packet->setDataByName("flags_show_hood", 1);
  807. if (player->get_character_flag(CF_SHOW_ILLUSION))
  808. packet->setDataByName("flags_show_illusion_form", 1);
  809. if (player->get_character_flag(CF_ALLOW_DUEL_INVITES))
  810. packet->setDataByName("flags_show_duel_invites", 1);
  811. if (player->get_character_flag(CF_ALLOW_TRADE_INVITES))
  812. packet->setDataByName("flags_show_trade_invites", 1);
  813. if (player->get_character_flag(CF_ALLOW_GROUP_INVITES))
  814. packet->setDataByName("flags_show_group_invites", 1);
  815. if (player->get_character_flag(CF_ALLOW_RAID_INVITES))
  816. packet->setDataByName("flags_show_raid_invites", 1);
  817. if (player->get_character_flag(CF_ALLOW_GUILD_INVITES))
  818. packet->setDataByName("flags_show_guild_invites", 1);
  819. }
  820. //unknown_1096_20_MJ
  821. //unknown_1096_21_MJ
  822. //unknown_1096_22_MJ
  823. //unknown_1096_23_MJ
  824. packet->setDataByName("haste", info_struct->get_haste());// dov confirmed
  825. //unknown_1096_24_MJ
  826. //unknown_1096_25_MJ
  827. //unknown_1096_26_MJ
  828. packet->setDataByName("drunk", info_struct->get_drunk());// dov confirmed
  829. //unknown_1096_27_MJ
  830. packet->setDataByName("hate_mod", info_struct->get_hate_mod());// dov confirmed
  831. packet->setDataByName("adventure_effects_bonus", 55);// NEED an adventure_effects_bonus// dov confirmed
  832. packet->setDataByName("tradeskill_effects_bonus", 56);// NEED an tradeskill_effects_bonus// dov confirmed
  833. //unknown_1096_28_MJ
  834. packet->setDataByName("dps", info_struct->get_dps());// dov confirmed
  835. //unknown_1096_29_MJ
  836. packet->setDataByName("melee_ae", info_struct->get_melee_ae());// dov confirmed
  837. packet->setDataByName("multi_attack", info_struct->get_multi_attack());// dov confirmed
  838. packet->setDataByName("spell_multi_attack", info_struct->get_spell_multi_attack());// dov confirmed
  839. //unknown_1096_30_MJ
  840. packet->setDataByName("block_chance", info_struct->get_block_chance());// dov confirmed
  841. //unknown_1096_31_MJ
  842. packet->setDataByName("crit_chance", info_struct->get_crit_chance());// dov confirmed
  843. //unknown_1096_32_MJ
  844. packet->setDataByName("crit_bonus", info_struct->get_crit_bonus());// dov confirmed
  845. packet->setDataByName("potency", player->stats[ITEM_STAT_POTENCY]);//info_struct->get_potency);// dov confirmed
  846. //unknown_1096_33_MJ
  847. packet->setDataByName("reuse_speed", info_struct->get_reuse_speed());// dov confirmed
  848. packet->setDataByName("recovery_speed", info_struct->get_recovery_speed());// dov confirmed
  849. packet->setDataByName("casting_speed", info_struct->get_casting_speed());// dov confirmed
  850. packet->setDataByName("spell_reuse_speed", info_struct->get_spell_reuse_speed());// dov confirmed
  851. //unknown_1096_34_MJ
  852. packet->setDataByName("strikethrough", info_struct->get_strikethrough());//dov confirmed
  853. //unknown_1096_35_MJ
  854. packet->setDataByName("accuracy", info_struct->get_accuracy());//dov confirmed
  855. //unknown_1096_36_MJ
  856. packet->setDataByName("critical_mit", info_struct->get_critical_mitigation());//dov /confirmed
  857. //unknown_1096_37_MJ
  858. //toughness_resist_crit_pvp
  859. //unknown_1096_38_MJ
  860. packet->setDataByName("durability_mod", player->stats[ITEM_STAT_DURABILITY_MOD]);// dov confirmed
  861. packet->setDataByName("durability_add", player->stats[ITEM_STAT_DURABILITY_ADD]);// dov confirmed
  862. packet->setDataByName("progress_mod", player->stats[ITEM_STAT_PROGRESS_MOD]);// dov confirmed
  863. packet->setDataByName("progress_add", player->stats[ITEM_STAT_PROGRESS_ADD]);// dov confirmed
  864. packet->setDataByName("success_mod", player->stats[ITEM_STAT_SUCCESS_MOD]);// dov confirmed
  865. packet->setDataByName("crit_success_mod", player->stats[ITEM_STAT_CRIT_SUCCESS_MOD]);// dov confirmed
  866. //unknown_1096_39_MJ
  867. /////GRoup Members
  868. //unknown_1096_40_MJ
  869. //unknown_1096_41_MJ
  870. if (version <= 283 && info_struct->get_pet_id() == 0xFFFFFFFF)
  871. packet->setDataByName("pet_id", 0);
  872. else {
  873. packet->setDataByName("pet_id", info_struct->get_pet_id());
  874. char pet_name[32];
  875. strncpy(pet_name, info_struct->get_pet_name().c_str(), 32);
  876. packet->setDataByName("pet_name", pet_name);
  877. }
  878. //unknown_1096_42_MJ
  879. packet->setDataByName("pet_health_pct", info_struct->get_pet_health_pct());
  880. packet->setDataByName("pet_power_pct", info_struct->get_pet_power_pct());
  881. //unknown_1096_43_MJ
  882. packet->setDataByName("pet_movement", info_struct->get_pet_movement());
  883. packet->setDataByName("pet_behavior", info_struct->get_pet_behavior());
  884. packet->setDataByName("rain", info_struct->get_rain());
  885. packet->setDataByName("rain2", info_struct->get_wind()); //-102.24);
  886. packet->setDataByName("status_points", 999999);// info_struct->status_points);
  887. packet->setDataByName("guild_status", 888888);
  888. //unknown_1096_44_MJ
  889. if (house_zone_id > 0){
  890. string house_name = database.GetZoneName(house_zone_id);
  891. if(house_name.length() > 0)
  892. packet->setDataByName("house_zone", house_name.c_str());
  893. }
  894. else
  895. packet->setDataByName("house_zone", "abcdefghijklmnopqrst");
  896. //unknown_1096_45_MJ
  897. if (bind_zone_id > 0){
  898. string bind_name = database.GetZoneName(bind_zone_id);
  899. if(bind_name.length() > 0)
  900. packet->setDataByName("bind_zone", bind_name.c_str());
  901. }
  902. else
  903. packet->setDataByName("bind_zone", "abcdefghijklmnopqrst");
  904. //
  905. packet->setDataByName("rare_harvest_chance", player->stats[ITEM_STAT_RARE_HARVEST_CHANCE]);
  906. packet->setDataByName("max_crafting", player->stats[ITEM_STAT_MAX_CRAFTING]);
  907. packet->setDataByName("component_refund", player->stats[ITEM_STAT_COMPONENT_REFUND]);
  908. packet->setDataByName("ex_durability_mod", player->stats[ITEM_STAT_EX_DURABILITY_MOD]);
  909. packet->setDataByName("ex_durability_add", player->stats[ITEM_STAT_EX_DURABILITY_ADD]);
  910. packet->setDataByName("ex_crit_success_mod", player->stats[ITEM_STAT_EX_CRIT_SUCCESS_MOD]);
  911. packet->setDataByName("ex_crit_failure_mod", player->stats[ITEM_STAT_EX_CRIT_FAILURE_MOD]);
  912. packet->setDataByName("ex_progress_mod", player->stats[ITEM_STAT_EX_PROGRESS_MOD]);
  913. packet->setDataByName("ex_progress_add", player->stats[ITEM_STAT_EX_PROGRESS_ADD]);
  914. packet->setDataByName("ex_success_mod", player->stats[ITEM_STAT_EX_SUCCESS_MOD]);
  915. packet->setDataByName("flurry", info_struct->get_flurry());
  916. packet->setDataByName("unknown153", 153);
  917. packet->setDataByName("bountiful_harvest", 0); // need bountiful harvest
  918. packet->setDataByName("unknown156", 156);
  919. packet->setDataByName("unknown157", 157);
  920. packet->setDataByName("unknown159", 159);
  921. packet->setDataByName("unknown160", 160);
  922. packet->setDataByName("unknown163", 163);
  923. packet->setDataByName("unknown168", 168);
  924. packet->setDataByName("decrease_falling_dmg", 169);
  925. info_struct->set_max_weight(200);
  926. //packet->setDataByName("auto_attack", 1);
  927. //492
  928. if (version <= 546) {
  929. packet->setDataByName("exp_yellow", info_struct->get_xp_yellow() / 10);
  930. packet->setDataByName("exp_blue", info_struct->get_xp_blue()/10);
  931. }
  932. else {
  933. packet->setDataByName("exp_yellow", info_struct->get_xp_yellow());
  934. packet->setDataByName("exp_blue", info_struct->get_xp_blue());
  935. }
  936. if (version <= 546) {
  937. packet->setDataByName("tradeskill_exp_yellow", info_struct->get_tradeskill_exp_yellow() / 10);
  938. packet->setDataByName("tradeskill_exp_blue", info_struct->get_tradeskill_exp_blue() / 10);
  939. }
  940. else {
  941. packet->setDataByName("tradeskill_exp_yellow", info_struct->get_tradeskill_exp_yellow());
  942. packet->setDataByName("tradeskill_exp_blue", info_struct->get_tradeskill_exp_blue());
  943. }
  944. packet->setDataByName("attack", info_struct->get_cur_attack());
  945. packet->setDataByName("attack_base", info_struct->get_attack_base());
  946. packet->setDataByName("absorb", info_struct->get_absorb());
  947. packet->setDataByName("mitigation_skill1", info_struct->get_mitigation_skill1());
  948. packet->setDataByName("mitigation_skill2", info_struct->get_mitigation_skill2());
  949. packet->setDataByName("mitigation_skill3", info_struct->get_mitigation_skill3());
  950. packet->setDataByName("mitigation_max", info_struct->get_max_mitigation());
  951. packet->setDataByName("savagery", 250);
  952. packet->setDataByName("max_savagery", 500);
  953. packet->setDataByName("savagery_level", 1);
  954. packet->setDataByName("max_savagery_level", 5);
  955. packet->setDataByName("dissonance", 5000);
  956. packet->setDataByName("max_dissonance", 10000);
  957. packet->setDataByName("mitigation_cur2", info_struct->get_cur_mitigation());
  958. packet->setDataByName("mitigation_max2", info_struct->get_max_mitigation());
  959. packet->setDataByName("mitigation_base2", info_struct->get_mitigation_base());
  960. if (version < 1096)
  961. packet->setDataByName("weight", info_struct->get_weight());
  962. packet->setDataByName("max_weight", info_struct->get_max_weight());
  963. packet->setDataByName("unknownint32a", 777777);
  964. packet->setDataByName("unknownint32b", 666666);
  965. packet->setDataByName("mitigation2_cur", 2367);
  966. packet->setDataByName("uncontested_riposte", info_struct->get_uncontested_riposte());
  967. packet->setDataByName("uncontested_dodge", info_struct->get_uncontested_dodge());
  968. packet->setDataByName("uncontested_parry", info_struct->get_uncontested_parry()); //????
  969. packet->setDataByName("uncontested_riposte_pve", 0); //????
  970. packet->setDataByName("uncontested_parry_pve", 0); //????
  971. packet->setDataByName("total_prestige_points", player->GetPrestigeAA());
  972. packet->setDataByName("unassigned_prestige_points", player->GetUnassignedPretigeAA());
  973. packet->setDataByName("total_tradeskill_points", player->GetTradeskillAA());
  974. packet->setDataByName("unassigned_tradeskill_points", player->GetUnassignedTradeskillAA());
  975. packet->setDataByName("total_tradeskill_prestige_points", player->GetTradeskillPrestigeAA());
  976. packet->setDataByName("unassigned_tradeskill_prestige_points", player->GetUnassignedTradeskillPrestigeAA());
  977. /*packet->setDataByName("unknown13", 201, 0);
  978. packet->setDataByName("unknown13", 201, 1);
  979. packet->setDataByName("unknown13", 234, 2);
  980. packet->setDataByName("unknown13", 201, 3);
  981. packet->setDataByName("unknown13", 214, 4);
  982. packet->setDataByName("unknown13", 234, 5);
  983. packet->setDataByName("unknown13", 234, 6);
  984. packet->setDataByName("unknown14", 78);
  985. */
  986. //packet->setDataByName("unknown23", 1, 146);
  987. //packet->setDataByName("unknown24", 0xFF, 42);
  988. //packet->setDataByName("unknown24", 0xFF, 46);
  989. // unknown14c = percent aa exp to next level
  990. packet->setDataByName("unknown14d", 100, 0);
  991. packet->setDataByName("unknown20", 1084227584, 72);
  992. //packet->setDataByName("unknown16", 0xFFFFFFFF, 4);
  993. //packet->setDataByName("unknown15b", 9911);
  994. packet->setDataByName("unknown15c", 200);
  995. //packet->setDataByName("unknown15", 100, 10);
  996. /*packet->setDataByName("unknown19", 1);
  997. packet->setDataByName("unknown19", 3, 1);
  998. packet->setDataByName("unknown19", 1074301064, 2);
  999. packet->setDataByName("unknown19", 1, 3);
  1000. packet->setDataByName("unknown19", 3, 4);
  1001. packet->setDataByName("unknown19", 1074301064, 5);
  1002. packet->setDataByName("unknown19", 6, 6);
  1003. packet->setDataByName("unknown19", 14, 7);
  1004. packet->setDataByName("unknown19", 1083179008, 8);*/
  1005. player->SetGroupInformation(packet);
  1006. //packet->setDataByName("unknown20", 1, 107);
  1007. //packet->setDataByName("unknown20", 1, 108);
  1008. //packet->setDataByName("unknown20", 1, 109);
  1009. //packet->setDataByName("unknown20", 1, 110);
  1010. //packet->setDataByName("unknown20", 1, 111);
  1011. //packet->setDataByName("unknown20b", 255);
  1012. //packet->setDataByName("unknown20b", 255, 1);
  1013. //packet->setDataByName("unknown20b", 255, 2);
  1014. //packet->setDataByName("in_combat", 32768);
  1015. //make name flash red
  1016. /*packet->setDataByName("unknown20", 8);
  1017. packet->setDataByName("unknown20", 38, 70);
  1018. packet->setDataByName("unknown20", 17, 77);
  1019. packet->setDataByName("unknown20", 1, 112); //melee stats and such
  1020. packet->setDataByName("unknown20", 1, 113);
  1021. packet->setDataByName("unknown20", 1, 114);
  1022. packet->setDataByName("unknown20", 1, 115);
  1023. packet->setDataByName("unknown20", 4294967295, 309);
  1024. packet->setDataByName("unknown22", 2, 4);
  1025. packet->setDataByName("unknown23", 2, 29);
  1026. */
  1027. //packet->setDataByName("unknown20b", 1, i); // pet bar in here
  1028. // for(int i=0;i<19;i++)
  1029. // packet->setDataByName("unknown7", 257, i);
  1030. //packet->setDataByName("unknown21", info_struct->rain, 2);
  1031. /*packet->setDataByName("unknown22", 3, 4);
  1032. packet->setDataByName("unknown23", 3, 161);
  1033. packet->setDataByName("unknown20", 103);
  1034. packet->setDataByName("unknown20", 1280, 70);
  1035. packet->setDataByName("unknown20", 9, 71);
  1036. packet->setDataByName("unknown20", 5, 72);
  1037. packet->setDataByName("unknown20", 4294967271, 73);
  1038. packet->setDataByName("unknown20", 5, 75);
  1039. packet->setDataByName("unknown20", 1051, 77);
  1040. packet->setDataByName("unknown20", 3, 78);
  1041. packet->setDataByName("unknown20", 6, 104);
  1042. packet->setDataByName("unknown20", 1, 105);
  1043. packet->setDataByName("unknown20", 20, 106);
  1044. packet->setDataByName("unknown20", 3, 107);
  1045. packet->setDataByName("unknown20", 1, 108);
  1046. packet->setDataByName("unknown20", 1, 109);
  1047. packet->setDataByName("unknown20", 4278190080, 494);
  1048. packet->setDataByName("unknown20b", 255);
  1049. packet->setDataByName("unknown20b", 255, 1);
  1050. packet->setDataByName("unknown20b", 255, 2);
  1051. packet->setDataByName("unknown20", 50, 75);
  1052. */
  1053. /*packet->setDataByName("unknown199a", 843);// 25);
  1054. //packet->setDataByName("unknown199b", 844);// 30);
  1055. //packet->setDataByName("unknown199c", 845);// 45);
  1056. //packet->setDataByName("unknown199d", 846);// 55);
  1057. packet->setDataByName("unknown37", 537);
  1058. packet->setDataByName("unknown38", 538);
  1059. packet->setDataByName("unknown39", 539);
  1060. packet->setDataByName("unknown40", 540);
  1061. packet->setDataByName("unknown41", 541);
  1062. packet->setDataByName("unknown42", 542);
  1063. packet->setDataByName("unknown43", 543);
  1064. packet->setDataByName("unknown44", 544);
  1065. packet->setDataByName("ability_mod_pvp", 542);
  1066. packet->setDataByName("unknown43", 543);
  1067. packet->setDataByName("unknown44", 544);
  1068. packet->setDataByName("unknown45", 645);
  1069. packet->setDataByName("unknown46", 646);
  1070. packet->setDataByName("unknown47", 647);
  1071. packet->setDataByName("unknown48", 648);
  1072. packet->setDataByName("unknown49", 649);
  1073. packet->setDataByName("unknown50", 650);
  1074. packet->setDataByName("unknown51", 651);
  1075. packet->setDataByName("unknown52", 652);
  1076. packet->setDataByName("unknown53", 653);
  1077. packet->setDataByName("unknown54", 654);
  1078. packet->setDataByName("unknown55", 655);
  1079. packet->setDataByName("unknown56", 656);
  1080. packet->setDataByName("unknown57", 657);
  1081. packet->setDataByName("unknown58", 658);
  1082. packet->setDataByName("unknown59", 659);
  1083. packet->setDataByName("unknown60", 660);
  1084. */
  1085. packet->setDataByName("in_combat_movement_speed", 125);
  1086. packet->setDataByName("increase_max_power", 127);
  1087. packet->setDataByName("increase_max_power2", 128);
  1088. //129 does not exist
  1089. /* packet->setDataByName("unknown130", 130);
  1090. packet->setDataByName("unknown132", 132);
  1091. packet->setDataByName("unknown133", 133);
  1092. packet->setDataByName("unknown137", 137);
  1093. packet->setDataByName("unknown138", 138);
  1094. packet->setDataByName("unknown139", 139);
  1095. packet->setDataByName("unknown141", 141);
  1096. packet->setDataByName("unknown142", 142);
  1097. packet->setDataByName("unknown144", 144);
  1098. packet->setDataByName("unknown147", 147);
  1099. packet->setDataByName("unknown148", 148);
  1100. packet->setDataByName("unknown170", 170);
  1101. packet->setDataByName("unknown171", 171);
  1102. packet->setDataByName("unknown172", 172);
  1103. packet->setDataByName("unknown173", 173);
  1104. packet->setDataByName("unknown174", 174);
  1105. packet->setDataByName("unknown175", 175);
  1106. packet->setDataByName("unknown176", 176);
  1107. packet->setDataByName("unknown177", 177);
  1108. packet->setDataByName("loot_coin", 178);
  1109. packet->setDataByName("mitigation_increase", 179);
  1110. packet->setDataByName("unknown180", 180);
  1111. packet->setDataByName("unknown182", 182);
  1112. packet->setDataByName("unknown184", 184);
  1113. packet->setDataByName("unknown185", 185);
  1114. packet->setDataByName("unknown186", 186);
  1115. packet->setDataByName("unknown187", 187);
  1116. packet->setDataByName("unknown188", 188);
  1117. packet->setDataByName("unknown189", 189);
  1118. packet->setDataByName("unknown190", 190);
  1119. packet->setDataByName("unknown191", 191);
  1120. packet->setDataByName("unknown192", 192);
  1121. packet->setDataByName("unknown193", 193);
  1122. packet->setDataByName("unknown194", 194);
  1123. packet->setDataByName("unknown195", 195);
  1124. packet->setDataByName("unknown196", 196);
  1125. packet->setDataByName("unknown197", 197);
  1126. packet->setDataByName("unknown198", 198);
  1127. packet->setDataByName("unknown199", 199);
  1128. packet->setDataByName("unknown200", 200);
  1129. packet->setDataByName("unknown201", 201);
  1130. packet->setDataByName("unknown202", 202);
  1131. packet->setDataByName("unknown203", 203);
  1132. packet->setDataByName("unknown204", 204);
  1133. packet->setDataByName("unknown205", 205);
  1134. packet->setDataByName("unknown206", 206);
  1135. packet->setDataByName("unknown207", 207);
  1136. packet->setDataByName("unknown208", 208);
  1137. packet->setDataByName("unknown209", 209);
  1138. packet->setDataByName("unknown210", 210);
  1139. packet->setDataByName("unknown211", 211);
  1140. packet->setDataByName("unknown212", 212);
  1141. packet->setDataByName("unknown213", 213);
  1142. packet->setDataByName("unknown214", 214);
  1143. packet->setDataByName("unknown215", 215);
  1144. packet->setDataByName("unknown216", 216);
  1145. packet->setDataByName("unknown217", 217);
  1146. packet->setDataByName("unknown218", 218);
  1147. packet->setDataByName("unknown219", 219);
  1148. packet->setDataByName("unknown220", 220);
  1149. packet->setDataByName("unknown221", 221);
  1150. packet->setDataByName("unknown222", 222);
  1151. packet->setDataByName("unknown223", 223);
  1152. packet->setDataByName("unknown224", 224);
  1153. packet->setDataByName("unknown225", 225);
  1154. packet->setDataByName("unknown226", 226);
  1155. packet->setDataByName("unknown227", 227);
  1156. packet->setDataByName("unknown228", 228);
  1157. packet->setDataByName("unknown229", 229);
  1158. packet->setDataByName("unknown230", 230);
  1159. packet->setDataByName("unknown231", 231);
  1160. packet->setDataByName("unknown232", 232);
  1161. packet->setDataByName("unknown233", 233);
  1162. packet->setDataByName("unknown234", 234);
  1163. packet->setDataByName("unknown235", 235);
  1164. packet->setDataByName("unknown236", 236);
  1165. packet->setDataByName("unknown237", 237);
  1166. packet->setDataByName("unknown238", 238);
  1167. packet->setDataByName("unknown239", 239);
  1168. packet->setDataByName("unknown240", 240);
  1169. // Tradeskill stats
  1170. packet->setDataByName("unknown383", 383);
  1171. packet->setDataByName("unknown384", 384);
  1172. packet->setDataByName("unknown385", 385);
  1173. packet->setDataByName("unknown386", 386);
  1174. packet->setDataByName("unknown387", 387);
  1175. packet->setDataByName("unknown388", 388);
  1176. packet->setDataByName("unknown389", 389);
  1177. packet->setDataByName("unknown390", 390);
  1178. packet->setDataByName("unknown391", 391);
  1179. packet->setDataByName("unknown392", 392);
  1180. packet->setDataByName("unknown393", 393);
  1181. packet->setDataByName("unknown394", 394);
  1182. packet->setDataByName("unknown395", 395);
  1183. packet->setDataByName("unknown396", 396);
  1184. packet->setDataByName("unknown397", 397);
  1185. packet->setDataByName("unknown398", 398);
  1186. */
  1187. packet->setDataByName("vision", info_struct->get_vision());
  1188. packet->setDataByName("breathe_underwater", info_struct->get_breathe_underwater());
  1189. int32 expireTimestamp = 0;
  1190. Spawn* maintained_target = 0;
  1191. player->GetSpellEffectMutex()->readlock(__FUNCTION__, __LINE__);
  1192. player->GetMaintainedMutex()->readlock(__FUNCTION__, __LINE__);
  1193. for (int i = 0; i < 45; i++) {
  1194. if (i < 30) {
  1195. maintained_target = player->GetZone()->GetSpawnByID(info_struct->maintained_effects[i].target);
  1196. packet->setSubstructDataByName("maintained_effects", "name", info_struct->maintained_effects[i].name, i, 0);
  1197. if (maintained_target)
  1198. packet->setSubstructDataByName("maintained_effects", "target", player->GetIDWithPlayerSpawn(maintained_target), i, 0);
  1199. packet->setSubstructDataByName("maintained_effects", "target_type", info_struct->maintained_effects[i].target_type, i, 0);
  1200. packet->setSubstructDataByName("maintained_effects", "spell_id", info_struct->maintained_effects[i].spell_id, i, 0);
  1201. packet->setSubstructDataByName("maintained_effects", "slot_pos", info_struct->maintained_effects[i].slot_pos, i, 0);
  1202. packet->setSubstructDataByName("maintained_effects", "icon", info_struct->maintained_effects[i].icon, i, 0);
  1203. packet->setSubstructDataByName("maintained_effects", "icon_type", info_struct->maintained_effects[i].icon_backdrop, i, 0);
  1204. packet->setSubstructDataByName("maintained_effects", "conc_used", info_struct->maintained_effects[i].conc_used, i, 0);
  1205. packet->setSubstructDataByName("maintained_effects", "unknown3", 1, i, 0);
  1206. packet->setSubstructDataByName("maintained_effects", "total_time", info_struct->maintained_effects[i].total_time, i, 0);
  1207. expireTimestamp = info_struct->maintained_effects[i].expire_timestamp;
  1208. if (expireTimestamp == 0xFFFFFFFF)
  1209. expireTimestamp = 0;
  1210. packet->setSubstructDataByName("maintained_effects", "expire_timestamp", expireTimestamp, i, 0);
  1211. }
  1212. else if (version < 942)//version 942 added 15 additional spell effect slots
  1213. break;
  1214. packet->setSubstructDataByName("spell_effects", "spell_id", info_struct->spell_effects[i].spell_id, i, 0);
  1215. /*if(info_struct->spell_effects[i].spell_id > 0 && info_struct->spell_effects[i].spell_id < 0xFFFFFFFF)
  1216. packet->setSubstructDataByName("spell_effects", "unknown2", 514, i, 0);*/
  1217. packet->setSubstructDataByName("spell_effects", "total_time", info_struct->spell_effects[i].total_time, i, 0);
  1218. expireTimestamp = info_struct->spell_effects[i].expire_timestamp;
  1219. if (expireTimestamp == 0xFFFFFFFF)
  1220. expireTimestamp = 0;
  1221. packet->setSubstructDataByName("spell_effects", "expire_timestamp", expireTimestamp, i, 0);
  1222. packet->setSubstructDataByName("spell_effects", "icon", info_struct->spell_effects[i].icon, i, 0);
  1223. packet->setSubstructDataByName("spell_effects", "icon_type", info_struct->spell_effects[i].icon_backdrop, i, 0);
  1224. if(info_struct->spell_effects[i].spell && info_struct->spell_effects[i].spell->spell && info_struct->spell_effects[i].spell->spell->GetSpellData()->friendly_spell == 1)
  1225. packet->setSubstructDataByName("spell_effects", "cancellable", 1, i);
  1226. }
  1227. player->GetMaintainedMutex()->releasereadlock(__FUNCTION__, __LINE__);
  1228. player->GetSpellEffectMutex()->releasereadlock(__FUNCTION__, __LINE__);
  1229. int8 det_count = 0;
  1230. //Send detriment counts as 255 if all dets of that type are incurable
  1231. det_count = player->GetTraumaCount();
  1232. if (det_count > 0) {
  1233. if (!player->HasCurableDetrimentType(DET_TYPE_TRAUMA))
  1234. det_count = 255;
  1235. }
  1236. packet->setDataByName("trauma_count", det_count);
  1237. det_count = player->GetArcaneCount();
  1238. if (det_count > 0) {
  1239. if (!player->HasCurableDetrimentType(DET_TYPE_ARCANE))
  1240. det_count = 255;
  1241. }
  1242. packet->setDataByName("arcane_count", det_count);
  1243. det_count = player->GetNoxiousCount();
  1244. if (det_count > 0) {
  1245. if (!player->HasCurableDetrimentType(DET_TYPE_NOXIOUS))
  1246. det_count = 255;
  1247. }
  1248. packet->setDataByName("noxious_count", det_count);
  1249. det_count = player->GetElementalCount();
  1250. if (det_count > 0) {
  1251. if (!player->HasCurableDetrimentType(DET_TYPE_ELEMENTAL))
  1252. det_count = 255;
  1253. }
  1254. packet->setDataByName("elemental_count", det_count);
  1255. det_count = player->GetCurseCount();
  1256. if (det_count > 0) {
  1257. if (!player->HasCurableDetrimentType(DET_TYPE_CURSE))
  1258. det_count = 255;
  1259. }
  1260. packet->setDataByName("curse_count", det_count);
  1261. player->GetDetrimentMutex()->readlock(__FUNCTION__, __LINE__);
  1262. vector<DetrimentalEffects>* det_list = player->GetDetrimentalSpellEffects();
  1263. DetrimentalEffects det;
  1264. int32 i = 0;
  1265. for (i = 0; i < det_list->size(); i++) {
  1266. det = det_list->at(i);
  1267. packet->setSubstructDataByName("detrimental_spell_effects", "spell_id", det.spell_id, i);
  1268. packet->setSubstructDataByName("detrimental_spell_effects", "total_time", det.total_time, i);
  1269. packet->setSubstructDataByName("detrimental_spell_effects", "icon", det.icon, i);
  1270. packet->setSubstructDataByName("detrimental_spell_effects", "icon_type", det.icon_backdrop, i);
  1271. expireTimestamp = det.expire_timestamp;
  1272. if (expireTimestamp == 0xFFFFFFFF)
  1273. expireTimestamp = 0;
  1274. packet->setSubstructDataByName("detrimental_spell_effects", "expire_timestamp", expireTimestamp, i);
  1275. packet->setSubstructDataByName("detrimental_spell_effects", "unknown2", 2, i);
  1276. if (i == 30) {
  1277. if (version < 942)
  1278. break;
  1279. }
  1280. else if (i == 45)
  1281. break;
  1282. }
  1283. if (version < 942) {
  1284. while (i < 30) {
  1285. packet->setSubstructDataByName("detrimental_spell_effects", "spell_id", 0xFFFFFFFF, i);
  1286. i++;
  1287. }
  1288. }
  1289. else {
  1290. while (i < 45) {
  1291. packet->setSubstructDataByName("detrimental_spell_effects", "spell_id", 0xFFFFFFFF, i);
  1292. i++;
  1293. }
  1294. }
  1295. player->GetDetrimentMutex()->releasereadlock(__FUNCTION__, __LINE__);
  1296. packet->setDataByName("spirit_rank", 2);
  1297. packet->setDataByName("spirit", 1);
  1298. packet->setDataByName("spirit_progress", .67);
  1299. packet->setDataByName("combat_exp_enabled", 1);
  1300. /*for (int i = 0; i < 12; i++) {
  1301. packet->setSubstructDataByName("spell_effects", "spell_id", i + 1, i);
  1302. if (i % 2 == 0)
  1303. packet->setSubstructDataByName("spell_effects", "cancellable", 1, i);
  1304. }*/
  1305. int testa = 0x41;
  1306. int testb = 0x41;
  1307. //160-330
  1308. //0-250 (160-250) //top down view
  1309. //250-290 nothing
  1310. //290-330 //blocked view
  1311. //310-330 nothing
  1312. //1168: 00 00 00 00 00 00 00 00 - 00 00 00 00 00 41 41 41 | .............AAA
  1313. //1184: 42 41 43 41 44 41 45 00 - 00 00 00 00 00 00 00 00 | BACADAE......... //blocked view
  1314. //1184: 00 41 41 41 42 41 43 00 - 00 00 00 00 00 00 00 00 | .AAABAC......... //blocked view
  1315. //1184: 00 41 41 41 41 00 00 00 - 00 00 00 00 00 00 00 00 | .AAAA........... //blocked view
  1316. //1184: 00 41 41 00 00 00 00 00 - 00 00 00 00 00 00 00 00 | .AA............. //blocked view
  1317. //1184: 00 41 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00 | .AA............. //blocked view
  1318. //1184: 41 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 00 | .AA............. //blocked view 293
  1319. //1168: 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 00 41 | ...............A //blocked view 292
  1320. //packet->setDataByName("screen_blur", 0); //1168: 00 00 00 00 00 00 00 00 - 00 00 00 00 00 00 41 00 //blurred view
  1321. //packet->setDataByName("unknown18", testa, 295);
  1322. //packet->setDataByName("unknown18", testa, 296);
  1323. //packet->setDataByName("unknown18", testa, 297);
  1324. //300 pet junk
  1325. //492
  1326. /*for (int i = 300; i < 360; i++) {
  1327. packet->setDataByName("unknown19", testa, i);
  1328. testa++;
  1329. //packet->setDataByName("unknown19", 0xc3, i+1);
  1330. }*/
  1331. /*packet->setDataByName("pet_id", 5);
  1332. packet->setDataByName("pet_name", "Blah");
  1333. packet->setDataByName("pet_hp", .9);
  1334. packet->setDataByName("pet_power", .8);*/
  1335. /*packet->setDataByName("test7", 0x3f);
  1336. packet->setDataByName("test8", 0xc3);
  1337. packet->setDataByName("unknown17", 12);
  1338. packet->setDataByName("unknown17", 12, 1);
  1339. packet->setDataByName("unknown17", 12, 2);
  1340. packet->setDataByName("unknown17", 12, 3);*/
  1341. string* data = packet->serializeString();
  1342. int32 size = data->length();
  1343. /*uchar blah[] = { 0x31,0x02,0x00,0x00,0xff,0x4f,0x77,0x6b,0x65,0x65,0x63,0x65,0x87,0x61
  1344. ,0x67,0x68,0x1b,0x83,0x04,0x01,0x13,0x95,0x02,0x02,0x01,0x88,0x01,0x91,0x30,0x30
  1345. ,0xa2,0x01,0x30,0x84,0x30,0x8a,0x38,0x38,0xf0,0x17,0x01,0x17,0x9f,0x01,0x17,0x01
  1346. ,0x17,0x01,0x0a,0xd5,0x10,0x14,0x18,0x14,0xaa,0x14,0x10,0x14,0x95,0x18,0x14,0x14
  1347. ,0x09,0xd1,0x08,0x08,0x06,0x82,0x06,0x1a,0xd1,0x28,0x28,0x1e,0x8a,0x1e,0x01,0x1f
  1348. ,0x81,0x13,0x09,0x91,0x01,0x50,0x15,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff
  1349. ,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f
  1350. ,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff
  1351. ,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff
  1352. ,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f
  1353. ,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff
  1354. ,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff
  1355. ,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f
  1356. ,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff
  1357. ,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff
  1358. ,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x07,0x8f
  1359. ,0xff,0xff,0xff,0xff,0x07,0x8f,0xff,0xff,0xff,0xff,0x47,0x8f,0xff,0xff,0xff,0xff
  1360. ,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff
  1361. ,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f
  1362. ,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff
  1363. ,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86
  1364. ,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff
  1365. ,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff
  1366. ,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48
  1367. ,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff
  1368. ,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff
  1369. ,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff
  1370. ,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f
  1371. ,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff
  1372. ,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86
  1373. ,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff
  1374. ,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff
  1375. ,0xff,0xff,0xff,0x86,0xff,0xff,0x48,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x48
  1376. ,0x8f,0xff,0xff,0xff,0xff,0x86,0xff,0xff,0x0a,0x83,0xf0,0x41,0x7f,0x7f,0x7f,0x7f
  1377. ,0x3a,0xff,0xff,0xff,0xff,0xff,0x4e,0x6f,0x20,0x87,0x50,0x65,0x74,0x2d,0x9f,0x3f
  1378. ,0xc3,0x94,0xcb,0xc2,0x08,0x81,0x02 };*/
  1379. //size = sizeof(blah);
  1380. //packet->PrintPacket();
  1381. uchar* tmp = new uchar[size];
  1382. bool reverse = version > 283;
  1383. if (!changes) {
  1384. orig_packet = new uchar[size];
  1385. changes = new uchar[size];
  1386. memcpy(orig_packet, (uchar*)data->c_str(), size);
  1387. //DumpPacket(orig_packet, size);
  1388. size = Pack(tmp, orig_packet, size, size, version, reverse);
  1389. }
  1390. else {
  1391. memcpy(changes, (uchar*)data->c_str(), size);
  1392. if (modifyPos > 0) {
  1393. uchar* ptr2 = (uchar*)changes;
  1394. ptr2 += modifyPos - 1;
  1395. if (modifyValue > 0xFFFF) {
  1396. memcpy(ptr2, (uchar*)&modifyValue, 4);
  1397. }
  1398. else if (modifyValue > 0xFF) {
  1399. memcpy(ptr2, (uchar*)&modifyValue, 2);
  1400. }
  1401. else
  1402. memcpy(ptr2, (uchar*)&modifyValue, 1);
  1403. }
  1404. /*if (player->GetTempVariable("offset").length() > 0){
  1405. changes[atoul(player->GetTempVariable("offset").c_str())] = 0xF4;
  1406. changes[atoul(player->GetTempVariable("offset").c_str()) + 1] = 0x01;
  1407. }*/
  1408. Encode(changes, orig_packet, size);
  1409. if (modifyPos > 0) {
  1410. uchar* ptr2 = (uchar*)orig_packet;
  1411. if (modifyPos > 64)
  1412. ptr2 += modifyPos - 64;
  1413. int16 tmpsize = modifyPos + 128;
  1414. if (tmpsize > size)
  1415. tmpsize = size;
  1416. DumpPacket(ptr2, tmpsize - modifyPos);
  1417. }
  1418. size = Pack(tmp, changes, size, size, version, reverse);
  1419. //DumpPacket(tmp, size);
  1420. }
  1421. if (version >= 546)
  1422. {
  1423. PacketStruct* control_packet = configReader.getStruct("WS_SetControlGhost", version);
  1424. if (control_packet) {
  1425. control_packet->setDataByName("spawn_id", 0xFFFFFFFF);
  1426. control_packet->setDataByName("speed", player->GetSpeed());
  1427. control_packet->setDataByName("air_speed", player->GetAirSpeed());
  1428. control_packet->setDataByName("size", 0.51);
  1429. Client* client = player->GetZone()->GetClientBySpawn(player);
  1430. if (client)
  1431. client->QueuePacket(control_packet->serialize());
  1432. safe_delete(control_packet);
  1433. }
  1434. }
  1435. EQ2Packet* ret_packet = new EQ2Packet(OP_UpdateCharacterSheetMsg, tmp, size);
  1436. safe_delete(packet);
  1437. safe_delete_array(tmp);
  1438. return ret_packet;
  1439. }
  1440. return 0;
  1441. }
  1442. EQ2Packet* PlayerInfo::serializePet(int16 version) {
  1443. PacketStruct* packet = configReader.getStruct("WS_CharacterPet", version);
  1444. if(packet) {
  1445. Spawn* pet = 0;
  1446. pet = player->GetPet();
  1447. if (!pet)
  1448. pet = player->GetCharmedPet();
  1449. if (pet) {
  1450. packet->setDataByName("current_hp", pet->GetHP());
  1451. packet->setDataByName("max_hp", pet->GetTotalHP());
  1452. packet->setDataByName("base_hp", pet->GetTotalHPBase());
  1453. packet->setDataByName("current_power", pet->GetPower());
  1454. packet->setDataByName("max_power", pet->GetTotalPower());
  1455. packet->setDataByName("base_power", pet->GetTotalPowerBase());
  1456. packet->setDataByName("spawn_id", info_struct->get_pet_id());
  1457. packet->setDataByName("spawn_id2", info_struct->get_pet_id());
  1458. char pet_name[32];
  1459. strncpy(pet_name, info_struct->get_pet_name().c_str(), 32);
  1460. packet->setDataByName("name", pet_name);
  1461. packet->setDataByName("no_pet", pet_name);
  1462. if (version >= 57000) {
  1463. packet->setDataByName("current_power3", pet->GetPower());
  1464. packet->setDataByName("max_power3", pet->GetTotalPower());
  1465. packet->setDataByName("health_pct_tooltip", (double)info_struct->get_pet_health_pct());
  1466. packet->setDataByName("health_pct_bar", (double)info_struct->get_pet_health_pct());
  1467. }
  1468. else {
  1469. packet->setDataByName("health_pct_tooltip", info_struct->get_pet_health_pct());
  1470. packet->setDataByName("health_pct_bar", info_struct->get_pet_health_pct());
  1471. }
  1472. packet->setDataByName("power_pct_tooltip", info_struct->get_pet_power_pct());
  1473. packet->setDataByName("power_pct_bar", info_struct->get_pet_power_pct());
  1474. packet->setDataByName("unknown5", 255); // Hate % maybe
  1475. packet->setDataByName("movement", info_struct->get_pet_movement());
  1476. packet->setDataByName("behavior", info_struct->get_pet_behavior());
  1477. }
  1478. else {
  1479. packet->setDataByName("current_hp", 0);
  1480. packet->setDataByName("max_hp", 0);
  1481. packet->setDataByName("base_hp", 0);
  1482. packet->setDataByName("current_power", 0);
  1483. packet->setDataByName("max_power", 0);
  1484. packet->setDataByName("base_power", 0);
  1485. packet->setDataByName("spawn_id", 0);
  1486. packet->setDataByName("spawn_id2", 0xFFFFFFFF);
  1487. packet->setDataByName("name", "");
  1488. packet->setDataByName("no_pet", "No Pet");
  1489. packet->setDataByName("health_pct_tooltip", 0);
  1490. packet->setDataByName("health_pct_bar", 0);
  1491. packet->setDataByName("power_pct_tooltip", 0);
  1492. packet->setDataByName("power_pct_bar", 0);
  1493. packet->setDataByName("unknown5", 0);
  1494. packet->setDataByName("movement", 0);
  1495. packet->setDataByName("behavior", 0);
  1496. }
  1497. string* data = packet->serializeString();
  1498. int32 size = data->length();
  1499. uchar* tmp = new uchar[size];
  1500. // if this is the first time sending this packet create the buffers
  1501. if(!pet_changes){
  1502. pet_orig_packet = new uchar[size];
  1503. pet_changes = new uchar[size];
  1504. // copy the packet into the pet_orig_packet so we can xor against it in the future
  1505. memcpy(pet_orig_packet, (uchar*)data->c_str(), size);
  1506. // pack the packet, result ends up in tmp
  1507. size = Pack(tmp, (uchar*)data->c_str(), size, size, version);
  1508. }
  1509. else{
  1510. // copy the packet into pet_changes
  1511. memcpy(pet_changes, (uchar*)data->c_str(), size);
  1512. // XOR's the packet to the original, stores the new packet in the orig packet (will xor against that for the next update)
  1513. // puts the xor packet into pet_changes.
  1514. Encode(pet_changes, pet_orig_packet, size);
  1515. // Pack the pet_changes packet, will put the packed size at the start, result ends up in tmp
  1516. size = Pack(tmp, pet_changes, size, size, version);
  1517. }
  1518. // Create the packet that we will send
  1519. EQ2Packet* ret_packet = new EQ2Packet(OP_CharacterPet, tmp, size+4);
  1520. // Clean up
  1521. safe_delete_array(tmp);
  1522. safe_delete(packet);
  1523. // Return the packet that will be sent to the client
  1524. return ret_packet;
  1525. }
  1526. return 0;
  1527. }
  1528. bool Player::DamageEquippedItems(int8 amount, Client* client) {
  1529. bool ret = false;
  1530. int8 item_type;
  1531. Item* item = 0;
  1532. for(int8 i=0;i<NUM_SLOTS;i++){
  1533. item = equipment_list.items[i];
  1534. if(item) {
  1535. item_type = item->generic_info.item_type;
  1536. if (item->details.item_id > 0 && item_type != ITEM_TYPE_FOOD && item_type != ITEM_TYPE_BAUBLE && item_type != ITEM_TYPE_THROWN){
  1537. ret = true;
  1538. if((item->generic_info.condition - amount) > 0)
  1539. item->generic_info.condition -= amount;
  1540. else
  1541. item->generic_info.condition = 0;
  1542. item->save_needed = true;
  1543. if (client)
  1544. client->QueuePacket(item->serialize(client->GetVersion(), false, this));
  1545. }
  1546. }
  1547. }
  1548. return ret;
  1549. }
  1550. int8 Player::ConvertSlotToClient(int8 slot, int16 version) {
  1551. if (version <= 283) {
  1552. if (slot == EQ2_FOOD_SLOT)
  1553. slot = EQ2_ORIG_FOOD_SLOT;
  1554. else if (slot == EQ2_DRINK_SLOT)
  1555. slot = EQ2_ORIG_DRINK_SLOT;
  1556. else if (slot > EQ2_EARS_SLOT_1 && slot <= EQ2_WAIST_SLOT)
  1557. slot -= 1;
  1558. }
  1559. else if (version <= 546) {
  1560. if (slot == EQ2_FOOD_SLOT)
  1561. slot = EQ2_DOF_FOOD_SLOT;
  1562. else if (slot == EQ2_DRINK_SLOT)
  1563. slot = EQ2_DOF_DRINK_SLOT;
  1564. else if (slot > EQ2_EARS_SLOT_1 && slot <= EQ2_WAIST_SLOT)
  1565. slot -= 1;
  1566. }
  1567. return slot;
  1568. }
  1569. int8 Player::ConvertSlotFromClient(int8 slot, int16 version) {
  1570. if (version <= 283) {
  1571. if (slot == EQ2_ORIG_FOOD_SLOT)
  1572. slot = EQ2_FOOD_SLOT;
  1573. else if (slot == EQ2_ORIG_DRINK_SLOT)
  1574. slot = EQ2_DRINK_SLOT;
  1575. else if (slot > EQ2_EARS_SLOT_1 && slot <= EQ2_WAIST_SLOT)
  1576. slot += 1;
  1577. }
  1578. else if (version <= 546) {
  1579. if (slot == EQ2_DOF_FOOD_SLOT)
  1580. slot = EQ2_FOOD_SLOT;
  1581. else if (slot == EQ2_DOF_DRINK_SLOT)
  1582. slot = EQ2_DRINK_SLOT;
  1583. else if (slot > EQ2_EARS_SLOT_1 && slot <= EQ2_WAIST_SLOT)
  1584. slot += 1;
  1585. }
  1586. return slot;
  1587. }
  1588. vector<EQ2Packet*> Player::UnequipItem(int16 index, sint32 bag_id, int8 slot, int16 version) {
  1589. vector<EQ2Packet*> packets;
  1590. Item* item = equipment_list.items[index];
  1591. if (item && bag_id == -999) {
  1592. int8 old_slot = item->details.slot_id;
  1593. if (item_list.AssignItemToFreeSlot(item)) {
  1594. database.DeleteItem(GetCharacterID(), item, "EQUIPPED");
  1595. if (item->GetItemScript() && lua_interface)
  1596. lua_interface->RunItemScript(item->GetItemScript(), "unequipped", item, this);
  1597. const char* zone_script = world.GetZoneScript(GetZone()->GetZoneID());
  1598. if (zone_script && lua_interface)
  1599. lua_interface->RunZoneScript(zone_script, "item_unequipped", GetZone(), this, item->details.item_id, item->name.c_str(), 0, item->details.unique_id);
  1600. item->save_needed = true;
  1601. EQ2Packet* outapp = item_list.serialize(this, version);
  1602. if (outapp) {
  1603. packets.push_back(outapp);
  1604. packets.push_back(item->serialize(version, false));
  1605. EQ2Packet* bag_packet = SendBagUpdate(item->details.inv_slot_id, version);
  1606. if (bag_packet)
  1607. packets.push_back(bag_packet);
  1608. }
  1609. equipment_list.RemoveItem(index);
  1610. packets.push_back(equipment_list.serialize(version, this));
  1611. SetCharSheetChanged(true);
  1612. SetEquipment(0, old_slot);
  1613. }
  1614. else {
  1615. PacketStruct* packet = configReader.getStruct("WS_DisplayText", version);
  1616. if (packet) {
  1617. packet->setDataByName("color", CHANNEL_COLOR_YELLOW);
  1618. packet->setMediumStringByName("text", "Unable to unequip item: no free inventory locations.");
  1619. packet->setDataByName("unknown02", 0x00ff);
  1620. packets.push_back(packet->serialize());
  1621. safe_delete(packet);
  1622. }
  1623. }
  1624. }
  1625. else if (item) {
  1626. Item* to_item = 0;
  1627. if (item_list.items.count(bag_id) > 0 && item_list.items[bag_id].count(slot) > 0)
  1628. to_item = item_list.items[bag_id][slot];
  1629. if (to_item && GetEquipmentList()->CanItemBeEquippedInSlot(to_item, ConvertSlotFromClient(item->details.slot_id, version))) {
  1630. equipment_list.RemoveItem(index);
  1631. database.DeleteItem(GetCharacterID(), item, "EQUIPPED");
  1632. database.DeleteItem(GetCharacterID(), to_item, "NOT-EQUIPPED");
  1633. if (item->GetItemScript() && lua_interface)
  1634. lua_interface->RunItemScript(item->GetItemScript(), "unequipped", item, this);
  1635. if (to_item->GetItemScript() && lua_interface)
  1636. lua_interface->RunItemScript(item->GetItemScript(), "equipped", to_item, this);
  1637. item_list.RemoveItem(to_item);
  1638. slot = item->details.slot_id;
  1639. equipment_list.SetItem(slot, to_item);
  1640. to_item->save_needed = true;
  1641. packets.push_back(to_item->serialize(version, false));
  1642. SetEquipment(to_item);
  1643. item->details.inv_slot_id = bag_id;
  1644. item->details.slot_id = slot;
  1645. item_list.AddItem(item);
  1646. item->save_needed = true;
  1647. packets.push_back(item->serialize(version, false));
  1648. packets.push_back(equipment_list.serialize(version));
  1649. packets.push_back(item_list.serialize(this, version));
  1650. }
  1651. else if (to_item && to_item->IsBag() && to_item->details.num_slots > 0) {
  1652. bool free_slot = false;
  1653. for (int8 i = 0; i < to_item->details.num_slots; i++) {
  1654. if (item_list.items[to_item->details.bag_id].count(i) == 0) {
  1655. SetEquipment(0, item->details.slot_id);
  1656. database.DeleteItem(GetCharacterID(), item, "EQUIPPED");
  1657. if (item->GetItemScript() && lua_interface)
  1658. lua_interface->RunItemScript(item->GetItemScript(), "unequipped", item, this);
  1659. equipment_list.RemoveItem(index);
  1660. item->details.inv_slot_id = to_item->details.bag_id;
  1661. item->details.slot_id = i;
  1662. item_list.AddItem(item);
  1663. item->save_needed = true;
  1664. packets.push_back(equipment_list.serialize(version));
  1665. packets.push_back(item->serialize(version, false));
  1666. packets.push_back(to_item->serialize(version, false, this));
  1667. packets.push_back(item_list.serialize(this, version));
  1668. free_slot = true;
  1669. break;
  1670. }
  1671. }
  1672. if (!free_slot) {
  1673. PacketStruct* packet = configReader.getStruct("WS_DisplayText", version);
  1674. if (packet) {
  1675. packet->setDataByName("color", CHANNEL_COLOR_YELLOW);
  1676. packet->setMediumStringByName("text", "Unable to unequip item: no free space in the bag.");
  1677. packet->setDataByName("unknown02", 0x00ff);
  1678. packets.push_back(packet->serialize());
  1679. safe_delete(packet);
  1680. }
  1681. }
  1682. }
  1683. else if (to_item) {
  1684. PacketStruct* packet = configReader.getStruct("WS_DisplayText", version);
  1685. if (packet) {
  1686. packet->setDataByName("color", CHANNEL_COLOR_YELLOW);
  1687. packet->setMediumStringByName("text", "Unable to swap items: that item cannot be equipped there.");
  1688. packet->setDataByName("unknown02", 0x00ff);
  1689. packets.push_back(packet->serialize());
  1690. safe_delete(packet);
  1691. }
  1692. }
  1693. else {
  1694. if ((bag_id == 0 && slot < NUM_INV_SLOTS) || (bag_id == -3 && slot < NUM_BANK_SLOTS) || (bag_id == -4 && slot < NUM_SHARED_BANK_SLOTS)) {
  1695. if (bag_id == -4 && item->CheckFlag(NO_TRADE)) {
  1696. PacketStruct* packet = configReader.getStruct("WS_DisplayText", version);
  1697. if (packet) {
  1698. packet->setDataByName("color", CHANNEL_COLOR_YELLOW);
  1699. packet->setMediumStringByName("text", "Unable to unequip item: that item cannot be traded.");
  1700. packet->setDataByName("unknown02", 0x00ff);
  1701. packets.push_back(packet->serialize());
  1702. safe_delete(packet);
  1703. }
  1704. }
  1705. else {
  1706. SetEquipment(0, item->details.slot_id);
  1707. database.DeleteItem(GetCharacterID(), item, "EQUIPPED");
  1708. if (item->GetItemScript() && lua_interface)
  1709. lua_interface->RunItemScript(item->GetItemScript(), "unequipped", item, this);
  1710. equipment_list.RemoveItem(index);
  1711. item->details.inv_slot_id = bag_id;
  1712. item->details.slot_id = slot;
  1713. item_list.AddItem(item);
  1714. item->save_needed = true;
  1715. packets.push_back(equipment_list.serialize(version));
  1716. packets.push_back(item->serialize(version, false));
  1717. packets.push_back(item_list.serialize(this, version));
  1718. }
  1719. }
  1720. else {
  1721. Item* bag = item_list.GetItemFromUniqueID(bag_id, true);
  1722. if (bag && bag->IsBag() && slot < bag->details.num_slots) {
  1723. SetEquipment(0, item->details.slot_id);
  1724. database.DeleteItem(GetCharacterID(), item, "EQUIPPED");
  1725. if (item->GetItemScript() && lua_interface)
  1726. lua_interface->RunItemScript(item->GetItemScript(), "unequipped", item, this);
  1727. equipment_list.RemoveItem(index);
  1728. item->details.inv_slot_id = bag_id;
  1729. item->details.slot_id = slot;
  1730. item_list.AddItem(item);
  1731. item->save_needed = true;
  1732. packets.push_back(equipment_list.serialize(version));
  1733. packets.push_back(item->serialize(version, false));
  1734. packets.push_back(item_list.serialize(this, version));
  1735. }
  1736. }
  1737. }
  1738. Item* bag = item_list.GetItemFromUniqueID(bag_id, true);
  1739. if (bag && bag->IsBag())
  1740. packets.push_back(bag->serialize(version, false, this));
  1741. }
  1742. return packets;
  1743. }
  1744. map<int32, Item*>* Player::GetItemList(){
  1745. return item_list.GetAllItems();
  1746. }
  1747. vector<Item*>* Player::GetEquippedItemList(){
  1748. return equipment_list.GetAllEquippedItems();
  1749. }
  1750. EQ2Packet* Player::SendBagUpdate(int32 bag_unique_id, int16 version){
  1751. Item* bag = 0;
  1752. if(bag_unique_id > 0)
  1753. bag = item_list.GetItemFromUniqueID(bag_unique_id, true);
  1754. if(bag && bag->IsBag())
  1755. return bag->serialize(version, false, this);
  1756. return 0;
  1757. }
  1758. void Player::SetEquippedItemAppearances(){
  1759. vector<Item*>* items = GetEquipmentList()->GetAllEquippedItems();
  1760. if(items){
  1761. for(int32 i=0;i<items->size();i++)
  1762. SetEquipment(items->at(i));
  1763. }
  1764. safe_delete(items);
  1765. }
  1766. EQ2Packet* Player::SwapEquippedItems(int8 slot1, int8 slot2, int16 version){
  1767. Item* item_from = equipment_list.items[slot1];
  1768. Item* item_to = equipment_list.items[slot2];
  1769. if(item_from && equipment_list.CanItemBeEquippedInSlot(item_from, slot2)){
  1770. if(item_to){
  1771. if(!equipment_list.CanItemBeEquippedInSlot(item_to, slot1))
  1772. return 0;
  1773. item_to->details.slot_id = slot1;
  1774. item_to->save_needed = true;
  1775. }
  1776. item_from->save_needed = true;
  1777. item_from->details.slot_id = slot2;
  1778. return equipment_list.serialize(version);
  1779. }
  1780. return 0;
  1781. }
  1782. bool Player::CanEquipItem(Item* item) {
  1783. if (item) {
  1784. Client* client = GetZone()->GetClientBySpawn(this);
  1785. if (client) {
  1786. if (item->IsArmor() || item->IsWeapon() || item->IsFood() || item->IsRanged() || item->IsShield() || item->IsBauble() || item->IsAmmo() || item->IsThrown()) {
  1787. if ((item->generic_info.skill_req1 == 0 || item->generic_info.skill_req1 == 0xFFFFFFFF || skill_list.HasSkill(item->generic_info.skill_req1)) && (item->generic_info.skill_req2 == 0 || item->generic_info.skill_req2 == 0xFFFFFFFF || skill_list.HasSkill(item->generic_info.skill_req2))) {
  1788. int16 override_level = item->GetOverrideLevel(GetAdventureClass(), GetTradeskillClass());
  1789. if (override_level > 0 && override_level <= GetLevel())
  1790. return true;
  1791. if (item->CheckClass(GetAdventureClass(), GetTradeskillClass()))
  1792. if (item->CheckLevel(GetAdventureClass(), GetTradeskillClass(), GetLevel()))
  1793. return true;
  1794. else
  1795. client->Message(CHANNEL_COLOR_RED, "You must be at least level %u to equip %s.", item->generic_info.adventure_default_level, item->CreateItemLink(client->GetVersion()).c_str());
  1796. else
  1797. client->Message(CHANNEL_COLOR_RED, "Your class may not equip %s.", item->CreateItemLink(client->GetVersion()).c_str());
  1798. }
  1799. else
  1800. client->SimpleMessage(0, "You lack the skill required to equip this item.");
  1801. }
  1802. else
  1803. client->Message(0, "Item %s isn't equipable.", item->name.c_str());
  1804. }
  1805. }
  1806. return false;
  1807. }
  1808. vector<EQ2Packet*> Player::EquipItem(int16 index, int16 version, int8 slot_id) {
  1809. vector<EQ2Packet*> packets;
  1810. if (item_list.indexed_items.count(index) == 0)
  1811. return packets;
  1812. Item* item = item_list.indexed_items[index];
  1813. slot_id = ConvertSlotFromClient(slot_id, version);
  1814. if (item) {
  1815. if (slot_id != 255 && !item->HasSlot(slot_id))
  1816. return packets;
  1817. int8 slot = equipment_list.GetFreeSlot(item, slot_id);
  1818. bool canEquip = CanEquipItem(item);
  1819. if (canEquip && item->CheckFlag(ATTUNEABLE)) {
  1820. PacketStruct* packet = configReader.getStruct("WS_ChoiceWindow", version);
  1821. char text[255];
  1822. sprintf(text, "%s must be attuned before it can be equipped. Would you like to attune it now?", item->name.c_str());
  1823. char accept_command[25];
  1824. sprintf(accept_command, "attune_inv %i 1 0 -1", index);
  1825. packet->setDataByName("text", text);
  1826. packet->setDataByName("accept_text", "Attune");
  1827. packet->setDataByName("accept_command", accept_command);
  1828. packet->setDataByName("cancel_text", "Cancel");
  1829. // No clue if we even need the following 2 unknowns, just added them so the packet matches what live sends
  1830. packet->setDataByName("max_length", 50);
  1831. packet->setDataByName("unknown4", 1);
  1832. packets.push_back(packet->serialize());
  1833. safe_delete(packet);
  1834. return packets;
  1835. }
  1836. if (canEquip && slot == 255)
  1837. {
  1838. if (slot_id == 255)
  1839. slot = item->slot_data.at(0);
  1840. else
  1841. slot = slot_id;
  1842. packets = UnequipItem(slot, item->details.inv_slot_id, item->details.slot_id, version);
  1843. // If item is a 2handed weapon and something is in the secondary, unequip the secondary
  1844. if (item->IsWeapon() && item->weapon_info->wield_type == ITEM_WIELD_TYPE_TWO_HAND && equipment_list.GetItem(EQ2_SECONDARY_SLOT) != 0) {
  1845. vector<EQ2Packet*> tmp_packets = UnequipItem(EQ2_SECONDARY_SLOT, -999, 0, version);
  1846. //packets.reserve(packets.size() + tmp_packets.size());
  1847. packets.insert(packets.end(), tmp_packets.begin(), tmp_packets.end());
  1848. }
  1849. }
  1850. else if (canEquip && slot < 255) {
  1851. // If item is a 2handed weapon and something is in the secondary, unequip the secondary
  1852. if (item->IsWeapon() && item->weapon_info->wield_type == ITEM_WIELD_TYPE_TWO_HAND && equipment_list.GetItem(EQ2_SECONDARY_SLOT) != 0) {
  1853. vector<EQ2Packet*> tmp_packets = UnequipItem(EQ2_SECONDARY_SLOT, -999, 0, version);
  1854. //packets.reserve(packets.size() + tmp_packets.size());
  1855. packets.insert(packets.end(), tmp_packets.begin(), tmp_packets.end());
  1856. }
  1857. database.DeleteItem(GetCharacterID(), item, "NOT-EQUIPPED");
  1858. if (item->GetItemScript() && lua_interface)
  1859. lua_interface->RunItemScript(item->GetItemScript(), "equipped", item, this);
  1860. item_list.RemoveItem(item);
  1861. equipment_list.SetItem(ConvertSlotToClient(slot, version), item);
  1862. item->save_needed = true;
  1863. packets.push_back(item->serialize(version, false));
  1864. SetEquipment(item);
  1865. const char* zone_script = world.GetZoneScript(GetZone()->GetZoneID());
  1866. if (zone_script && lua_interface)
  1867. lua_interface->RunZoneScript(zone_script, "item_equipped", GetZone(), this, item->details.item_id, item->name.c_str(), 0, item->details.unique_id);
  1868. int32 bag_id = item->details.inv_slot_id;
  1869. if (item->generic_info.condition == 0) {
  1870. Client* client = GetZone()->GetClientBySpawn(this);
  1871. if (client) {
  1872. LogWrite(MISC__TODO, 1, "TODO", "Send popup text in red 'Some of your equipment is broken!'\n\t(%s, function: %s, line #: %i)", __FILE__, __FUNCTION__, __LINE__);
  1873. client->Message(CHANNEL_COLOR_RED, "Your %s is worn out and will not be effective until repaired.", item->CreateItemLink(client->GetVersion(), true).c_str());
  1874. }
  1875. }
  1876. packets.push_back(equipment_list.serialize(version, this));
  1877. EQ2Packet* outapp = item_list.serialize(this, version);
  1878. if (outapp) {
  1879. packets.push_back(outapp);
  1880. EQ2Packet* bag_packet = SendBagUpdate(bag_id, version);
  1881. if (bag_packet)
  1882. packets.push_back(bag_packet);
  1883. }
  1884. SetCharSheetChanged(true);
  1885. }
  1886. }
  1887. return packets;
  1888. }
  1889. bool Player::AddItem(Item* item) {
  1890. if (item && item->details.item_id > 0) {
  1891. if (item_list.AssignItemToFreeSlot(item)) {
  1892. item->save_needed = true;
  1893. return true;
  1894. }
  1895. else if (item_list.AddOverflowItem(item))
  1896. return true;
  1897. }
  1898. return false;
  1899. }
  1900. bool Player::AddItemToBank(Item* item) {
  1901. if (item && item->details.item_id > 0) {
  1902. sint32 bag = -3;
  1903. sint16 slot = -1;
  1904. if (item_list.GetFirstFreeBankSlot(&bag, &slot)) {
  1905. item->details.inv_slot_id = bag;
  1906. item->details.slot_id = slot;
  1907. item->save_needed = true;
  1908. item_list.AddItem(item);
  1909. return true;
  1910. }
  1911. else if (item_list.AddOverflowItem(item))
  1912. return true;
  1913. }
  1914. return false;
  1915. }
  1916. EQ2Packet* Player::SendInventoryUpdate(int16 version) {
  1917. return item_list.serialize(this, version);
  1918. }
  1919. EQ2Packet* Player::MoveInventoryItem(sint32 to_bag_id, int16 from_index, int8 new_slot, int8 charges, int16 version) {
  1920. Item* item = item_list.GetItemFromIndex(from_index);
  1921. int8 result = item_list.MoveItem(to_bag_id, from_index, new_slot, charges);
  1922. if (result == 1) {
  1923. if (item) {
  1924. if (!item->needs_deletion)
  1925. item->save_needed = true;
  1926. else if (item->needs_deletion) {
  1927. database.DeleteItem(GetCharacterID(), item, 0);
  1928. safe_delete(item);
  1929. }
  1930. }
  1931. return item_list.serialize(this, version);
  1932. }
  1933. else {
  1934. PacketStruct* packet = configReader.getStruct("WS_DisplayText", version);
  1935. if (packet) {
  1936. packet->setDataByName("color", CHANNEL_COLOR_YELLOW);
  1937. packet->setMediumStringByName("text", "Could not move item to that location.");
  1938. packet->setDataByName("unknown02", 0x00ff);
  1939. EQ2Packet* outapp = packet->serialize();
  1940. safe_delete(packet);
  1941. return outapp;
  1942. }
  1943. }
  1944. return 0;
  1945. }
  1946. int32 Player::GetCoinsCopper(){
  1947. return GetInfoStruct()->get_coin_copper();
  1948. }
  1949. int32 Player::GetCoinsSilver(){
  1950. return GetInfoStruct()->get_coin_silver();
  1951. }
  1952. int32 Player::GetCoinsGold(){
  1953. return GetInfoStruct()->get_coin_gold();
  1954. }
  1955. int32 Player::GetCoinsPlat(){
  1956. return GetInfoStruct()->get_coin_plat();
  1957. }
  1958. int32 Player::GetBankCoinsCopper(){
  1959. return GetInfoStruct()->get_bank_coin_copper();
  1960. }
  1961. int32 Player::GetBankCoinsSilver(){
  1962. return GetInfoStruct()->get_bank_coin_silver();
  1963. }
  1964. int32 Player::GetBankCoinsGold(){
  1965. return GetInfoStruct()->get_bank_coin_gold();
  1966. }
  1967. int32 Player::GetBankCoinsPlat(){
  1968. return GetInfoStruct()->get_bank_coin_plat();
  1969. }
  1970. vector<QuickBarItem*>* Player::GetQuickbar(){
  1971. return &quickbar_items;
  1972. }
  1973. bool Player::UpdateQuickbarNeeded(){
  1974. return quickbar_updated;
  1975. }
  1976. void Player::ResetQuickbarNeeded(){
  1977. quickbar_updated = false;
  1978. }
  1979. void Player::AddQuickbarItem(int32 bar, int32 slot, int32 type, int16 icon, int16 icon_type, int32 id, int8 tier, int32 unique_id, const char* text, bool update){
  1980. RemoveQuickbarItem(bar, slot, false);
  1981. QuickBarItem* ability = new QuickBarItem;
  1982. ability->deleted = false;
  1983. ability->hotbar = bar;
  1984. ability->slot = slot;
  1985. ability->type = type;
  1986. ability->icon = icon;
  1987. ability->tier = tier;
  1988. ability->icon_type = icon_type;
  1989. ability->id = id;
  1990. if(unique_id == 0)
  1991. unique_id = database.NextUniqueHotbarID();
  1992. ability->unique_id = unique_id;
  1993. if(type == QUICKBAR_TEXT_CMD && text){
  1994. ability->text.data = string(text);
  1995. ability->text.size = ability->text.data.length();
  1996. }
  1997. else
  1998. ability->text.size = 0;
  1999. quickbar_items.push_back(ability);
  2000. if(update)
  2001. quickbar_updated = true;
  2002. }
  2003. void Player::RemoveQuickbarItem(int32 bar, int32 slot, bool update){
  2004. vector<QuickBarItem*>::iterator itr;
  2005. QuickBarItem* qbi = 0;
  2006. for(itr=quickbar_items.begin();itr!=quickbar_items.end();itr++){
  2007. qbi = *itr;
  2008. if(qbi && qbi->deleted == false && qbi->hotbar == bar && qbi->slot == slot){
  2009. qbi->deleted = true;
  2010. break;
  2011. }
  2012. }
  2013. if(update)
  2014. quickbar_updated = true;
  2015. }
  2016. void Player::ClearQuickbarItems(){
  2017. quickbar_items.clear();
  2018. }
  2019. EQ2Packet* Player::GetQuickbarPacket(int16 version){
  2020. PacketStruct* packet = configReader.getStruct("WS_QuickBarInit", version);
  2021. if(packet){
  2022. vector<QuickBarItem*>::iterator itr;
  2023. packet->setArrayLengthByName("num_abilities", quickbar_items.size());
  2024. int16 i=0;
  2025. for(itr=quickbar_items.begin();itr != quickbar_items.end(); itr++){
  2026. QuickBarItem* ability = *itr;
  2027. if(!ability || ability->deleted)
  2028. continue;
  2029. packet->setArrayDataByName("hotbar", ability->hotbar, i);
  2030. packet->setArrayDataByName("slot", ability->slot, i);
  2031. packet->setArrayDataByName("type", ability->type, i);
  2032. packet->setArrayDataByName("icon", ability->icon, i);
  2033. packet->setArrayDataByName("icon_type", ability->icon_type, i);
  2034. packet->setArrayDataByName("id", ability->id, i);
  2035. packet->setArrayDataByName("unique_id", ability->tier, i);
  2036. packet->setArrayDataByName("text", &ability->text, i);
  2037. i++;
  2038. }
  2039. EQ2Packet* app = packet->serialize();
  2040. safe_delete(packet);
  2041. return app;
  2042. }
  2043. return 0;
  2044. }
  2045. void Player::AddSpellBookEntry(int32 spell_id, int8 tier, sint32 slot, int32 type, int32 timer, bool save_needed){
  2046. SpellBookEntry* spell = new SpellBookEntry;
  2047. spell->status = 169;
  2048. spell->slot = slot;
  2049. spell->spell_id = spell_id;
  2050. spell->type = type;
  2051. spell->tier = tier;
  2052. spell->timer = timer;
  2053. spell->save_needed = save_needed;
  2054. spell->recast = 0;
  2055. spell->recast_available = 0;
  2056. spell->player = this;
  2057. spell->visible = true;
  2058. MSpellsBook.lock();
  2059. spells.push_back(spell);
  2060. MSpellsBook.unlock();
  2061. if (type == SPELL_BOOK_TYPE_NOT_SHOWN)
  2062. AddPassiveSpell(spell_id, tier);
  2063. }
  2064. void Player::RemoveSpellBookEntry(int32 spell_id, bool remove_passives_from_list){
  2065. MSpellsBook.lock();
  2066. vector<SpellBookEntry*>::iterator itr;
  2067. SpellBookEntry* spell = 0;
  2068. for(itr = spells.begin(); itr != spells.end(); itr++){
  2069. spell = *itr;
  2070. if(spell->spell_id == spell_id){
  2071. if (spell->type == SPELL_BOOK_TYPE_NOT_SHOWN)
  2072. RemovePassive(spell->spell_id, spell->tier, remove_passives_from_list);
  2073. spells.erase(itr);
  2074. break;
  2075. }
  2076. }
  2077. MSpellsBook.unlock();
  2078. }
  2079. void Player::ResortSpellBook(int32 sort_by, int32 order, int32 pattern, int32 maxlvl_only, int32 book_type)
  2080. {
  2081. //sort_by : 0 - alpha, 1 - level, 2 - category
  2082. //order : 0 - ascending, 1 - descending
  2083. //pattern : 0 - zigzag, 1 - down, 2 - across
  2084. MSpellsBook.lock();
  2085. if (!maxlvl_only)
  2086. {
  2087. switch (sort_by)
  2088. {
  2089. case 0:
  2090. if (!order)
  2091. stable_sort(spells.begin(), spells.end(), SortSpellEntryByName);
  2092. else
  2093. stable_sort(spells.begin(), spells.end(), SortSpellEntryByNameReverse);
  2094. break;
  2095. case 1:
  2096. if (!order)
  2097. stable_sort(spells.begin(), spells.end(), SortSpellEntryByLevel);
  2098. else
  2099. stable_sort(spells.begin(), spells.end(), SortSpellEntryByLevelReverse);
  2100. break;
  2101. case 2:
  2102. if (!order)
  2103. stable_sort(spells.begin(), spells.end(), SortSpellEntryByCategory);
  2104. else
  2105. stable_sort(spells.begin(), spells.end(), SortSpellEntryByCategoryReverse);
  2106. break;
  2107. }
  2108. }
  2109. vector<SpellBookEntry*>::iterator itr;
  2110. SpellBookEntry* spell = 0;
  2111. int i = 0;
  2112. map<string, SpellBookEntry*> tmpSpells;
  2113. vector<SpellBookEntry*> resultSpells;
  2114. for (itr = spells.begin(); itr != spells.end(); itr++) {
  2115. spell = *itr;
  2116. if (spell->type != book_type || spell->slot == -1)
  2117. continue;
  2118. if (maxlvl_only)
  2119. {
  2120. Spell* actual_spell = 0;
  2121. actual_spell = master_spell_list.GetSpell(spell->spell_id, spell->tier);
  2122. std::regex re("^(.*?)(\\s(I{1,}[VX]{0,}|V{1,}[IVX]{0,})|X{1,}[IVX]{0,})$");
  2123. std::string output = std::regex_replace(string(actual_spell->GetName()), re, "$1", std::regex_constants::format_no_copy);
  2124. if ( output.size() < 1 )
  2125. output = string(actual_spell->GetName());
  2126. map<string, SpellBookEntry*>::iterator tmpItr = tmpSpells.find(output);
  2127. if (tmpItr != tmpSpells.end())
  2128. {
  2129. Spell* tmpSpell = master_spell_list.GetSpell(tmpItr->second->spell_id, tmpItr->second->tier);
  2130. if (actual_spell->GetLevelRequired(this) > tmpSpell->GetLevelRequired(this))
  2131. {
  2132. tmpItr->second->visible = false;
  2133. tmpItr->second->slot = 0xFFFF;
  2134. std::vector<SpellBookEntry*>::iterator it;
  2135. it = find(resultSpells.begin(), resultSpells.end(), (SpellBookEntry*)tmpItr->second);
  2136. if (it != resultSpells.end())
  2137. resultSpells.erase(it);
  2138. tmpSpells.erase(tmpItr);
  2139. }
  2140. else
  2141. continue; // leave as-is we have the newer spell
  2142. }
  2143. spell->visible = true;
  2144. tmpSpells.insert(make_pair(output, spell));
  2145. resultSpells.push_back(spell);
  2146. }
  2147. spell->slot = i;
  2148. i++;
  2149. } // end for loop for setting slots
  2150. if (maxlvl_only)
  2151. {
  2152. switch (sort_by)
  2153. {
  2154. case 0:
  2155. if (!order)
  2156. stable_sort(resultSpells.begin(), resultSpells.end(), SortSpellEntryByName);
  2157. else
  2158. stable_sort(resultSpells.begin(), resultSpells.end(), SortSpellEntryByNameReverse);
  2159. break;
  2160. case 1:
  2161. if (!order)
  2162. stable_sort(resultSpells.begin(), resultSpells.end(), SortSpellEntryByLevel);
  2163. else
  2164. stable_sort(resultSpells.begin(), resultSpells.end(), SortSpellEntryByLevelReverse);
  2165. break;
  2166. case 2:
  2167. if (!order)
  2168. stable_sort(resultSpells.begin(), resultSpells.end(), SortSpellEntryByCategory);
  2169. else
  2170. stable_sort(resultSpells.begin(), resultSpells.end(), SortSpellEntryByCategoryReverse);
  2171. break;
  2172. }
  2173. i = 0;
  2174. vector<SpellBookEntry*>::iterator tmpItr;
  2175. for (tmpItr = resultSpells.begin(); tmpItr != resultSpells.end(); tmpItr++) {
  2176. ((SpellBookEntry*)*tmpItr)->slot = i;
  2177. i++;
  2178. }
  2179. }
  2180. MSpellsBook.unlock();
  2181. }
  2182. bool Player::SortSpellEntryByName(SpellBookEntry* s1, SpellBookEntry* s2)
  2183. {
  2184. Spell* spell1 = master_spell_list.GetSpell(s1->spell_id, s1->tier);
  2185. Spell* spell2 = master_spell_list.GetSpell(s2->spell_id, s2->tier);
  2186. if (!spell1 || !spell2)
  2187. return false;
  2188. return (string(spell1->GetName()) < string(spell2->GetName()));
  2189. }
  2190. bool Player::SortSpellEntryByCategory(SpellBookEntry* s1, SpellBookEntry* s2)
  2191. {
  2192. Spell* spell1 = master_spell_list.GetSpell(s1->spell_id, s1->tier);
  2193. Spell* spell2 = master_spell_list.GetSpell(s2->spell_id, s2->tier);
  2194. if (!spell1 || !spell2)
  2195. return false;
  2196. return (spell1->GetSpellIconBackdrop() < spell2->GetSpellIconBackdrop());
  2197. }
  2198. bool Player::SortSpellEntryByLevel(SpellBookEntry* s1, SpellBookEntry* s2)
  2199. {
  2200. Spell* spell1 = master_spell_list.GetSpell(s1->spell_id, s1->tier);
  2201. Spell* spell2 = master_spell_list.GetSpell(s2->spell_id, s2->tier);
  2202. if (!spell1 || !spell2)
  2203. return false;
  2204. int16 lvl1 = spell1->GetLevelRequired(s1->player);
  2205. int16 lvl2 = spell2->GetLevelRequired(s2->player);
  2206. if (lvl1 == 0xFFFF)
  2207. lvl1 = 0;
  2208. if (lvl2 == 0xFFFF)
  2209. lvl2 = 0;
  2210. return (lvl1 < lvl2);
  2211. }
  2212. bool Player::SortSpellEntryByNameReverse(SpellBookEntry* s1, SpellBookEntry* s2)
  2213. {
  2214. Spell* spell1 = master_spell_list.GetSpell(s1->spell_id, s1->tier);
  2215. Spell* spell2 = master_spell_list.GetSpell(s2->spell_id, s2->tier);
  2216. if (!spell1 || !spell2)
  2217. return false;
  2218. return (string(spell2->GetName()) < string(spell1->GetName()));
  2219. }
  2220. bool Player::SortSpellEntryByCategoryReverse(SpellBookEntry* s1, SpellBookEntry* s2)
  2221. {
  2222. Spell* spell1 = master_spell_list.GetSpell(s1->spell_id, s1->tier);
  2223. Spell* spell2 = master_spell_list.GetSpell(s2->spell_id, s2->tier);
  2224. if (!spell1 || !spell2)
  2225. return false;
  2226. return (spell2->GetSpellIconBackdrop() < spell1->GetSpellIconBackdrop());
  2227. }
  2228. bool Player::SortSpellEntryByLevelReverse(SpellBookEntry* s1, SpellBookEntry* s2)
  2229. {
  2230. Spell* spell1 = master_spell_list.GetSpell(s1->spell_id, s1->tier);
  2231. Spell* spell2 = master_spell_list.GetSpell(s2->spell_id, s2->tier);
  2232. if (!spell1 || !spell2)
  2233. return false;
  2234. int16 lvl1 = spell1->GetLevelRequired(s1->player);
  2235. int16 lvl2 = spell2->GetLevelRequired(s2->player);
  2236. if (lvl1 == 0xFFFF)
  2237. lvl1 = 0;
  2238. if (lvl2 == 0xFFFF)
  2239. lvl2 = 0;
  2240. return (lvl2 < lvl1);
  2241. }
  2242. int8 Player::GetSpellSlot(int32 spell_id){
  2243. MSpellsBook.lock();
  2244. vector<SpellBookEntry*>::iterator itr;
  2245. SpellBookEntry* spell = 0;
  2246. for(itr = spells.begin(); itr != spells.end(); itr++){
  2247. spell = *itr;
  2248. if(spell->spell_id == spell_id)
  2249. return spell->slot;
  2250. }
  2251. MSpellsBook.unlock();
  2252. return 0;
  2253. }
  2254. void Player::AddSkill(int32 skill_id, int16 current_val, int16 max_val, bool save_needed){
  2255. Skill* master_skill = master_skill_list.GetSkill(skill_id);
  2256. if (master_skill) {
  2257. Skill* skill = new Skill(master_skill);
  2258. skill->current_val = current_val;
  2259. skill->previous_val = current_val;
  2260. skill->max_val = max_val;
  2261. if (save_needed)
  2262. skill->save_needed = true;
  2263. skill_list.AddSkill(skill);
  2264. }
  2265. }
  2266. void Player::RemovePlayerSkill(int32 skill_id, bool save) {
  2267. Skill* skill = skill_list.GetSkill(skill_id);
  2268. if (skill)
  2269. RemoveSkillFromDB(skill, save);
  2270. }
  2271. void Player::RemoveSkillFromDB(Skill* skill, bool save) {
  2272. skill_list.RemoveSkill(skill);
  2273. if (save)
  2274. database.DeleteCharacterSkill(GetCharacterID(), skill);
  2275. }
  2276. int16 Player::GetSpellSlotMappingCount(){
  2277. int16 ret = 0;
  2278. MSpellsBook.lock();
  2279. for(int32 i=0;i<spells.size();i++){
  2280. SpellBookEntry* spell = (SpellBookEntry*)spells[i];
  2281. if(spell->slot >= 0 && spell->spell_id > 0)
  2282. ret++;
  2283. }
  2284. MSpellsBook.unlock();
  2285. return ret;
  2286. }
  2287. int8 Player::GetSpellTier(int32 id){
  2288. int8 ret = 0;
  2289. MSpellsBook.lock();
  2290. for(int32 i=0;i<spells.size();i++){
  2291. SpellBookEntry* spell = (SpellBookEntry*)spells[i];
  2292. if(spell->spell_id == id){
  2293. ret = spell->tier;
  2294. break;
  2295. }
  2296. }
  2297. MSpellsBook.unlock();
  2298. return ret;
  2299. }
  2300. int16 Player::GetSpellPacketCount(){
  2301. int16 ret = 0;
  2302. MSpellsBook.lock();
  2303. for(int32 i=0;i<spells.size();i++){
  2304. SpellBookEntry* spell = (SpellBookEntry*)spells[i];
  2305. if(spell->spell_id > 0)
  2306. ret++;
  2307. }
  2308. MSpellsBook.unlock();
  2309. return ret;
  2310. }
  2311. void Player::LockAllSpells() {
  2312. vector<SpellBookEntry*>::iterator itr;
  2313. MSpellsBook.writelock(__FUNCTION__, __LINE__);
  2314. for (itr = spells.begin(); itr != spells.end(); itr++) {
  2315. if ((*itr)->type != SPELL_BOOK_TYPE_TRADESKILL)
  2316. RemoveSpellStatus((*itr), SPELL_STATUS_LOCK, false);
  2317. }
  2318. MSpellsBook.releasewritelock(__FUNCTION__, __LINE__);
  2319. }
  2320. void Player::UnlockAllSpells(bool modify_recast, Spell* exception) {
  2321. vector<SpellBookEntry*>::iterator itr;
  2322. int32 exception_spell_id = 0;
  2323. if (exception)
  2324. exception_spell_id = exception->GetSpellID();
  2325. MSpellsBook.writelock(__FUNCTION__, __LINE__);
  2326. for (itr = spells.begin(); itr != spells.end(); itr++) {
  2327. if ((*itr)->spell_id != exception_spell_id && (*itr)->type != SPELL_BOOK_TYPE_TRADESKILL)
  2328. AddSpellStatus((*itr), SPELL_STATUS_LOCK, modify_recast);
  2329. }
  2330. MSpellsBook.releasewritelock(__FUNCTION__, __LINE__);
  2331. }
  2332. void Player::LockSpell(Spell* spell, int16 recast) {
  2333. vector<SpellBookEntry*>::iterator itr;
  2334. SpellBookEntry* spell2;
  2335. MSpellsBook.writelock(__FUNCTION__, __LINE__);
  2336. for (itr = spells.begin(); itr != spells.end(); itr++) {
  2337. spell2 = *itr;
  2338. if (spell2->spell_id == spell->GetSpellID() /*|| (spell->GetSpellData()->linked_timer > 0 && spell->GetSpellData()->linked_timer == spell2->timer)*/)
  2339. RemoveSpellStatus(spell2, SPELL_STATUS_LOCK, true, recast);
  2340. }
  2341. MSpellsBook.releasewritelock(__FUNCTION__, __LINE__);
  2342. }
  2343. void Player::UnlockSpell(Spell* spell) {
  2344. if (spell->GetStayLocked())
  2345. return;
  2346. vector<SpellBookEntry*>::iterator itr;
  2347. SpellBookEntry* spell2;
  2348. MSpellsBook.writelock(__FUNCTION__, __LINE__);
  2349. for (itr = spells.begin(); itr != spells.end(); itr++) {
  2350. spell2 = *itr;
  2351. if (spell2->spell_id == spell->GetSpellID() /*|| (spell->GetSpellData()->linked_timer > 0 && spell->GetSpellData()->linked_timer == spell2->timer)*/)
  2352. AddSpellStatus(spell2, SPELL_STATUS_LOCK);
  2353. }
  2354. MSpellsBook.releasewritelock(__FUNCTION__, __LINE__);
  2355. }
  2356. void Player::LockTSSpells() {
  2357. vector<SpellBookEntry*>::iterator itr;
  2358. MSpellsBook.writelock(__FUNCTION__, __LINE__);
  2359. for (itr = spells.begin(); itr != spells.end(); itr++) {
  2360. if ((*itr)->type == SPELL_BOOK_TYPE_TRADESKILL)
  2361. RemoveSpellStatus(*itr, SPELL_STATUS_LOCK);
  2362. }
  2363. MSpellsBook.releasewritelock(__FUNCTION__, __LINE__);
  2364. // Unlock all other types
  2365. UnlockAllSpells();
  2366. }
  2367. void Player::UnlockTSSpells() {
  2368. vector<SpellBookEntry*>::iterator itr;
  2369. MSpellsBook.writelock(__FUNCTION__, __LINE__);
  2370. for (itr = spells.begin(); itr != spells.end(); itr++) {
  2371. if ((*itr)->type == SPELL_BOOK_TYPE_TRADESKILL)
  2372. AddSpellStatus(*itr, SPELL_STATUS_LOCK);
  2373. }
  2374. MSpellsBook.releasewritelock(__FUNCTION__, __LINE__);
  2375. // Lock all other types
  2376. LockAllSpells();
  2377. }
  2378. void Player::QueueSpell(Spell* spell) {
  2379. vector<SpellBookEntry*>::iterator itr;
  2380. SpellBookEntry* spell2;
  2381. MSpellsBook.writelock(__FUNCTION__, __LINE__);
  2382. for (itr = spells.begin(); itr != spells.end(); itr++) {
  2383. spell2 = *itr;
  2384. if (spell2->spell_id == spell->GetSpellID())
  2385. AddSpellStatus(spell2, SPELL_STATUS_QUEUE, false);
  2386. }
  2387. MSpellsBook.releasewritelock(__FUNCTION__, __LINE__);
  2388. }
  2389. void Player::UnQueueSpell(Spell* spell) {
  2390. vector<SpellBookEntry*>::iterator itr;
  2391. SpellBookEntry* spell2;
  2392. MSpellsBook.writelock(__FUNCTION__, __LINE__);
  2393. for (itr = spells.begin(); itr != spells.end(); itr++) {
  2394. spell2 = *itr;
  2395. if (spell2->spell_id == spell->GetSpellID())
  2396. RemoveSpellStatus(spell2, SPELL_STATUS_QUEUE, false);
  2397. }
  2398. MSpellsBook.releasewritelock(__FUNCTION__, __LINE__);
  2399. }
  2400. vector<Spell*> Player::GetSpellBookSpellsByTimer(int32 timerID) {
  2401. vector<Spell*> ret;
  2402. vector<SpellBookEntry*>::iterator itr;
  2403. MSpellsBook.readlock(__FUNCTION__, __LINE__);
  2404. for (itr = spells.begin(); itr != spells.end(); itr++) {
  2405. if ((*itr)->timer == timerID)
  2406. ret.push_back(master_spell_list.GetSpell((*itr)->spell_id, (*itr)->tier));
  2407. }
  2408. MSpellsBook.releasereadlock(__FUNCTION__, __LINE__);
  2409. return ret;
  2410. }
  2411. void Player::ModifySpellStatus(SpellBookEntry* spell, sint16 value, bool modify_recast, int16 recast) {
  2412. if (modify_recast) {
  2413. spell->recast = recast;
  2414. spell->recast_available = Timer::GetCurrentTime2() + (recast * 100);
  2415. }
  2416. if (modify_recast || spell->recast_available <= Timer::GetCurrentTime2() || value == 4) {
  2417. spell->status += value; // use set/remove spell status now
  2418. }
  2419. }
  2420. void Player::AddSpellStatus(SpellBookEntry* spell, sint16 value, bool modify_recast, int16 recast) {
  2421. if (modify_recast) {
  2422. spell->recast = recast;
  2423. spell->recast_available = Timer::GetCurrentTime2() + (recast * 100);
  2424. }
  2425. if (modify_recast || spell->recast_available <= Timer::GetCurrentTime2() || value == 4) {
  2426. spell->status = spell->status | value;
  2427. }
  2428. }
  2429. void Player::RemoveSpellStatus(SpellBookEntry* spell, sint16 value, bool modify_recast, int16 recast) {
  2430. if (modify_recast) {
  2431. spell->recast = recast;
  2432. spell->recast_available = Timer::GetCurrentTime2() + (recast * 100);
  2433. }
  2434. if (modify_recast || spell->recast_available <= Timer::GetCurrentTime2() || value == 4) {
  2435. spell->status = spell->status & ~value;
  2436. }
  2437. }
  2438. void Player::SetSpellStatus(Spell* spell, int8 status){
  2439. MSpellsBook.lock();
  2440. vector<SpellBookEntry*>::iterator itr;
  2441. SpellBookEntry* spell2 = 0;
  2442. for(itr = spells.begin(); itr != spells.end(); itr++){
  2443. spell2 = *itr;
  2444. if(spell2->spell_id == spell->GetSpellData()->id){
  2445. spell2->status = spell2->status | status;
  2446. break;
  2447. }
  2448. }
  2449. MSpellsBook.unlock();
  2450. }
  2451. vector<SpellBookEntry*>* Player::GetSpellsSaveNeeded(){
  2452. vector<SpellBookEntry*>* ret = 0;
  2453. vector<SpellBookEntry*>::iterator itr;
  2454. MSpellsBook.lock();
  2455. SpellBookEntry* spell = 0;
  2456. for(itr = spells.begin(); itr != spells.end(); itr++){
  2457. spell = *itr;
  2458. if(spell->save_needed){
  2459. if(!ret)
  2460. ret = new vector<SpellBookEntry*>;
  2461. ret->push_back(spell);
  2462. }
  2463. }
  2464. MSpellsBook.unlock();
  2465. return ret;
  2466. }
  2467. bool Player::HasSpell(int32 spell_id, int8 tier, bool include_higher_tiers){
  2468. bool ret = false;
  2469. vector<SpellBookEntry*>::iterator itr;
  2470. MSpellsBook.lock();
  2471. SpellBookEntry* spell = 0;
  2472. for(itr = spells.begin(); itr != spells.end(); itr++){
  2473. spell = *itr;
  2474. if(spell->spell_id == spell_id && (tier == 255 || spell->tier == tier || (include_higher_tiers && spell->tier > tier))){
  2475. ret = true;
  2476. break;
  2477. }
  2478. }
  2479. MSpellsBook.unlock();
  2480. return ret;
  2481. }
  2482. sint32 Player::GetFreeSpellBookSlot(int32 type){
  2483. sint32 ret = 0;
  2484. MSpellsBook.lock();
  2485. vector<SpellBookEntry*>::iterator itr;
  2486. SpellBookEntry* spell = 0;
  2487. for(itr = spells.begin(); itr != spells.end(); itr++){
  2488. spell = *itr;
  2489. if(spell->type == type && spell->slot > ret) //get last slot (add 1 to it on return)
  2490. ret = spell->slot;
  2491. }
  2492. MSpellsBook.unlock();
  2493. return ret+1;
  2494. }
  2495. SpellBookEntry* Player::GetSpellBookSpell(int32 spell_id){
  2496. MSpellsBook.lock();
  2497. vector<SpellBookEntry*>::iterator itr;
  2498. SpellBookEntry* ret = 0;
  2499. SpellBookEntry* spell = 0;
  2500. for(itr = spells.begin(); itr != spells.end(); itr++){
  2501. spell = *itr;
  2502. if(spell->spell_id == spell_id){
  2503. ret = spell;
  2504. break;
  2505. }
  2506. }
  2507. MSpellsBook.unlock();
  2508. return ret;
  2509. }
  2510. vector<int32> Player::GetSpellBookSpellIDBySkill(int32 skill_id) {
  2511. vector<int32> ret;
  2512. MSpellsBook.readlock(__FUNCTION__, __LINE__);
  2513. vector<SpellBookEntry*>::iterator itr;
  2514. Spell* spell = 0;
  2515. for(itr = spells.begin(); itr != spells.end(); itr++){
  2516. spell = master_spell_list.GetSpell((*itr)->spell_id, (*itr)->tier);
  2517. if(spell && spell->GetSpellData()->mastery_skill == skill_id)
  2518. ret.push_back(spell->GetSpellData()->id);
  2519. }
  2520. MSpellsBook.releasereadlock(__FUNCTION__, __LINE__);
  2521. return ret;
  2522. }
  2523. EQ2Packet* Player::GetSpellSlotMappingPacket(int16 version){
  2524. PacketStruct* packet = configReader.getStruct("WS_SpellSlotMapping", version);
  2525. if(packet){
  2526. int16 count = GetSpellSlotMappingCount();
  2527. int16 ptr = 0;
  2528. if(count > 0){
  2529. packet->setArrayLengthByName("spell_count", count);
  2530. MSpellsBook.lock();
  2531. for(int32 i=0;i<spells.size();i++){
  2532. SpellBookEntry* spell = (SpellBookEntry*)spells[i];
  2533. if(spell->slot < 0 || spell->spell_id == 0)
  2534. continue;
  2535. packet->setArrayDataByName("spell_id", spell->spell_id, ptr);
  2536. packet->setArrayDataByName("slot_id", (int16)spell->slot, ptr);
  2537. ptr++;
  2538. }
  2539. MSpellsBook.unlock();
  2540. EQ2Packet* ret = packet->serialize();
  2541. safe_delete(packet);
  2542. return ret;
  2543. }
  2544. safe_delete(packet);
  2545. }
  2546. return 0;
  2547. }
  2548. EQ2Packet* Player::GetSpellBookUpdatePacket(int16 version) {
  2549. PacketStruct* packet = configReader.getStruct("WS_UpdateSpellBook", version);
  2550. EQ2Packet* ret = 0;
  2551. if (packet) {
  2552. Spell* spell = 0;
  2553. SpellBookEntry* spell_entry = 0;
  2554. int16 count = GetSpellPacketCount();
  2555. int16 ptr = 0;
  2556. // Get the packet size
  2557. PacketStruct* packet2 = configReader.getStruct("SubStruct_UpdateSpellBook", version);
  2558. int32 total_bytes = packet2->GetTotalPacketSize();
  2559. safe_delete(packet2);
  2560. packet->setArrayLengthByName("spell_count", count);
  2561. if (count > 0) {
  2562. if (count > spell_count) {
  2563. uchar* tmp = 0;
  2564. if (spell_orig_packet) {
  2565. tmp = new uchar[count * total_bytes];
  2566. memset(tmp, 0, total_bytes * count);
  2567. memcpy(tmp, spell_orig_packet, spell_count * total_bytes);
  2568. safe_delete_array(spell_orig_packet);
  2569. safe_delete_array(spell_xor_packet);
  2570. spell_orig_packet = tmp;
  2571. }
  2572. else {
  2573. spell_orig_packet = new uchar[count * total_bytes];
  2574. memset(spell_orig_packet, 0, total_bytes * count);
  2575. }
  2576. spell_xor_packet = new uchar[count * total_bytes];
  2577. memset(spell_xor_packet, 0, count * total_bytes);
  2578. spell_count = count;
  2579. }
  2580. MSpellsBook.lock();
  2581. for (int32 i = 0; i < spells.size(); i++) {
  2582. spell_entry = (SpellBookEntry*)spells[i];
  2583. if (spell_entry->spell_id == 0)
  2584. continue;
  2585. spell = master_spell_list.GetSpell(spell_entry->spell_id, spell_entry->tier);
  2586. if (spell) {
  2587. if (spell_entry->recast_available == 0 || Timer::GetCurrentTime2() > spell_entry->recast_available) {
  2588. packet->setSubstructArrayDataByName("spells", "available", 1, 0, ptr);
  2589. }
  2590. packet->setSubstructArrayDataByName("spells", "spell_id", spell_entry->spell_id, 0, ptr);
  2591. packet->setSubstructArrayDataByName("spells", "type", spell_entry->type, 0, ptr);
  2592. packet->setSubstructArrayDataByName("spells", "recast_available", spell_entry->recast_available, 0, ptr);
  2593. packet->setSubstructArrayDataByName("spells", "recast_time", spell_entry->recast, 0, ptr);
  2594. packet->setSubstructArrayDataByName("spells", "status", spell_entry->status, 0, ptr);
  2595. packet->setSubstructArrayDataByName("spells", "icon", (spell->GetSpellIcon() * -1) - 1, 0, ptr);
  2596. packet->setSubstructArrayDataByName("spells", "icon_type", spell->GetSpellIconBackdrop(), 0, ptr);
  2597. packet->setSubstructArrayDataByName("spells", "icon2", spell->GetSpellIconHeroicOp(), 0, ptr);
  2598. packet->setSubstructArrayDataByName("spells", "unique_id", (spell_entry->tier + 1) * -1, 0, ptr); //this is actually GetSpellNameCrc(spell->GetName()), but hijacking it for spell tier
  2599. packet->setSubstructArrayDataByName("spells", "charges", 255, 0, ptr);
  2600. // Beastlord and Channeler spell support
  2601. if (spell->GetSpellData()->savage_bar == 1)
  2602. packet->setSubstructArrayDataByName("spells", "unknown6", 32, 0, ptr); // advantages
  2603. else if (spell->GetSpellData()->savage_bar == 2)
  2604. packet->setSubstructArrayDataByName("spells", "unknown6", 64, 0, ptr); // primal
  2605. else if (spell->GetSpellData()->savage_bar == 3) {
  2606. packet->setSubstructArrayDataByName("spells", "unknown6", 6, 1, ptr); // 6 = channeler
  2607. // Slot req for channelers
  2608. // bitmask for slots 1 = slot 1, 2 = slot 2, 4 = slot 3, 8 = slot 4, 16 = slot 5, 32 = slot 6, 64 = slot 7, 128 = slot 8
  2609. packet->setSubstructArrayDataByName("spells", "savage_bar_slot", spell->GetSpellData()->savage_bar_slot, 0, ptr);
  2610. }
  2611. ptr++;
  2612. }
  2613. }
  2614. MSpellsBook.unlock();
  2615. }
  2616. ret = packet->serializeCountPacket(version, 0, spell_orig_packet, spell_xor_packet);
  2617. //packet->PrintPacket();
  2618. //DumpPacket(ret);
  2619. safe_delete(packet);
  2620. }
  2621. return ret;
  2622. }
  2623. PlayerInfo::~PlayerInfo(){
  2624. RemoveOldPackets();
  2625. }
  2626. PlayerInfo::PlayerInfo(Player* in_player){
  2627. orig_packet = 0;
  2628. changes = 0;
  2629. pet_orig_packet = 0;
  2630. pet_changes = 0;
  2631. player = in_player;
  2632. info_struct = player->GetInfoStruct();
  2633. info_struct->set_name(std::string(player->GetName()));
  2634. info_struct->set_deity(std::string("None"));
  2635. info_struct->set_class1(classes.GetBaseClass(player->GetAdventureClass()));
  2636. info_struct->set_class2(classes.GetSecondaryBaseClass(player->GetAdventureClass()));
  2637. info_struct->set_class3(player->GetAdventureClass());
  2638. info_struct->set_race(player->GetRace());
  2639. info_struct->set_gender(player->GetGender());
  2640. info_struct->set_level(player->GetLevel());
  2641. info_struct->set_tradeskill_level(player->GetTSLevel()); // JA: added 2011.07.22 to address TODO below
  2642. info_struct->set_tradeskill_class1(classes.GetTSBaseClass(player->GetTradeskillClass()));
  2643. info_struct->set_tradeskill_class2(classes.GetSecondaryTSBaseClass(player->GetTradeskillClass()));
  2644. info_struct->set_tradeskill_class3(player->GetTradeskillClass());
  2645. LogWrite(MISC__TODO, 1, "TODO", "Fix info_struct.tradeskill_level = player->GetArtLevel();\n\t(%s, function: %s, line #: %i)", __FILE__, __FUNCTION__, __LINE__);
  2646. for(int i=0;i<45;i++){
  2647. if(i<30){
  2648. info_struct->maintained_effects[i].spell_id = 0xFFFFFFFF;
  2649. info_struct->maintained_effects[i].icon = 0xFFFF;
  2650. info_struct->maintained_effects[i].spell = nullptr;
  2651. }
  2652. info_struct->spell_effects[i].spell_id = 0xFFFFFFFF;
  2653. info_struct->spell_effects[i].spell = nullptr;
  2654. }
  2655. house_zone_id = 0;
  2656. bind_zone_id = 0;
  2657. bind_x = 0;
  2658. bind_y = 0;
  2659. bind_z = 0;
  2660. bind_heading = 0;
  2661. boat_x_offset = 0;
  2662. boat_y_offset = 0;
  2663. boat_z_offset = 0;
  2664. boat_spawn = 0;
  2665. }
  2666. MaintainedEffects* Player::GetFreeMaintainedSpellSlot(){
  2667. MaintainedEffects* ret = 0;
  2668. InfoStruct* info = GetInfoStruct();
  2669. GetMaintainedMutex()->readlock(__FUNCTION__, __LINE__);
  2670. for(int i=0;i<NUM_MAINTAINED_EFFECTS;i++){
  2671. if(info->maintained_effects[i].spell_id == 0xFFFFFFFF){
  2672. ret = &info->maintained_effects[i];
  2673. ret->spell_id = 0;
  2674. ret->slot_pos = i;
  2675. break;
  2676. }
  2677. }
  2678. GetMaintainedMutex()->releasereadlock(__FUNCTION__, __LINE__);
  2679. return ret;
  2680. }
  2681. MaintainedEffects* Player::GetMaintainedSpell(int32 id){
  2682. MaintainedEffects* ret = 0;
  2683. InfoStruct* info = GetInfoStruct();
  2684. GetMaintainedMutex()->readlock(__FUNCTION__, __LINE__);
  2685. for(int i=0;i<NUM_MAINTAINED_EFFECTS;i++){
  2686. if(info->maintained_effects[i].spell_id == id){
  2687. ret = &info->maintained_effects[i];
  2688. break;
  2689. }
  2690. }
  2691. GetMaintainedMutex()->releasereadlock(__FUNCTION__, __LINE__);
  2692. return ret;
  2693. }
  2694. MaintainedEffects* Player::GetMaintainedSpellBySlot(int8 slot){
  2695. MaintainedEffects* ret = 0;
  2696. InfoStruct* info = GetInfoStruct();
  2697. GetMaintainedMutex()->readlock(__FUNCTION__, __LINE__);
  2698. for(int i=0;i<NUM_MAINTAINED_EFFECTS;i++){
  2699. if(info->maintained_effects[i].slot_pos == slot){
  2700. ret = &info->maintained_effects[i];
  2701. break;
  2702. }
  2703. }
  2704. GetMaintainedMutex()->releasereadlock(__FUNCTION__, __LINE__);
  2705. return ret;
  2706. }
  2707. MaintainedEffects* Player::GetMaintainedSpells() {
  2708. return GetInfoStruct()->maintained_effects;
  2709. }
  2710. SpellEffects* Player::GetFreeSpellEffectSlot(){
  2711. SpellEffects* ret = 0;
  2712. InfoStruct* info = GetInfoStruct();
  2713. GetSpellEffectMutex()->readlock(__FUNCTION__, __LINE__);
  2714. for(int i=0;i<45;i++){
  2715. if(info->spell_effects[i].spell_id == 0xFFFFFFFF){
  2716. ret = &info->spell_effects[i];
  2717. ret->spell_id = 0;
  2718. break;
  2719. }
  2720. }
  2721. GetSpellEffectMutex()->releasereadlock(__FUNCTION__, __LINE__);
  2722. return ret;
  2723. }
  2724. SpellEffects* Player::GetSpellEffects() {
  2725. return GetInfoStruct()->spell_effects;
  2726. }
  2727. void Player::ClearEverything(){
  2728. index_mutex.writelock(__FUNCTION__, __LINE__);
  2729. player_removed_spawns.clear();
  2730. player_spawn_map.clear();
  2731. player_spawn_index_map.clear();
  2732. player_spawn_id_map.clear();
  2733. player_spawn_reverse_id_map.clear();
  2734. index_mutex.releasewritelock(__FUNCTION__, __LINE__);
  2735. map<int32, vector<int32>*>::iterator itr;
  2736. m_playerSpawnQuestsRequired.writelock(__FUNCTION__, __LINE__);
  2737. for (itr = player_spawn_quests_required.begin(); itr != player_spawn_quests_required.end(); itr++){
  2738. safe_delete(itr->second);
  2739. }
  2740. player_spawn_quests_required.clear();
  2741. m_playerSpawnQuestsRequired.releasewritelock(__FUNCTION__, __LINE__);
  2742. m_playerSpawnHistoryRequired.writelock(__FUNCTION__, __LINE__);
  2743. for (itr = player_spawn_history_required.begin(); itr != player_spawn_history_required.end(); itr++){
  2744. safe_delete(itr->second);
  2745. }
  2746. player_spawn_history_required.clear();
  2747. m_playerSpawnHistoryRequired.releasewritelock(__FUNCTION__, __LINE__);
  2748. vis_mutex.writelock(__FUNCTION__, __LINE__);
  2749. spawn_vis_packet_list.clear();
  2750. vis_mutex.releasewritelock(__FUNCTION__, __LINE__);
  2751. info_mutex.writelock(__FUNCTION__, __LINE__);
  2752. spawn_info_packet_list.clear();
  2753. info_mutex.releasewritelock(__FUNCTION__, __LINE__);
  2754. pos_mutex.writelock(__FUNCTION__, __LINE__);
  2755. spawn_pos_packet_list.clear();
  2756. pos_mutex.releasewritelock(__FUNCTION__, __LINE__);
  2757. }
  2758. bool Player::IsFullyLoggedIn() {
  2759. return fully_logged_in;
  2760. }
  2761. void Player::SetFullyLoggedIn(bool val) {
  2762. fully_logged_in = val;
  2763. }
  2764. bool Player::IsResurrecting(){
  2765. return resurrecting;
  2766. }
  2767. void Player::SetResurrecting(bool val){
  2768. resurrecting = val;
  2769. }
  2770. void Player::AddMaintainedSpell(LuaSpell* luaspell){
  2771. if(!luaspell)
  2772. return;
  2773. Spell* spell = luaspell->spell;
  2774. MaintainedEffects* effect = GetFreeMaintainedSpellSlot();
  2775. int32 target_type = 0;
  2776. Spawn* spawn = 0;
  2777. if(effect){
  2778. GetMaintainedMutex()->writelock(__FUNCTION__, __LINE__);
  2779. strcpy(effect->name, spell->GetSpellData()->name.data.c_str());
  2780. effect->target = luaspell->initial_target;
  2781. spawn = luaspell->caster->GetZone()->GetSpawnByID(luaspell->initial_target);
  2782. if (spawn){
  2783. if (spawn == this)
  2784. target_type = 0;
  2785. else if (GetPet() == spawn || GetCharmedPet() == spawn)
  2786. target_type = 1;
  2787. else
  2788. target_type = 2;
  2789. }
  2790. effect->target_type = target_type;
  2791. effect->spell = luaspell;
  2792. luaspell->slot_pos = effect->slot_pos;
  2793. effect->spell_id = spell->GetSpellData()->id;
  2794. LogWrite(PLAYER__DEBUG, 5, "Player", "AddMaintainedSpell Spell ID: %u", spell->GetSpellData()->id);
  2795. effect->icon = spell->GetSpellData()->icon;
  2796. effect->icon_backdrop = spell->GetSpellData()->icon_backdrop;
  2797. effect->conc_used = spell->GetSpellData()->req_concentration / 256;
  2798. effect->total_time = spell->GetSpellDuration()/10;
  2799. effect->tier = spell->GetSpellData()->tier;
  2800. if (spell->GetSpellData()->duration_until_cancel)
  2801. effect->expire_timestamp = 0xFFFFFFFF;
  2802. else
  2803. effect->expire_timestamp = Timer::GetCurrentTime2() + (spell->GetSpellDuration()*100);
  2804. GetMaintainedMutex()->releasewritelock(__FUNCTION__, __LINE__);
  2805. charsheet_changed = true;
  2806. }
  2807. }
  2808. void Player::AddSpellEffect(LuaSpell* luaspell){
  2809. if(!luaspell || !luaspell->caster)
  2810. return;
  2811. Spell* spell = luaspell->spell;
  2812. SpellEffects* old_effect = GetSpellEffect(spell->GetSpellID(), luaspell->caster);
  2813. SpellEffects* effect = 0;
  2814. if (old_effect){
  2815. GetZone()->RemoveTargetFromSpell(old_effect->spell, this);
  2816. RemoveSpellEffect(old_effect->spell);
  2817. }
  2818. effect = GetFreeSpellEffectSlot();
  2819. if(effect){
  2820. GetSpellEffectMutex()->writelock(__FUNCTION__, __LINE__);
  2821. effect->spell = luaspell;
  2822. effect->spell_id = spell->GetSpellData()->id;
  2823. effect->caster = luaspell->caster;
  2824. effect->total_time = spell->GetSpellDuration()/10;
  2825. if (spell->GetSpellData()->duration_until_cancel)
  2826. effect->expire_timestamp = 0xFFFFFFFF;
  2827. else
  2828. effect->expire_timestamp = Timer::GetCurrentTime2() + (spell->GetSpellDuration()*100);
  2829. effect->icon = spell->GetSpellData()->icon;
  2830. effect->icon_backdrop = spell->GetSpellData()->icon_backdrop;
  2831. effect->tier = spell->GetSpellTier();
  2832. GetSpellEffectMutex()->releasewritelock(__FUNCTION__, __LINE__);
  2833. charsheet_changed = true;
  2834. }
  2835. }
  2836. void Player::RemoveMaintainedSpell(LuaSpell* luaspell){
  2837. if(!luaspell)
  2838. return;
  2839. bool found = false;
  2840. Client* client = GetZone()->GetClientBySpawn(this);
  2841. LuaSpell* old_spell = 0;
  2842. LuaSpell* current_spell = 0;
  2843. GetMaintainedMutex()->writelock(__FUNCTION__, __LINE__);
  2844. for(int i=0;i<30;i++){
  2845. // If we already found the spell then we are bumping all other up one so there are no gaps in the ui
  2846. // This check needs to be first so found can never be true on the first iteration (i = 0)
  2847. if (found) {
  2848. old_spell = GetInfoStruct()->maintained_effects[i - 1].spell;
  2849. current_spell = GetInfoStruct()->maintained_effects[i].spell;
  2850. //Update the maintained window uses_remaining and damage_remaining values
  2851. if (current_spell && current_spell->num_triggers > 0)
  2852. ClientPacketFunctions::SendMaintainedExamineUpdate(client, i - 1, current_spell->num_triggers, 0);
  2853. else if (current_spell && current_spell->damage_remaining > 0)
  2854. ClientPacketFunctions::SendMaintainedExamineUpdate(client, i - 1, current_spell->damage_remaining, 1);
  2855. else if (old_spell && old_spell->had_triggers)
  2856. ClientPacketFunctions::SendMaintainedExamineUpdate(client, i - 1, 0, 0);
  2857. else if (old_spell && old_spell->had_dmg_remaining)
  2858. ClientPacketFunctions::SendMaintainedExamineUpdate(client, i - 1, 0, 1);
  2859. GetInfoStruct()->maintained_effects[i].slot_pos = i - 1;
  2860. GetInfoStruct()->maintained_effects[i - 1] = GetInfoStruct()->maintained_effects[i];
  2861. if (current_spell)
  2862. current_spell->slot_pos = i - 1;
  2863. }
  2864. // Compare spells, if we found a match set the found flag
  2865. if(GetInfoStruct()->maintained_effects[i].spell == luaspell)
  2866. found = true;
  2867. }
  2868. // if we found the spell in the array then we need to flag the char sheet as changed and set the last element to empty
  2869. if (found) {
  2870. memset(&GetInfoStruct()->maintained_effects[29], 0, sizeof(MaintainedEffects));
  2871. GetInfoStruct()->maintained_effects[29].spell_id = 0xFFFFFFFF;
  2872. GetInfoStruct()->maintained_effects[29].icon = 0xFFFF;
  2873. GetInfoStruct()->maintained_effects[29].spell = nullptr;
  2874. charsheet_changed = true;
  2875. }
  2876. GetMaintainedMutex()->releasewritelock(__FUNCTION__, __LINE__);
  2877. }
  2878. void Player::RemoveSpellEffect(LuaSpell* spell){
  2879. bool found = false;
  2880. GetSpellEffectMutex()->writelock(__FUNCTION__, __LINE__);
  2881. for(int i=0;i<45;i++){
  2882. if (found) {
  2883. GetInfoStruct()->spell_effects[i-1] = GetInfoStruct()->spell_effects[i];
  2884. }
  2885. if(GetInfoStruct()->spell_effects[i].spell == spell)
  2886. found = true;
  2887. }
  2888. if (found) {
  2889. memset(&GetInfoStruct()->spell_effects[44], 0, sizeof(SpellEffects));
  2890. GetInfoStruct()->spell_effects[44].spell_id = 0xFFFFFFFF;
  2891. changed = true;
  2892. info_changed = true;
  2893. AddChangedZoneSpawn();
  2894. charsheet_changed = true;
  2895. }
  2896. GetSpellEffectMutex()->releasewritelock(__FUNCTION__, __LINE__);
  2897. }
  2898. bool Player::HasActiveMaintainedSpell(Spell* spell, Spawn* target){
  2899. GetMaintainedMutex()->readlock(__FUNCTION__, __LINE__);
  2900. for(int i=0;i<30;i++){
  2901. if (GetInfoStruct()->maintained_effects[i].spell_id == spell->GetSpellData()->id){
  2902. GetMaintainedMutex()->releasereadlock(__FUNCTION__, __LINE__);
  2903. return true;
  2904. }
  2905. }
  2906. GetMaintainedMutex()->releasereadlock(__FUNCTION__, __LINE__);
  2907. return false;
  2908. }
  2909. bool Player::HasActiveSpellEffect(Spell* spell, Spawn* target){
  2910. return false;
  2911. }
  2912. void Player::PrepareIncomingMovementPacket(int32 len, uchar* data, int16 version)
  2913. {
  2914. LogWrite(PLAYER__DEBUG, 7, "Player", "Enter: %s", __FUNCTION__); // trace
  2915. // XML structs may be to slow to use in this portion of the code as a single
  2916. // client sends a LOT of these packets when they are moving. I have commented
  2917. // out all the code for xml structs, to switch to it just uncomment
  2918. // the code and comment the 2 if/else if/else blocks, both have a comment
  2919. // above them to let you know wich ones they are.
  2920. //PacketStruct* update = configReader.getStruct("WS_PlayerPosUpdate", version);
  2921. int16 total_bytes; // = update->GetTotalPacketSize();
  2922. // Comment out this if/else if/else block if you switch to xml structs
  2923. if (version >= 1144)
  2924. total_bytes = sizeof(Player_Update1144);
  2925. else if (version >= 1096)
  2926. total_bytes = sizeof(Player_Update1096);
  2927. else if (version <= 283)
  2928. total_bytes = sizeof(Player_Update283);
  2929. else
  2930. total_bytes = sizeof(Player_Update);
  2931. if (!movement_packet)
  2932. movement_packet = new uchar[total_bytes];
  2933. else if (!old_movement_packet)
  2934. old_movement_packet = new uchar[total_bytes];
  2935. if (movement_packet && old_movement_packet)
  2936. memcpy(old_movement_packet, movement_packet, total_bytes);
  2937. bool reverse = version > 283;
  2938. Unpack(len, data, movement_packet, total_bytes, 0, reverse);
  2939. if (!movement_packet || !old_movement_packet)
  2940. return;
  2941. Decode(movement_packet, old_movement_packet, total_bytes);
  2942. //update->LoadPacketData(movement_packet, total_bytes);
  2943. int32 activity; // = update->getType_int32_ByName("activity");
  2944. int32 grid_id; // = update->getType_int32_ByName("grid_location");
  2945. float direction1; // = update->getType_float_ByName("direction1");
  2946. float direction2; // = update->getType_float_ByName("direction2");;
  2947. float speed; // = update->getType_float_ByName("speed");;
  2948. float side_speed;
  2949. float x; // = update->getType_float_ByName("x");;
  2950. float y; // = update->getType_float_ByName("y");;
  2951. float z; // = update->getType_float_ByName("z");;
  2952. float x_speed;
  2953. float y_speed;
  2954. float z_speed;
  2955. // comment out this if/else if/else block if you use xml structs
  2956. if (version >= 1144) {
  2957. Player_Update1144* update = (Player_Update1144*)movement_packet;
  2958. activity = update->activity;
  2959. grid_id = update->grid_location;
  2960. direction1 = update->direction1;
  2961. direction2 = update->direction2;
  2962. speed = update->speed;
  2963. side_speed = update->side_speed;
  2964. x = update->x;
  2965. y = update->y;
  2966. z = update->z;
  2967. x_speed = update->speed_x;
  2968. y_speed = update->speed_y;
  2969. z_speed = update->speed_z;
  2970. SetPitch(180 + update->pitch);
  2971. }
  2972. else if (version >= 1096) {
  2973. Player_Update1096* update = (Player_Update1096*)movement_packet;
  2974. activity = update->activity;
  2975. grid_id = update->grid_location;
  2976. direction1 = update->direction1;
  2977. direction2 = update->direction2;
  2978. speed = update->speed;
  2979. side_speed = update->side_speed;
  2980. x = update->x;
  2981. y = update->y;
  2982. z = update->z;
  2983. x_speed = update->speed_x;
  2984. y_speed = update->speed_y;
  2985. z_speed = update->speed_z;
  2986. SetPitch(180 + update->pitch);
  2987. }
  2988. else if (version <= 283) {
  2989. Player_Update283* update = (Player_Update283*)movement_packet;
  2990. activity = update->activity;
  2991. grid_id = update->grid_location;
  2992. direction1 = update->direction1;
  2993. direction2 = update->direction2;
  2994. speed = update->speed;
  2995. side_speed = update->side_speed;
  2996. x = update->x;
  2997. y = update->y;
  2998. z = update->z;
  2999. x_speed = update->speed_x;
  3000. y_speed = update->speed_y;
  3001. z_speed = update->speed_z;
  3002. if (update->pitch != 0)
  3003. SetPitch(180 + update->pitch);
  3004. }
  3005. else {
  3006. Player_Update* update = (Player_Update*)movement_packet;
  3007. activity = update->activity;
  3008. grid_id = update->grid_location;
  3009. direction1 = update->direction1;
  3010. direction2 = update->direction2;
  3011. speed = update->speed;
  3012. side_speed = update->side_speed;
  3013. x = update->x;
  3014. y = update->y;
  3015. z = update->z;
  3016. x_speed = update->speed_x;
  3017. y_speed = update->speed_y;
  3018. z_speed = update->speed_z;
  3019. appearance.pos.X2 = update->orig_x;
  3020. appearance.pos.Y2 = update->orig_y;
  3021. appearance.pos.Z2 = update->orig_z;
  3022. appearance.pos.X3 = update->orig_x2;
  3023. appearance.pos.Y3 = update->orig_y2;
  3024. appearance.pos.Z3 = update->orig_z2;
  3025. SetPitch(180 + update->pitch);
  3026. }
  3027. SetHeading((sint16)(direction1 * 64), (sint16)(direction2 * 64));
  3028. if (activity != last_movement_activity) {
  3029. if (GetZone() && GetZone()->GetDrowningVictim(this) && (activity == UPDATE_ACTIVITY_RUNNING || activity == UPDATE_ACTIVITY_IN_WATER_ABOVE)) // not drowning anymore
  3030. GetZone()->RemoveDrowningVictim(this);
  3031. if ((activity == UPDATE_ACTIVITY_DROWNING || activity == UPDATE_ACTIVITY_DROWNING2) && GetZone() && !GetInvulnerable()) //drowning
  3032. GetZone()->AddDrowningVictim(this);
  3033. if (activity == UPDATE_ACTIVITY_JUMPING || activity == UPDATE_ACTIVITY_FALLING)
  3034. SetInitialState(1024);
  3035. else if (GetInitialState() == 1024)
  3036. SetInitialState(16512);
  3037. last_movement_activity = activity;
  3038. }
  3039. //Player is riding a lift, update lift XYZ offsets and the lift's spawn pointer
  3040. if (activity & UPDATE_ACTIVITY_RIDING_BOAT) {
  3041. Spawn* boat = 0;
  3042. float boat_x = x;
  3043. float boat_y = y;
  3044. float boat_z = z;
  3045. if (GetBoatSpawn() == 0 && GetZone()) {
  3046. boat = GetZone()->GetClosestTransportSpawn(GetX(), GetY(), GetZ());
  3047. SetBoatSpawn(boat);
  3048. }
  3049. if (boat || (GetBoatSpawn() && GetZone())) {
  3050. if (!boat)
  3051. boat = GetZone()->GetSpawnByID(GetBoatSpawn());
  3052. if (boat && boat->IsWidget() && ((Widget*)boat)->GetMultiFloorLift()) {
  3053. boat_x -= boat->GetX();
  3054. boat_y -= boat->GetY();
  3055. boat_z -= boat->GetZ();
  3056. //appearance.pos.grid_id = grid_id;
  3057. }
  3058. }
  3059. SetBoatX(boat_x);
  3060. SetBoatY(boat_y);
  3061. SetBoatZ(boat_z);
  3062. pos_packet_speed = speed;
  3063. grid_id = appearance.pos.grid_id;
  3064. }
  3065. else if (GetBoatSpawn() > 0)
  3066. SetBoatSpawn(0);
  3067. if (!IsResurrecting() && !GetBoatSpawn())
  3068. {
  3069. if (!IsRooted() && !IsMezzedOrStunned()) {
  3070. SetX(x);
  3071. SetY(y);
  3072. SetZ(z);
  3073. SetSpeedX(x_speed);
  3074. SetSpeedY(y_speed);
  3075. SetSpeedZ(z_speed);
  3076. SetSideSpeed(side_speed);
  3077. pos_packet_speed = speed;
  3078. }
  3079. else {
  3080. SetSpeedX(0);
  3081. SetSpeedY(0);
  3082. SetSpeedZ(0);
  3083. SetSideSpeed(0);
  3084. pos_packet_speed = 0;
  3085. }
  3086. }
  3087. if (appearance.pos.grid_id != grid_id)
  3088. {
  3089. LogWrite(PLAYER__DEBUG, 0, "Player", "%s left grid %u and entered grid %u", appearance.name, appearance.pos.grid_id, grid_id);
  3090. const char* zone_script = world.GetZoneScript(GetZone()->GetZoneID());
  3091. if (zone_script && lua_interface)
  3092. {
  3093. lua_interface->RunZoneScript(zone_script, "enter_location", GetZone(), this, grid_id);
  3094. lua_interface->RunZoneScript(zone_script, "leave_location", GetZone(), this, appearance.pos.grid_id);
  3095. }
  3096. appearance.pos.grid_id = grid_id;
  3097. }
  3098. if (activity == UPDATE_ACTIVITY_IN_WATER_ABOVE || activity == UPDATE_ACTIVITY_IN_WATER_BELOW) {
  3099. if (MakeRandomFloat(0, 100) < 25)
  3100. GetSkillByName("Swimming", true);
  3101. }
  3102. // don't have to uncomment the print packet but you MUST uncomment the safe_delete() for xml structs
  3103. //update->PrintPacket();
  3104. //safe_delete(update);
  3105. LogWrite(PLAYER__DEBUG, 7, "Player", "Exit: %s", __FUNCTION__); // trace
  3106. }
  3107. int16 Player::GetLastMovementActivity(){
  3108. return last_movement_activity;
  3109. }
  3110. void Player::AddSpawnInfoPacketForXOR(int32 spawn_id, uchar* packet, int16 packet_size){
  3111. spawn_info_packet_list[spawn_id] = string((char*)packet, packet_size);
  3112. }
  3113. void Player::AddSpawnPosPacketForXOR(int32 spawn_id, uchar* packet, int16 packet_size){
  3114. spawn_pos_packet_list[spawn_id] = string((char*)packet, packet_size);
  3115. }
  3116. uchar* Player::GetSpawnPosPacketForXOR(int32 spawn_id){
  3117. uchar* ret = 0;
  3118. if(spawn_pos_packet_list.count(spawn_id) == 1)
  3119. ret = (uchar*)spawn_pos_packet_list[spawn_id].c_str();
  3120. return ret;
  3121. }
  3122. uchar* Player::GetSpawnInfoPacketForXOR(int32 spawn_id){
  3123. uchar* ret = 0;
  3124. if(spawn_info_packet_list.count(spawn_id) == 1)
  3125. ret = (uchar*)spawn_info_packet_list[spawn_id].c_str();
  3126. return ret;
  3127. }
  3128. void Player::AddSpawnVisPacketForXOR(int32 spawn_id, uchar* packet, int16 packet_size){
  3129. spawn_vis_packet_list[spawn_id] = string((char*)packet, packet_size);
  3130. }
  3131. uchar* Player::GetSpawnVisPacketForXOR(int32 spawn_id){
  3132. uchar* ret = 0;
  3133. if(spawn_vis_packet_list.count(spawn_id) == 1)
  3134. ret = (uchar*)spawn_vis_packet_list[spawn_id].c_str();
  3135. return ret;
  3136. }
  3137. uchar* Player::GetTempInfoPacketForXOR(){
  3138. return spawn_tmp_info_xor_packet;
  3139. }
  3140. uchar* Player::GetTempVisPacketForXOR(){
  3141. return spawn_tmp_vis_xor_packet;
  3142. }
  3143. uchar* Player::GetTempPosPacketForXOR(){
  3144. return spawn_tmp_pos_xor_packet;
  3145. }
  3146. uchar* Player::SetTempInfoPacketForXOR(int16 size){
  3147. spawn_tmp_info_xor_packet = new uchar[size];
  3148. info_xor_size = size;
  3149. return spawn_tmp_info_xor_packet;
  3150. }
  3151. uchar* Player::SetTempVisPacketForXOR(int16 size){
  3152. spawn_tmp_vis_xor_packet = new uchar[size];
  3153. vis_xor_size = size;
  3154. return spawn_tmp_vis_xor_packet;
  3155. }
  3156. uchar* Player::SetTempPosPacketForXOR(int16 size){
  3157. spawn_tmp_pos_xor_packet = new uchar[size];
  3158. pos_xor_size = size;
  3159. return spawn_tmp_pos_xor_packet;
  3160. }
  3161. bool Player::CheckPlayerInfo(){
  3162. return info != 0;
  3163. }
  3164. bool Player::NeedsSpawnResent(Spawn* spawn){
  3165. return WasSentSpawn(spawn->GetID()) && WasSpawnRemoved(spawn);
  3166. }
  3167. bool Player::WasSentSpawn(int32 spawn_id){
  3168. bool ret;
  3169. info_mutex.readlock(__FUNCTION__, __LINE__);
  3170. ret = spawn_info_packet_list.count(spawn_id) == 1;
  3171. info_mutex.releasereadlock(__FUNCTION__, __LINE__);
  3172. return ret;
  3173. }
  3174. PlayerSkillList* Player::GetSkills(){
  3175. return &skill_list;
  3176. }
  3177. void Player::InCombat(bool val, bool range) {
  3178. if (val)
  3179. GetInfoStruct()->set_flags(GetInfoStruct()->get_flags() | (1 << (range?CF_RANGED_AUTO_ATTACK:CF_AUTO_ATTACK)));
  3180. else
  3181. GetInfoStruct()->set_flags(GetInfoStruct()->get_flags() & ~(1 << (range?CF_RANGED_AUTO_ATTACK:CF_AUTO_ATTACK)));
  3182. in_combat = val;
  3183. if(in_combat)
  3184. AddIconValue(64);
  3185. else
  3186. RemoveIconValue(64);
  3187. charsheet_changed = true;
  3188. }
  3189. void Player::SetCharSheetChanged(bool val){
  3190. charsheet_changed = val;
  3191. }
  3192. bool Player::GetCharSheetChanged(){
  3193. return charsheet_changed;
  3194. }
  3195. bool Player::AdventureXPEnabled(){
  3196. return (GetInfoStruct()->get_flags() & (1 << CF_COMBAT_EXPERIENCE_ENABLED));
  3197. }
  3198. bool Player::TradeskillXPEnabled() {
  3199. // TODO: need to identify the flag to togle tradeskill xp
  3200. return true;
  3201. }
  3202. void Player::set_character_flag(int flag){
  3203. LogWrite(PLAYER__DEBUG, 0, "Player", "Flag: %u", flag);
  3204. LogWrite(PLAYER__DEBUG, 0, "Player", "Flags before: %u, Flags2: %u", GetInfoStruct()->get_flags(), GetInfoStruct()->get_flags2());
  3205. if (flag > CF_MAXIMUM_FLAG) return;
  3206. if (flag < 32) GetInfoStruct()->set_flags(GetInfoStruct()->get_flags() | (1 << flag));
  3207. else GetInfoStruct()->set_flags2(GetInfoStruct()->get_flags2() | (1 << (flag - 32)));
  3208. charsheet_changed = true;
  3209. info_changed = true;
  3210. LogWrite(PLAYER__DEBUG, 0, "Player", "Flags after: %u, Flags2: %u", GetInfoStruct()->get_flags(), GetInfoStruct()->get_flags2());
  3211. }
  3212. void Player::reset_character_flag(int flag){
  3213. LogWrite(PLAYER__DEBUG, 0, "Player", "Flag: %u", flag);
  3214. LogWrite(PLAYER__DEBUG, 0, "Player", "Flags before: %u, Flags2: %u", GetInfoStruct()->get_flags(), GetInfoStruct()->get_flags2());
  3215. if (flag > CF_MAXIMUM_FLAG) return;
  3216. if (flag < 32)
  3217. {
  3218. int8 origflag = GetInfoStruct()->get_flags();
  3219. GetInfoStruct()->set_flags(origflag &= ~(1 << flag));
  3220. }
  3221. else
  3222. {
  3223. int8 flag2 = GetInfoStruct()->get_flags2();
  3224. GetInfoStruct()->set_flags2(flag2 &= ~(1 << (flag - 32)));
  3225. }
  3226. charsheet_changed = true;
  3227. info_changed = true;
  3228. LogWrite(PLAYER__DEBUG, 0, "Player", "Flags after: %u, Flags2: %u", GetInfoStruct()->get_flags(), GetInfoStruct()->get_flags2());
  3229. }
  3230. void Player::toggle_character_flag(int flag){
  3231. LogWrite(PLAYER__DEBUG, 0, "Player", "Flag: %u", flag);
  3232. LogWrite(PLAYER__DEBUG, 0, "Player", "Flags before: %u, Flags2: %u", GetInfoStruct()->get_flags(), GetInfoStruct()->get_flags2());
  3233. if (flag > CF_MAXIMUM_FLAG) return;
  3234. if (flag < 32)
  3235. {
  3236. int8 origflag = GetInfoStruct()->get_flags();
  3237. GetInfoStruct()->set_flags(origflag ^= ~(1 << flag));
  3238. }
  3239. else
  3240. {
  3241. int8 flag2 = GetInfoStruct()->get_flags2();
  3242. GetInfoStruct()->set_flags2(flag2 ^= ~(1 << (flag - 32)));
  3243. }
  3244. charsheet_changed = true;
  3245. info_changed = true;
  3246. LogWrite(PLAYER__DEBUG, 0, "Player", "Flags after: %u, Flags2: %u", GetInfoStruct()->get_flags(), GetInfoStruct()->get_flags2());
  3247. }
  3248. bool Player::get_character_flag(int flag){
  3249. bool ret = false;
  3250. if (flag > CF_MAXIMUM_FLAG){
  3251. LogWrite(PLAYER__DEBUG, 0, "Player", "Player::get_character_flag error: attempted to check flag %i", flag);
  3252. return ret;
  3253. }
  3254. if (flag < 32) ret = ((GetInfoStruct()->get_flags()) >> flag & 1);
  3255. else ret = ((GetInfoStruct()->get_flags2()) >> (flag - 32) & 1);
  3256. return ret;
  3257. }
  3258. float Player::GetXPVitality(){
  3259. return GetInfoStruct()->get_xp_vitality();
  3260. }
  3261. float Player::GetTSXPVitality() {
  3262. return GetInfoStruct()->get_tradeskill_xp_vitality();
  3263. }
  3264. bool Player::DoubleXPEnabled(){
  3265. return GetInfoStruct()->get_xp_vitality() > 0;
  3266. }
  3267. void Player::SetCharacterID(int32 new_id){
  3268. char_id = new_id;
  3269. }
  3270. int32 Player::GetCharacterID(){
  3271. return char_id;
  3272. }
  3273. float Player::CalculateXP(Spawn* victim){
  3274. if(AdventureXPEnabled() == false || !victim)
  3275. return 0;
  3276. float multiplier = 0;
  3277. float zone_xp_modifier = 1; // let's be safe!!
  3278. if( GetZone()->GetXPModifier() != 0 ) {
  3279. zone_xp_modifier = GetZone()->GetXPModifier();
  3280. LogWrite(PLAYER__DEBUG, 5, "XP", "Zone XP Modifier = %.2f", zone_xp_modifier);
  3281. }
  3282. switch(GetArrowColor(victim->GetLevel())){
  3283. case ARROW_COLOR_GREEN:
  3284. multiplier = 3.25;
  3285. LogWrite(PLAYER__DEBUG, 5, "XP", "Green Arrow Multiplier = %.2f", multiplier);
  3286. break;
  3287. case ARROW_COLOR_BLUE:
  3288. multiplier = 3.5;
  3289. LogWrite(PLAYER__DEBUG, 5, "XP", "Blue Arrow Multiplier = %.2f", multiplier);
  3290. break;
  3291. case ARROW_COLOR_WHITE:
  3292. multiplier = 4;
  3293. LogWrite(PLAYER__DEBUG, 5, "XP", "White Arrow Multiplier = %.2f", multiplier);
  3294. break;
  3295. case ARROW_COLOR_YELLOW:
  3296. multiplier = 4.25;
  3297. LogWrite(PLAYER__DEBUG, 5, "XP", "Yellow Arrow Multiplier = %.2f", multiplier);
  3298. break;
  3299. case ARROW_COLOR_ORANGE:
  3300. multiplier = 4.5;
  3301. LogWrite(PLAYER__DEBUG, 5, "XP", "Orange Arrow Multiplier = %.2f", multiplier);
  3302. break;
  3303. case ARROW_COLOR_RED:
  3304. multiplier = 6;
  3305. LogWrite(PLAYER__DEBUG, 5, "XP", "Red Arrow Multiplier = %.2f", multiplier);
  3306. break;
  3307. }
  3308. float total = multiplier * 8;
  3309. LogWrite(PLAYER__DEBUG, 5, "XP", "Multiplier * 8 = %.2f", total);
  3310. if(victim->GetEncounterLevel() > 6) { // no need to multiply by 1 if this is a normal mob
  3311. total *= (victim->GetEncounterLevel() - 5);
  3312. LogWrite(PLAYER__DEBUG, 5, "XP", "Encounter > 6, total = %.2f", total);
  3313. }
  3314. else if(victim->GetEncounterLevel() <= 5) {
  3315. total /= (7 - victim->GetEncounterLevel()); //1 down mobs are worth half credit, 2 down worth .25, etc
  3316. LogWrite(PLAYER__DEBUG, 5, "XP", "Encounter <= 5, total = %.2f", total);
  3317. }
  3318. if(victim->GetHeroic() > 1) {
  3319. total *= victim->GetHeroic();
  3320. LogWrite(PLAYER__DEBUG, 5, "XP", "Heroic, total = %.2f", total);
  3321. }
  3322. if(DoubleXPEnabled()) {
  3323. LogWrite(PLAYER__DEBUG, 5, "XP", "Calculating Double XP!");
  3324. float percent = (((float)(total))/GetNeededXP()) *100;
  3325. LogWrite(PLAYER__DEBUG, 5, "XP", "Percent of total / XP Needed * 100, percent = %.2f", percent);
  3326. float xp_vitality = GetXPVitality();
  3327. if(xp_vitality >= percent) {
  3328. GetInfoStruct()->set_xp_vitality(xp_vitality - percent);
  3329. total *= 2;
  3330. LogWrite(PLAYER__DEBUG, 5, "XP", "Vitality >= Percent, total = %.2f", total);
  3331. }
  3332. else {
  3333. total += ((GetXPVitality() / percent) *2)*total;
  3334. GetInfoStruct()->set_xp_vitality(0);
  3335. LogWrite(PLAYER__DEBUG, 5, "XP", "Vitality < Percent, total = %.2f", total);
  3336. }
  3337. }
  3338. LogWrite(PLAYER__DEBUG, 5, "XP", "Final total = %.2f", (total * world.GetXPRate() * zone_xp_modifier));
  3339. return total * world.GetXPRate() * zone_xp_modifier;
  3340. }
  3341. float Player::CalculateTSXP(int8 level){
  3342. if(TradeskillXPEnabled() == false)
  3343. return 0;
  3344. float multiplier = 0;
  3345. float zone_xp_modifier = 1; // let's be safe!!
  3346. if( GetZone()->GetXPModifier() != 0 ) {
  3347. zone_xp_modifier = GetZone()->GetXPModifier();
  3348. LogWrite(PLAYER__DEBUG, 5, "XP", "Zone XP Modifier = %.2f", zone_xp_modifier);
  3349. }
  3350. sint16 diff = level - GetTSLevel();
  3351. if(GetTSLevel() < 10)
  3352. diff *= 3;
  3353. else if(GetTSLevel() <= 20)
  3354. diff *= 2;
  3355. if(diff >= 9)
  3356. multiplier = 6;
  3357. else if(diff >= 5)
  3358. multiplier = 4.5;
  3359. else if(diff >= 1)
  3360. multiplier = 4.25;
  3361. else if(diff == 0)
  3362. multiplier = 4;
  3363. else if(diff <= -11)
  3364. multiplier = 0;
  3365. else if(diff <= -6)
  3366. multiplier = 3.25;
  3367. else //if(diff < 0)
  3368. multiplier = 3.5;
  3369. float total = multiplier * 8;
  3370. LogWrite(PLAYER__DEBUG, 5, "XP", "Multiplier * 8 = %.2f", total);
  3371. if(DoubleXPEnabled()) {
  3372. LogWrite(PLAYER__DEBUG, 5, "XP", "Calculating Double XP!");
  3373. float percent = (((float)(total))/GetNeededTSXP()) *100;
  3374. LogWrite(PLAYER__DEBUG, 5, "XP", "Percent of total / XP Needed * 100, percent = %.2f", percent);
  3375. float ts_xp_vitality = GetTSXPVitality();
  3376. if(ts_xp_vitality >= percent) {
  3377. GetInfoStruct()->set_tradeskill_xp_vitality(ts_xp_vitality - percent);
  3378. total *= 2;
  3379. LogWrite(PLAYER__DEBUG, 5, "XP", "Vitality >= Percent, total = %.2f", total);
  3380. }
  3381. else {
  3382. total += ((GetTSXPVitality() / percent) *2)*total;
  3383. GetInfoStruct()->set_tradeskill_xp_vitality(0);
  3384. LogWrite(PLAYER__DEBUG, 5, "XP", "Vitality < Percent, total = %.2f", total);
  3385. }
  3386. }
  3387. LogWrite(PLAYER__DEBUG, 5, "XP", "Final total = %.2f", (total * world.GetXPRate() * zone_xp_modifier));
  3388. return total * world.GetXPRate() * zone_xp_modifier;
  3389. }
  3390. void Player::SetNeededXP(int32 val){
  3391. GetInfoStruct()->set_xp_needed(val);
  3392. }
  3393. void Player::SetNeededXP(){
  3394. //GetInfoStruct()->xp_needed = GetLevel() * 100;
  3395. // Get xp needed to get to the next level
  3396. int16 level = GetLevel() + 1;
  3397. // If next level is beyond what we have in the map multiply the last value we have by how many levels we are over plus one
  3398. if (level > 95)
  3399. SetNeededXP(m_levelXPReq[95] * ((level - 95) + 1));
  3400. else
  3401. SetNeededXP(m_levelXPReq[level]);
  3402. }
  3403. void Player::SetXP(int32 val){
  3404. GetInfoStruct()->set_xp(val);
  3405. }
  3406. void Player::SetNeededTSXP(int32 val) {
  3407. GetInfoStruct()->set_ts_xp_needed(val);
  3408. }
  3409. void Player::SetNeededTSXP() {
  3410. GetInfoStruct()->set_ts_xp_needed(GetTSLevel() * 100);
  3411. }
  3412. void Player::SetTSXP(int32 val) {
  3413. GetInfoStruct()->set_ts_xp(val);
  3414. }
  3415. int32 Player::GetXPDebt(){
  3416. return GetInfoStruct()->get_xp_debt();
  3417. }
  3418. int32 Player::GetNeededXP(){
  3419. return GetInfoStruct()->get_xp_needed();
  3420. }
  3421. int32 Player::GetXP(){
  3422. return GetInfoStruct()->get_xp();
  3423. }
  3424. int32 Player::GetNeededTSXP() {
  3425. return GetInfoStruct()->get_ts_xp_needed();
  3426. }
  3427. int32 Player::GetTSXP() {
  3428. return GetInfoStruct()->get_ts_xp();
  3429. }
  3430. bool Player::AddXP(int32 xp_amount){
  3431. xp_amount += ((xp_amount) * stats[ITEM_STAT_COMBATEXPMOD]) / 100;
  3432. float current_xp_percent = ((float)GetXP()/(float)GetNeededXP())*100;
  3433. float miniding_min_percent = ((int)(current_xp_percent/10)+1)*10;
  3434. while((xp_amount + GetXP()) >= GetNeededXP()){
  3435. if (!CheckLevelStatus(GetLevel() + 1)) {
  3436. GetZone()->GetClientBySpawn(this)->SimpleMessage(CHANNEL_COLOR_RED, "You do not have the required status to level up anymore!");
  3437. return false;
  3438. }
  3439. xp_amount -= GetNeededXP() - GetXP();
  3440. SetLevel(GetLevel() + 1);
  3441. }
  3442. SetXP(GetXP() + xp_amount);
  3443. GetPlayerInfo()->CalculateXPPercentages();
  3444. current_xp_percent = ((float)GetXP()/(float)GetNeededXP())*100;
  3445. if(current_xp_percent >= miniding_min_percent){
  3446. SetHP(GetTotalHP());
  3447. SetPower(GetTotalPower());
  3448. GetZone()->SendCastSpellPacket(332, this, this); //send mini level up spell effect
  3449. }
  3450. return true;
  3451. }
  3452. bool Player::AddTSXP(int32 xp_amount){
  3453. xp_amount += ((xp_amount)*stats[ITEM_STAT_TRADESKILLEXPMOD]) / 100;
  3454. float current_xp_percent = ((float)GetTSXP()/(float)GetNeededTSXP())*100;
  3455. float miniding_min_percent = ((int)(current_xp_percent/10)+1)*10;
  3456. while((xp_amount + GetTSXP()) >= GetNeededTSXP()){
  3457. if (!CheckLevelStatus(GetTSLevel() + 1)) {
  3458. GetZone()->GetClientBySpawn(this)->SimpleMessage(CHANNEL_COLOR_RED, "You do not have the required status to level up anymore!");
  3459. return false;
  3460. }
  3461. xp_amount -= GetNeededTSXP() - GetTSXP();
  3462. SetTSLevel(GetTSLevel() + 1);
  3463. SetTSXP(0);
  3464. SetNeededTSXP();
  3465. }
  3466. SetTSXP(GetTSXP() + xp_amount);
  3467. GetPlayerInfo()->CalculateXPPercentages();
  3468. current_xp_percent = ((float)GetTSXP()/(float)GetNeededTSXP())*100;
  3469. if(current_xp_percent >= miniding_min_percent){
  3470. SetHP(GetTotalHP());
  3471. SetPower(GetTotalPower());
  3472. }
  3473. if (GetTradeskillClass() == 0){
  3474. SetTradeskillClass(1);
  3475. GetInfoStruct()->set_tradeskill_class1(1);
  3476. GetInfoStruct()->set_tradeskill_class2(1);
  3477. GetInfoStruct()->set_tradeskill_class3(1);
  3478. }
  3479. return true;
  3480. }
  3481. void Player::CalculateLocation(){
  3482. if(GetSpeed() > 0 ){
  3483. if(GetHeading() >= 270 && GetHeading() <= 360){
  3484. SetX(GetX() + (GetSpeed()*.5)*((360-GetHeading())/90));
  3485. SetZ(GetZ() - (GetSpeed()*.5)*((GetHeading()-270)/90));
  3486. }
  3487. else if(GetHeading() >= 180 && GetHeading() < 270){
  3488. SetX(GetX() + (GetSpeed()*.5)*((GetHeading()-180)/90));
  3489. SetZ(GetZ() + (GetSpeed()*.5)*((270-GetHeading())/90));
  3490. }
  3491. else if(GetHeading() >= 90 && GetHeading() < 180){
  3492. SetX(GetX() - (GetSpeed()*.5)*((180-GetHeading())/90));
  3493. SetZ(GetZ() + (GetSpeed()*.5)*((GetHeading()-90)/90));
  3494. }
  3495. else if(GetHeading() >= 0 && GetHeading() < 90){
  3496. SetX(GetX() - (GetSpeed()*.5)*(GetHeading()/90));
  3497. SetZ(GetZ() - (GetSpeed()*.5)*((90-GetHeading())/90));
  3498. }
  3499. }
  3500. }
  3501. Spawn* Player::GetSpawnByIndex(int16 index){
  3502. Spawn* spawn = 0;
  3503. index_mutex.readlock(__FUNCTION__, __LINE__);
  3504. if(player_spawn_map.count(index) > 0)
  3505. spawn = player_spawn_map[index];
  3506. index_mutex.releasereadlock(__FUNCTION__, __LINE__);
  3507. return spawn;
  3508. }
  3509. int16 Player::GetIndexForSpawn(Spawn* spawn) {
  3510. int16 val = 0;
  3511. index_mutex.readlock(__FUNCTION__, __LINE__);
  3512. if(player_spawn_index_map.count(spawn) > 0)
  3513. val = player_spawn_index_map[spawn];
  3514. index_mutex.releasereadlock(__FUNCTION__, __LINE__);
  3515. return val;
  3516. }
  3517. bool Player::WasSpawnRemoved(Spawn* spawn){
  3518. bool wasRemoved = false;
  3519. index_mutex.readlock(__FUNCTION__, __LINE__);
  3520. if(player_removed_spawns.count(spawn) > 0)
  3521. wasRemoved = true;
  3522. index_mutex.releasereadlock(__FUNCTION__, __LINE__);
  3523. return wasRemoved;
  3524. }
  3525. void Player::RemoveSpawn(Spawn* spawn)
  3526. {
  3527. LogWrite(PLAYER__DEBUG, 3, "Player", "Remove Spawn '%s' (%u)", spawn->GetName(), spawn->GetID());
  3528. info_mutex.writelock(__FUNCTION__, __LINE__);
  3529. pos_mutex.writelock(__FUNCTION__, __LINE__);
  3530. vis_mutex.writelock(__FUNCTION__, __LINE__);
  3531. index_mutex.writelock(__FUNCTION__, __LINE__);
  3532. player_removed_spawns[spawn] = 1;
  3533. if (player_spawn_index_map[spawn] && player_spawn_map.count(player_spawn_index_map[spawn]) > 0)
  3534. player_spawn_map.erase(player_spawn_index_map[spawn]);
  3535. if (player_spawn_index_map.count(spawn) > 0)
  3536. player_spawn_index_map.erase(spawn);
  3537. if (player_spawn_id_map.count(spawn->GetID()) && player_spawn_id_map[spawn->GetID()] == spawn)
  3538. player_spawn_id_map.erase(spawn->GetID());
  3539. if (player_spawn_reverse_id_map.count(spawn))
  3540. player_spawn_reverse_id_map.erase(spawn);
  3541. int32 id = spawn->GetID();
  3542. if (spawn_info_packet_list.count(id))
  3543. spawn_info_packet_list.erase(id);
  3544. if (spawn_pos_packet_list.count(id))
  3545. spawn_pos_packet_list.erase(id);
  3546. if (spawn_vis_packet_list.count(id))
  3547. spawn_vis_packet_list.erase(id);
  3548. index_mutex.releasewritelock(__FUNCTION__, __LINE__);
  3549. info_mutex.releasewritelock(__FUNCTION__, __LINE__);
  3550. pos_mutex.releasewritelock(__FUNCTION__, __LINE__);
  3551. vis_mutex.releasewritelock(__FUNCTION__, __LINE__);
  3552. }
  3553. vector<int32> Player::GetQuestIDs(){
  3554. vector<int32> ret;
  3555. map<int32, Quest*>::iterator itr;
  3556. MPlayerQuests.lock();
  3557. for(itr = player_quests.begin(); itr != player_quests.end(); itr++){
  3558. if(itr->second)
  3559. ret.push_back(itr->second->GetQuestID());
  3560. }
  3561. MPlayerQuests.unlock();
  3562. return ret;
  3563. }
  3564. vector<Quest*>* Player::CheckQuestsItemUpdate(Item* item){
  3565. vector<Quest*>* quest_updates = 0;
  3566. map<int32, Quest*>::iterator itr;
  3567. MPlayerQuests.lock();
  3568. for(itr = player_quests.begin(); itr != player_quests.end(); itr++){
  3569. if(itr->second && itr->second->CheckQuestItemUpdate(item->details.item_id, item->details.count)){
  3570. if(!quest_updates)
  3571. quest_updates = new vector<Quest*>();
  3572. quest_updates->push_back(itr->second);
  3573. }
  3574. }
  3575. MPlayerQuests.unlock();
  3576. return quest_updates;
  3577. }
  3578. void Player::CheckQuestsCraftUpdate(Item* item, int32 qty){
  3579. map<int32, Quest*>::iterator itr;
  3580. vector<Quest*>* update_list = new vector<Quest*>;
  3581. MPlayerQuests.lock();
  3582. for(itr = player_quests.begin(); itr != player_quests.end(); itr++){
  3583. if(itr->second){
  3584. if(item && qty > 0){
  3585. if(itr->second->CheckQuestCraftUpdate(item->details.item_id, qty)){
  3586. update_list->push_back(itr->second);
  3587. }
  3588. }
  3589. }
  3590. }
  3591. MPlayerQuests.unlock();
  3592. if(update_list && update_list->size() > 0){
  3593. Client* client = GetZone()->GetClientBySpawn(this);
  3594. if(client){
  3595. for(int8 i=0;i<update_list->size(); i++){
  3596. client->SendQuestUpdate(update_list->at(i));
  3597. client->SendQuestFailure(update_list->at(i));
  3598. }
  3599. }
  3600. }
  3601. update_list->clear();
  3602. safe_delete(update_list);
  3603. }
  3604. void Player::CheckQuestsHarvestUpdate(Item* item, int32 qty){
  3605. map<int32, Quest*>::iterator itr;
  3606. vector<Quest*>* update_list = new vector<Quest*>;
  3607. MPlayerQuests.lock();
  3608. for(itr = player_quests.begin(); itr != player_quests.end(); itr++){
  3609. if(itr->second){
  3610. if(item && qty > 0){
  3611. if(itr->second->CheckQuestHarvestUpdate(item->details.item_id, qty)){
  3612. update_list->push_back(itr->second);
  3613. }
  3614. }
  3615. }
  3616. }
  3617. MPlayerQuests.unlock();
  3618. if(update_list && update_list->size() > 0){
  3619. Client* client = GetZone()->GetClientBySpawn(this);
  3620. if(client){
  3621. for(int8 i=0;i<update_list->size(); i++){
  3622. client->SendQuestUpdate(update_list->at(i));
  3623. client->SendQuestFailure(update_list->at(i));
  3624. }
  3625. }
  3626. }
  3627. update_list->clear();
  3628. safe_delete(update_list);
  3629. }
  3630. vector<Quest*>* Player::CheckQuestsSpellUpdate(Spell* spell) {
  3631. vector<Quest*>* quest_updates = 0;
  3632. map<int32, Quest*>::iterator itr;
  3633. MPlayerQuests.lock();
  3634. for (itr = player_quests.begin(); itr != player_quests.end(); itr++){
  3635. if (itr->second && itr->second->CheckQuestSpellUpdate(spell)) {
  3636. if (!quest_updates)
  3637. quest_updates = new vector<Quest*>();
  3638. quest_updates->push_back(itr->second);
  3639. }
  3640. }
  3641. MPlayerQuests.unlock();
  3642. return quest_updates;
  3643. }
  3644. PacketStruct* Player::GetQuestJournalPacket(bool all_quests, int16 version, int32 crc, int32 current_quest_id, bool updated){
  3645. PacketStruct* packet = configReader.getStruct("WS_QuestJournalUpdate", version);
  3646. Quest* quest = 0;
  3647. if(packet){
  3648. int16 total_quests_num = 0;
  3649. int16 total_completed_quests = 0;
  3650. map<int32, Quest*> total_quests = player_quests;
  3651. if(all_quests && completed_quests.size() > 0)
  3652. total_quests.insert(completed_quests.begin(), completed_quests.end());
  3653. MPlayerQuests.lock();
  3654. if(total_quests.size() > 0){
  3655. map<string, int16> quest_types;
  3656. map<int32, Quest*>::iterator itr;
  3657. int16 zone_id = 0;
  3658. for(itr = total_quests.begin(); itr != total_quests.end(); itr++){
  3659. if(itr->first && itr->second){
  3660. if(current_quest_id == 0 && itr->second->GetTurnedIn() == false)
  3661. current_quest_id = itr->first;
  3662. if(itr->second->GetTurnedIn())
  3663. total_completed_quests++;
  3664. if(itr->second->GetType()){
  3665. if(quest_types.count(itr->second->GetType()) == 0){
  3666. quest_types[itr->second->GetType()] = zone_id;
  3667. zone_id++;
  3668. }
  3669. }
  3670. if(itr->second->GetZone()){
  3671. if(quest_types.count(itr->second->GetType()) == 0){
  3672. quest_types[itr->second->GetType()] = zone_id;
  3673. zone_id++;
  3674. }
  3675. }
  3676. total_quests_num++;
  3677. }
  3678. else
  3679. continue;
  3680. }
  3681. packet->setArrayLengthByName("num_quests", total_quests_num);
  3682. int16 i = 0;
  3683. for(itr = total_quests.begin(); itr != total_quests.end(); itr++){
  3684. if(i == 0 && quest_types.size() > 0){
  3685. packet->setArrayLengthByName("num_quest_zones", quest_types.size());
  3686. map<string, int16>::iterator type_itr;
  3687. int16 x = 0;
  3688. for(type_itr = quest_types.begin(); type_itr != quest_types.end(); type_itr++){
  3689. packet->setArrayDataByName("quest_zones_zone", type_itr->first.c_str(), x);
  3690. packet->setArrayDataByName("quest_zones_zone_id", type_itr->second, x);
  3691. x++;
  3692. }
  3693. }
  3694. if(itr->first == 0 || !itr->second)
  3695. continue;
  3696. if(!all_quests && !itr->second->GetUpdateRequired())
  3697. continue;
  3698. quest = itr->second;
  3699. if(!quest->GetDeleted())
  3700. packet->setArrayDataByName("active", 1, i);
  3701. packet->setArrayDataByName("name", quest->GetName(), i);
  3702. packet->setArrayDataByName("quest_type", quest->GetType(), i);
  3703. packet->setArrayDataByName("quest_zone", quest->GetZone(), i);
  3704. int8 display_status = QUEST_DISPLAY_STATUS_NORMAL;
  3705. if(itr->second->GetCompleted())
  3706. packet->setArrayDataByName("completed", 1, i);
  3707. if(itr->second->GetTurnedIn()){
  3708. packet->setArrayDataByName("turned_in", 1, i);
  3709. packet->setArrayDataByName("completed", 1, i);
  3710. packet->setArrayDataByName("visible", 1, i);
  3711. display_status += QUEST_DISPLAY_STATUS_COMPLETED;
  3712. }
  3713. if (updated) {
  3714. packet->setArrayDataByName("quest_updated", 1, i);
  3715. packet->setArrayDataByName("journal_updated", 1, i);
  3716. }
  3717. packet->setArrayDataByName("quest_id", quest->GetQuestID(), i);
  3718. packet->setArrayDataByName("day", quest->GetDay(), i);
  3719. packet->setArrayDataByName("month", quest->GetMonth(), i);
  3720. packet->setArrayDataByName("year", quest->GetYear(), i);
  3721. packet->setArrayDataByName("level", quest->GetQuestLevel(), i);
  3722. int8 difficulty = 0;
  3723. string category = quest->GetType();
  3724. if(category == "Tradeskill")
  3725. difficulty = GetTSArrowColor(quest->GetQuestLevel());
  3726. else
  3727. difficulty = GetArrowColor(quest->GetQuestLevel());
  3728. packet->setArrayDataByName("difficulty", difficulty, i);
  3729. if (itr->second->GetEncounterLevel() > 4)
  3730. packet->setArrayDataByName("encounter_level", quest->GetEncounterLevel(), i);
  3731. else
  3732. packet->setArrayDataByName("encounter_level", 4, i);
  3733. if(version >= 931 && quest_types.count(quest->GetType()) > 0)
  3734. packet->setArrayDataByName("zonetype_id", quest_types[quest->GetType()], i);
  3735. if(version >= 931 && quest_types.count(quest->GetZone()) > 0)
  3736. packet->setArrayDataByName("zone_id", quest_types[quest->GetZone()], i);
  3737. if(version >= 931 && quest->GetVisible()){
  3738. if (quest->GetCompletedFlag())
  3739. display_status += QUEST_DISPLAY_STATUS_COMPLETE_FLAG;
  3740. else if (quest->IsRepeatable())
  3741. display_status += QUEST_DISPLAY_STATUS_REPEATABLE;
  3742. if (quest->GetYellowName() || quest->CheckCategoryYellow())
  3743. display_status += QUEST_DISPLAY_STATUS_YELLOW;
  3744. if (quest->IsTracked())
  3745. display_status += QUEST_DISPLAY_STATUS_CHECK;
  3746. else
  3747. display_status += QUEST_DISPLAY_STATUS_NO_CHECK;
  3748. if (quest->IsHidden() && !quest->GetTurnedIn())
  3749. display_status = QUEST_DISPLAY_STATUS_HIDDEN;
  3750. }
  3751. else
  3752. packet->setArrayDataByName("visible", quest->GetVisible(), i);
  3753. if (itr->second->IsRepeatable())
  3754. packet->setArrayDataByName("repeatable", 1, i);
  3755. packet->setArrayDataByName("display_status", display_status, i);
  3756. i++;
  3757. }
  3758. //packet->setDataByName("unknown4", 0);
  3759. packet->setDataByName("visible_quest_id", current_quest_id);
  3760. }
  3761. MPlayerQuests.unlock();
  3762. packet->setDataByName("player_crc", crc);
  3763. packet->setDataByName("player_name", GetName());
  3764. packet->setDataByName("used_quests", total_quests_num - total_completed_quests);
  3765. packet->setDataByName("max_quests", 75);
  3766. LogWrite(PLAYER__PACKET, 0, "Player", "Dump/Print Packet in func: %s, line: %i", __FUNCTION__, __LINE__);
  3767. #if EQDEBUG >= 9
  3768. packet->PrintPacket();
  3769. #endif
  3770. }
  3771. return packet;
  3772. }
  3773. PacketStruct* Player::GetQuestJournalPacket(Quest* quest, int16 version, int32 crc, bool updated) {
  3774. if (!quest)
  3775. return 0;
  3776. PacketStruct* packet = configReader.getStruct("WS_QuestJournalUpdate", version);
  3777. if (packet) {
  3778. packet->setArrayLengthByName("num_quests", 1);
  3779. packet->setArrayLengthByName("num_quest_zones", 1);
  3780. packet->setArrayDataByName("quest_zones_zone", quest->GetType());
  3781. packet->setArrayDataByName("quest_zones_zone_id", 0);
  3782. if(!quest->GetDeleted() && !quest->GetCompleted())
  3783. packet->setArrayDataByName("active", 1);
  3784. packet->setArrayDataByName("name", quest->GetName());
  3785. // don't see these two in the struct
  3786. packet->setArrayDataByName("quest_type", quest->GetType());
  3787. packet->setArrayDataByName("quest_zone", quest->GetZone());
  3788. int8 display_status = QUEST_DISPLAY_STATUS_NORMAL;
  3789. if(quest->GetCompleted())
  3790. packet->setArrayDataByName("completed", 1);
  3791. if(quest->GetTurnedIn()) {
  3792. packet->setArrayDataByName("turned_in", 1);
  3793. packet->setArrayDataByName("completed", 1);
  3794. display_status += QUEST_DISPLAY_STATUS_COMPLETED;
  3795. }
  3796. packet->setArrayDataByName("quest_id", quest->GetQuestID());
  3797. packet->setArrayDataByName("day", quest->GetDay());
  3798. packet->setArrayDataByName("month", quest->GetMonth());
  3799. packet->setArrayDataByName("year", quest->GetYear());
  3800. packet->setArrayDataByName("level", quest->GetQuestLevel());
  3801. int8 difficulty = 0;
  3802. string category = quest->GetType();
  3803. if(category == "Tradeskill")
  3804. difficulty = GetTSArrowColor(quest->GetQuestLevel());
  3805. else
  3806. difficulty = GetArrowColor(quest->GetQuestLevel());
  3807. packet->setArrayDataByName("difficulty", difficulty);
  3808. if (quest->GetEncounterLevel() > 4)
  3809. packet->setArrayDataByName("encounter_level", quest->GetEncounterLevel());
  3810. else
  3811. packet->setArrayDataByName("encounter_level", 4);
  3812. if (version >= 931) {
  3813. packet->setArrayDataByName("zonetype_id", 0);
  3814. packet->setArrayDataByName("zone_id", 0);
  3815. }
  3816. if(version >= 931 && quest->GetVisible()){
  3817. if (quest->GetCompletedFlag())
  3818. display_status += QUEST_DISPLAY_STATUS_COMPLETE_FLAG;
  3819. else if (quest->IsRepeatable())
  3820. display_status += QUEST_DISPLAY_STATUS_REPEATABLE;
  3821. if (quest->GetYellowName() || quest->CheckCategoryYellow())
  3822. display_status += QUEST_DISPLAY_STATUS_YELLOW;
  3823. if (quest->IsTracked())
  3824. display_status += QUEST_DISPLAY_STATUS_CHECK;
  3825. else
  3826. display_status += QUEST_DISPLAY_STATUS_NO_CHECK;
  3827. if (quest->IsHidden() && !quest->GetTurnedIn())
  3828. display_status = QUEST_DISPLAY_STATUS_HIDDEN;
  3829. }
  3830. else
  3831. packet->setArrayDataByName("visible", quest->GetVisible());
  3832. if (quest->IsRepeatable())
  3833. packet->setArrayDataByName("repeatable", 1);
  3834. packet->setArrayDataByName("display_status", display_status);
  3835. if (updated) {
  3836. packet->setArrayDataByName("quest_updated", 1);
  3837. packet->setArrayDataByName("journal_updated", 1);
  3838. }
  3839. packet->setDataByName("visible_quest_id", quest->GetQuestID());
  3840. packet->setDataByName("player_crc", crc);
  3841. packet->setDataByName("player_name", GetName());
  3842. packet->setDataByName("used_quests", player_quests.size());
  3843. packet->setDataByName("unknown4a", 1);
  3844. packet->setDataByName("max_quests", 75);
  3845. }
  3846. return packet;
  3847. }
  3848. Quest* Player::SetStepComplete(int32 id, int32 step){
  3849. Quest* ret = 0;
  3850. MPlayerQuests.lock();
  3851. if(player_quests.count(id) > 0){
  3852. if(player_quests[id]->SetStepComplete(step))
  3853. ret = player_quests[id];
  3854. }
  3855. MPlayerQuests.unlock();
  3856. return ret;
  3857. }
  3858. Quest* Player::AddStepProgress(int32 quest_id, int32 step, int32 progress) {
  3859. Quest* ret = 0;
  3860. MPlayerQuests.lock();
  3861. if (player_quests.count(quest_id) > 0) {
  3862. if (player_quests[quest_id]->AddStepProgress(step, progress))
  3863. ret = player_quests[quest_id];
  3864. }
  3865. MPlayerQuests.unlock();
  3866. return ret;
  3867. }
  3868. int32 Player::GetStepProgress(int32 quest_id, int32 step_id) {
  3869. int32 ret = 0;
  3870. MPlayerQuests.lock();
  3871. if (player_quests.count(quest_id) > 0)
  3872. ret = player_quests[quest_id]->GetStepProgress(step_id);
  3873. MPlayerQuests.unlock();
  3874. return ret;
  3875. }
  3876. void Player::RemoveQuest(int32 id, bool delete_quest){
  3877. MPlayerQuests.lock();
  3878. if(delete_quest){
  3879. safe_delete(player_quests[id]);
  3880. }
  3881. player_quests.erase(id);
  3882. MPlayerQuests.unlock();
  3883. SendQuestRequiredSpawns(id);
  3884. }
  3885. vector<Quest*>* Player::CheckQuestsLocationUpdate(){
  3886. vector<Quest*>* quest_updates = 0;
  3887. map<int32, Quest*>::iterator itr;
  3888. MPlayerQuests.lock();
  3889. for(itr = player_quests.begin(); itr != player_quests.end(); itr++){
  3890. if(itr->second && itr->second->CheckQuestLocationUpdate(GetX(), GetY(), GetZ())){
  3891. if(!quest_updates)
  3892. quest_updates = new vector<Quest*>();
  3893. quest_updates->push_back(itr->second);
  3894. }
  3895. }
  3896. MPlayerQuests.unlock();
  3897. return quest_updates;
  3898. }
  3899. vector<Quest*>* Player::CheckQuestsFailures(){
  3900. vector<Quest*>* quest_failures = 0;
  3901. map<int32, Quest*>::iterator itr;
  3902. MPlayerQuests.lock();
  3903. for(itr = player_quests.begin(); itr != player_quests.end(); itr++){
  3904. if(itr->second && itr->second->GetQuestFailures()->size() > 0){
  3905. if(!quest_failures)
  3906. quest_failures = new vector<Quest*>();
  3907. quest_failures->push_back(itr->second);
  3908. }
  3909. }
  3910. MPlayerQuests.unlock();
  3911. return quest_failures;
  3912. }
  3913. vector<Quest*>* Player::CheckQuestsKillUpdate(Spawn* spawn, bool update){
  3914. vector<Quest*>* quest_updates = 0;
  3915. map<int32, Quest*>::iterator itr;
  3916. MPlayerQuests.lock();
  3917. for(itr = player_quests.begin(); itr != player_quests.end(); itr++){
  3918. if(itr->second && itr->second->CheckQuestKillUpdate(spawn, update)){
  3919. if(!quest_updates)
  3920. quest_updates = new vector<Quest*>();
  3921. quest_updates->push_back(itr->second);
  3922. }
  3923. }
  3924. MPlayerQuests.unlock();
  3925. return quest_updates;
  3926. }
  3927. vector<Quest*>* Player::CheckQuestsChatUpdate(Spawn* spawn){
  3928. vector<Quest*>* quest_updates = 0;
  3929. map<int32, Quest*>::iterator itr;
  3930. MPlayerQuests.lock();
  3931. for(itr = player_quests.begin(); itr != player_quests.end(); itr++){
  3932. if(itr->second && itr->second->CheckQuestChatUpdate(spawn->GetDatabaseID())){
  3933. if(!quest_updates)
  3934. quest_updates = new vector<Quest*>();
  3935. quest_updates->push_back(itr->second);
  3936. }
  3937. }
  3938. MPlayerQuests.unlock();
  3939. return quest_updates;
  3940. }
  3941. int16 Player::GetTaskGroupStep(int32 quest_id){
  3942. Quest* quest = 0;
  3943. int16 step = 0;
  3944. MPlayerQuests.lock();
  3945. if(player_quests.count(quest_id) > 0){
  3946. quest = player_quests[quest_id];
  3947. step = quest->GetTaskGroupStep();
  3948. }
  3949. MPlayerQuests.unlock();
  3950. return step;
  3951. }
  3952. bool Player::GetQuestStepComplete(int32 quest_id, int32 step_id){
  3953. bool ret = false;
  3954. MPlayerQuests.lock();
  3955. if(player_quests.count(quest_id) > 0){
  3956. Quest* quest = player_quests[quest_id];
  3957. if ( quest != NULL )
  3958. ret = quest->GetQuestStepCompleted(step_id);
  3959. }
  3960. MPlayerQuests.unlock();
  3961. return ret;
  3962. }
  3963. int16 Player::GetQuestStep(int32 quest_id){
  3964. Quest* quest = 0;
  3965. int16 step = 0;
  3966. MPlayerQuests.lock();
  3967. if(player_quests.count(quest_id) > 0){
  3968. quest = player_quests[quest_id];
  3969. step = quest->GetQuestStep();
  3970. }
  3971. MPlayerQuests.unlock();
  3972. return step;
  3973. }
  3974. void Player::LockQuests(){
  3975. MPlayerQuests.lock();
  3976. }
  3977. void Player::UnlockQuests(){
  3978. MPlayerQuests.unlock();
  3979. }
  3980. map<int32, Quest*>* Player::GetPlayerQuests(){
  3981. return &player_quests;
  3982. }
  3983. map<int32, Quest*>* Player::GetCompletedPlayerQuests(){
  3984. return &completed_quests;
  3985. }
  3986. Quest* Player::GetCompletedQuest(int32 quest_id){
  3987. if(completed_quests.count(quest_id) > 0)
  3988. return completed_quests[quest_id];
  3989. return 0;
  3990. }
  3991. Quest* Player::GetQuest(int32 quest_id){
  3992. if(player_quests.count(quest_id) > 0)
  3993. return player_quests[quest_id];
  3994. return 0;
  3995. }
  3996. void Player::AddCompletedQuest(Quest* quest){
  3997. completed_quests[quest->GetQuestID()] = quest;
  3998. quest->SetSaveNeeded(true);
  3999. quest->SetTurnedIn(true);
  4000. if(quest->GetCompletedDescription())
  4001. quest->SetDescription(string(quest->GetCompletedDescription()));
  4002. quest->SetUpdateRequired(true);
  4003. }
  4004. bool Player::CheckQuestRemoveFlag(Spawn* spawn){
  4005. if(current_quest_flagged.count(spawn) > 0){
  4006. current_quest_flagged.erase(spawn);
  4007. return true;
  4008. }
  4009. return false;
  4010. }
  4011. bool Player::CheckQuestRequired(Spawn* spawn){
  4012. if(spawn)
  4013. return spawn->MeetsSpawnAccessRequirements(this);
  4014. return false;
  4015. }
  4016. int8 Player::CheckQuestFlag(Spawn* spawn){
  4017. int8 ret = 0;
  4018. if (!spawn) {
  4019. LogWrite(PLAYER__ERROR, 0, "Player", "CheckQuestFlag() called with an invalid spawn");
  4020. return ret;
  4021. }
  4022. if(spawn->HasProvidedQuests()){
  4023. vector<int32>* quests = spawn->GetProvidedQuests();
  4024. Quest* quest = 0;
  4025. for(int32 i=0;i<quests->size();i++){
  4026. MPlayerQuests.lock();
  4027. if(player_quests.count(quests->at(i)) > 0){
  4028. if(player_quests[quests->at(i)]->GetCompleted() && player_quests[quests->at(i)]->GetQuestReturnNPC() == spawn->GetDatabaseID()){
  4029. ret = 2;
  4030. MPlayerQuests.unlock();
  4031. break;
  4032. }
  4033. }
  4034. MPlayerQuests.unlock();
  4035. if (CanReceiveQuest(quests->at(i))){
  4036. MPlayerQuests.lock();
  4037. quest = master_quest_list.GetQuest(quests->at(i), false);
  4038. MPlayerQuests.unlock();
  4039. if(quest){
  4040. int8 color = quest->GetFeatherColor();
  4041. // purple
  4042. if (color == 1)
  4043. ret = 16;
  4044. // green
  4045. else if (color == 2)
  4046. ret = 32;
  4047. // blue
  4048. else if (color == 3)
  4049. ret = 64;
  4050. // normal
  4051. else
  4052. ret = 1;
  4053. break;
  4054. }
  4055. }
  4056. }
  4057. }
  4058. map<int32, Quest*>::iterator itr;
  4059. MPlayerQuests.lock();
  4060. for(itr = player_quests.begin(); itr != player_quests.end(); itr++){
  4061. if(itr->second->CheckQuestChatUpdate(spawn->GetDatabaseID(), false))
  4062. ret = 2;
  4063. }
  4064. MPlayerQuests.unlock();
  4065. if(ret > 0)
  4066. current_quest_flagged[spawn] = true;
  4067. return ret;
  4068. }
  4069. bool Player::CanReceiveQuest(int32 quest_id){
  4070. bool passed = true;
  4071. int32 x;
  4072. MPlayerQuests.lock();
  4073. Quest* quest = master_quest_list.GetQuest(quest_id, false);
  4074. MPlayerQuests.unlock();
  4075. if (!quest)
  4076. passed = false;
  4077. //check if quest is already completed, and not repeatable
  4078. else if (GetCompletedQuest(quest_id) && !quest->IsRepeatable())
  4079. passed = false;
  4080. //check if the player already has this quest
  4081. else if (player_quests.count(quest_id) > 0)
  4082. passed = false;
  4083. //Check Prereq Adv Levels
  4084. else if (quest->GetPrereqLevel() > GetLevel())
  4085. passed = false;
  4086. else if (quest->GetPrereqMaxLevel() > 0){
  4087. if (GetLevel() > quest->GetPrereqMaxLevel())
  4088. passed = false;
  4089. }
  4090. //Check Prereq TS Levels
  4091. else if (quest->GetPrereqTSLevel() > GetTSLevel())
  4092. passed = false;
  4093. else if (quest->GetPrereqMaxTSLevel() > 0){
  4094. if (GetTSLevel() > quest->GetPrereqMaxLevel())
  4095. passed = false;
  4096. }
  4097. // Check quest pre req
  4098. vector<int32>* prereq_quests = quest->GetPrereqQuests();
  4099. if(passed && prereq_quests && prereq_quests->size() > 0){
  4100. for(int32 x=0;x<prereq_quests->size();x++){
  4101. if(completed_quests.count(prereq_quests->at(x)) == 0){
  4102. passed = false;
  4103. break;
  4104. }
  4105. }
  4106. }
  4107. //Check Prereq Classes
  4108. vector<int8>* prereq_classes = quest->GetPrereqClasses();
  4109. if(passed && prereq_classes && prereq_classes->size() > 0){
  4110. for(int32 x=0;x<prereq_classes->size();x++){
  4111. if(prereq_classes->at(x) == GetAdventureClass()){
  4112. passed = true;
  4113. break;
  4114. }
  4115. else
  4116. passed = false;
  4117. }
  4118. }
  4119. //Check Prereq TS Classes
  4120. vector<int8>* prereq_tsclasses = quest->GetPrereqTradeskillClasses();
  4121. if(passed && prereq_tsclasses && prereq_tsclasses->size() > 0){
  4122. for( x=0;x<prereq_tsclasses->size();x++){
  4123. if(prereq_tsclasses->at(x) == GetTradeskillClass()){
  4124. passed = true;
  4125. break;
  4126. }
  4127. else
  4128. passed = false;
  4129. }
  4130. }
  4131. // Check model prereq
  4132. vector<int16>* prereq_model_types = quest->GetPrereqModelTypes();
  4133. if(passed && prereq_model_types && prereq_model_types->size() > 0){
  4134. for(x=0;x<prereq_model_types->size();x++){
  4135. if(prereq_model_types->at(x) == GetModelType()){
  4136. passed = true;
  4137. break;
  4138. }
  4139. else
  4140. passed = false;
  4141. }
  4142. }
  4143. // Check faction pre req
  4144. vector<QuestFactionPrereq>* prereq_factions = quest->GetPrereqFactions();
  4145. if(passed && prereq_factions && prereq_factions->size() > 0){
  4146. sint32 val = 0;
  4147. for(x=0;x<prereq_factions->size();x++){
  4148. val = GetFactions()->GetFactionValue(prereq_factions->at(x).faction_id);
  4149. if(val >= prereq_factions->at(x).min && (prereq_factions->at(x).max == 0 || val <= prereq_factions->at(x).max)){
  4150. passed = true;
  4151. break;
  4152. }
  4153. else
  4154. passed = false;
  4155. }
  4156. }
  4157. LogWrite(MISC__TODO, 1, "TODO", "Check prereq items\n\t(%s, function: %s, line #: %i)", __FILE__, __FUNCTION__, __LINE__);
  4158. // Check race pre req
  4159. vector<int8>* prereq_races = quest->GetPrereqRaces();
  4160. if(passed && prereq_races && prereq_races->size() > 0){
  4161. for(x=0;x<prereq_races->size();x++){
  4162. if(prereq_races->at(x) == GetRace()){
  4163. passed = true;
  4164. break;
  4165. }
  4166. else
  4167. passed = false;
  4168. }
  4169. }
  4170. return passed;
  4171. }
  4172. void Player::ClearRemovedSpawn(Spawn* spawn){
  4173. index_mutex.writelock(__FUNCTION__, __LINE__);
  4174. if(player_removed_spawns.count(spawn) > 0)
  4175. player_removed_spawns.erase(spawn);
  4176. index_mutex.releasewritelock(__FUNCTION__, __LINE__);
  4177. }
  4178. bool Player::ShouldSendSpawn(Spawn* spawn){
  4179. // Added a try catch to attempt to prevent a zone crash when an invalid spawn is passed to this function.
  4180. // Think invalid spawns are coming from the mutex list, if spawn is invalid return false.
  4181. try
  4182. {
  4183. if((WasSentSpawn(spawn->GetID()) == false || NeedsSpawnResent(spawn)) && (!spawn->IsPrivateSpawn() || spawn->AllowedAccess(this)))
  4184. return true;
  4185. }
  4186. catch (...)
  4187. {
  4188. LogWrite(SPAWN__ERROR, 0, "Spawn", "Invalid spawn passes to player->ShouldSendSpawn()");
  4189. }
  4190. return false;
  4191. }
  4192. int8 Player::GetArrowColor(int8 spawn_level){
  4193. int8 color = 0;
  4194. sint16 diff = spawn_level - GetLevel();
  4195. if(GetLevel() < 10)
  4196. diff *= 3;
  4197. else if(GetLevel() <= 20)
  4198. diff *= 2;
  4199. if(diff >= 9)
  4200. color = ARROW_COLOR_RED;
  4201. else if(diff >= 5)
  4202. color = ARROW_COLOR_ORANGE;
  4203. else if(diff >= 1)
  4204. color = ARROW_COLOR_YELLOW;
  4205. else if(diff == 0)
  4206. color = ARROW_COLOR_WHITE;
  4207. else if(diff <= -11)
  4208. color = ARROW_COLOR_GRAY;
  4209. else if(diff <= -6)
  4210. color = ARROW_COLOR_GREEN;
  4211. else //if(diff < 0)
  4212. color = ARROW_COLOR_BLUE;
  4213. return color;
  4214. }
  4215. int8 Player::GetTSArrowColor(int8 level){
  4216. int8 color = 0;
  4217. sint16 diff = level - GetTSLevel();
  4218. if(GetLevel() < 10)
  4219. diff *= 3;
  4220. else if(GetLevel() <= 20)
  4221. diff *= 2;
  4222. if(diff >= 9)
  4223. color = ARROW_COLOR_RED;
  4224. else if(diff >= 5)
  4225. color = ARROW_COLOR_ORANGE;
  4226. else if(diff >= 1)
  4227. color = ARROW_COLOR_YELLOW;
  4228. else if(diff == 0)
  4229. color = ARROW_COLOR_WHITE;
  4230. else if(diff <= -11)
  4231. color = ARROW_COLOR_GRAY;
  4232. else if(diff <= -6)
  4233. color = ARROW_COLOR_GREEN;
  4234. else //if(diff < 0)
  4235. color = ARROW_COLOR_BLUE;
  4236. return color;
  4237. }
  4238. void Player::AddCoins(int64 val){
  4239. int32 tmp = 0;
  4240. UpdatePlayerStatistic(STAT_PLAYER_TOTAL_WEALTH, (GetCoinsCopper() + (GetCoinsSilver() * 100) + (GetCoinsGold() * 10000) + (GetCoinsPlat() * 1000000)) + val, true);
  4241. if(val >= 1000000){
  4242. tmp = val / 1000000;
  4243. val -= tmp*1000000;
  4244. GetInfoStruct()->add_coin_plat(tmp);
  4245. }
  4246. if(val >= 10000){
  4247. tmp = val / 10000;
  4248. val -= tmp*10000;
  4249. GetInfoStruct()->add_coin_gold(tmp);
  4250. }
  4251. if(val >= 100){
  4252. tmp = val / 100;
  4253. val -= tmp*100;
  4254. GetInfoStruct()->add_coin_silver(tmp);
  4255. }
  4256. GetInfoStruct()->add_coin_copper(val);
  4257. int32 new_copper_value = GetInfoStruct()->get_coin_copper();
  4258. if(new_copper_value >= 100){
  4259. tmp = new_copper_value/100;
  4260. GetInfoStruct()->set_coin_copper(new_copper_value - (100 * tmp));
  4261. GetInfoStruct()->add_coin_silver(tmp);
  4262. }
  4263. int32 new_silver_value = GetInfoStruct()->get_coin_silver();
  4264. if(new_silver_value >= 100){
  4265. tmp = new_silver_value/100;
  4266. GetInfoStruct()->set_coin_silver(new_silver_value - (100 * tmp));
  4267. GetInfoStruct()->add_coin_gold(tmp);
  4268. }
  4269. int32 new_gold_value = GetInfoStruct()->get_coin_gold();
  4270. if(new_gold_value >= 100){
  4271. tmp = new_gold_value/100;
  4272. GetInfoStruct()->set_coin_gold(new_gold_value - (100 * tmp));
  4273. GetInfoStruct()->add_coin_plat(tmp);
  4274. }
  4275. charsheet_changed = true;
  4276. }
  4277. bool Player::RemoveCoins(int64 val){
  4278. int64 total_coins = GetInfoStruct()->get_coin_plat()*1000000;
  4279. total_coins += GetInfoStruct()->get_coin_gold()*10000;
  4280. total_coins += GetInfoStruct()->get_coin_silver()*100;
  4281. total_coins += GetInfoStruct()->get_coin_copper();
  4282. if(total_coins >= val){
  4283. total_coins -= val;
  4284. GetInfoStruct()->set_coin_plat(0);
  4285. GetInfoStruct()->set_coin_gold(0);
  4286. GetInfoStruct()->set_coin_silver(0);
  4287. GetInfoStruct()->set_coin_copper(0);
  4288. AddCoins(total_coins);
  4289. return true;
  4290. }
  4291. return false;
  4292. }
  4293. bool Player::HasCoins(int64 val) {
  4294. int64 total_coins = GetInfoStruct()->get_coin_plat()*1000000;
  4295. total_coins += GetInfoStruct()->get_coin_gold()*10000;
  4296. total_coins += GetInfoStruct()->get_coin_silver()*100;
  4297. total_coins += GetInfoStruct()->get_coin_copper();
  4298. if(total_coins >= val)
  4299. return true;
  4300. return false;
  4301. }
  4302. bool Player::HasPendingLootItems(int32 id){
  4303. return (pending_loot_items.count(id) > 0 && pending_loot_items[id].size() > 0);
  4304. }
  4305. bool Player::HasPendingLootItem(int32 id, int32 item_id){
  4306. return (pending_loot_items.count(id) > 0 && pending_loot_items[id].count(item_id) > 0);
  4307. }
  4308. vector<Item*>* Player::GetPendingLootItems(int32 id){
  4309. vector<Item*>* ret = 0;
  4310. if(pending_loot_items.count(id) > 0){
  4311. ret = new vector<Item*>();
  4312. map<int32, bool>::iterator itr;
  4313. for(itr = pending_loot_items[id].begin(); itr != pending_loot_items[id].end(); itr++){
  4314. if(master_item_list.GetItem(itr->first))
  4315. ret->push_back(master_item_list.GetItem(itr->first));
  4316. }
  4317. }
  4318. return ret;
  4319. }
  4320. void Player::RemovePendingLootItem(int32 id, int32 item_id){
  4321. if(pending_loot_items.count(id) > 0){
  4322. pending_loot_items[id].erase(item_id);
  4323. if(pending_loot_items[id].size() == 0)
  4324. pending_loot_items.erase(id);
  4325. }
  4326. }
  4327. void Player::RemovePendingLootItems(int32 id){
  4328. if(pending_loot_items.count(id) > 0)
  4329. pending_loot_items.erase(id);
  4330. }
  4331. void Player::AddPendingLootItems(int32 id, vector<Item*>* items){
  4332. if(items){
  4333. Item* item = 0;
  4334. for(int32 i=0;i<items->size();i++){
  4335. item = items->at(i);
  4336. if(item)
  4337. pending_loot_items[id][item->details.item_id] = true;
  4338. }
  4339. }
  4340. }
  4341. void Player::AddPlayerStatistic(int32 stat_id, sint32 stat_value, int32 stat_date) {
  4342. if (statistics.count(stat_id) == 0) {
  4343. Statistic* stat = new Statistic;
  4344. stat->stat_id = stat_id;
  4345. stat->stat_value = stat_value;
  4346. stat->stat_date = stat_date;
  4347. stat->save_needed = false;
  4348. statistics[stat_id] = stat;
  4349. }
  4350. }
  4351. void Player::UpdatePlayerStatistic(int32 stat_id, sint32 stat_value, bool overwrite) {
  4352. if (statistics.count(stat_id) == 0)
  4353. AddPlayerStatistic(stat_id, 0, 0);
  4354. Statistic* stat = statistics[stat_id];
  4355. overwrite == true ? stat->stat_value = stat_value : stat->stat_value += stat_value;
  4356. stat->stat_date = Timer::GetUnixTimeStamp();
  4357. stat->save_needed = true;
  4358. }
  4359. void Player::WritePlayerStatistics() {
  4360. map<int32, Statistic*>::iterator stat_itr;
  4361. for (stat_itr = statistics.begin(); stat_itr != statistics.end(); stat_itr++) {
  4362. Statistic* stat = stat_itr->second;
  4363. if (stat->save_needed) {
  4364. stat->save_needed = false;
  4365. database.WritePlayerStatistic(this, stat);
  4366. }
  4367. }
  4368. }
  4369. sint64 Player::GetPlayerStatisticValue(int32 stat_id) {
  4370. if (stat_id >= 0 && statistics.count(stat_id) > 0)
  4371. return statistics[stat_id]->stat_value;
  4372. return 0;
  4373. }
  4374. void Player::RemovePlayerStatistics() {
  4375. map<int32, Statistic*>::iterator stat_itr;
  4376. for (stat_itr = statistics.begin(); stat_itr != statistics.end(); stat_itr++)
  4377. safe_delete(stat_itr->second);
  4378. statistics.clear();
  4379. }
  4380. void Player::SetGroup(PlayerGroup* new_group){
  4381. group = new_group;
  4382. }
  4383. /*PlayerGroup* Player::GetGroup(){
  4384. return group;
  4385. }*/
  4386. bool Player::IsGroupMember(Entity* player) {
  4387. bool ret = false;
  4388. if (GetGroupMemberInfo() && player) {
  4389. //world.GetGroupManager()->GroupLock(__FUNCTION__, __LINE__);
  4390. ret = world.GetGroupManager()->IsInGroup(GetGroupMemberInfo()->group_id, player);
  4391. /*deque<GroupMemberInfo*>::iterator itr;
  4392. deque<GroupMemberInfo*>* members = world.GetGroupManager()->GetGroupMembers(GetGroupMemberInfo()->group_id);
  4393. for (itr = members->begin(); itr != members->end(); itr++) {
  4394. GroupMemberInfo* gmi = *itr;
  4395. if (gmi->client && gmi->client->GetPlayer() == player) {
  4396. ret = true;
  4397. break;
  4398. }
  4399. }
  4400. world.GetGroupManager()->ReleaseGroupLock(__FUNCTION__, __LINE__);*/
  4401. }
  4402. return ret;
  4403. }
  4404. void Player::SetGroupInformation(PacketStruct* packet){
  4405. int8 det_count = 0;
  4406. Entity* member = 0;
  4407. world.GetGroupManager()->GroupLock(__FUNCTION__, __LINE__);
  4408. if (GetGroupMemberInfo()) {
  4409. PlayerGroup* group = world.GetGroupManager()->GetGroup(GetGroupMemberInfo()->group_id);
  4410. if (group)
  4411. {
  4412. group->MGroupMembers.readlock(__FUNCTION__, __LINE__);
  4413. deque<GroupMemberInfo*>* members = group->GetMembers();
  4414. deque<GroupMemberInfo*>::iterator itr;
  4415. GroupMemberInfo* info = 0;
  4416. int x = 0;
  4417. for (itr = members->begin(); itr != members->end(); itr++) {
  4418. info = *itr;
  4419. if (info == GetGroupMemberInfo()) {
  4420. if (info->leader)
  4421. packet->setDataByName("group_leader_id", 0xFFFFFFFF); // If this player is the group leader then fill this element with FF FF FF FF
  4422. continue;
  4423. }
  4424. else {
  4425. if (info->leader)
  4426. packet->setDataByName("group_leader_id", x); // If leader is some one else then fill with the slot number they are in
  4427. }
  4428. member = info->member;
  4429. if (member && member->GetZone() == GetZone()) {
  4430. packet->setSubstructDataByName("group_members", "unknown3", 1, x);
  4431. packet->setSubstructDataByName("group_members", "spawn_id", GetIDWithPlayerSpawn(member), x);
  4432. if (member->HasPet()) {
  4433. if (member->GetPet())
  4434. packet->setSubstructDataByName("group_members", "pet_id", GetIDWithPlayerSpawn(member->GetPet()), x);
  4435. else
  4436. packet->setSubstructDataByName("group_members", "pet_id", GetIDWithPlayerSpawn(member->GetCharmedPet()), x);
  4437. }
  4438. else
  4439. packet->setSubstructDataByName("group_members", "pet_id", 0xFFFFFFFF, x);
  4440. //Send detriment counts as 255 if all dets of that type are incurable
  4441. det_count = member->GetTraumaCount();
  4442. if (det_count > 0) {
  4443. if (!member->HasCurableDetrimentType(DET_TYPE_TRAUMA))
  4444. det_count = 255;
  4445. }
  4446. packet->setSubstructDataByName("group_members", "trauma_count", det_count, x);
  4447. det_count = member->GetArcaneCount();
  4448. if (det_count > 0) {
  4449. if (!member->HasCurableDetrimentType(DET_TYPE_ARCANE))
  4450. det_count = 255;
  4451. }
  4452. packet->setSubstructDataByName("group_members", "arcane_count", det_count, x);
  4453. det_count = member->GetNoxiousCount();
  4454. if (det_count > 0) {
  4455. if (!member->HasCurableDetrimentType(DET_TYPE_NOXIOUS))
  4456. det_count = 255;
  4457. }
  4458. packet->setSubstructDataByName("group_members", "noxious_count", det_count, x);
  4459. det_count = member->GetElementalCount();
  4460. if (det_count > 0) {
  4461. if (!member->HasCurableDetrimentType(DET_TYPE_ELEMENTAL))
  4462. det_count = 255;
  4463. }
  4464. packet->setSubstructDataByName("group_members", "elemental_count", det_count, x);
  4465. det_count = member->GetCurseCount();
  4466. if (det_count > 0) {
  4467. if (!member->HasCurableDetrimentType(DET_TYPE_CURSE))
  4468. det_count = 255;
  4469. }
  4470. packet->setSubstructDataByName("group_members", "curse_count", det_count, x);
  4471. }
  4472. else {
  4473. packet->setSubstructDataByName("group_members", "unknown3", 2, x);
  4474. packet->setSubstructDataByName("group_members", "pet_id", 0xFFFFFFFF, x);
  4475. //packet->setSubstructDataByName("group_members", "unknown5", 1, x, 1); // unknown5 > 1 = name is blue
  4476. }
  4477. packet->setSubstructDataByName("group_members", "name", info->name.c_str(), x);
  4478. packet->setSubstructDataByName("group_members", "hp_current", info->hp_current, x);
  4479. packet->setSubstructDataByName("group_members", "hp_max", info->hp_max, x);
  4480. packet->setSubstructDataByName("group_members", "power_current", info->power_current, x);
  4481. packet->setSubstructDataByName("group_members", "power_max", info->power_max, x);
  4482. packet->setSubstructDataByName("group_members", "level_current", info->level_current, x);
  4483. packet->setSubstructDataByName("group_members", "level_max", info->level_max, x);
  4484. packet->setSubstructDataByName("group_members", "zone", info->zone.c_str(), x);
  4485. packet->setSubstructDataByName("group_members", "race_id", info->race_id, x);
  4486. packet->setSubstructDataByName("group_members", "class_id", info->class_id, x);
  4487. x++;
  4488. }
  4489. }
  4490. group->MGroupMembers.releasereadlock(__FUNCTION__, __LINE__);
  4491. }
  4492. //packet->PrintPacket();
  4493. world.GetGroupManager()->ReleaseGroupLock(__FUNCTION__, __LINE__);
  4494. }
  4495. PlayerItemList* Player::GetPlayerItemList(){
  4496. return &item_list;
  4497. }
  4498. void Player::ResetSavedSpawns(){
  4499. player_removed_spawns.clear();
  4500. vis_mutex.writelock(__FUNCTION__, __LINE__);
  4501. spawn_vis_packet_list.clear();
  4502. vis_mutex.releasewritelock(__FUNCTION__, __LINE__);
  4503. info_mutex.writelock(__FUNCTION__, __LINE__);
  4504. spawn_info_packet_list.clear();
  4505. info_mutex.releasewritelock(__FUNCTION__, __LINE__);
  4506. pos_mutex.writelock(__FUNCTION__, __LINE__);
  4507. spawn_pos_packet_list.clear();
  4508. pos_mutex.releasewritelock(__FUNCTION__, __LINE__);
  4509. index_mutex.writelock(__FUNCTION__, __LINE__);
  4510. player_spawn_reverse_id_map.clear();
  4511. player_spawn_id_map.clear();
  4512. player_spawn_map.clear();
  4513. player_spawn_index_map.clear();
  4514. index_mutex.releasewritelock(__FUNCTION__, __LINE__);
  4515. m_playerSpawnQuestsRequired.writelock(__FUNCTION__, __LINE__);
  4516. player_spawn_quests_required.clear();
  4517. m_playerSpawnQuestsRequired.releasewritelock(__FUNCTION__, __LINE__);
  4518. info->RemoveOldPackets();
  4519. safe_delete_array(movement_packet);
  4520. safe_delete_array(old_movement_packet);
  4521. }
  4522. void Player::SetReturningFromLD(bool val){
  4523. returning_from_ld = val;
  4524. }
  4525. bool Player::IsReturningFromLD(){
  4526. return returning_from_ld;
  4527. }
  4528. void Player::AddFriend(const char* name, bool save){
  4529. if(name){
  4530. if(save)
  4531. friend_list[name] = 1;
  4532. else
  4533. friend_list[name] = 0;
  4534. }
  4535. }
  4536. bool Player::IsFriend(const char* name){
  4537. if(name && friend_list.count(name) > 0 && friend_list[name] < 2)
  4538. return true;
  4539. return false;
  4540. }
  4541. void Player::RemoveFriend(const char* name){
  4542. if(friend_list.count(name) > 0)
  4543. friend_list[name] = 2;
  4544. }
  4545. map<string, int8>* Player::GetFriends(){
  4546. return &friend_list;
  4547. }
  4548. void Player::AddIgnore(const char* name, bool save){
  4549. if(name){
  4550. if(save)
  4551. ignore_list[name] = 1;
  4552. else
  4553. ignore_list[name] = 0;
  4554. }
  4555. }
  4556. bool Player::IsIgnored(const char* name){
  4557. if(name && ignore_list.count(name) > 0 && ignore_list[name] < 2)
  4558. return true;
  4559. return false;
  4560. }
  4561. void Player::RemoveIgnore(const char* name){
  4562. if(name && ignore_list.count(name) > 0)
  4563. ignore_list[name] = 2;
  4564. }
  4565. map<string, int8>* Player::GetIgnoredPlayers(){
  4566. return &ignore_list;
  4567. }
  4568. bool Player::CheckLevelStatus(int16 new_level) {
  4569. int16 LevelCap = rule_manager.GetGlobalRule(R_Player, MaxLevel)->GetInt16();
  4570. int16 LevelCapOverrideStatus = rule_manager.GetGlobalRule(R_Player, MaxLevelOverrideStatus)->GetInt16();
  4571. if ( (LevelCap < new_level) && (LevelCapOverrideStatus > GetZone()->GetClientBySpawn(this)->GetAdminStatus()) )
  4572. return false;
  4573. return true;
  4574. }
  4575. Skill* Player::GetSkillByName(const char* name, bool check_update){
  4576. Skill* ret = skill_list.GetSkillByName(name);
  4577. if(check_update)
  4578. skill_list.CheckSkillIncrease(ret);
  4579. return ret;
  4580. }
  4581. void Player::SetRangeAttack(bool val){
  4582. range_attack = val;
  4583. }
  4584. bool Player::GetRangeAttack(){
  4585. return range_attack;
  4586. }
  4587. bool Player::AddMail(Mail* mail) {
  4588. bool ret = false;
  4589. if (mail) {
  4590. mail_list.Put(mail->mail_id, mail);
  4591. ret = true;
  4592. }
  4593. return ret;
  4594. }
  4595. MutexMap<int32, Mail*>* Player::GetMail() {
  4596. return &mail_list;
  4597. }
  4598. Mail* Player::GetMail(int32 mail_id) {
  4599. Mail* mail = 0;
  4600. if (mail_list.count(mail_id) > 0)
  4601. mail = mail_list.Get(mail_id);
  4602. return mail;
  4603. }
  4604. void Player::DeleteMail(bool from_database) {
  4605. MutexMap<int32, Mail*>::iterator itr = mail_list.begin();
  4606. while (itr.Next())
  4607. DeleteMail(itr->first, from_database);
  4608. mail_list.clear();
  4609. }
  4610. void Player::DeleteMail(int32 mail_id, bool from_database) {
  4611. if (mail_list.count(mail_id) > 0) {
  4612. if (from_database)
  4613. database.DeletePlayerMail(mail_list.Get(mail_id));
  4614. mail_list.erase(mail_id);
  4615. }
  4616. }
  4617. ZoneServer* Player::GetGroupMemberInZone(int32 zone_id) {
  4618. //if ( GetGroup() == NULL )
  4619. return NULL;
  4620. /*GroupMemberInfo* info = 0;
  4621. for(int32 i=0;i<GetGroup()->members.size(); i++){
  4622. info = GetGroup()->members[i];
  4623. if(info == group_member_info)
  4624. continue;
  4625. // if the client exists, they are attached to a player,
  4626. // the player is currently in an instance, which has the same zone id (for that instance type)
  4627. if ( info->client != NULL && info->client->GetPlayer() != NULL &&
  4628. info->client->GetPlayer()->GetZone()->GetInstanceID() > 0 &&
  4629. info->client->GetPlayer()->GetZone()->GetZoneID() == zone_id )
  4630. {
  4631. return info->client->GetPlayer()->GetZone();
  4632. }
  4633. }
  4634. // no member is in an instance with this zone id
  4635. return NULL;*/
  4636. }
  4637. /* CharacterInstances */
  4638. CharacterInstances::CharacterInstances() {
  4639. m_instanceList.SetName("Mutex::m_instanceList");
  4640. }
  4641. CharacterInstances::~CharacterInstances() {
  4642. RemoveInstances();
  4643. }
  4644. void CharacterInstances::AddInstance(int32 db_id, int32 instance_id, int32 last_success_timestamp, int32 last_failure_timestamp, int32 success_lockout_time, int32 failure_lockout_time, int32 zone_id, int8 zone_instancetype, string zone_name) {
  4645. InstanceData data;
  4646. data.db_id = db_id;
  4647. data.instance_id = instance_id;
  4648. data.zone_id = zone_id;
  4649. data.zone_instance_type = zone_instancetype;
  4650. data.zone_name = zone_name;
  4651. data.last_success_timestamp = last_success_timestamp;
  4652. data.last_failure_timestamp = last_failure_timestamp;
  4653. data.success_lockout_time = success_lockout_time;
  4654. data.failure_lockout_time = failure_lockout_time;
  4655. instanceList.push_back(data);
  4656. }
  4657. void CharacterInstances::RemoveInstances() {
  4658. instanceList.clear();
  4659. }
  4660. bool CharacterInstances::RemoveInstanceByZoneID(int32 zone_id) {
  4661. vector<InstanceData>::iterator itr;
  4662. m_instanceList.writelock(__FUNCTION__, __LINE__);
  4663. for(itr = instanceList.begin(); itr != instanceList.end(); itr++) {
  4664. InstanceData* data = &(*itr);
  4665. if (data->zone_id == zone_id) {
  4666. instanceList.erase(itr);
  4667. m_instanceList.releasewritelock(__FUNCTION__, __LINE__);
  4668. return true;
  4669. }
  4670. }
  4671. m_instanceList.releasewritelock(__FUNCTION__, __LINE__);
  4672. return false;
  4673. }
  4674. bool CharacterInstances::RemoveInstanceByInstanceID(int32 instance_id) {
  4675. vector<InstanceData>::iterator itr;
  4676. m_instanceList.writelock(__FUNCTION__, __LINE__);
  4677. for(itr = instanceList.begin(); itr != instanceList.end(); itr++) {
  4678. InstanceData* data = &(*itr);
  4679. if (data->instance_id == instance_id) {
  4680. instanceList.erase(itr);
  4681. m_instanceList.releasewritelock(__FUNCTION__, __LINE__);
  4682. return true;
  4683. }
  4684. }
  4685. m_instanceList.releasewritelock(__FUNCTION__, __LINE__);
  4686. return false;
  4687. }
  4688. InstanceData* CharacterInstances::FindInstanceByZoneID(int32 zone_id) {
  4689. m_instanceList.readlock(__FUNCTION__, __LINE__);
  4690. for(int32 i = 0; i < instanceList.size(); i++) {
  4691. InstanceData* data = &instanceList.at(i);
  4692. if (data->zone_id == zone_id) {
  4693. m_instanceList.releasereadlock(__FUNCTION__, __LINE__);
  4694. return data;
  4695. }
  4696. }
  4697. m_instanceList.releasereadlock(__FUNCTION__, __LINE__);
  4698. return 0;
  4699. }
  4700. InstanceData* CharacterInstances::FindInstanceByDBID(int32 db_id) {
  4701. m_instanceList.readlock(__FUNCTION__, __LINE__);
  4702. for(int32 i = 0; i < instanceList.size(); i++) {
  4703. InstanceData* data = &instanceList.at(i);
  4704. if (data->db_id == db_id) {
  4705. m_instanceList.releasereadlock(__FUNCTION__, __LINE__);
  4706. return data;
  4707. }
  4708. }
  4709. m_instanceList.releasereadlock(__FUNCTION__, __LINE__);
  4710. return 0;
  4711. }
  4712. InstanceData* CharacterInstances::FindInstanceByInstanceID(int32 instance_id) {
  4713. m_instanceList.readlock(__FUNCTION__, __LINE__);
  4714. for(int32 i = 0; i < instanceList.size(); i++) {
  4715. InstanceData* data = &instanceList.at(i);
  4716. if (data->instance_id == instance_id) {
  4717. m_instanceList.releasereadlock(__FUNCTION__, __LINE__);
  4718. return data;
  4719. }
  4720. }
  4721. m_instanceList.releasereadlock(__FUNCTION__, __LINE__);
  4722. return 0;
  4723. }
  4724. vector<InstanceData> CharacterInstances::GetLockoutInstances() {
  4725. vector<InstanceData> ret;
  4726. m_instanceList.readlock(__FUNCTION__, __LINE__);
  4727. for (int32 i = 0; i < instanceList.size(); i++) {
  4728. InstanceData* data = &instanceList.at(i);
  4729. if (data->zone_instance_type == SOLO_LOCKOUT_INSTANCE || data->zone_instance_type == GROUP_LOCKOUT_INSTANCE || data->zone_instance_type == RAID_LOCKOUT_INSTANCE)
  4730. ret.push_back(*data);
  4731. }
  4732. m_instanceList.releasereadlock(__FUNCTION__, __LINE__);
  4733. return ret;
  4734. }
  4735. vector<InstanceData> CharacterInstances::GetPersistentInstances() {
  4736. vector<InstanceData> ret;
  4737. m_instanceList.readlock(__FUNCTION__, __LINE__);
  4738. for (int32 i = 0; i < instanceList.size(); i++) {
  4739. InstanceData* data = &instanceList.at(i);
  4740. if (data->zone_instance_type == SOLO_PERSIST_INSTANCE || data->zone_instance_type == GROUP_PERSIST_INSTANCE || data->zone_instance_type == RAID_PERSIST_INSTANCE)
  4741. ret.push_back(*data);
  4742. }
  4743. m_instanceList.releasereadlock(__FUNCTION__, __LINE__);
  4744. return ret;
  4745. }
  4746. void CharacterInstances::ProcessInstanceTimers(Player* player) {
  4747. // Only need to check persistent instances here, lockout should be handled by zone shutting down
  4748. // Check instance id, if > 0 check timers, if timers expired set instance id to 0 and update the db `character_instance` to instance id 0,
  4749. // delete instance from `instances` if no more characters assigned to it
  4750. m_instanceList.readlock(__FUNCTION__, __LINE__);
  4751. for (int32 i = 0; i < instanceList.size(); i++) {
  4752. InstanceData* data = &instanceList.at(i);
  4753. // Check to see if we have a valid instance and if it is persistant
  4754. if (data->instance_id > 0) {
  4755. if (data->zone_instance_type == SOLO_PERSIST_INSTANCE || data->zone_instance_type == GROUP_PERSIST_INSTANCE || data->zone_instance_type == RAID_PERSIST_INSTANCE) {
  4756. // Check max duration (last success + success time)
  4757. if (Timer::GetUnixTimeStamp() >= (data->last_success_timestamp + data->success_lockout_time)) {
  4758. // Max duration has passed, instance has expired lets remove the player from it,
  4759. // this will also delete the instace if all players have been removed from it
  4760. database.DeleteCharacterFromInstance(player->GetCharacterID(), data->instance_id);
  4761. data->instance_id = 0;
  4762. }
  4763. }
  4764. if (data->zone_instance_type == SOLO_LOCKOUT_INSTANCE || data->zone_instance_type == GROUP_LOCKOUT_INSTANCE || data->zone_instance_type == RAID_LOCKOUT_INSTANCE) {
  4765. // Need to check lockout instance ids to ensure they are still valid.
  4766. if (!database.VerifyInstanceID(player->GetCharacterID(), data->instance_id))
  4767. data->instance_id = 0;
  4768. }
  4769. }
  4770. }
  4771. m_instanceList.releasereadlock(__FUNCTION__, __LINE__);
  4772. /*for(int32 i=0;i<instanceList->size();i++)
  4773. {
  4774. bool valuesUpdated = false;
  4775. InstanceData data = instanceList->at(i);
  4776. if ( data.grant_reenter_time_left > 0 )
  4777. {
  4778. if ( ( data.grant_reenter_time_left - msDiff ) < 1 )
  4779. data.grant_reenter_time_left = 0;
  4780. else
  4781. data.grant_reenter_time_left -= msDiff;
  4782. valuesUpdated = true;
  4783. }
  4784. if ( data.grant_reset_time_left > 0 )
  4785. {
  4786. if ( ( data.grant_reset_time_left - msDiff ) < 1 )
  4787. data.grant_reset_time_left = 0;
  4788. else
  4789. data.grant_reset_time_left -= msDiff;
  4790. valuesUpdated = true;
  4791. }
  4792. if ( data.lockout_time > 0 )
  4793. {
  4794. if ( ( data.lockout_time - msDiff ) < 1 )
  4795. {
  4796. data.lockout_time = 0;
  4797. // this means that their timer ran out and we need to clear it from db and player
  4798. RemoveInstanceByInstanceID(data.instance_id);
  4799. database.DeleteCharacterFromInstance(player->GetCharacterID(),data.instance_id);
  4800. }
  4801. else
  4802. data.lockout_time -= msDiff;
  4803. valuesUpdated = true;
  4804. }
  4805. if ( valuesUpdated )
  4806. database.UpdateCharacterInstanceTimers(player->GetCharacterID(),data.instance_id,data.lockout_time,data.grant_reset_time_left,data.grant_reenter_time_left);
  4807. }*/
  4808. }
  4809. int32 CharacterInstances::GetInstanceCount() {
  4810. return instanceList.size();
  4811. }
  4812. void Player::SetPlayerAdventureClass(int8 new_class){
  4813. SetAdventureClass(new_class);
  4814. GetInfoStruct()->set_class1(classes.GetBaseClass(new_class));
  4815. GetInfoStruct()->set_class2(classes.GetSecondaryBaseClass(new_class));
  4816. GetInfoStruct()->set_class3(new_class);
  4817. charsheet_changed = true;
  4818. if(GetZone())
  4819. GetZone()->TriggerCharSheetTimer();
  4820. }
  4821. void Player::AddSkillBonus(int32 spell_id, int32 skill_id, float value) {
  4822. GetSkills()->AddSkillBonus(spell_id, skill_id, value);
  4823. }
  4824. SkillBonus* Player::GetSkillBonus(int32 spell_id) {
  4825. return GetSkills()->GetSkillBonus(spell_id);
  4826. }
  4827. void Player::RemoveSkillBonus(int32 spell_id) {
  4828. GetSkills()->RemoveSkillBonus(spell_id);
  4829. }
  4830. bool Player::HasFreeBankSlot() {
  4831. return item_list.HasFreeBankSlot();
  4832. }
  4833. int8 Player::FindFreeBankSlot() {
  4834. return item_list.FindFreeBankSlot();
  4835. }
  4836. void Player::AddTitle(sint32 title_id, const char *name, int8 prefix, bool save_needed){
  4837. Title* new_title = new Title;
  4838. new_title->SetID(title_id);
  4839. new_title->SetName(name);
  4840. new_title->SetPrefix(prefix);
  4841. new_title->SetSaveNeeded(save_needed);
  4842. player_titles_list.Add(new_title);
  4843. }
  4844. void Player::AddAAEntry(int16 template_id, int8 tab_id, int32 aa_id, int16 order,int8 treeid) {
  4845. }
  4846. void Player::AddLanguage(int32 id, const char *name, bool save_needed){
  4847. // Check to see if the player already has the language
  4848. if (HasLanguage(id))
  4849. return;
  4850. // Doesn't already have the language so add it
  4851. Language* new_language = new Language;
  4852. new_language->SetID(id);
  4853. new_language->SetName(name);
  4854. player_languages_list.Add(new_language);
  4855. if (save_needed)
  4856. database.SaveCharacterLang(GetCharacterID(), id);
  4857. }
  4858. bool Player::HasLanguage(int32 id){
  4859. list<Language*>* languages = player_languages_list.GetAllLanguages();
  4860. list<Language*>::iterator itr;
  4861. Language* language = 0;
  4862. bool ret = false;
  4863. for(itr = languages->begin(); itr != languages->end(); itr++){
  4864. language = *itr;
  4865. if(language->GetID() == id){
  4866. ret = true;
  4867. break;
  4868. }
  4869. }
  4870. return ret;
  4871. }
  4872. bool Player::HasLanguage(const char* name){
  4873. list<Language*>* languages = player_languages_list.GetAllLanguages();
  4874. list<Language*>::iterator itr;
  4875. Language* language = 0;
  4876. bool ret = false;
  4877. for(itr = languages->begin(); itr != languages->end(); itr++){
  4878. language = *itr;
  4879. if(!strncmp(language->GetName(), name, strlen(name))){
  4880. ret = true;
  4881. break;
  4882. }
  4883. }
  4884. return ret;
  4885. }
  4886. void Player::AddPassiveSpell(int32 id, int8 tier)
  4887. {
  4888. // Add the spell to the list of passives this player currently has
  4889. // list is used for quickly going over only the passive spells the
  4890. // player has instead of going through all their spells.
  4891. passive_spells.push_back(id);
  4892. Client* client = GetZone()->GetClientBySpawn(this);
  4893. // Don not apply passives if the client is null, zoning, or reviving
  4894. if (client == NULL || client->IsZoning() || IsResurrecting())
  4895. return;
  4896. Spell* spell = 0;
  4897. spell = master_spell_list.GetSpell(id, tier);
  4898. if (spell) {
  4899. SpellProcess* spellProcess = 0;
  4900. // Get the current zones spell process
  4901. spellProcess = GetZone()->GetSpellProcess();
  4902. // Cast the spell, CastPassives() bypasses the spell queue
  4903. spellProcess->CastPassives(spell, this);
  4904. }
  4905. }
  4906. void Player::ApplyPassiveSpells()
  4907. {
  4908. Spell* spell = 0;
  4909. SpellBookEntry* spell2 = 0;
  4910. vector<int32>::iterator itr;
  4911. SpellProcess* spellProcess = 0;
  4912. spellProcess = GetZone()->GetSpellProcess();
  4913. for (itr = passive_spells.begin(); itr != passive_spells.end(); itr++)
  4914. {
  4915. spell2 = GetSpellBookSpell((*itr));
  4916. spell = master_spell_list.GetSpell(spell2->spell_id, spell2->tier);
  4917. if (spell) {
  4918. spellProcess->CastPassives(spell, this);
  4919. }
  4920. }
  4921. }
  4922. void Player::RemovePassive(int32 id, int8 tier, bool remove_from_list)
  4923. {
  4924. Spell* spell = 0;
  4925. spell = master_spell_list.GetSpell(id, tier);
  4926. if (spell) {
  4927. SpellProcess* spellProcess = 0;
  4928. spellProcess = GetZone()->GetSpellProcess();
  4929. spellProcess->CastPassives(spell, this, true);
  4930. if (remove_from_list) {
  4931. vector<int32>::iterator remove;
  4932. remove = find(passive_spells.begin(), passive_spells.end(), id);
  4933. if (remove != passive_spells.end())
  4934. passive_spells.erase(remove);
  4935. }
  4936. database.DeleteCharacterSpell(GetCharacterID(), spell->GetSpellID());
  4937. }
  4938. }
  4939. void Player::RemoveAllPassives()
  4940. {
  4941. vector<int32>::iterator itr;
  4942. for (itr = passive_spells.begin(); itr != passive_spells.end(); itr++)
  4943. RemoveSpellBookEntry((*itr), false);
  4944. passive_spells.clear();
  4945. }
  4946. void Player::ResetPetInfo() {
  4947. GetInfoStruct()->set_pet_id(0xFFFFFFFF);
  4948. GetInfoStruct()->set_pet_name(std::string("No Pet"));
  4949. GetInfoStruct()->set_pet_movement(0);
  4950. GetInfoStruct()->set_pet_behavior(0);
  4951. GetInfoStruct()->set_pet_health_pct(0.0f);
  4952. GetInfoStruct()->set_pet_power_pct(0.0f);
  4953. // Make sure the values get sent to the client
  4954. SetCharSheetChanged(true);
  4955. }
  4956. bool Player::HasRecipeBook(int32 recipe_id){
  4957. return recipebook_list.HasRecipeBook(recipe_id);
  4958. }
  4959. bool Player::DiscoveredLocation(int32 locationID) {
  4960. bool ret = false;
  4961. // No discovery type entry then return false
  4962. if (m_characterHistory.count(HISTORY_TYPE_DISCOVERY) == 0)
  4963. return false;
  4964. // Is a discovery type entry but not a location subtype return false
  4965. if (m_characterHistory[HISTORY_TYPE_DISCOVERY].count(HISTORY_SUBTYPE_LOCATION) == 0)
  4966. return false;
  4967. vector<HistoryData*>::iterator itr;
  4968. for (itr = m_characterHistory[HISTORY_TYPE_DISCOVERY][HISTORY_SUBTYPE_LOCATION].begin(); itr != m_characterHistory[HISTORY_TYPE_DISCOVERY][HISTORY_SUBTYPE_LOCATION].end(); itr++) {
  4969. if ((*itr)->Value == locationID) {
  4970. ret = true;
  4971. break;
  4972. }
  4973. }
  4974. return ret;
  4975. }
  4976. void Player::UpdatePlayerHistory(int8 type, int8 subtype, int32 value, int32 value2) {
  4977. switch (type) {
  4978. case HISTORY_TYPE_NONE:
  4979. HandleHistoryNone(subtype, value, value2);
  4980. break;
  4981. case HISTORY_TYPE_DEATH:
  4982. HandleHistoryDeath(subtype, value, value2);
  4983. break;
  4984. case HISTORY_TYPE_DISCOVERY:
  4985. HandleHistoryDiscovery(subtype, value, value2);
  4986. break;
  4987. case HISTORY_TYPE_XP:
  4988. HandleHistoryXP(subtype, value, value2);
  4989. break;
  4990. default:
  4991. // Not a valid history event so return out before trying to save into the db
  4992. return;
  4993. }
  4994. }
  4995. void Player::HandleHistoryNone(int8 subtype, int32 value, int32 value2) {
  4996. }
  4997. void Player::HandleHistoryDeath(int8 subtype, int32 value, int32 value2) {
  4998. }
  4999. void Player::HandleHistoryDiscovery(int8 subtype, int32 value, int32 value2) {
  5000. switch (subtype) {
  5001. case HISTORY_SUBTYPE_NONE:
  5002. break;
  5003. case HISTORY_SUBTYPE_ADVENTURE:
  5004. break;
  5005. case HISTORY_SUBTYPE_TRADESKILL:
  5006. break;
  5007. case HISTORY_SUBTYPE_QUEST:
  5008. break;
  5009. case HISTORY_SUBTYPE_AA:
  5010. break;
  5011. case HISTORY_SUBTYPE_ITEM:
  5012. break;
  5013. case HISTORY_SUBTYPE_LOCATION: {
  5014. HistoryData* hd = new HistoryData;
  5015. hd->Value = value;
  5016. hd->Value2 = value2;
  5017. hd->EventDate = Timer::GetUnixTimeStamp();
  5018. strcpy(hd->Location, GetZone()->GetZoneName());
  5019. m_characterHistory[HISTORY_TYPE_DISCOVERY][HISTORY_SUBTYPE_LOCATION].push_back(hd);
  5020. break;
  5021. }
  5022. default:
  5023. // Invalid subtype, default to NONE
  5024. break;
  5025. }
  5026. }
  5027. void Player::HandleHistoryXP(int8 subtype, int32 value, int32 value2) {
  5028. switch (subtype) {
  5029. case HISTORY_SUBTYPE_NONE:
  5030. break;
  5031. case HISTORY_SUBTYPE_ADVENTURE: {
  5032. HistoryData* hd = new HistoryData;
  5033. hd->Value = value;
  5034. hd->Value2 = value2;
  5035. hd->EventDate = Timer::GetUnixTimeStamp();
  5036. strcpy(hd->Location, GetZone()->GetZoneName());
  5037. m_characterHistory[HISTORY_TYPE_XP][HISTORY_SUBTYPE_ADVENTURE].push_back(hd);
  5038. }
  5039. break;
  5040. case HISTORY_SUBTYPE_TRADESKILL:
  5041. break;
  5042. case HISTORY_SUBTYPE_QUEST:
  5043. break;
  5044. case HISTORY_SUBTYPE_AA:
  5045. break;
  5046. case HISTORY_SUBTYPE_ITEM:
  5047. break;
  5048. case HISTORY_SUBTYPE_LOCATION:
  5049. break;
  5050. default:
  5051. // Invalid subtype, default to NONE
  5052. break;
  5053. }
  5054. }
  5055. void Player::LoadPlayerHistory(int8 type, int8 subtype, HistoryData* hd) {
  5056. m_characterHistory[type][subtype].push_back(hd);
  5057. }
  5058. void Player::SaveHistory() {
  5059. LogWrite(PLAYER__DEBUG, 0, "Player", "Saving History for Player: '%s'", GetName());
  5060. map<int8, map<int8, vector<HistoryData*> > >::iterator itr;
  5061. map<int8, vector<HistoryData*> >::iterator itr2;
  5062. vector<HistoryData*>::iterator itr3;
  5063. for (itr = m_characterHistory.begin(); itr != m_characterHistory.end(); itr++) {
  5064. for (itr2 = itr->second.begin(); itr2 != itr->second.end(); itr2++) {
  5065. for (itr3 = itr2->second.begin(); itr3 != itr2->second.end(); itr3++) {
  5066. database.SaveCharacterHistory(this, itr->first, itr2->first, (*itr3)->Value, (*itr3)->Value2, (*itr3)->Location, (*itr3)->EventDate);
  5067. }
  5068. }
  5069. }
  5070. }
  5071. void Player::InitXPTable() {
  5072. m_levelXPReq[2] = 600;
  5073. m_levelXPReq[3] = 800;
  5074. m_levelXPReq[4] = 1000;
  5075. m_levelXPReq[5] = 1400;
  5076. m_levelXPReq[6] = 1800;
  5077. m_levelXPReq[7] = 2200;
  5078. m_levelXPReq[8] = 2600;
  5079. m_levelXPReq[9] = 3000;
  5080. m_levelXPReq[10] = 3400;
  5081. m_levelXPReq[11] = 3800;
  5082. m_levelXPReq[12] = 4200;
  5083. m_levelXPReq[13] = 4600;
  5084. m_levelXPReq[14] = 5000;
  5085. m_levelXPReq[15] = 5500;
  5086. m_levelXPReq[16] = 6000;
  5087. m_levelXPReq[17] = 6500;
  5088. m_levelXPReq[18] = 7000;
  5089. m_levelXPReq[19] = 7500;
  5090. m_levelXPReq[20] = 8000;
  5091. m_levelXPReq[21] = 8500;
  5092. m_levelXPReq[22] = 9000;
  5093. m_levelXPReq[23] = 9500;
  5094. m_levelXPReq[24] = 10000;
  5095. m_levelXPReq[25] = 10500;
  5096. m_levelXPReq[26] = 11000;
  5097. m_levelXPReq[27] = 11750;
  5098. m_levelXPReq[28] = 12500;
  5099. m_levelXPReq[29] = 13250;
  5100. m_levelXPReq[30] = 14000;
  5101. m_levelXPReq[31] = 14750;
  5102. m_levelXPReq[32] = 15500;
  5103. m_levelXPReq[33] = 16250;
  5104. m_levelXPReq[34] = 17000;
  5105. m_levelXPReq[35] = 17750;
  5106. m_levelXPReq[36] = 18500;
  5107. m_levelXPReq[37] = 19250;
  5108. m_levelXPReq[38] = 20000;
  5109. m_levelXPReq[39] = 20750;
  5110. m_levelXPReq[40] = 21500;
  5111. m_levelXPReq[41] = 22250;
  5112. m_levelXPReq[42] = 23000;
  5113. m_levelXPReq[43] = 24000;
  5114. m_levelXPReq[44] = 25000;
  5115. m_levelXPReq[45] = 26000;
  5116. m_levelXPReq[46] = 27000;
  5117. m_levelXPReq[47] = 28000;
  5118. m_levelXPReq[48] = 29250;
  5119. m_levelXPReq[49] = 30500;
  5120. m_levelXPReq[50] = 32000;
  5121. m_levelXPReq[51] = 33750;
  5122. m_levelXPReq[52] = 35750;
  5123. m_levelXPReq[53] = 38000;
  5124. m_levelXPReq[54] = 40500;
  5125. m_levelXPReq[55] = 42500;
  5126. m_levelXPReq[56] = 45500;
  5127. m_levelXPReq[57] = 48500;
  5128. m_levelXPReq[58] = 51500;
  5129. m_levelXPReq[59] = 54500;
  5130. m_levelXPReq[60] = 57500;
  5131. m_levelXPReq[61] = 60500;
  5132. m_levelXPReq[62] = 63500;
  5133. m_levelXPReq[63] = 66500;
  5134. m_levelXPReq[64] = 70000;
  5135. m_levelXPReq[65] = 73500;
  5136. m_levelXPReq[66] = 77000;
  5137. m_levelXPReq[67] = 80500;
  5138. m_levelXPReq[68] = 84000;
  5139. m_levelXPReq[69] = 87500;
  5140. m_levelXPReq[70] = 91000;
  5141. m_levelXPReq[71] = 94500;
  5142. m_levelXPReq[72] = 98000;
  5143. m_levelXPReq[73] = 101500;
  5144. m_levelXPReq[74] = 105000;
  5145. m_levelXPReq[75] = 108500;
  5146. m_levelXPReq[76] = 116500;
  5147. m_levelXPReq[77] = 132500;
  5148. m_levelXPReq[78] = 152500;
  5149. m_levelXPReq[79] = 172500;
  5150. m_levelXPReq[80] = 192500;
  5151. m_levelXPReq[81] = 212500;
  5152. m_levelXPReq[82] = 232500;
  5153. m_levelXPReq[83] = 252500;
  5154. m_levelXPReq[84] = 272500;
  5155. m_levelXPReq[85] = 292500;
  5156. m_levelXPReq[86] = 312500;
  5157. m_levelXPReq[87] = 332500;
  5158. m_levelXPReq[88] = 352500;
  5159. m_levelXPReq[89] = 372500;
  5160. m_levelXPReq[90] = 392500;
  5161. m_levelXPReq[91] = 863550;
  5162. m_levelXPReq[92] = 949905;
  5163. m_levelXPReq[93] = 1044895;
  5164. m_levelXPReq[94] = 1149385;
  5165. m_levelXPReq[95] = 1264323;
  5166. }
  5167. void Player::SendQuestRequiredSpawns(int32 quest_id){
  5168. bool locked = true;
  5169. m_playerSpawnQuestsRequired.readlock(__FUNCTION__, __LINE__);
  5170. Quest* quest = GetQuest(quest_id);
  5171. if (player_spawn_quests_required.size() > 0 ) {
  5172. ZoneServer* zone = GetZone();
  5173. Client* client = zone->GetClientBySpawn(this);
  5174. if (!client){
  5175. m_playerSpawnQuestsRequired.releasereadlock(__FUNCTION__, __LINE__);
  5176. return;
  5177. }
  5178. int xxx = player_spawn_quests_required.count(quest_id);
  5179. if (player_spawn_quests_required.count(quest_id) > 0){
  5180. vector<int32> spawns = *player_spawn_quests_required[quest_id];
  5181. m_playerSpawnQuestsRequired.releasereadlock(__FUNCTION__, __LINE__);
  5182. Spawn* spawn = 0;
  5183. vector<int32>::iterator itr;
  5184. for (itr = spawns.begin(); itr != spawns.end();){
  5185. spawn = zone->GetSpawnByID(*itr);
  5186. if (spawn)
  5187. zone->SendSpawnChanges(spawn, client, false, true);
  5188. else {
  5189. itr = spawns.erase(itr);
  5190. continue;
  5191. }
  5192. itr++;
  5193. }
  5194. locked = false;
  5195. }
  5196. }
  5197. if (locked)
  5198. m_playerSpawnQuestsRequired.releasereadlock(__FUNCTION__, __LINE__);
  5199. }
  5200. void Player::SendHistoryRequiredSpawns(int32 event_id){
  5201. bool locked = true;
  5202. m_playerSpawnHistoryRequired.readlock(__FUNCTION__, __LINE__);
  5203. if (player_spawn_history_required.size() > 0) {
  5204. ZoneServer* zone = GetZone();
  5205. Client* client = zone->GetClientBySpawn(this);
  5206. if (!client){
  5207. m_playerSpawnHistoryRequired.releasereadlock(__FUNCTION__, __LINE__);
  5208. return;
  5209. }
  5210. if (player_spawn_history_required.count(event_id) > 0){
  5211. vector<int32> spawns = *player_spawn_history_required[event_id];
  5212. m_playerSpawnHistoryRequired.releasereadlock(__FUNCTION__, __LINE__);
  5213. Spawn* spawn = 0;
  5214. vector<int32>::iterator itr;
  5215. for (itr = spawns.begin(); itr != spawns.end();){
  5216. spawn = zone->GetSpawnByID(*itr);
  5217. if (spawn)
  5218. zone->SendSpawnChanges(spawn, client, false, true);
  5219. else {
  5220. itr = spawns.erase(itr);
  5221. continue;
  5222. }
  5223. itr++;
  5224. }
  5225. locked = false;
  5226. }
  5227. }
  5228. if (locked)
  5229. m_playerSpawnHistoryRequired.releasereadlock(__FUNCTION__, __LINE__);
  5230. }
  5231. void Player::AddQuestRequiredSpawn(Spawn* spawn, int32 quest_id){
  5232. if(!spawn || !quest_id)
  5233. return;
  5234. m_playerSpawnQuestsRequired.writelock(__FUNCTION__, __LINE__);
  5235. if(player_spawn_quests_required.count(quest_id) == 0)
  5236. player_spawn_quests_required[quest_id] = new vector<int32>;
  5237. vector<int32>* quest_spawns = player_spawn_quests_required[quest_id];
  5238. int32 current_spawn = 0;
  5239. for(int32 i=0;i<quest_spawns->size();i++){
  5240. current_spawn = quest_spawns->at(i);
  5241. if (current_spawn == spawn->GetID()){
  5242. m_playerSpawnQuestsRequired.releasewritelock(__FUNCTION__, __LINE__);
  5243. return;
  5244. }
  5245. }
  5246. player_spawn_quests_required[quest_id]->push_back(spawn->GetID());
  5247. m_playerSpawnQuestsRequired.releasewritelock(__FUNCTION__, __LINE__);
  5248. }
  5249. void Player::AddHistoryRequiredSpawn(Spawn* spawn, int32 event_id){
  5250. if (!spawn || !event_id)
  5251. return;
  5252. m_playerSpawnHistoryRequired.writelock(__FUNCTION__, __LINE__);
  5253. if (player_spawn_history_required.count(event_id) == 0)
  5254. player_spawn_history_required[event_id] = new vector<int32>;
  5255. vector<int32>* history_spawns = player_spawn_history_required[event_id];
  5256. vector<int32>::iterator itr = find(history_spawns->begin(), history_spawns->end(), spawn->GetID());
  5257. if (itr == history_spawns->end())
  5258. history_spawns->push_back(spawn->GetID());
  5259. m_playerSpawnHistoryRequired.releasewritelock(__FUNCTION__, __LINE__);
  5260. }
  5261. int32 PlayerInfo::GetBoatSpawn(){
  5262. return boat_spawn;
  5263. }
  5264. void PlayerInfo::SetBoatSpawn(Spawn* spawn){
  5265. if(spawn)
  5266. boat_spawn = spawn->GetID();
  5267. else
  5268. boat_spawn = 0;
  5269. }
  5270. void PlayerInfo::RemoveOldPackets(){
  5271. safe_delete_array(changes);
  5272. safe_delete_array(orig_packet);
  5273. safe_delete_array(pet_changes);
  5274. safe_delete_array(pet_orig_packet);
  5275. }
  5276. PlayerControlFlags::PlayerControlFlags(){
  5277. MControlFlags.SetName("PlayerControlFlags::MControlFlags");
  5278. MFlagChanges.SetName("PlayerControlFlags::MFlagChanges");
  5279. flags_changed = false;
  5280. flag_changes.clear();
  5281. current_flags.clear();
  5282. }
  5283. PlayerControlFlags::~PlayerControlFlags(){
  5284. flag_changes.clear();
  5285. current_flags.clear();
  5286. }
  5287. bool PlayerControlFlags::ControlFlagsChanged(){
  5288. bool ret;
  5289. MFlagChanges.writelock(__FUNCTION__, __LINE__);
  5290. ret = flags_changed;
  5291. MFlagChanges.releasewritelock(__FUNCTION__, __LINE__);
  5292. return ret;
  5293. }
  5294. void PlayerControlFlags::SetPlayerControlFlag(int8 param, int8 param_value, bool is_active){
  5295. if (!param || !param_value)
  5296. return;
  5297. bool active_changed = false;
  5298. MControlFlags.writelock(__FUNCTION__, __LINE__);
  5299. active_changed = (current_flags[param][param_value] != is_active);
  5300. if (active_changed){
  5301. current_flags[param][param_value] = is_active;
  5302. MFlagChanges.writelock(__FUNCTION__, __LINE__);
  5303. flag_changes[param][param_value] = is_active ? 1 : 0;
  5304. flags_changed = true;
  5305. MFlagChanges.releasewritelock(__FUNCTION__, __LINE__);
  5306. }
  5307. MControlFlags.releasewritelock(__FUNCTION__, __LINE__);
  5308. }
  5309. void PlayerControlFlags::SendControlFlagUpdates(Client* client){
  5310. if (!client)
  5311. return;
  5312. map<int8, int8>* ptr = 0;
  5313. map<int8, map<int8, int8> >::iterator itr;
  5314. map<int8, int8>::iterator itr2;
  5315. MFlagChanges.writelock(__FUNCTION__, __LINE__);
  5316. for (itr = flag_changes.begin(); itr != flag_changes.end(); itr++){
  5317. ptr = &itr->second;
  5318. for (itr2 = ptr->begin(); itr2 != ptr->end(); itr2++){
  5319. ClientPacketFunctions::SendServerControlFlags(client, itr->first, itr2->first, itr2->second);
  5320. }
  5321. }
  5322. flag_changes.clear();
  5323. flags_changed = false;
  5324. MFlagChanges.releasewritelock(__FUNCTION__, __LINE__);
  5325. }
  5326. bool Player::ControlFlagsChanged(){
  5327. return control_flags.ControlFlagsChanged();
  5328. }
  5329. void Player::SetPlayerControlFlag(int8 param, int8 param_value, bool is_active){
  5330. control_flags.SetPlayerControlFlag(param, param_value, is_active);
  5331. }
  5332. void Player::SendControlFlagUpdates(Client* client){
  5333. control_flags.SendControlFlagUpdates(client);
  5334. }
  5335. void Player::LoadLUAHistory(int32 event_id, LUAHistory* history) {
  5336. mLUAHistory.writelock();
  5337. if (m_charLuaHistory.count(event_id) > 0) {
  5338. LogWrite(PLAYER__ERROR, 0, "Player", "Attempted to added a dupicate event (%u) to character LUA history", event_id);
  5339. safe_delete(history);
  5340. mLUAHistory.releasewritelock();
  5341. return;
  5342. }
  5343. m_charLuaHistory.insert(make_pair(event_id,history));
  5344. mLUAHistory.releasewritelock();
  5345. }
  5346. void Player::SaveLUAHistory() {
  5347. mLUAHistory.readlock();
  5348. LogWrite(PLAYER__DEBUG, 0, "Player", "Saving LUA History for Player: '%s'", GetName());
  5349. map<int32, LUAHistory*>::iterator itr;
  5350. for (itr = m_charLuaHistory.begin(); itr != m_charLuaHistory.end(); itr++) {
  5351. if (itr->second->SaveNeeded) {
  5352. database.SaveCharacterLUAHistory(this, itr->first, itr->second->Value, itr->second->Value2);
  5353. itr->second->SaveNeeded = false;
  5354. }
  5355. }
  5356. mLUAHistory.releasereadlock();
  5357. }
  5358. void Player::UpdateLUAHistory(int32 event_id, int32 value, int32 value2) {
  5359. mLUAHistory.writelock();
  5360. LUAHistory* hd = 0;
  5361. if (m_charLuaHistory.count(event_id) > 0)
  5362. hd = m_charLuaHistory[event_id];
  5363. else {
  5364. hd = new LUAHistory;
  5365. m_charLuaHistory.insert(make_pair(event_id,hd));
  5366. }
  5367. hd->Value = value;
  5368. hd->Value2 = value2;
  5369. hd->SaveNeeded = true;
  5370. mLUAHistory.releasewritelock();
  5371. // release the mLUAHistory lock, we will maintain a readlock to avoid any further writes until we complete SendHistoryRequiredSpawns
  5372. // through Spawn::SendSpawnChanges -> Spawn::InitializeVisPacketData -> Spawn::MeetsSpawnAccessRequirements-> Player::GetLUAHistory (this was causing a deadlock)
  5373. mLUAHistory.readlock();
  5374. SendHistoryRequiredSpawns(event_id);
  5375. mLUAHistory.releasereadlock();
  5376. }
  5377. LUAHistory* Player::GetLUAHistory(int32 event_id) {
  5378. LUAHistory* ret = 0;
  5379. mLUAHistory.readlock();
  5380. if (m_charLuaHistory.count(event_id) > 0)
  5381. ret = m_charLuaHistory[event_id];
  5382. mLUAHistory.releasereadlock();
  5383. return ret;
  5384. }
  5385. bool Player::CanSeeInvis(Entity* target)
  5386. {
  5387. if (!target->IsStealthed() && !target->IsInvis())
  5388. return true;
  5389. if (target->IsStealthed() && HasSeeHideSpell())
  5390. return true;
  5391. else if (target->IsInvis() && HasSeeInvisSpell())
  5392. return true;
  5393. sint32 radius = rule_manager.GetGlobalRule(R_PVP, InvisPlayerDiscoveryRange)->GetSInt32();
  5394. if (radius == 0) // radius of 0 is always seen
  5395. return true;
  5396. // radius of -1 is never seen except through items/spells, radius > -1 means we will show the player if they get into the inner radius
  5397. else if (radius > -1 && this->GetDistance((Spawn*)target) < (float)radius)
  5398. return true;
  5399. // TODO: Implement See Invis Spells! http://cutpon.com:3000/devn00b/EQ2EMu/issues/43
  5400. Item* item = 0;
  5401. vector<Item*>* equipped_list = GetEquippedItemList();
  5402. bool seeInvis = false;
  5403. bool seeStealth = false;
  5404. for (int32 i = 0; i < equipped_list->size(); i++)
  5405. {
  5406. item = equipped_list->at(i);
  5407. seeInvis = item->HasStat(ITEM_STAT_SEEINVIS);
  5408. seeStealth = item->HasStat(ITEM_STAT_SEESTEALTH);
  5409. if (target->IsStealthed() && seeStealth)
  5410. return true;
  5411. else if (target->IsInvis() && seeInvis)
  5412. return true;
  5413. }
  5414. return false;
  5415. }
  5416. // returns true if we need to update target info due to see invis status change
  5417. bool Player::CheckChangeInvisHistory(Entity* target)
  5418. {
  5419. std::map<int32, bool>::iterator it;
  5420. it = target_invis_history.find(target->GetID());
  5421. if (it != target_invis_history.end())
  5422. {
  5423. //canSeeStatus
  5424. if (it->second)
  5425. {
  5426. if (!this->CanSeeInvis(target))
  5427. {
  5428. UpdateTargetInvisHistory(target->GetID(), false);
  5429. return true;
  5430. }
  5431. else
  5432. return false;
  5433. }
  5434. else
  5435. {
  5436. if (this->CanSeeInvis(target))
  5437. {
  5438. UpdateTargetInvisHistory(target->GetID(), true);
  5439. return true;
  5440. }
  5441. else
  5442. return false;
  5443. }
  5444. }
  5445. if (!this->CanSeeInvis(target))
  5446. UpdateTargetInvisHistory(target->GetID(), false);
  5447. else
  5448. UpdateTargetInvisHistory(target->GetID(), true);
  5449. return true;
  5450. }
  5451. void Player::UpdateTargetInvisHistory(int32 targetID, bool canSeeStatus)
  5452. {
  5453. target_invis_history[targetID] = canSeeStatus;
  5454. }
  5455. void Player::RemoveTargetInvisHistory(int32 targetID)
  5456. {
  5457. target_invis_history.erase(targetID);
  5458. }