Player.cpp 232 KB

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