CGameHandler.cpp 208 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932
  1. /*
  2. * CGameHandler.cpp, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #include "StdInc.h"
  11. #include "CGameHandler.h"
  12. #include "HeroPoolProcessor.h"
  13. #include "ServerNetPackVisitors.h"
  14. #include "ServerSpellCastEnvironment.h"
  15. #include "CVCMIServer.h"
  16. #include "PlayerMessageProcessor.h"
  17. #include "../lib/filesystem/Filesystem.h"
  18. #include "../lib/filesystem/FileInfo.h"
  19. #include "../lib/int3.h"
  20. #include "../lib/ArtifactUtils.h"
  21. #include "../lib/StartInfo.h"
  22. #include "../lib/CArtHandler.h"
  23. #include "../lib/CBuildingHandler.h"
  24. #include "../lib/CHeroHandler.h"
  25. #include "../lib/pathfinder/CPathfinder.h"
  26. #include "../lib/pathfinder/PathfinderOptions.h"
  27. #include "../lib/pathfinder/TurnInfo.h"
  28. #include "../lib/spells/AbilityCaster.h"
  29. #include "../lib/spells/BonusCaster.h"
  30. #include "../lib/spells/CSpellHandler.h"
  31. #include "../lib/spells/ISpellMechanics.h"
  32. #include "../lib/spells/ObstacleCasterProxy.h"
  33. #include "../lib/spells/Problem.h"
  34. #include "../lib/CGeneralTextHandler.h"
  35. #include "../lib/CTownHandler.h"
  36. #include "../lib/CCreatureHandler.h"
  37. #include "../lib/gameState/CGameState.h"
  38. #include "../lib/CStack.h"
  39. #include "../lib/UnlockGuard.h"
  40. #include "../lib/GameSettings.h"
  41. #include "../lib/battle/BattleInfo.h"
  42. #include "../lib/CondSh.h"
  43. #include "../lib/VCMI_Lib.h"
  44. #include "../lib/mapping/CMap.h"
  45. #include "../lib/mapping/CMapService.h"
  46. #include "../lib/modding/ModIncompatibility.h"
  47. #include "../lib/rmg/CMapGenOptions.h"
  48. #include "../lib/VCMIDirs.h"
  49. #include "../lib/ScopeGuard.h"
  50. #include "../lib/CSoundBase.h"
  51. #include "../lib/TerrainHandler.h"
  52. #include "../lib/CCreatureSet.h"
  53. #include "../lib/CThreadHelper.h"
  54. #include "../lib/GameConstants.h"
  55. #include "../lib/registerTypes/RegisterTypes.h"
  56. #include "../lib/serializer/CTypeList.h"
  57. #include "../lib/serializer/Connection.h"
  58. #include "../lib/serializer/Cast.h"
  59. #include "../lib/serializer/JsonSerializer.h"
  60. #include "../lib/ScriptHandler.h"
  61. #include "vstd/CLoggerBase.h"
  62. #include <memory>
  63. #include <vcmi/events/EventBus.h>
  64. #include <vcmi/events/GenericEvents.h>
  65. #include <vcmi/events/AdventureEvents.h>
  66. #ifndef _MSC_VER
  67. #include <boost/thread/xtime.hpp>
  68. #endif
  69. #define COMPLAIN_RET_IF(cond, txt) do {if (cond){complain(txt); return;}} while(0)
  70. #define COMPLAIN_RET_FALSE_IF(cond, txt) do {if (cond){complain(txt); return false;}} while(0)
  71. #define COMPLAIN_RET(txt) {complain(txt); return false;}
  72. #define COMPLAIN_RETF(txt, FORMAT) {complain(boost::str(boost::format(txt) % FORMAT)); return false;}
  73. CondSh<bool> battleMadeAction(false);
  74. boost::recursive_mutex battleActionMutex;
  75. CondSh<BattleResult *> battleResult(nullptr);
  76. template <typename T> class CApplyOnGH;
  77. class CBaseForGHApply
  78. {
  79. public:
  80. virtual bool applyOnGH(CGameHandler * gh, CGameState * gs, void * pack) const =0;
  81. virtual ~CBaseForGHApply(){}
  82. template<typename U> static CBaseForGHApply *getApplier(const U * t=nullptr)
  83. {
  84. return new CApplyOnGH<U>();
  85. }
  86. };
  87. template <typename T> class CApplyOnGH : public CBaseForGHApply
  88. {
  89. public:
  90. bool applyOnGH(CGameHandler * gh, CGameState * gs, void * pack) const override
  91. {
  92. T *ptr = static_cast<T*>(pack);
  93. try
  94. {
  95. ApplyGhNetPackVisitor applier(*gh, *gs);
  96. ptr->visit(applier);
  97. return applier.getResult();
  98. }
  99. catch(ExceptionNotAllowedAction & e)
  100. {
  101. (void)e;
  102. return false;
  103. }
  104. }
  105. };
  106. template <>
  107. class CApplyOnGH<CPack> : public CBaseForGHApply
  108. {
  109. public:
  110. bool applyOnGH(CGameHandler * gh, CGameState * gs, void * pack) const override
  111. {
  112. logGlobal->error("Cannot apply on GH plain CPack!");
  113. assert(0);
  114. return false;
  115. }
  116. };
  117. static inline double distance(int3 a, int3 b)
  118. {
  119. return std::sqrt((double)(a.x-b.x)*(a.x-b.x) + (a.y-b.y)*(a.y-b.y));
  120. }
  121. static void giveExp(BattleResult &r)
  122. {
  123. if (r.winner > 1)
  124. {
  125. // draw
  126. return;
  127. }
  128. r.exp[0] = 0;
  129. r.exp[1] = 0;
  130. for (auto i = r.casualties[!r.winner].begin(); i!=r.casualties[!r.winner].end(); i++)
  131. {
  132. r.exp[r.winner] += VLC->creh->objects.at(i->first)->valOfBonuses(BonusType::STACK_HEALTH) * i->second;
  133. }
  134. }
  135. static void summonGuardiansHelper(std::vector<BattleHex> & output, const BattleHex & targetPosition, ui8 side, bool targetIsTwoHex) //return hexes for summoning two hex monsters in output, target = unit to guard
  136. {
  137. int x = targetPosition.getX();
  138. int y = targetPosition.getY();
  139. const bool targetIsAttacker = side == BattleSide::ATTACKER;
  140. if (targetIsAttacker) //handle front guardians, TODO: should we handle situation when units start battle near opposite side of the battlefield? Cannot happen in normal H3...
  141. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::RIGHT, false).cloneInDirection(BattleHex::EDir::RIGHT, false), output);
  142. else
  143. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::LEFT, false).cloneInDirection(BattleHex::EDir::LEFT, false), output);
  144. //guardian spawn locations for four default position cases for attacker and defender, non-default starting location for att and def is handled in first two if's
  145. if (targetIsAttacker && ((y % 2 == 0) || (x > 1)))
  146. {
  147. if (targetIsTwoHex && (y % 2 == 1) && (x == 2)) //handle exceptional case
  148. {
  149. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::TOP_RIGHT, false), output);
  150. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::BOTTOM_RIGHT, false), output);
  151. }
  152. else
  153. { //add back-side guardians for two-hex target, side guardians for one-hex
  154. BattleHex::checkAndPush(targetPosition.cloneInDirection(targetIsTwoHex ? BattleHex::EDir::TOP_LEFT : BattleHex::EDir::TOP_RIGHT, false), output);
  155. BattleHex::checkAndPush(targetPosition.cloneInDirection(targetIsTwoHex ? BattleHex::EDir::BOTTOM_LEFT : BattleHex::EDir::BOTTOM_RIGHT, false), output);
  156. if (!targetIsTwoHex && x > 2) //back guard for one-hex
  157. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::LEFT, false), output);
  158. else if (targetIsTwoHex)//front-side guardians for two-hex target
  159. {
  160. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::RIGHT, false).cloneInDirection(BattleHex::EDir::TOP_RIGHT, false), output);
  161. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::RIGHT, false).cloneInDirection(BattleHex::EDir::BOTTOM_RIGHT, false), output);
  162. if (x > 3) //back guard for two-hex
  163. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::LEFT, false).cloneInDirection(BattleHex::EDir::LEFT, false), output);
  164. }
  165. }
  166. }
  167. else if (!targetIsAttacker && ((y % 2 == 1) || (x < GameConstants::BFIELD_WIDTH - 2)))
  168. {
  169. if (targetIsTwoHex && (y % 2 == 0) && (x == GameConstants::BFIELD_WIDTH - 3)) //handle exceptional case... equivalent for above for defender side
  170. {
  171. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::TOP_LEFT, false), output);
  172. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::BOTTOM_LEFT, false), output);
  173. }
  174. else
  175. {
  176. BattleHex::checkAndPush(targetPosition.cloneInDirection(targetIsTwoHex ? BattleHex::EDir::TOP_RIGHT : BattleHex::EDir::TOP_LEFT, false), output);
  177. BattleHex::checkAndPush(targetPosition.cloneInDirection(targetIsTwoHex ? BattleHex::EDir::BOTTOM_RIGHT : BattleHex::EDir::BOTTOM_LEFT, false), output);
  178. if (!targetIsTwoHex && x < GameConstants::BFIELD_WIDTH - 3)
  179. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::RIGHT, false), output);
  180. else if (targetIsTwoHex)
  181. {
  182. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::LEFT, false).cloneInDirection(BattleHex::EDir::TOP_LEFT, false), output);
  183. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::LEFT, false).cloneInDirection(BattleHex::EDir::BOTTOM_LEFT, false), output);
  184. if (x < GameConstants::BFIELD_WIDTH - 4)
  185. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::RIGHT, false).cloneInDirection(BattleHex::EDir::RIGHT, false), output);
  186. }
  187. }
  188. }
  189. else if (!targetIsAttacker && y % 2 == 0)
  190. {
  191. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::LEFT, false).cloneInDirection(BattleHex::EDir::TOP_LEFT, false), output);
  192. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::LEFT, false).cloneInDirection(BattleHex::EDir::BOTTOM_LEFT, false), output);
  193. }
  194. else if (targetIsAttacker && y % 2 == 1)
  195. {
  196. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::RIGHT, false).cloneInDirection(BattleHex::EDir::TOP_RIGHT, false), output);
  197. BattleHex::checkAndPush(targetPosition.cloneInDirection(BattleHex::EDir::RIGHT, false).cloneInDirection(BattleHex::EDir::BOTTOM_RIGHT, false), output);
  198. }
  199. }
  200. PlayerStatus PlayerStatuses::operator[](PlayerColor player)
  201. {
  202. boost::unique_lock<boost::mutex> l(mx);
  203. if (players.find(player) != players.end())
  204. {
  205. return players.at(player);
  206. }
  207. else
  208. {
  209. throw std::runtime_error("No such player!");
  210. }
  211. }
  212. void PlayerStatuses::addPlayer(PlayerColor player)
  213. {
  214. boost::unique_lock<boost::mutex> l(mx);
  215. players[player];
  216. }
  217. bool PlayerStatuses::checkFlag(PlayerColor player, bool PlayerStatus::*flag)
  218. {
  219. boost::unique_lock<boost::mutex> l(mx);
  220. if (players.find(player) != players.end())
  221. {
  222. return players[player].*flag;
  223. }
  224. else
  225. {
  226. throw std::runtime_error("No such player!");
  227. }
  228. }
  229. void PlayerStatuses::setFlag(PlayerColor player, bool PlayerStatus::*flag, bool val)
  230. {
  231. boost::unique_lock<boost::mutex> l(mx);
  232. if (players.find(player) != players.end())
  233. {
  234. players[player].*flag = val;
  235. }
  236. else
  237. {
  238. throw std::runtime_error("No such player!");
  239. }
  240. cv.notify_all();
  241. }
  242. template <typename T>
  243. void callWith(std::vector<T> args, std::function<void(T)> fun, ui32 which)
  244. {
  245. fun(args[which]);
  246. }
  247. const Services * CGameHandler::services() const
  248. {
  249. return VLC;
  250. }
  251. const CGameHandler::BattleCb * CGameHandler::battle() const
  252. {
  253. return this;
  254. }
  255. const CGameHandler::GameCb * CGameHandler::game() const
  256. {
  257. return this;
  258. }
  259. vstd::CLoggerBase * CGameHandler::logger() const
  260. {
  261. return logGlobal;
  262. }
  263. events::EventBus * CGameHandler::eventBus() const
  264. {
  265. return serverEventBus.get();
  266. }
  267. CVCMIServer * CGameHandler::gameLobby() const
  268. {
  269. return lobby;
  270. }
  271. void CGameHandler::levelUpHero(const CGHeroInstance * hero, SecondarySkill skill)
  272. {
  273. changeSecSkill(hero, skill, 1, 0);
  274. expGiven(hero);
  275. }
  276. void CGameHandler::levelUpHero(const CGHeroInstance * hero)
  277. {
  278. // required exp for at least 1 lvl-up hasn't been reached
  279. if (!hero->gainsLevel())
  280. {
  281. return;
  282. }
  283. // give primary skill
  284. logGlobal->trace("%s got level %d", hero->getNameTranslated(), hero->level);
  285. auto primarySkill = hero->nextPrimarySkill(getRandomGenerator());
  286. SetPrimSkill sps;
  287. sps.id = hero->id;
  288. sps.which = primarySkill;
  289. sps.abs = false;
  290. sps.val = 1;
  291. sendAndApply(&sps);
  292. PrepareHeroLevelUp pre;
  293. pre.heroId = hero->id;
  294. sendAndApply(&pre);
  295. HeroLevelUp hlu;
  296. hlu.player = hero->tempOwner;
  297. hlu.heroId = hero->id;
  298. hlu.primskill = primarySkill;
  299. hlu.skills = pre.skills;
  300. if (hlu.skills.size() == 0)
  301. {
  302. sendAndApply(&hlu);
  303. levelUpHero(hero);
  304. }
  305. else if (hlu.skills.size() == 1)
  306. {
  307. sendAndApply(&hlu);
  308. levelUpHero(hero, pre.skills.front());
  309. }
  310. else if (hlu.skills.size() > 1)
  311. {
  312. auto levelUpQuery = std::make_shared<CHeroLevelUpDialogQuery>(this, hlu, hero);
  313. hlu.queryID = levelUpQuery->queryID;
  314. queries.addQuery(levelUpQuery);
  315. sendAndApply(&hlu);
  316. //level up will be called on query reply
  317. }
  318. }
  319. void CGameHandler::levelUpCommander (const CCommanderInstance * c, int skill)
  320. {
  321. SetCommanderProperty scp;
  322. auto hero = dynamic_cast<const CGHeroInstance *>(c->armyObj);
  323. if (hero)
  324. scp.heroid = hero->id;
  325. else
  326. {
  327. complain ("Commander is not led by hero!");
  328. return;
  329. }
  330. scp.accumulatedBonus.subtype = 0;
  331. scp.accumulatedBonus.additionalInfo = 0;
  332. scp.accumulatedBonus.duration = BonusDuration::PERMANENT;
  333. scp.accumulatedBonus.turnsRemain = 0;
  334. scp.accumulatedBonus.source = BonusSource::COMMANDER;
  335. scp.accumulatedBonus.valType = BonusValueType::BASE_NUMBER;
  336. if (skill <= ECommander::SPELL_POWER)
  337. {
  338. scp.which = SetCommanderProperty::BONUS;
  339. auto difference = [](std::vector< std::vector <ui8> > skillLevels, std::vector <ui8> secondarySkills, int skill)->int
  340. {
  341. int s = std::min (skill, (int)ECommander::SPELL_POWER); //spell power level controls also casts and resistance
  342. return skillLevels.at(skill).at(secondarySkills.at(s)) - (secondarySkills.at(s) ? skillLevels.at(skill).at(secondarySkills.at(s)-1) : 0);
  343. };
  344. switch (skill)
  345. {
  346. case ECommander::ATTACK:
  347. scp.accumulatedBonus.type = BonusType::PRIMARY_SKILL;
  348. scp.accumulatedBonus.subtype = PrimarySkill::ATTACK;
  349. break;
  350. case ECommander::DEFENSE:
  351. scp.accumulatedBonus.type = BonusType::PRIMARY_SKILL;
  352. scp.accumulatedBonus.subtype = PrimarySkill::DEFENSE;
  353. break;
  354. case ECommander::HEALTH:
  355. scp.accumulatedBonus.type = BonusType::STACK_HEALTH;
  356. scp.accumulatedBonus.valType = BonusValueType::PERCENT_TO_BASE;
  357. break;
  358. case ECommander::DAMAGE:
  359. scp.accumulatedBonus.type = BonusType::CREATURE_DAMAGE;
  360. scp.accumulatedBonus.subtype = 0;
  361. scp.accumulatedBonus.valType = BonusValueType::PERCENT_TO_BASE;
  362. break;
  363. case ECommander::SPEED:
  364. scp.accumulatedBonus.type = BonusType::STACKS_SPEED;
  365. break;
  366. case ECommander::SPELL_POWER:
  367. scp.accumulatedBonus.type = BonusType::MAGIC_RESISTANCE;
  368. scp.accumulatedBonus.val = difference (VLC->creh->skillLevels, c->secondarySkills, ECommander::RESISTANCE);
  369. sendAndApply (&scp); //additional pack
  370. scp.accumulatedBonus.type = BonusType::CREATURE_SPELL_POWER;
  371. scp.accumulatedBonus.val = difference (VLC->creh->skillLevels, c->secondarySkills, ECommander::SPELL_POWER) * 100; //like hero with spellpower = ability level
  372. sendAndApply (&scp); //additional pack
  373. scp.accumulatedBonus.type = BonusType::CASTS;
  374. scp.accumulatedBonus.val = difference (VLC->creh->skillLevels, c->secondarySkills, ECommander::CASTS);
  375. sendAndApply (&scp); //additional pack
  376. scp.accumulatedBonus.type = BonusType::CREATURE_ENCHANT_POWER; //send normally
  377. break;
  378. }
  379. scp.accumulatedBonus.val = difference (VLC->creh->skillLevels, c->secondarySkills, skill);
  380. sendAndApply (&scp);
  381. scp.which = SetCommanderProperty::SECONDARY_SKILL;
  382. scp.additionalInfo = skill;
  383. scp.amount = c->secondarySkills.at(skill) + 1;
  384. sendAndApply (&scp);
  385. }
  386. else if (skill >= 100)
  387. {
  388. scp.which = SetCommanderProperty::SPECIAL_SKILL;
  389. scp.accumulatedBonus = *VLC->creh->skillRequirements.at(skill-100).first;
  390. scp.additionalInfo = skill; //unnormalized
  391. sendAndApply (&scp);
  392. }
  393. expGiven(hero);
  394. }
  395. void CGameHandler::levelUpCommander(const CCommanderInstance * c)
  396. {
  397. if (!c->gainsLevel())
  398. {
  399. return;
  400. }
  401. CommanderLevelUp clu;
  402. auto hero = dynamic_cast<const CGHeroInstance *>(c->armyObj);
  403. if(hero)
  404. {
  405. clu.heroId = hero->id;
  406. clu.player = hero->tempOwner;
  407. }
  408. else
  409. {
  410. complain ("Commander is not led by hero!");
  411. return;
  412. }
  413. //picking sec. skills for choice
  414. for (int i = 0; i <= ECommander::SPELL_POWER; ++i)
  415. {
  416. if (c->secondarySkills.at(i) < ECommander::MAX_SKILL_LEVEL)
  417. clu.skills.push_back(i);
  418. }
  419. int i = 100;
  420. for (auto specialSkill : VLC->creh->skillRequirements)
  421. {
  422. if (c->secondarySkills.at(specialSkill.second.first) == ECommander::MAX_SKILL_LEVEL
  423. && c->secondarySkills.at(specialSkill.second.second) == ECommander::MAX_SKILL_LEVEL
  424. && !vstd::contains (c->specialSKills, i))
  425. clu.skills.push_back (i);
  426. ++i;
  427. }
  428. int skillAmount = static_cast<int>(clu.skills.size());
  429. if (!skillAmount)
  430. {
  431. sendAndApply(&clu);
  432. levelUpCommander(c);
  433. }
  434. else if (skillAmount == 1 || hero->tempOwner == PlayerColor::NEUTRAL) //choose skill automatically
  435. {
  436. sendAndApply(&clu);
  437. levelUpCommander(c, *RandomGeneratorUtil::nextItem(clu.skills, getRandomGenerator()));
  438. }
  439. else if (skillAmount > 1) //apply and ask for secondary skill
  440. {
  441. auto commanderLevelUp = std::make_shared<CCommanderLevelUpDialogQuery>(this, clu, hero);
  442. clu.queryID = commanderLevelUp->queryID;
  443. queries.addQuery(commanderLevelUp);
  444. sendAndApply(&clu);
  445. }
  446. }
  447. void CGameHandler::expGiven(const CGHeroInstance *hero)
  448. {
  449. if (hero->gainsLevel())
  450. levelUpHero(hero);
  451. else if (hero->commander && hero->commander->gainsLevel())
  452. levelUpCommander(hero->commander);
  453. //if (hero->commander && hero->level > hero->commander->level && hero->commander->gainsLevel())
  454. // levelUpCommander(hero->commander);
  455. // else
  456. // levelUpHero(hero);
  457. }
  458. void CGameHandler::changePrimSkill(const CGHeroInstance * hero, PrimarySkill::PrimarySkill which, si64 val, bool abs)
  459. {
  460. if (which == PrimarySkill::EXPERIENCE) // Check if scenario limit reached
  461. {
  462. if (gs->map->levelLimit != 0)
  463. {
  464. TExpType expLimit = VLC->heroh->reqExp(gs->map->levelLimit);
  465. TExpType resultingExp = abs ? val : hero->exp + val;
  466. if (resultingExp > expLimit)
  467. {
  468. // set given experience to max possible, but don't decrease if hero already over top
  469. abs = true;
  470. val = std::max(expLimit, hero->exp);
  471. InfoWindow iw;
  472. iw.player = hero->tempOwner;
  473. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 1); //can gain no more XP
  474. iw.text.replaceRawString(hero->getNameTranslated());
  475. sendAndApply(&iw);
  476. }
  477. }
  478. }
  479. SetPrimSkill sps;
  480. sps.id = hero->id;
  481. sps.which = which;
  482. sps.abs = abs;
  483. sps.val = val;
  484. sendAndApply(&sps);
  485. //only for exp - hero may level up
  486. if (which == PrimarySkill::EXPERIENCE)
  487. {
  488. if (hero->commander && hero->commander->alive)
  489. {
  490. //FIXME: trim experience according to map limit?
  491. SetCommanderProperty scp;
  492. scp.heroid = hero->id;
  493. scp.which = SetCommanderProperty::EXPERIENCE;
  494. scp.amount = val;
  495. sendAndApply (&scp);
  496. CBonusSystemNode::treeHasChanged();
  497. }
  498. expGiven(hero);
  499. }
  500. }
  501. void CGameHandler::changeSecSkill(const CGHeroInstance * hero, SecondarySkill which, int val, bool abs)
  502. {
  503. if(!hero)
  504. {
  505. logGlobal->error("changeSecSkill provided no hero");
  506. return;
  507. }
  508. SetSecSkill sss;
  509. sss.id = hero->id;
  510. sss.which = which;
  511. sss.val = val;
  512. sss.abs = abs;
  513. sendAndApply(&sss);
  514. if (hero->visitedTown)
  515. giveSpells(hero->visitedTown, hero);
  516. }
  517. void CGameHandler::endBattle(int3 tile, const CGHeroInstance * heroAttacker, const CGHeroInstance * heroDefender)
  518. {
  519. LOG_TRACE(logGlobal);
  520. //Fill BattleResult structure with exp info
  521. giveExp(*battleResult.data);
  522. if (battleResult.get()->result == BattleResult::NORMAL) // give 500 exp for defeating hero, unless he escaped
  523. {
  524. if(heroAttacker)
  525. battleResult.data->exp[1] += 500;
  526. if(heroDefender)
  527. battleResult.data->exp[0] += 500;
  528. }
  529. if(heroAttacker)
  530. battleResult.data->exp[0] = heroAttacker->calculateXp(battleResult.data->exp[0]);//scholar skill
  531. if(heroDefender)
  532. battleResult.data->exp[1] = heroDefender->calculateXp(battleResult.data->exp[1]);
  533. auto battleQuery = std::dynamic_pointer_cast<CBattleQuery>(queries.topQuery(gs->curB->sides[0].color));
  534. if (!battleQuery)
  535. {
  536. logGlobal->error("Cannot find battle query!");
  537. complain("Player " + boost::lexical_cast<std::string>(gs->curB->sides[0].color) + " has no battle query at the top!");
  538. return;
  539. }
  540. battleQuery->result = std::make_optional(*battleResult.data);
  541. //Check how many battle queries were created (number of players blocked by battle)
  542. const int queriedPlayers = battleQuery ? (int)boost::count(queries.allQueries(), battleQuery) : 0;
  543. finishingBattle = std::make_unique<FinishingBattleHelper>(battleQuery, queriedPlayers);
  544. // in battles against neutrals, 1st player can ask to replay battle manually
  545. if (!gs->curB->sides[1].color.isValidPlayer())
  546. {
  547. auto battleDialogQuery = std::make_shared<CBattleDialogQuery>(this, gs->curB);
  548. battleResult.data->queryID = battleDialogQuery->queryID;
  549. queries.addQuery(battleDialogQuery);
  550. }
  551. else
  552. battleResult.data->queryID = -1;
  553. //set same battle result for all queries
  554. for(auto q : queries.allQueries())
  555. {
  556. auto otherBattleQuery = std::dynamic_pointer_cast<CBattleQuery>(q);
  557. if(otherBattleQuery)
  558. otherBattleQuery->result = battleQuery->result;
  559. }
  560. sendAndApply(battleResult.data); //after this point casualties objects are destroyed
  561. if (battleResult.data->queryID == -1)
  562. endBattleConfirm(gs->curB);
  563. }
  564. void CGameHandler::endBattleConfirm(const BattleInfo * battleInfo)
  565. {
  566. auto battleQuery = std::dynamic_pointer_cast<CBattleQuery>(queries.topQuery(battleInfo->sides.at(0).color));
  567. if(!battleQuery)
  568. {
  569. logGlobal->trace("No battle query, battle end was confirmed by another player");
  570. return;
  571. }
  572. const BattleResult::EResult result = battleResult.get()->result;
  573. CasualtiesAfterBattle cab1(battleInfo->sides.at(0), battleInfo), cab2(battleInfo->sides.at(1), battleInfo); //calculate casualties before deleting battle
  574. ChangeSpells cs; //for Eagle Eye
  575. if(!finishingBattle->isDraw() && finishingBattle->winnerHero)
  576. {
  577. if (int eagleEyeLevel = finishingBattle->winnerHero->valOfBonuses(BonusType::LEARN_BATTLE_SPELL_LEVEL_LIMIT, -1))
  578. {
  579. double eagleEyeChance = finishingBattle->winnerHero->valOfBonuses(BonusType::LEARN_BATTLE_SPELL_CHANCE, 0);
  580. for(auto & spellId : battleInfo->sides.at(!battleResult.data->winner).usedSpellsHistory)
  581. {
  582. auto spell = spellId.toSpell(VLC->spells());
  583. if(spell && spell->getLevel() <= eagleEyeLevel && !finishingBattle->winnerHero->spellbookContainsSpell(spell->getId()) && getRandomGenerator().nextInt(99) < eagleEyeChance)
  584. cs.spells.insert(spell->getId());
  585. }
  586. }
  587. }
  588. std::vector<const CArtifactInstance *> arts; //display them in window
  589. if(result == BattleResult::NORMAL && !finishingBattle->isDraw() && finishingBattle->winnerHero)
  590. {
  591. auto sendMoveArtifact = [&](const CArtifactInstance *art, MoveArtifact *ma)
  592. {
  593. const auto slot = ArtifactUtils::getArtAnyPosition(finishingBattle->winnerHero, art->getTypeId());
  594. if(slot != ArtifactPosition::PRE_FIRST)
  595. {
  596. arts.push_back(art);
  597. ma->dst = ArtifactLocation(finishingBattle->winnerHero, slot);
  598. if(ArtifactUtils::isSlotBackpack(slot))
  599. ma->askAssemble = false;
  600. sendAndApply(ma);
  601. }
  602. };
  603. if (finishingBattle->loserHero)
  604. {
  605. //TODO: wrap it into a function, somehow (std::variant -_-)
  606. auto artifactsWorn = finishingBattle->loserHero->artifactsWorn;
  607. for (auto artSlot : artifactsWorn)
  608. {
  609. MoveArtifact ma;
  610. ma.src = ArtifactLocation(finishingBattle->loserHero, artSlot.first);
  611. const CArtifactInstance * art = ma.src.getArt();
  612. if (art && !art->artType->isBig() &&
  613. art->artType->getId() != ArtifactID::SPELLBOOK)
  614. // don't move war machines or locked arts (spellbook)
  615. {
  616. sendMoveArtifact(art, &ma);
  617. }
  618. }
  619. for(int slotNumber = finishingBattle->loserHero->artifactsInBackpack.size() - 1; slotNumber >= 0; slotNumber--)
  620. {
  621. //we assume that no big artifacts can be found
  622. MoveArtifact ma;
  623. ma.src = ArtifactLocation(finishingBattle->loserHero,
  624. ArtifactPosition(GameConstants::BACKPACK_START + slotNumber)); //backpack automatically shifts arts to beginning
  625. const CArtifactInstance * art = ma.src.getArt();
  626. if (art->artType->getId() != ArtifactID::GRAIL) //grail may not be won
  627. {
  628. sendMoveArtifact(art, &ma);
  629. }
  630. }
  631. if (finishingBattle->loserHero->commander) //TODO: what if commanders belong to no hero?
  632. {
  633. artifactsWorn = finishingBattle->loserHero->commander->artifactsWorn;
  634. for (auto artSlot : artifactsWorn)
  635. {
  636. MoveArtifact ma;
  637. ma.src = ArtifactLocation(finishingBattle->loserHero->commander.get(), artSlot.first);
  638. const CArtifactInstance * art = ma.src.getArt();
  639. if (art && !art->artType->isBig())
  640. {
  641. sendMoveArtifact(art, &ma);
  642. }
  643. }
  644. }
  645. }
  646. for (auto armySlot : battleInfo->sides.at(!battleResult.data->winner).armyObject->stacks)
  647. {
  648. auto artifactsWorn = armySlot.second->artifactsWorn;
  649. for (auto artSlot : artifactsWorn)
  650. {
  651. MoveArtifact ma;
  652. ma.src = ArtifactLocation(armySlot.second, artSlot.first);
  653. const CArtifactInstance * art = ma.src.getArt();
  654. if (art && !art->artType->isBig())
  655. {
  656. sendMoveArtifact(art, &ma);
  657. }
  658. }
  659. }
  660. }
  661. if (arts.size()) //display loot
  662. {
  663. InfoWindow iw;
  664. iw.player = finishingBattle->winnerHero->tempOwner;
  665. iw.text.appendLocalString (EMetaText::GENERAL_TXT, 30); //You have captured enemy artifact
  666. for (auto art : arts) //TODO; separate function to display loot for various ojects?
  667. {
  668. iw.components.emplace_back(
  669. Component::EComponentType::ARTIFACT, art->artType->getId(),
  670. art->artType->getId() == ArtifactID::SPELL_SCROLL? art->getScrollSpellID() : 0, 0);
  671. if (iw.components.size() >= 14)
  672. {
  673. sendAndApply(&iw);
  674. iw.components.clear();
  675. }
  676. }
  677. if (iw.components.size())
  678. {
  679. sendAndApply(&iw);
  680. }
  681. }
  682. //Eagle Eye secondary skill handling
  683. if (!cs.spells.empty())
  684. {
  685. cs.learn = 1;
  686. cs.hid = finishingBattle->winnerHero->id;
  687. InfoWindow iw;
  688. iw.player = finishingBattle->winnerHero->tempOwner;
  689. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 221); //Through eagle-eyed observation, %s is able to learn %s
  690. iw.text.replaceRawString(finishingBattle->winnerHero->getNameTranslated());
  691. std::ostringstream names;
  692. for (int i = 0; i < cs.spells.size(); i++)
  693. {
  694. names << "%s";
  695. if (i < cs.spells.size() - 2)
  696. names << ", ";
  697. else if (i < cs.spells.size() - 1)
  698. names << "%s";
  699. }
  700. names << ".";
  701. iw.text.replaceRawString(names.str());
  702. auto it = cs.spells.begin();
  703. for (int i = 0; i < cs.spells.size(); i++, it++)
  704. {
  705. iw.text.replaceLocalString(EMetaText::SPELL_NAME, it->toEnum());
  706. if (i == cs.spells.size() - 2) //we just added pre-last name
  707. iw.text.replaceLocalString(EMetaText::GENERAL_TXT, 141); // " and "
  708. iw.components.emplace_back(Component::EComponentType::SPELL, *it, 0, 0);
  709. }
  710. sendAndApply(&iw);
  711. sendAndApply(&cs);
  712. }
  713. cab1.updateArmy(this);
  714. cab2.updateArmy(this); //take casualties after battle is deleted
  715. if(finishingBattle->loserHero) //remove beaten hero
  716. {
  717. RemoveObject ro(finishingBattle->loserHero->id);
  718. sendAndApply(&ro);
  719. }
  720. if(finishingBattle->isDraw() && finishingBattle->winnerHero) //for draw case both heroes should be removed
  721. {
  722. RemoveObject ro(finishingBattle->winnerHero->id);
  723. sendAndApply(&ro);
  724. }
  725. if(battleResult.data->winner == BattleSide::DEFENDER
  726. && finishingBattle->winnerHero
  727. && finishingBattle->winnerHero->visitedTown
  728. && !finishingBattle->winnerHero->inTownGarrison
  729. && finishingBattle->winnerHero->visitedTown->garrisonHero == finishingBattle->winnerHero)
  730. {
  731. swapGarrisonOnSiege(finishingBattle->winnerHero->visitedTown->id); //return defending visitor from garrison to its rightful place
  732. }
  733. //give exp
  734. if(!finishingBattle->isDraw() && battleResult.data->exp[finishingBattle->winnerSide] && finishingBattle->winnerHero)
  735. changePrimSkill(finishingBattle->winnerHero, PrimarySkill::EXPERIENCE, battleResult.data->exp[finishingBattle->winnerSide]);
  736. BattleResultAccepted raccepted;
  737. raccepted.heroResult[0].army = const_cast<CArmedInstance*>(battleInfo->sides.at(0).armyObject);
  738. raccepted.heroResult[1].army = const_cast<CArmedInstance*>(battleInfo->sides.at(1).armyObject);
  739. raccepted.heroResult[0].hero = const_cast<CGHeroInstance*>(battleInfo->sides.at(0).hero);
  740. raccepted.heroResult[1].hero = const_cast<CGHeroInstance*>(battleInfo->sides.at(1).hero);
  741. raccepted.heroResult[0].exp = battleResult.data->exp[0];
  742. raccepted.heroResult[1].exp = battleResult.data->exp[1];
  743. raccepted.winnerSide = finishingBattle->winnerSide;
  744. sendAndApply(&raccepted);
  745. queries.popIfTop(battleQuery);
  746. //--> continuation (battleAfterLevelUp) occurs after level-up queries are handled or on removing query
  747. }
  748. void CGameHandler::battleAfterLevelUp(const BattleResult &result)
  749. {
  750. LOG_TRACE(logGlobal);
  751. if(!finishingBattle)
  752. return;
  753. finishingBattle->remainingBattleQueriesCount--;
  754. logGlobal->trace("Decremented queries count to %d", finishingBattle->remainingBattleQueriesCount);
  755. if (finishingBattle->remainingBattleQueriesCount > 0)
  756. //Battle results will be handled when all battle queries are closed
  757. return;
  758. //TODO consider if we really want it to work like above. ATM each player as unblocked as soon as possible
  759. // but the battle consequences are applied after final player is unblocked. Hard to abuse...
  760. // Still, it looks like a hole.
  761. // Necromancy if applicable.
  762. const CStackBasicDescriptor raisedStack = finishingBattle->winnerHero ? finishingBattle->winnerHero->calculateNecromancy(*battleResult.data) : CStackBasicDescriptor();
  763. // Give raised units to winner and show dialog, if any were raised,
  764. // units will be given after casualties are taken
  765. const SlotID necroSlot = raisedStack.type ? finishingBattle->winnerHero->getSlotFor(raisedStack.type) : SlotID();
  766. if (necroSlot != SlotID())
  767. {
  768. finishingBattle->winnerHero->showNecromancyDialog(raisedStack, getRandomGenerator());
  769. addToSlot(StackLocation(finishingBattle->winnerHero, necroSlot), raisedStack.type, raisedStack.count);
  770. }
  771. BattleResultsApplied resultsApplied;
  772. resultsApplied.player1 = finishingBattle->victor;
  773. resultsApplied.player2 = finishingBattle->loser;
  774. sendAndApply(&resultsApplied);
  775. setBattle(nullptr);
  776. if (visitObjectAfterVictory && result.winner==0 && !finishingBattle->winnerHero->stacks.empty())
  777. {
  778. logGlobal->trace("post-victory visit");
  779. visitObjectOnTile(*getTile(finishingBattle->winnerHero->visitablePos()), finishingBattle->winnerHero);
  780. }
  781. visitObjectAfterVictory = false;
  782. //handle victory/loss of engaged players
  783. std::set<PlayerColor> playerColors = {finishingBattle->loser, finishingBattle->victor};
  784. checkVictoryLossConditions(playerColors);
  785. if (result.result == BattleResult::SURRENDER)
  786. heroPool->onHeroSurrendered(finishingBattle->loser, finishingBattle->loserHero);
  787. if (result.result == BattleResult::ESCAPE)
  788. heroPool->onHeroEscaped(finishingBattle->loser, finishingBattle->loserHero);
  789. if (result.winner != 2 && finishingBattle->winnerHero && finishingBattle->winnerHero->stacks.empty()
  790. && (!finishingBattle->winnerHero->commander || !finishingBattle->winnerHero->commander->alive))
  791. {
  792. RemoveObject ro(finishingBattle->winnerHero->id);
  793. sendAndApply(&ro);
  794. if (VLC->settings()->getBoolean(EGameSettings::HEROES_RETREAT_ON_WIN_WITHOUT_TROOPS))
  795. heroPool->onHeroEscaped(finishingBattle->victor, finishingBattle->winnerHero);
  796. }
  797. finishingBattle.reset();
  798. }
  799. void CGameHandler::makeAttack(const CStack * attacker, const CStack * defender, int distance, BattleHex targetHex, bool first, bool ranged, bool counter)
  800. {
  801. if(first && !counter)
  802. handleAttackBeforeCasting(ranged, attacker, defender);
  803. FireShieldInfo fireShield;
  804. BattleAttack bat;
  805. BattleLogMessage blm;
  806. bat.stackAttacking = attacker->unitId();
  807. bat.tile = targetHex;
  808. std::shared_ptr<battle::CUnitState> attackerState = attacker->acquireState();
  809. if(ranged)
  810. bat.flags |= BattleAttack::SHOT;
  811. if(counter)
  812. bat.flags |= BattleAttack::COUNTER;
  813. const int attackerLuck = attacker->luckVal();
  814. if(attackerLuck > 0)
  815. {
  816. auto diceSize = VLC->settings()->getVector(EGameSettings::COMBAT_GOOD_LUCK_DICE);
  817. size_t diceIndex = std::min<size_t>(diceSize.size() - 1, attackerLuck);
  818. if(diceSize.size() > 0 && getRandomGenerator().nextInt(1, diceSize[diceIndex]) == 1)
  819. bat.flags |= BattleAttack::LUCKY;
  820. }
  821. if(attackerLuck < 0)
  822. {
  823. auto diceSize = VLC->settings()->getVector(EGameSettings::COMBAT_BAD_LUCK_DICE);
  824. size_t diceIndex = std::min<size_t>(diceSize.size() - 1, -attackerLuck);
  825. if(diceSize.size() > 0 && getRandomGenerator().nextInt(1, diceSize[diceIndex]) == 1)
  826. bat.flags |= BattleAttack::UNLUCKY;
  827. }
  828. if (getRandomGenerator().nextInt(99) < attacker->valOfBonuses(BonusType::DOUBLE_DAMAGE_CHANCE))
  829. {
  830. bat.flags |= BattleAttack::DEATH_BLOW;
  831. }
  832. const auto * owner = gs->curB->getHero(attacker->unitOwner());
  833. if(owner)
  834. {
  835. int chance = owner->valOfBonuses(BonusType::BONUS_DAMAGE_CHANCE, attacker->creatureIndex());
  836. if (chance > getRandomGenerator().nextInt(99))
  837. bat.flags |= BattleAttack::BALLISTA_DOUBLE_DMG;
  838. }
  839. int64_t drainedLife = 0;
  840. // only primary target
  841. if(defender->alive())
  842. drainedLife += applyBattleEffects(bat, attackerState, fireShield, defender, distance, false);
  843. //multiple-hex normal attack
  844. std::set<const CStack*> attackedCreatures = gs->curB->getAttackedCreatures(attacker, targetHex, bat.shot()); //creatures other than primary target
  845. for(const CStack * stack : attackedCreatures)
  846. {
  847. if(stack != defender && stack->alive()) //do not hit same stack twice
  848. drainedLife += applyBattleEffects(bat, attackerState, fireShield, stack, distance, true);
  849. }
  850. std::shared_ptr<const Bonus> bonus = attacker->getBonusLocalFirst(Selector::type()(BonusType::SPELL_LIKE_ATTACK));
  851. if(bonus && ranged) //TODO: make it work in melee?
  852. {
  853. //this is need for displaying hit animation
  854. bat.flags |= BattleAttack::SPELL_LIKE;
  855. bat.spellID = SpellID(bonus->subtype);
  856. //TODO: should spell override creature`s projectile?
  857. auto spell = bat.spellID.toSpell();
  858. battle::Target target;
  859. target.emplace_back(defender, targetHex);
  860. spells::BattleCast event(gs->curB, attacker, spells::Mode::SPELL_LIKE_ATTACK, spell);
  861. event.setSpellLevel(bonus->val);
  862. auto attackedCreatures = spell->battleMechanics(&event)->getAffectedStacks(target);
  863. //TODO: get exact attacked hex for defender
  864. for(const CStack * stack : attackedCreatures)
  865. {
  866. if(stack != defender && stack->alive()) //do not hit same stack twice
  867. {
  868. drainedLife += applyBattleEffects(bat, attackerState, fireShield, stack, distance, true);
  869. }
  870. }
  871. //now add effect info for all attacked stacks
  872. for (BattleStackAttacked & bsa : bat.bsa)
  873. {
  874. if (bsa.attackerID == attacker->unitId()) //this is our attack and not f.e. fire shield
  875. {
  876. //this is need for displaying affect animation
  877. bsa.flags |= BattleStackAttacked::SPELL_EFFECT;
  878. bsa.spellID = SpellID(bonus->subtype);
  879. }
  880. }
  881. }
  882. attackerState->afterAttack(ranged, counter);
  883. {
  884. UnitChanges info(attackerState->unitId(), UnitChanges::EOperation::RESET_STATE);
  885. attackerState->save(info.data);
  886. bat.attackerChanges.changedStacks.push_back(info);
  887. }
  888. if (drainedLife > 0)
  889. bat.flags |= BattleAttack::LIFE_DRAIN;
  890. sendAndApply(&bat);
  891. {
  892. const bool multipleTargets = bat.bsa.size() > 1;
  893. int64_t totalDamage = 0;
  894. int32_t totalKills = 0;
  895. for(const BattleStackAttacked & bsa : bat.bsa)
  896. {
  897. totalDamage += bsa.damageAmount;
  898. totalKills += bsa.killedAmount;
  899. }
  900. {
  901. MetaString text;
  902. attacker->addText(text, EMetaText::GENERAL_TXT, 376);
  903. attacker->addNameReplacement(text);
  904. text.replaceNumber(totalDamage);
  905. blm.lines.push_back(text);
  906. }
  907. addGenericKilledLog(blm, defender, totalKills, multipleTargets);
  908. }
  909. // drain life effect (as well as log entry) must be applied after the attack
  910. if(drainedLife > 0)
  911. {
  912. MetaString text;
  913. attackerState->addText(text, EMetaText::GENERAL_TXT, 361);
  914. attackerState->addNameReplacement(text, false);
  915. text.replaceNumber(drainedLife);
  916. defender->addNameReplacement(text, true);
  917. blm.lines.push_back(std::move(text));
  918. }
  919. if(!fireShield.empty())
  920. {
  921. //todo: this should be "virtual" spell instead, we only need fire spell school bonus here
  922. const CSpell * fireShieldSpell = SpellID(SpellID::FIRE_SHIELD).toSpell();
  923. int64_t totalDamage = 0;
  924. for(const auto & item : fireShield)
  925. {
  926. const CStack * actor = item.first;
  927. int64_t rawDamage = item.second;
  928. const CGHeroInstance * actorOwner = gs->curB->getHero(actor->unitOwner());
  929. if(actorOwner)
  930. {
  931. rawDamage = fireShieldSpell->adjustRawDamage(actorOwner, attacker, rawDamage);
  932. }
  933. else
  934. {
  935. rawDamage = fireShieldSpell->adjustRawDamage(actor, attacker, rawDamage);
  936. }
  937. totalDamage+=rawDamage;
  938. //FIXME: add custom effect on actor
  939. }
  940. if (totalDamage > 0)
  941. {
  942. BattleStackAttacked bsa;
  943. bsa.flags |= BattleStackAttacked::FIRE_SHIELD;
  944. bsa.stackAttacked = attacker->unitId(); //invert
  945. bsa.attackerID = defender->unitId();
  946. bsa.damageAmount = totalDamage;
  947. attacker->prepareAttacked(bsa, getRandomGenerator());
  948. StacksInjured pack;
  949. pack.stacks.push_back(bsa);
  950. sendAndApply(&pack);
  951. // TODO: this is already implemented in Damage::describeEffect()
  952. {
  953. MetaString text;
  954. text.appendLocalString(EMetaText::GENERAL_TXT, 376);
  955. text.replaceLocalString(EMetaText::SPELL_NAME, SpellID::FIRE_SHIELD);
  956. text.replaceNumber(totalDamage);
  957. blm.lines.push_back(std::move(text));
  958. }
  959. addGenericKilledLog(blm, attacker, bsa.killedAmount, false);
  960. }
  961. }
  962. sendAndApply(&blm);
  963. handleAfterAttackCasting(ranged, attacker, defender);
  964. }
  965. int64_t CGameHandler::applyBattleEffects(BattleAttack & bat, std::shared_ptr<battle::CUnitState> attackerState, FireShieldInfo & fireShield, const CStack * def, int distance, bool secondary)
  966. {
  967. BattleStackAttacked bsa;
  968. if(secondary)
  969. bsa.flags |= BattleStackAttacked::SECONDARY; //all other targets do not suffer from spells & spell-like abilities
  970. bsa.attackerID = attackerState->unitId();
  971. bsa.stackAttacked = def->unitId();
  972. {
  973. BattleAttackInfo bai(attackerState.get(), def, distance, bat.shot());
  974. bai.deathBlow = bat.deathBlow();
  975. bai.doubleDamage = bat.ballistaDoubleDmg();
  976. bai.luckyStrike = bat.lucky();
  977. bai.unluckyStrike = bat.unlucky();
  978. auto range = gs->curB->calculateDmgRange(bai);
  979. bsa.damageAmount = gs->curB->getActualDamage(range.damage, attackerState->getCount(), getRandomGenerator());
  980. CStack::prepareAttacked(bsa, getRandomGenerator(), bai.defender->acquireState()); //calculate casualties
  981. }
  982. int64_t drainedLife = 0;
  983. //life drain handling
  984. if(attackerState->hasBonusOfType(BonusType::LIFE_DRAIN) && def->isLiving())
  985. {
  986. int64_t toHeal = bsa.damageAmount * attackerState->valOfBonuses(BonusType::LIFE_DRAIN) / 100;
  987. attackerState->heal(toHeal, EHealLevel::RESURRECT, EHealPower::PERMANENT);
  988. drainedLife += toHeal;
  989. }
  990. //soul steal handling
  991. if(attackerState->hasBonusOfType(BonusType::SOUL_STEAL) && def->isLiving())
  992. {
  993. //we can have two bonuses - one with subtype 0 and another with subtype 1
  994. //try to use permanent first, use only one of two
  995. for(si32 subtype = 1; subtype >= 0; subtype--)
  996. {
  997. if(attackerState->hasBonusOfType(BonusType::SOUL_STEAL, subtype))
  998. {
  999. int64_t toHeal = bsa.killedAmount * attackerState->valOfBonuses(BonusType::SOUL_STEAL, subtype) * attackerState->getMaxHealth();
  1000. attackerState->heal(toHeal, EHealLevel::OVERHEAL, ((subtype == 0) ? EHealPower::ONE_BATTLE : EHealPower::PERMANENT));
  1001. drainedLife += toHeal;
  1002. break;
  1003. }
  1004. }
  1005. }
  1006. bat.bsa.push_back(bsa); //add this stack to the list of victims after drain life has been calculated
  1007. //fire shield handling
  1008. if(!bat.shot() &&
  1009. !def->isClone() &&
  1010. def->hasBonusOfType(BonusType::FIRE_SHIELD) &&
  1011. !attackerState->hasBonusOfType(BonusType::FIRE_IMMUNITY) &&
  1012. CStack::isMeleeAttackPossible(attackerState.get(), def) // attacked needs to be adjacent to defender for fire shield to trigger (e.g. Dragon Breath attack)
  1013. )
  1014. {
  1015. //TODO: use damage with bonus but without penalties
  1016. auto fireShieldDamage = (std::min<int64_t>(def->getAvailableHealth(), bsa.damageAmount) * def->valOfBonuses(BonusType::FIRE_SHIELD)) / 100;
  1017. fireShield.push_back(std::make_pair(def, fireShieldDamage));
  1018. }
  1019. return drainedLife;
  1020. }
  1021. void CGameHandler::sendGenericKilledLog(const CStack * defender, int32_t killed, bool multiple)
  1022. {
  1023. if(killed > 0)
  1024. {
  1025. BattleLogMessage blm;
  1026. addGenericKilledLog(blm, defender, killed, multiple);
  1027. sendAndApply(&blm);
  1028. }
  1029. }
  1030. void CGameHandler::addGenericKilledLog(BattleLogMessage & blm, const CStack * defender, int32_t killed, bool multiple)
  1031. {
  1032. if(killed > 0)
  1033. {
  1034. const int32_t txtIndex = (killed > 1) ? 379 : 378;
  1035. std::string formatString = VLC->generaltexth->allTexts[txtIndex];
  1036. // these default h3 texts have unnecessary new lines, so get rid of them before displaying (and trim just in case, trimming newlines does not works for some reason)
  1037. formatString.erase(std::remove(formatString.begin(), formatString.end(), '\n'), formatString.end());
  1038. formatString.erase(std::remove(formatString.begin(), formatString.end(), '\r'), formatString.end());
  1039. boost::algorithm::trim(formatString);
  1040. boost::format txt(formatString);
  1041. if(killed > 1)
  1042. {
  1043. txt % killed % (multiple ? VLC->generaltexth->allTexts[43] : defender->unitType()->getNamePluralTranslated()); // creatures perish
  1044. }
  1045. else //killed == 1
  1046. {
  1047. txt % (multiple ? VLC->generaltexth->allTexts[42] : defender->unitType()->getNameSingularTranslated()); // creature perishes
  1048. }
  1049. MetaString line;
  1050. line.appendRawString(txt.str());
  1051. blm.lines.push_back(std::move(line));
  1052. }
  1053. }
  1054. void CGameHandler::handleClientDisconnection(std::shared_ptr<CConnection> c)
  1055. {
  1056. if(lobby->state == EServerState::SHUTDOWN || !gs || !gs->scenarioOps)
  1057. return;
  1058. for(auto & playerConnections : connections)
  1059. {
  1060. PlayerColor playerId = playerConnections.first;
  1061. auto * playerSettings = gs->scenarioOps->getPlayersSettings(playerId.getNum());
  1062. if(!playerSettings)
  1063. continue;
  1064. auto playerConnection = vstd::find(playerConnections.second, c);
  1065. if(playerConnection != playerConnections.second.end())
  1066. {
  1067. std::string messageText = boost::str(boost::format("%s (cid %d) was disconnected") % playerSettings->name % c->connectionID);
  1068. playerMessages->broadcastMessage(playerId, messageText);
  1069. }
  1070. }
  1071. }
  1072. void CGameHandler::handleReceivedPack(CPackForServer * pack)
  1073. {
  1074. //prepare struct informing that action was applied
  1075. auto sendPackageResponse = [&](bool succesfullyApplied)
  1076. {
  1077. PackageApplied applied;
  1078. applied.player = pack->player;
  1079. applied.result = succesfullyApplied;
  1080. applied.packType = typeList.getTypeID(pack);
  1081. applied.requestID = pack->requestID;
  1082. pack->c->sendPack(&applied);
  1083. };
  1084. CBaseForGHApply * apply = applier->getApplier(typeList.getTypeID(pack)); //and appropriate applier object
  1085. if(isBlockedByQueries(pack, pack->player))
  1086. {
  1087. sendPackageResponse(false);
  1088. }
  1089. else if(apply)
  1090. {
  1091. const bool result = apply->applyOnGH(this, this->gs, pack);
  1092. if(result)
  1093. logGlobal->trace("Message %s successfully applied!", typeid(*pack).name());
  1094. else
  1095. complain((boost::format("Got false in applying %s... that request must have been fishy!")
  1096. % typeid(*pack).name()).str());
  1097. sendPackageResponse(true);
  1098. }
  1099. else
  1100. {
  1101. logGlobal->error("Message cannot be applied, cannot find applier (unregistered type)!");
  1102. sendPackageResponse(false);
  1103. }
  1104. vstd::clear_pointer(pack);
  1105. }
  1106. int CGameHandler::moveStack(int stack, BattleHex dest)
  1107. {
  1108. int ret = 0;
  1109. const CStack *curStack = gs->curB->battleGetStackByID(stack),
  1110. *stackAtEnd = gs->curB->battleGetStackByPos(dest);
  1111. assert(curStack);
  1112. assert(dest < GameConstants::BFIELD_SIZE);
  1113. if (gs->curB->tacticDistance)
  1114. {
  1115. assert(gs->curB->isInTacticRange(dest));
  1116. }
  1117. auto start = curStack->getPosition();
  1118. if (start == dest)
  1119. return 0;
  1120. //initing necessary tables
  1121. auto accessibility = getAccesibility(curStack);
  1122. std::set<BattleHex> passed;
  1123. //Ignore obstacles on starting position
  1124. passed.insert(curStack->getPosition());
  1125. if(curStack->doubleWide())
  1126. passed.insert(curStack->occupiedHex());
  1127. //shifting destination (if we have double wide stack and we can occupy dest but not be exactly there)
  1128. if(!stackAtEnd && curStack->doubleWide() && !accessibility.accessible(dest, curStack))
  1129. {
  1130. BattleHex shifted = dest.cloneInDirection(curStack->destShiftDir(), false);
  1131. if(accessibility.accessible(shifted, curStack))
  1132. dest = shifted;
  1133. }
  1134. if((stackAtEnd && stackAtEnd!=curStack && stackAtEnd->alive()) || !accessibility.accessible(dest, curStack))
  1135. {
  1136. complain("Given destination is not accessible!");
  1137. return 0;
  1138. }
  1139. bool canUseGate = false;
  1140. auto dbState = gs->curB->si.gateState;
  1141. if(battleGetSiegeLevel() > 0 && curStack->unitSide() == BattleSide::DEFENDER &&
  1142. dbState != EGateState::DESTROYED &&
  1143. dbState != EGateState::BLOCKED)
  1144. {
  1145. canUseGate = true;
  1146. }
  1147. std::pair< std::vector<BattleHex>, int > path = gs->curB->getPath(start, dest, curStack);
  1148. ret = path.second;
  1149. int creSpeed = curStack->speed(0, true);
  1150. if (gs->curB->tacticDistance > 0 && creSpeed > 0)
  1151. creSpeed = GameConstants::BFIELD_SIZE;
  1152. bool hasWideMoat = vstd::contains_if(battleGetAllObstaclesOnPos(BattleHex(ESiegeHex::GATE_BRIDGE), false), [](const std::shared_ptr<const CObstacleInstance> & obst)
  1153. {
  1154. return obst->obstacleType == CObstacleInstance::MOAT;
  1155. });
  1156. auto isGateDrawbridgeHex = [&](BattleHex hex) -> bool
  1157. {
  1158. if (hasWideMoat && hex == ESiegeHex::GATE_BRIDGE)
  1159. return true;
  1160. if (hex == ESiegeHex::GATE_OUTER)
  1161. return true;
  1162. if (hex == ESiegeHex::GATE_INNER)
  1163. return true;
  1164. return false;
  1165. };
  1166. auto occupyGateDrawbridgeHex = [&](BattleHex hex) -> bool
  1167. {
  1168. if (isGateDrawbridgeHex(hex))
  1169. return true;
  1170. if (curStack->doubleWide())
  1171. {
  1172. BattleHex otherHex = curStack->occupiedHex(hex);
  1173. if (otherHex.isValid() && isGateDrawbridgeHex(otherHex))
  1174. return true;
  1175. }
  1176. return false;
  1177. };
  1178. if (curStack->hasBonusOfType(BonusType::FLYING))
  1179. {
  1180. if (path.second <= creSpeed && path.first.size() > 0)
  1181. {
  1182. if (canUseGate && dbState != EGateState::OPENED &&
  1183. occupyGateDrawbridgeHex(dest))
  1184. {
  1185. BattleUpdateGateState db;
  1186. db.state = EGateState::OPENED;
  1187. sendAndApply(&db);
  1188. }
  1189. //inform clients about move
  1190. BattleStackMoved sm;
  1191. sm.stack = curStack->unitId();
  1192. std::vector<BattleHex> tiles;
  1193. tiles.push_back(path.first[0]);
  1194. sm.tilesToMove = tiles;
  1195. sm.distance = path.second;
  1196. sm.teleporting = false;
  1197. sendAndApply(&sm);
  1198. }
  1199. }
  1200. else //for non-flying creatures
  1201. {
  1202. std::vector<BattleHex> tiles;
  1203. const int tilesToMove = std::max((int)(path.first.size() - creSpeed), 0);
  1204. int v = (int)path.first.size()-1;
  1205. path.first.push_back(start);
  1206. // check if gate need to be open or closed at some point
  1207. BattleHex openGateAtHex, gateMayCloseAtHex;
  1208. if (canUseGate)
  1209. {
  1210. for (int i = (int)path.first.size()-1; i >= 0; i--)
  1211. {
  1212. auto needOpenGates = [&](BattleHex hex) -> bool
  1213. {
  1214. if (hasWideMoat && hex == ESiegeHex::GATE_BRIDGE)
  1215. return true;
  1216. if (hex == ESiegeHex::GATE_BRIDGE && i-1 >= 0 && path.first[i-1] == ESiegeHex::GATE_OUTER)
  1217. return true;
  1218. else if (hex == ESiegeHex::GATE_OUTER || hex == ESiegeHex::GATE_INNER)
  1219. return true;
  1220. return false;
  1221. };
  1222. auto hex = path.first[i];
  1223. if (!openGateAtHex.isValid() && dbState != EGateState::OPENED)
  1224. {
  1225. if (needOpenGates(hex))
  1226. openGateAtHex = path.first[i+1];
  1227. //TODO we need find batter way to handle double-wide stacks
  1228. //currently if only second occupied stack part is standing on gate / bridge hex then stack will start to wait for bridge to lower before it's needed. Though this is just a visual bug.
  1229. if (curStack->doubleWide())
  1230. {
  1231. BattleHex otherHex = curStack->occupiedHex(hex);
  1232. if (otherHex.isValid() && needOpenGates(otherHex))
  1233. openGateAtHex = path.first[i+2];
  1234. }
  1235. //gate may be opened and then closed during stack movement, but not other way around
  1236. if (openGateAtHex.isValid())
  1237. dbState = EGateState::OPENED;
  1238. }
  1239. if (!gateMayCloseAtHex.isValid() && dbState != EGateState::CLOSED)
  1240. {
  1241. if (hex == ESiegeHex::GATE_INNER && i-1 >= 0 && path.first[i-1] != ESiegeHex::GATE_OUTER)
  1242. {
  1243. gateMayCloseAtHex = path.first[i-1];
  1244. }
  1245. if (hasWideMoat)
  1246. {
  1247. if (hex == ESiegeHex::GATE_BRIDGE && i-1 >= 0 && path.first[i-1] != ESiegeHex::GATE_OUTER)
  1248. {
  1249. gateMayCloseAtHex = path.first[i-1];
  1250. }
  1251. else if (hex == ESiegeHex::GATE_OUTER && i-1 >= 0 &&
  1252. path.first[i-1] != ESiegeHex::GATE_INNER &&
  1253. path.first[i-1] != ESiegeHex::GATE_BRIDGE)
  1254. {
  1255. gateMayCloseAtHex = path.first[i-1];
  1256. }
  1257. }
  1258. else if (hex == ESiegeHex::GATE_OUTER && i-1 >= 0 && path.first[i-1] != ESiegeHex::GATE_INNER)
  1259. {
  1260. gateMayCloseAtHex = path.first[i-1];
  1261. }
  1262. }
  1263. }
  1264. }
  1265. bool stackIsMoving = true;
  1266. while(stackIsMoving)
  1267. {
  1268. if (v<tilesToMove)
  1269. {
  1270. logGlobal->error("Movement terminated abnormally");
  1271. break;
  1272. }
  1273. bool gateStateChanging = false;
  1274. //special handling for opening gate on from starting hex
  1275. if (openGateAtHex.isValid() && openGateAtHex == start)
  1276. gateStateChanging = true;
  1277. else
  1278. {
  1279. for (bool obstacleHit = false; (!obstacleHit) && (!gateStateChanging) && (v >= tilesToMove); --v)
  1280. {
  1281. BattleHex hex = path.first[v];
  1282. tiles.push_back(hex);
  1283. if ((openGateAtHex.isValid() && openGateAtHex == hex) ||
  1284. (gateMayCloseAtHex.isValid() && gateMayCloseAtHex == hex))
  1285. {
  1286. gateStateChanging = true;
  1287. }
  1288. //if we walked onto something, finalize this portion of stack movement check into obstacle
  1289. if(!battleGetAllObstaclesOnPos(hex, false).empty())
  1290. obstacleHit = true;
  1291. if (curStack->doubleWide())
  1292. {
  1293. BattleHex otherHex = curStack->occupiedHex(hex);
  1294. //two hex creature hit obstacle by backside
  1295. auto obstacle2 = battleGetAllObstaclesOnPos(otherHex, false);
  1296. if(otherHex.isValid() && !obstacle2.empty())
  1297. obstacleHit = true;
  1298. }
  1299. if(!obstacleHit)
  1300. passed.insert(hex);
  1301. }
  1302. }
  1303. if (!tiles.empty())
  1304. {
  1305. //commit movement
  1306. BattleStackMoved sm;
  1307. sm.stack = curStack->unitId();
  1308. sm.distance = path.second;
  1309. sm.teleporting = false;
  1310. sm.tilesToMove = tiles;
  1311. sendAndApply(&sm);
  1312. tiles.clear();
  1313. }
  1314. //we don't handle obstacle at the destination tile -> it's handled separately in the if at the end
  1315. if (curStack->getPosition() != dest)
  1316. {
  1317. if(stackIsMoving && start != curStack->getPosition())
  1318. {
  1319. stackIsMoving = handleObstacleTriggersForUnit(*spellEnv, *curStack, passed);
  1320. passed.insert(curStack->getPosition());
  1321. if(curStack->doubleWide())
  1322. passed.insert(curStack->occupiedHex());
  1323. }
  1324. if (gateStateChanging)
  1325. {
  1326. if (curStack->getPosition() == openGateAtHex)
  1327. {
  1328. openGateAtHex = BattleHex();
  1329. //only open gate if stack is still alive
  1330. if (curStack->alive())
  1331. {
  1332. BattleUpdateGateState db;
  1333. db.state = EGateState::OPENED;
  1334. sendAndApply(&db);
  1335. }
  1336. }
  1337. else if (curStack->getPosition() == gateMayCloseAtHex)
  1338. {
  1339. gateMayCloseAtHex = BattleHex();
  1340. updateGateState();
  1341. }
  1342. }
  1343. }
  1344. else
  1345. //movement finished normally: we reached destination
  1346. stackIsMoving = false;
  1347. }
  1348. }
  1349. //handle last hex separately for deviation
  1350. if (VLC->settings()->getBoolean(EGameSettings::COMBAT_ONE_HEX_TRIGGERS_OBSTACLES))
  1351. {
  1352. if (dest == battle::Unit::occupiedHex(start, curStack->doubleWide(), curStack->unitSide())
  1353. || start == battle::Unit::occupiedHex(dest, curStack->doubleWide(), curStack->unitSide()))
  1354. passed.clear(); //Just empty passed, obstacles will handled automatically
  1355. }
  1356. //handling obstacle on the final field (separate, because it affects both flying and walking stacks)
  1357. handleObstacleTriggersForUnit(*spellEnv, *curStack, passed);
  1358. return ret;
  1359. }
  1360. CGameHandler::CGameHandler(CVCMIServer * lobby)
  1361. : lobby(lobby)
  1362. , heroPool(std::make_unique<HeroPoolProcessor>(this))
  1363. , playerMessages(std::make_unique<PlayerMessageProcessor>(this))
  1364. , complainNoCreatures("No creatures to split")
  1365. , complainNotEnoughCreatures("Cannot split that stack, not enough creatures!")
  1366. , complainInvalidSlot("Invalid slot accessed!")
  1367. {
  1368. QID = 1;
  1369. IObjectInterface::cb = this;
  1370. applier = std::make_shared<CApplier<CBaseForGHApply>>();
  1371. registerTypesServerPacks(*applier);
  1372. visitObjectAfterVictory = false;
  1373. spellEnv = new ServerSpellCastEnvironment(this);
  1374. }
  1375. CGameHandler::~CGameHandler()
  1376. {
  1377. if (battleThread)
  1378. {
  1379. //Setting battleMadeAction is needed because battleThread waits for the action to continue the main loop
  1380. battleMadeAction.setn(true);
  1381. battleThread->join();
  1382. }
  1383. delete spellEnv;
  1384. delete gs;
  1385. }
  1386. void CGameHandler::reinitScripting()
  1387. {
  1388. serverEventBus = std::make_unique<events::EventBus>();
  1389. #if SCRIPTING_ENABLED
  1390. serverScripts.reset(new scripting::PoolImpl(this, spellEnv));
  1391. #endif
  1392. }
  1393. void CGameHandler::init(StartInfo *si)
  1394. {
  1395. if (si->seedToBeUsed == 0)
  1396. {
  1397. si->seedToBeUsed = static_cast<ui32>(std::time(nullptr));
  1398. }
  1399. CMapService mapService;
  1400. gs = new CGameState();
  1401. gs->preInit(VLC);
  1402. logGlobal->info("Gamestate created!");
  1403. gs->init(&mapService, si);
  1404. logGlobal->info("Gamestate initialized!");
  1405. // reset seed, so that clients can't predict any following random values
  1406. getRandomGenerator().resetSeed();
  1407. for (auto & elem : gs->players)
  1408. {
  1409. states.addPlayer(elem.first);
  1410. }
  1411. reinitScripting();
  1412. }
  1413. static bool evntCmp(const CMapEvent &a, const CMapEvent &b)
  1414. {
  1415. return a.earlierThan(b);
  1416. }
  1417. void CGameHandler::setPortalDwelling(const CGTownInstance * town, bool forced=false, bool clear = false)
  1418. {// bool forced = true - if creature should be replaced, if false - only if no creature was set
  1419. const PlayerState * p = getPlayerState(town->tempOwner);
  1420. if (!p)
  1421. {
  1422. assert(town->tempOwner == PlayerColor::NEUTRAL);
  1423. return;
  1424. }
  1425. if (forced || town->creatures.at(GameConstants::CREATURES_PER_TOWN).second.empty())//we need to change creature
  1426. {
  1427. SetAvailableCreatures ssi;
  1428. ssi.tid = town->id;
  1429. ssi.creatures = town->creatures;
  1430. ssi.creatures[GameConstants::CREATURES_PER_TOWN].second.clear();//remove old one
  1431. const std::vector<ConstTransitivePtr<CGDwelling> > &dwellings = p->dwellings;
  1432. if (dwellings.empty())//no dwellings - just remove
  1433. {
  1434. sendAndApply(&ssi);
  1435. return;
  1436. }
  1437. auto dwelling = *RandomGeneratorUtil::nextItem(dwellings, getRandomGenerator());
  1438. // for multi-creature dwellings like Golem Factory
  1439. auto creatureId = RandomGeneratorUtil::nextItem(dwelling->creatures, getRandomGenerator())->second[0];
  1440. if (clear)
  1441. {
  1442. ssi.creatures[GameConstants::CREATURES_PER_TOWN].first = std::max(1, (VLC->creh->objects.at(creatureId)->getGrowth())/2);
  1443. }
  1444. else
  1445. {
  1446. ssi.creatures[GameConstants::CREATURES_PER_TOWN].first = VLC->creh->objects.at(creatureId)->getGrowth();
  1447. }
  1448. ssi.creatures[GameConstants::CREATURES_PER_TOWN].second.push_back(creatureId);
  1449. sendAndApply(&ssi);
  1450. }
  1451. }
  1452. void CGameHandler::newTurn()
  1453. {
  1454. logGlobal->trace("Turn %d", gs->day+1);
  1455. NewTurn n;
  1456. n.specialWeek = NewTurn::NO_ACTION;
  1457. n.creatureid = CreatureID::NONE;
  1458. n.day = gs->day + 1;
  1459. bool firstTurn = !getDate(Date::DAY);
  1460. bool newWeek = getDate(Date::DAY_OF_WEEK) == 7; //day numbers are confusing, as day was not yet switched
  1461. bool newMonth = getDate(Date::DAY_OF_MONTH) == 28;
  1462. std::map<PlayerColor, si32> hadGold;//starting gold - for buildings like dwarven treasury
  1463. if (firstTurn)
  1464. {
  1465. for (auto obj : gs->map->objects)
  1466. {
  1467. if (obj && obj->ID == Obj::PRISON) //give imprisoned hero 0 exp to level him up. easiest to do at this point
  1468. {
  1469. changePrimSkill (getHero(obj->id), PrimarySkill::EXPERIENCE, 0);
  1470. }
  1471. }
  1472. }
  1473. if (newWeek && !firstTurn)
  1474. {
  1475. n.specialWeek = NewTurn::NORMAL;
  1476. bool deityOfFireBuilt = false;
  1477. for (const CGTownInstance *t : gs->map->towns)
  1478. {
  1479. if (t->hasBuilt(BuildingID::GRAIL, ETownType::INFERNO))
  1480. {
  1481. deityOfFireBuilt = true;
  1482. break;
  1483. }
  1484. }
  1485. if (deityOfFireBuilt)
  1486. {
  1487. n.specialWeek = NewTurn::DEITYOFFIRE;
  1488. n.creatureid = CreatureID::IMP;
  1489. }
  1490. else if(VLC->settings()->getBoolean(EGameSettings::CREATURES_ALLOW_RANDOM_SPECIAL_WEEKS))
  1491. {
  1492. int monthType = getRandomGenerator().nextInt(99);
  1493. if (newMonth) //new month
  1494. {
  1495. if (monthType < 40) //double growth
  1496. {
  1497. n.specialWeek = NewTurn::DOUBLE_GROWTH;
  1498. if (VLC->settings()->getBoolean(EGameSettings::CREATURES_ALLOW_ALL_FOR_DOUBLE_MONTH))
  1499. {
  1500. n.creatureid = VLC->creh->pickRandomMonster(getRandomGenerator());
  1501. }
  1502. else if (VLC->creh->doubledCreatures.size())
  1503. {
  1504. n.creatureid = *RandomGeneratorUtil::nextItem(VLC->creh->doubledCreatures, getRandomGenerator());
  1505. }
  1506. else
  1507. {
  1508. complain("Cannot find creature that can be spawned!");
  1509. n.specialWeek = NewTurn::NORMAL;
  1510. }
  1511. }
  1512. else if (monthType < 50)
  1513. n.specialWeek = NewTurn::PLAGUE;
  1514. }
  1515. else //it's a week, but not full month
  1516. {
  1517. if (monthType < 25)
  1518. {
  1519. n.specialWeek = NewTurn::BONUS_GROWTH; //+5
  1520. std::pair<int, CreatureID> newMonster(54, CreatureID());
  1521. do
  1522. {
  1523. newMonster.second = VLC->creh->pickRandomMonster(getRandomGenerator());
  1524. } while (VLC->creh->objects[newMonster.second] &&
  1525. (*VLC->townh)[VLC->creatures()->getById(newMonster.second)->getFaction()]->town == nullptr); // find first non neutral creature
  1526. n.creatureid = newMonster.second;
  1527. }
  1528. }
  1529. }
  1530. }
  1531. for (auto & elem : gs->players)
  1532. {
  1533. if (elem.first == PlayerColor::NEUTRAL)
  1534. continue;
  1535. else if (elem.first >= PlayerColor::PLAYER_LIMIT)
  1536. assert(0); //illegal player number!
  1537. std::pair<PlayerColor, si32> playerGold(elem.first, elem.second.resources[EGameResID::GOLD]);
  1538. hadGold.insert(playerGold);
  1539. if (newWeek) //new heroes in tavern
  1540. heroPool->onNewWeek(elem.first);
  1541. n.res[elem.first] = elem.second.resources;
  1542. if(!firstTurn && newWeek) //weekly crystal generation if 1 or more crystal dragons in any hero army or town garrison
  1543. {
  1544. bool hasCrystalGenCreature = false;
  1545. for(CGHeroInstance * hero : elem.second.heroes)
  1546. {
  1547. for(auto stack : hero->stacks)
  1548. {
  1549. if(stack.second->hasBonusOfType(BonusType::SPECIAL_CRYSTAL_GENERATION))
  1550. {
  1551. hasCrystalGenCreature = true;
  1552. break;
  1553. }
  1554. }
  1555. }
  1556. if(!hasCrystalGenCreature) //not found in armies, check towns
  1557. {
  1558. for(CGTownInstance * town : elem.second.towns)
  1559. {
  1560. for(auto stack : town->stacks)
  1561. {
  1562. if(stack.second->hasBonusOfType(BonusType::SPECIAL_CRYSTAL_GENERATION))
  1563. {
  1564. hasCrystalGenCreature = true;
  1565. break;
  1566. }
  1567. }
  1568. }
  1569. }
  1570. if(hasCrystalGenCreature)
  1571. n.res[elem.first][EGameResID::CRYSTAL] += 3;
  1572. }
  1573. for (CGHeroInstance *h : (elem).second.heroes)
  1574. {
  1575. if (h->visitedTown)
  1576. giveSpells(h->visitedTown, h);
  1577. NewTurn::Hero hth;
  1578. hth.id = h->id;
  1579. auto ti = std::make_unique<TurnInfo>(h, 1);
  1580. // TODO: this code executed when bonuses of previous day not yet updated (this happen in NewTurn::applyGs). See issue 2356
  1581. hth.move = h->movementPointsLimitCached(gs->map->getTile(h->visitablePos()).terType->isLand(), ti.get());
  1582. hth.mana = h->getManaNewTurn();
  1583. n.heroes.insert(hth);
  1584. if (!firstTurn) //not first day
  1585. {
  1586. for (int k = 0; k < GameConstants::RESOURCE_QUANTITY; k++)
  1587. {
  1588. n.res[elem.first][k] += h->valOfBonuses(BonusType::GENERATE_RESOURCE, k);
  1589. }
  1590. }
  1591. }
  1592. }
  1593. for (CGTownInstance *t : gs->map->towns)
  1594. {
  1595. PlayerColor player = t->tempOwner;
  1596. handleTownEvents(t, n);
  1597. if (newWeek) //first day of week
  1598. {
  1599. if (t->hasBuilt(BuildingSubID::PORTAL_OF_SUMMONING))
  1600. setPortalDwelling(t, true, (n.specialWeek == NewTurn::PLAGUE ? true : false)); //set creatures for Portal of Summoning
  1601. if (!firstTurn)
  1602. if (t->hasBuilt(BuildingSubID::TREASURY) && player < PlayerColor::PLAYER_LIMIT)
  1603. n.res[player][EGameResID::GOLD] += hadGold.at(player)/10; //give 10% of starting gold
  1604. if (!vstd::contains(n.cres, t->id))
  1605. {
  1606. n.cres[t->id].tid = t->id;
  1607. n.cres[t->id].creatures = t->creatures;
  1608. }
  1609. auto & sac = n.cres.at(t->id);
  1610. for (int k=0; k < GameConstants::CREATURES_PER_TOWN; k++) //creature growths
  1611. {
  1612. if (!t->creatures.at(k).second.empty()) // there are creatures at this level
  1613. {
  1614. ui32 &availableCount = sac.creatures.at(k).first;
  1615. const CCreature *cre = VLC->creh->objects.at(t->creatures.at(k).second.back());
  1616. if (n.specialWeek == NewTurn::PLAGUE)
  1617. availableCount = t->creatures.at(k).first / 2; //halve their number, no growth
  1618. else
  1619. {
  1620. if (firstTurn) //first day of game: use only basic growths
  1621. availableCount = cre->getGrowth();
  1622. else
  1623. availableCount += t->creatureGrowth(k);
  1624. //Deity of fire week - upgrade both imps and upgrades
  1625. if (n.specialWeek == NewTurn::DEITYOFFIRE && vstd::contains(t->creatures.at(k).second, n.creatureid))
  1626. availableCount += 15;
  1627. if (cre->getId() == n.creatureid) //bonus week, effect applies only to identical creatures
  1628. {
  1629. if (n.specialWeek == NewTurn::DOUBLE_GROWTH)
  1630. availableCount *= 2;
  1631. else if (n.specialWeek == NewTurn::BONUS_GROWTH)
  1632. availableCount += 5;
  1633. }
  1634. }
  1635. }
  1636. }
  1637. }
  1638. if (!firstTurn && player < PlayerColor::PLAYER_LIMIT)//not the first day and town not neutral
  1639. {
  1640. n.res[player] = n.res[player] + t->dailyIncome();
  1641. }
  1642. if(t->hasBuilt(BuildingID::GRAIL)
  1643. && t->town->buildings.at(BuildingID::GRAIL)->height == CBuilding::HEIGHT_SKYSHIP)
  1644. {
  1645. // Skyship, probably easier to handle same as Veil of darkness
  1646. //do it every new day after veils apply
  1647. if (player != PlayerColor::NEUTRAL) //do not reveal fow for neutral player
  1648. {
  1649. FoWChange fw;
  1650. fw.mode = 1;
  1651. fw.player = player;
  1652. // find all hidden tiles
  1653. const auto fow = getPlayerTeam(player)->fogOfWarMap;
  1654. auto shape = fow->shape();
  1655. for(size_t z = 0; z < shape[0]; z++)
  1656. for(size_t x = 0; x < shape[1]; x++)
  1657. for(size_t y = 0; y < shape[2]; y++)
  1658. if (!(*fow)[z][x][y])
  1659. fw.tiles.insert(int3(x, y, z));
  1660. sendAndApply (&fw);
  1661. }
  1662. }
  1663. if (t->hasBonusOfType (BonusType::DARKNESS))
  1664. {
  1665. for (auto & player : gs->players)
  1666. {
  1667. if (getPlayerStatus(player.first) == EPlayerStatus::INGAME &&
  1668. getPlayerRelations(player.first, t->tempOwner) == PlayerRelations::ENEMIES)
  1669. changeFogOfWar(t->visitablePos(), t->getBonusLocalFirst(Selector::type()(BonusType::DARKNESS))->val, player.first, true);
  1670. }
  1671. }
  1672. }
  1673. if (newMonth)
  1674. {
  1675. SetAvailableArtifacts saa;
  1676. saa.id = -1;
  1677. pickAllowedArtsSet(saa.arts, getRandomGenerator());
  1678. sendAndApply(&saa);
  1679. }
  1680. sendAndApply(&n);
  1681. if (newWeek)
  1682. {
  1683. //spawn wandering monsters
  1684. if (newMonth && (n.specialWeek == NewTurn::DOUBLE_GROWTH || n.specialWeek == NewTurn::DEITYOFFIRE))
  1685. {
  1686. spawnWanderingMonsters(n.creatureid);
  1687. }
  1688. //new week info popup
  1689. if (!firstTurn)
  1690. {
  1691. InfoWindow iw;
  1692. switch (n.specialWeek)
  1693. {
  1694. case NewTurn::DOUBLE_GROWTH:
  1695. iw.text.appendLocalString(EMetaText::ARRAY_TXT, 131);
  1696. iw.text.replaceLocalString(EMetaText::CRE_SING_NAMES, n.creatureid);
  1697. iw.text.replaceLocalString(EMetaText::CRE_SING_NAMES, n.creatureid);
  1698. break;
  1699. case NewTurn::PLAGUE:
  1700. iw.text.appendLocalString(EMetaText::ARRAY_TXT, 132);
  1701. break;
  1702. case NewTurn::BONUS_GROWTH:
  1703. iw.text.appendLocalString(EMetaText::ARRAY_TXT, 134);
  1704. iw.text.replaceLocalString(EMetaText::CRE_SING_NAMES, n.creatureid);
  1705. iw.text.replaceLocalString(EMetaText::CRE_SING_NAMES, n.creatureid);
  1706. break;
  1707. case NewTurn::DEITYOFFIRE:
  1708. iw.text.appendLocalString(EMetaText::ARRAY_TXT, 135);
  1709. iw.text.replaceLocalString(EMetaText::CRE_SING_NAMES, 42); //%s imp
  1710. iw.text.replaceLocalString(EMetaText::CRE_SING_NAMES, 42); //%s imp
  1711. iw.text.replacePositiveNumber(15); //%+d 15
  1712. iw.text.replaceLocalString(EMetaText::CRE_SING_NAMES, 43); //%s familiar
  1713. iw.text.replacePositiveNumber(15); //%+d 15
  1714. break;
  1715. default:
  1716. if (newMonth)
  1717. {
  1718. iw.text.appendLocalString(EMetaText::ARRAY_TXT, (130));
  1719. iw.text.replaceLocalString(EMetaText::ARRAY_TXT, getRandomGenerator().nextInt(32, 41));
  1720. }
  1721. else
  1722. {
  1723. iw.text.appendLocalString(EMetaText::ARRAY_TXT, (133));
  1724. iw.text.replaceLocalString(EMetaText::ARRAY_TXT, getRandomGenerator().nextInt(43, 57));
  1725. }
  1726. }
  1727. for (auto & elem : gs->players)
  1728. {
  1729. iw.player = elem.first;
  1730. sendAndApply(&iw);
  1731. }
  1732. }
  1733. }
  1734. logGlobal->trace("Info about turn %d has been sent!", n.day);
  1735. handleTimeEvents();
  1736. //call objects
  1737. for (auto & elem : gs->map->objects)
  1738. {
  1739. if (elem)
  1740. elem->newTurn(getRandomGenerator());
  1741. }
  1742. synchronizeArtifactHandlerLists(); //new day events may have changed them. TODO better of managing that
  1743. }
  1744. void CGameHandler::run(bool resume)
  1745. {
  1746. LOG_TRACE_PARAMS(logGlobal, "resume=%d", resume);
  1747. using namespace boost::posix_time;
  1748. for (auto cc : lobby->connections)
  1749. {
  1750. auto players = lobby->getAllClientPlayers(cc->connectionID);
  1751. std::stringstream sbuffer;
  1752. sbuffer << "Connection " << cc->connectionID << " will handle " << players.size() << " player: ";
  1753. for (PlayerColor color : players)
  1754. {
  1755. sbuffer << color << " ";
  1756. {
  1757. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  1758. connections[color].insert(cc);
  1759. }
  1760. }
  1761. logGlobal->info(sbuffer.str());
  1762. }
  1763. #if SCRIPTING_ENABLED
  1764. services()->scripts()->run(serverScripts);
  1765. #endif
  1766. if(resume)
  1767. events::GameResumed::defaultExecute(serverEventBus.get());
  1768. auto playerTurnOrder = generatePlayerTurnOrder();
  1769. while(lobby->state == EServerState::GAMEPLAY)
  1770. {
  1771. if(!resume)
  1772. {
  1773. newTurn();
  1774. events::TurnStarted::defaultExecute(serverEventBus.get());
  1775. }
  1776. std::list<PlayerColor>::iterator it;
  1777. if (resume)
  1778. {
  1779. it = std::find(playerTurnOrder.begin(), playerTurnOrder.end(), gs->currentPlayer);
  1780. }
  1781. else
  1782. {
  1783. it = playerTurnOrder.begin();
  1784. }
  1785. resume = false;
  1786. for (; (it != playerTurnOrder.end()) && (lobby->state == EServerState::GAMEPLAY) ; it++)
  1787. {
  1788. auto playerColor = *it;
  1789. auto onGetTurn = [&](events::PlayerGotTurn & event)
  1790. {
  1791. //if player runs out of time, he shouldn't get the turn (especially AI)
  1792. //pre-trigger may change anything, should check before each player
  1793. //TODO: is it enough to check only one player?
  1794. checkVictoryLossConditionsForAll();
  1795. auto player = event.getPlayer();
  1796. const PlayerState * playerState = &gs->players[player];
  1797. if(playerState->status != EPlayerStatus::INGAME)
  1798. {
  1799. event.setPlayer(PlayerColor::CANNOT_DETERMINE);
  1800. }
  1801. else
  1802. {
  1803. states.setFlag(player, &PlayerStatus::makingTurn, true);
  1804. YourTurn yt;
  1805. yt.player = player;
  1806. //Change local daysWithoutCastle counter for local interface message //TODO: needed?
  1807. yt.daysWithoutCastle = playerState->daysWithoutCastle;
  1808. applyAndSend(&yt);
  1809. if(gs->getStartInfo()->turnTime > 0) //turn timer check
  1810. {
  1811. TurnTimeUpdate ttu;
  1812. ttu.player = player;
  1813. ttu.turnTime = gs->getStartInfo()->turnTime * 60 * 1000; //ms
  1814. applyAndSend(&ttu);
  1815. }
  1816. }
  1817. };
  1818. events::PlayerGotTurn::defaultExecute(serverEventBus.get(), onGetTurn, playerColor);
  1819. if(playerColor != PlayerColor::CANNOT_DETERMINE)
  1820. {
  1821. //wait till turn is done
  1822. const int waitTime = 100; //ms
  1823. int turnTimePropagateFrequency = 5000; //do not send updates too frequently
  1824. boost::unique_lock<boost::mutex> lock(states.mx);
  1825. while(states.players.at(playerColor).makingTurn && lobby->state == EServerState::GAMEPLAY)
  1826. {
  1827. if(gs->getStartInfo()->turnTime > 0 && !gs->curB) //turn timer check
  1828. {
  1829. if(gs->players[playerColor].turnTime > 0)
  1830. {
  1831. gs->players[playerColor].turnTime -= waitTime;
  1832. if(gs->players[playerColor].status == EPlayerStatus::INGAME //do not send message if player is not active already
  1833. && gs->players[playerColor].turnTime % turnTimePropagateFrequency == 0)
  1834. {
  1835. TurnTimeUpdate ttu;
  1836. ttu.player = playerColor;
  1837. ttu.turnTime = gs->players[playerColor].turnTime;
  1838. applyAndSend(&ttu);
  1839. }
  1840. }
  1841. else if(!queries.topQuery(playerColor)) //wait for replies to avoid pending queries
  1842. states.players.at(playerColor).makingTurn = false; //force end turn
  1843. }
  1844. static time_duration p = milliseconds(waitTime);
  1845. states.cv.timed_wait(lock, p);
  1846. }
  1847. }
  1848. }
  1849. //additional check that game is not finished
  1850. bool activePlayer = false;
  1851. for (auto player : playerTurnOrder)
  1852. {
  1853. if (gs->players[player].status == EPlayerStatus::INGAME)
  1854. activePlayer = true;
  1855. }
  1856. if(!activePlayer)
  1857. lobby->state = EServerState::GAMEPLAY_ENDED;
  1858. }
  1859. }
  1860. std::list<PlayerColor> CGameHandler::generatePlayerTurnOrder() const
  1861. {
  1862. // Generate player turn order
  1863. std::list<PlayerColor> playerTurnOrder;
  1864. for (const auto & player : gs->players) // add human players first
  1865. {
  1866. if (player.second.human)
  1867. playerTurnOrder.push_back(player.first);
  1868. }
  1869. for (const auto & player : gs->players) // then add non-human players
  1870. {
  1871. if (!player.second.human)
  1872. playerTurnOrder.push_back(player.first);
  1873. }
  1874. return playerTurnOrder;
  1875. }
  1876. void CGameHandler::setupBattle(int3 tile, const CArmedInstance *armies[2], const CGHeroInstance *heroes[2], bool creatureBank, const CGTownInstance *town)
  1877. {
  1878. battleResult.set(nullptr);
  1879. const auto & t = *getTile(tile);
  1880. TerrainId terrain = t.terType->getId();
  1881. if (gs->map->isCoastalTile(tile)) //coastal tile is always ground
  1882. terrain = ETerrainId::SAND;
  1883. BattleField terType = gs->battleGetBattlefieldType(tile, getRandomGenerator());
  1884. if (heroes[0] && heroes[0]->boat && heroes[1] && heroes[1]->boat)
  1885. terType = BattleField(*VLC->identifiers()->getIdentifier("core", "battlefield.ship_to_ship"));
  1886. //send info about battles
  1887. BattleStart bs;
  1888. bs.info = BattleInfo::setupBattle(tile, terrain, terType, armies, heroes, creatureBank, town);
  1889. engageIntoBattle(bs.info->sides[0].color);
  1890. engageIntoBattle(bs.info->sides[1].color);
  1891. auto lastBattleQuery = std::dynamic_pointer_cast<CBattleQuery>(queries.topQuery(bs.info->sides[0].color));
  1892. bs.info->replayAllowed = lastBattleQuery == nullptr && !bs.info->sides[1].color.isValidPlayer();
  1893. sendAndApply(&bs);
  1894. }
  1895. void CGameHandler::checkBattleStateChanges()
  1896. {
  1897. //check if drawbridge state need to be changes
  1898. if (battleGetSiegeLevel() > 0)
  1899. updateGateState();
  1900. //check if battle ended
  1901. if (auto result = battleIsFinished())
  1902. {
  1903. setBattleResult(BattleResult::NORMAL, *result);
  1904. }
  1905. }
  1906. void CGameHandler::giveSpells(const CGTownInstance *t, const CGHeroInstance *h)
  1907. {
  1908. if (!h->hasSpellbook())
  1909. return; //hero hasn't spellbook
  1910. ChangeSpells cs;
  1911. cs.hid = h->id;
  1912. cs.learn = true;
  1913. if (t->hasBuilt(BuildingID::GRAIL, ETownType::CONFLUX) && t->hasBuilt(BuildingID::MAGES_GUILD_1))
  1914. {
  1915. // Aurora Borealis give spells of all levels even if only level 1 mages guild built
  1916. for (int i = 0; i < h->maxSpellLevel(); i++)
  1917. {
  1918. std::vector<SpellID> spells;
  1919. getAllowedSpells(spells, i+1);
  1920. for (auto & spell : spells)
  1921. cs.spells.insert(spell);
  1922. }
  1923. }
  1924. else
  1925. {
  1926. for (int i = 0; i < std::min(t->mageGuildLevel(), h->maxSpellLevel()); i++)
  1927. {
  1928. for (int j = 0; j < t->spellsAtLevel(i+1, true) && j < t->spells.at(i).size(); j++)
  1929. {
  1930. if (!h->spellbookContainsSpell(t->spells.at(i).at(j)))
  1931. cs.spells.insert(t->spells.at(i).at(j));
  1932. }
  1933. }
  1934. }
  1935. if (!cs.spells.empty())
  1936. sendAndApply(&cs);
  1937. }
  1938. bool CGameHandler::removeObject(const CGObjectInstance * obj)
  1939. {
  1940. if (!obj || !getObj(obj->id))
  1941. {
  1942. logGlobal->error("Something wrong, that object already has been removed or hasn't existed!");
  1943. return false;
  1944. }
  1945. RemoveObject ro;
  1946. ro.id = obj->id;
  1947. sendAndApply(&ro);
  1948. checkVictoryLossConditionsForAll(); //eg if monster escaped (removing objs after battle is done dircetly by endBattle, not this function)
  1949. return true;
  1950. }
  1951. bool CGameHandler::moveHero(ObjectInstanceID hid, int3 dst, ui8 teleporting, bool transit, PlayerColor asker)
  1952. {
  1953. const CGHeroInstance *h = getHero(hid);
  1954. // not turn of that hero or player can't simply teleport hero (at least not with this function)
  1955. if (!h || (asker != PlayerColor::NEUTRAL && (teleporting || h->getOwner() != gs->currentPlayer)))
  1956. {
  1957. logGlobal->error("Illegal call to move hero!");
  1958. return false;
  1959. }
  1960. logGlobal->trace("Player %d (%s) wants to move hero %d from %s to %s", asker, asker.getStr(), hid.getNum(), h->pos.toString(), dst.toString());
  1961. const int3 hmpos = h->convertToVisitablePos(dst);
  1962. if (!gs->map->isInTheMap(hmpos))
  1963. {
  1964. logGlobal->error("Destination tile is outside the map!");
  1965. return false;
  1966. }
  1967. const TerrainTile t = *getTile(hmpos);
  1968. const int3 guardPos = gs->guardingCreaturePosition(hmpos);
  1969. const bool embarking = !h->boat && !t.visitableObjects.empty() && t.visitableObjects.back()->ID == Obj::BOAT;
  1970. const bool disembarking = h->boat
  1971. && t.terType->isLand()
  1972. && (dst == h->pos
  1973. || (h->boat->layer == EPathfindingLayer::SAIL && !t.blocked));
  1974. //result structure for start - movement failed, no move points used
  1975. TryMoveHero tmh;
  1976. tmh.id = hid;
  1977. tmh.start = h->pos;
  1978. tmh.end = dst;
  1979. tmh.result = TryMoveHero::FAILED;
  1980. tmh.movePoints = h->movementPointsRemaining();
  1981. //check if destination tile is available
  1982. auto pathfinderHelper = std::make_unique<CPathfinderHelper>(gs, h, PathfinderOptions());
  1983. auto ti = pathfinderHelper->getTurnInfo();
  1984. const bool canFly = pathfinderHelper->hasBonusOfType(BonusType::FLYING_MOVEMENT) || (h->boat && h->boat->layer == EPathfindingLayer::AIR);
  1985. const bool canWalkOnSea = pathfinderHelper->hasBonusOfType(BonusType::WATER_WALKING) || (h->boat && h->boat->layer == EPathfindingLayer::WATER);
  1986. const int cost = pathfinderHelper->getMovementCost(h->visitablePos(), hmpos, nullptr, nullptr, h->movementPointsRemaining());
  1987. //it's a rock or blocked and not visitable tile
  1988. //OR hero is on land and dest is water and (there is not present only one object - boat)
  1989. if (((!t.terType->isPassable() || (t.blocked && !t.visitable && !canFly))
  1990. && complain("Cannot move hero, destination tile is blocked!"))
  1991. || ((!h->boat && !canWalkOnSea && !canFly && t.terType->isWater() && (t.visitableObjects.size() < 1 || !t.visitableObjects.back()->isCoastVisitable())) //hero is not on boat/water walking and dst water tile doesn't contain boat/hero (objs visitable from land) -> we test back cause boat may be on top of another object (#276)
  1992. && complain("Cannot move hero, destination tile is on water!"))
  1993. || ((h->boat && h->boat->layer == EPathfindingLayer::SAIL && t.terType->isLand() && t.blocked)
  1994. && complain("Cannot disembark hero, tile is blocked!"))
  1995. || ((distance(h->pos, dst) >= 1.5 && !teleporting)
  1996. && complain("Tiles are not neighboring!"))
  1997. || ((h->inTownGarrison)
  1998. && complain("Can not move garrisoned hero!"))
  1999. || (((int)h->movementPointsRemaining() < cost && dst != h->pos && !teleporting)
  2000. && complain("Hero doesn't have any movement points left!"))
  2001. || ((transit && !canFly && !CGTeleport::isTeleport(t.topVisitableObj()))
  2002. && complain("Hero cannot transit over this tile!"))
  2003. /*|| (states.checkFlag(h->tempOwner, &PlayerStatus::engagedIntoBattle)
  2004. && complain("Cannot move hero during the battle"))*/)
  2005. {
  2006. //send info about movement failure
  2007. sendAndApply(&tmh);
  2008. return false;
  2009. }
  2010. //several generic blocks of code
  2011. // should be called if hero changes tile but before applying TryMoveHero package
  2012. auto leaveTile = [&]()
  2013. {
  2014. for (CGObjectInstance *obj : gs->map->getTile(int3(h->pos.x-1, h->pos.y, h->pos.z)).visitableObjects)
  2015. {
  2016. obj->onHeroLeave(h);
  2017. }
  2018. this->getTilesInRange(tmh.fowRevealed, h->getSightCenter()+(tmh.end-tmh.start), h->getSightRadius(), h->tempOwner, 1);
  2019. };
  2020. auto doMove = [&](TryMoveHero::EResult result, EGuardLook lookForGuards,
  2021. EVisitDest visitDest, ELEaveTile leavingTile) -> bool
  2022. {
  2023. LOG_TRACE_PARAMS(logGlobal, "Hero %s starts movement from %s to %s", h->getNameTranslated() % tmh.start.toString() % tmh.end.toString());
  2024. auto moveQuery = std::make_shared<CHeroMovementQuery>(this, tmh, h);
  2025. queries.addQuery(moveQuery);
  2026. if (leavingTile == LEAVING_TILE)
  2027. leaveTile();
  2028. if (isInTheMap(guardPos))
  2029. tmh.attackedFrom = std::make_optional(guardPos);
  2030. tmh.result = result;
  2031. sendAndApply(&tmh);
  2032. if (visitDest == VISIT_DEST && t.topVisitableObj() && t.topVisitableObj()->id == h->id)
  2033. { // Hero should be always able to visit any object he staying on even if there guards around
  2034. visitObjectOnTile(t, h);
  2035. }
  2036. else if (lookForGuards == CHECK_FOR_GUARDS && isInTheMap(guardPos))
  2037. {
  2038. const TerrainTile &guardTile = *gs->getTile(guardPos);
  2039. objectVisited(guardTile.visitableObjects.back(), h);
  2040. moveQuery->visitDestAfterVictory = visitDest==VISIT_DEST;
  2041. }
  2042. else if (visitDest == VISIT_DEST)
  2043. {
  2044. visitObjectOnTile(t, h);
  2045. }
  2046. queries.popIfTop(moveQuery);
  2047. logGlobal->trace("Hero %s ends movement", h->getNameTranslated());
  2048. return result != TryMoveHero::FAILED;
  2049. };
  2050. //interaction with blocking object (like resources)
  2051. auto blockingVisit = [&]() -> bool
  2052. {
  2053. for (CGObjectInstance *obj : t.visitableObjects)
  2054. {
  2055. if(h->boat && !obj->isBlockedVisitable() && !h->boat->onboardVisitAllowed)
  2056. return doMove(TryMoveHero::SUCCESS, this->IGNORE_GUARDS, DONT_VISIT_DEST, REMAINING_ON_TILE);
  2057. if (obj != h && obj->isBlockedVisitable() && !obj->passableFor(h->tempOwner))
  2058. {
  2059. EVisitDest visitDest = VISIT_DEST;
  2060. if(h->boat && !h->boat->onboardVisitAllowed)
  2061. visitDest = DONT_VISIT_DEST;
  2062. return doMove(TryMoveHero::BLOCKING_VISIT, this->IGNORE_GUARDS, visitDest, REMAINING_ON_TILE);
  2063. }
  2064. }
  2065. return false;
  2066. };
  2067. if (!transit && embarking)
  2068. {
  2069. tmh.movePoints = h->movementPointsAfterEmbark(h->movementPointsRemaining(), cost, false, ti);
  2070. return doMove(TryMoveHero::EMBARK, IGNORE_GUARDS, DONT_VISIT_DEST, LEAVING_TILE);
  2071. // In H3 embark ignore guards
  2072. }
  2073. if (disembarking)
  2074. {
  2075. tmh.movePoints = h->movementPointsAfterEmbark(h->movementPointsRemaining(), cost, true, ti);
  2076. return doMove(TryMoveHero::DISEMBARK, CHECK_FOR_GUARDS, VISIT_DEST, LEAVING_TILE);
  2077. }
  2078. if (teleporting)
  2079. {
  2080. if (blockingVisit()) // e.g. hero on the other side of teleporter
  2081. return true;
  2082. doMove(TryMoveHero::TELEPORTATION, IGNORE_GUARDS, DONT_VISIT_DEST, LEAVING_TILE);
  2083. // visit town for town portal \ castle gates
  2084. // do not use generic visitObjectOnTile to avoid double-teleporting
  2085. // if this moveHero call was triggered by teleporter
  2086. if (!t.visitableObjects.empty())
  2087. {
  2088. if (CGTownInstance * town = dynamic_cast<CGTownInstance *>(t.visitableObjects.back()))
  2089. town->onHeroVisit(h);
  2090. }
  2091. return true;
  2092. }
  2093. //still here? it is standard movement!
  2094. {
  2095. tmh.movePoints = (int)h->movementPointsRemaining() >= cost
  2096. ? h->movementPointsRemaining() - cost
  2097. : 0;
  2098. EGuardLook lookForGuards = CHECK_FOR_GUARDS;
  2099. EVisitDest visitDest = VISIT_DEST;
  2100. if (transit)
  2101. {
  2102. if (CGTeleport::isTeleport(t.topVisitableObj()))
  2103. visitDest = DONT_VISIT_DEST;
  2104. if (canFly)
  2105. {
  2106. lookForGuards = IGNORE_GUARDS;
  2107. visitDest = DONT_VISIT_DEST;
  2108. }
  2109. }
  2110. else if (blockingVisit())
  2111. return true;
  2112. if(h->boat && !h->boat->onboardAssaultAllowed)
  2113. lookForGuards = IGNORE_GUARDS;
  2114. doMove(TryMoveHero::SUCCESS, lookForGuards, visitDest, LEAVING_TILE);
  2115. return true;
  2116. }
  2117. }
  2118. bool CGameHandler::teleportHero(ObjectInstanceID hid, ObjectInstanceID dstid, ui8 source, PlayerColor asker)
  2119. {
  2120. const CGHeroInstance *h = getHero(hid);
  2121. const CGTownInstance *t = getTown(dstid);
  2122. if (!h || !t || h->getOwner() != gs->currentPlayer)
  2123. COMPLAIN_RET("Invalid call to teleportHero!");
  2124. const CGTownInstance *from = h->visitedTown;
  2125. if (((h->getOwner() != t->getOwner())
  2126. && complain("Cannot teleport hero to another player"))
  2127. || (from->town->faction->getId() != t->town->faction->getId()
  2128. && complain("Source town and destination town should belong to the same faction"))
  2129. || ((!from || !from->hasBuilt(BuildingSubID::CASTLE_GATE))
  2130. && complain("Hero must be in town with Castle gate for teleporting"))
  2131. || (!t->hasBuilt(BuildingSubID::CASTLE_GATE)
  2132. && complain("Cannot teleport hero to town without Castle gate in it")))
  2133. return false;
  2134. int3 pos = h->convertFromVisitablePos(t->visitablePos());
  2135. moveHero(hid,pos,1);
  2136. return true;
  2137. }
  2138. void CGameHandler::setOwner(const CGObjectInstance * obj, const PlayerColor owner)
  2139. {
  2140. PlayerColor oldOwner = getOwner(obj->id);
  2141. SetObjectProperty sop(obj->id, ObjProperty::OWNER, owner.getNum());
  2142. sendAndApply(&sop);
  2143. std::set<PlayerColor> playerColors = {owner, oldOwner};
  2144. checkVictoryLossConditions(playerColors);
  2145. const CGTownInstance * town = dynamic_cast<const CGTownInstance *>(obj);
  2146. if (town) //town captured
  2147. {
  2148. if (owner < PlayerColor::PLAYER_LIMIT) //new owner is real player
  2149. {
  2150. if (town->hasBuilt(BuildingSubID::PORTAL_OF_SUMMONING))
  2151. setPortalDwelling(town, true, false);
  2152. }
  2153. if (oldOwner < PlayerColor::PLAYER_LIMIT) //old owner is real player
  2154. {
  2155. if (getPlayerState(oldOwner)->towns.empty() && getPlayerState(oldOwner)->status != EPlayerStatus::LOSER) //previous player lost last last town
  2156. {
  2157. InfoWindow iw;
  2158. iw.player = oldOwner;
  2159. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 6); //%s, you have lost your last town. If you do not conquer another town in the next week, you will be eliminated.
  2160. iw.text.replaceLocalString(EMetaText::COLOR, oldOwner.getNum());
  2161. sendAndApply(&iw);
  2162. }
  2163. }
  2164. }
  2165. const PlayerState * p = getPlayerState(owner);
  2166. if ((obj->ID == Obj::CREATURE_GENERATOR1 || obj->ID == Obj::CREATURE_GENERATOR4) && p && p->dwellings.size()==1)//first dwelling captured
  2167. {
  2168. for (const CGTownInstance * t : getPlayerState(owner)->towns)
  2169. {
  2170. if (t->hasBuilt(BuildingSubID::PORTAL_OF_SUMMONING))
  2171. setPortalDwelling(t);//set initial creatures for all portals of summoning
  2172. }
  2173. }
  2174. }
  2175. void CGameHandler::showBlockingDialog(BlockingDialog *iw)
  2176. {
  2177. auto dialogQuery = std::make_shared<CBlockingDialogQuery>(this, *iw);
  2178. queries.addQuery(dialogQuery);
  2179. iw->queryID = dialogQuery->queryID;
  2180. sendToAllClients(iw);
  2181. }
  2182. void CGameHandler::showTeleportDialog(TeleportDialog *iw)
  2183. {
  2184. auto dialogQuery = std::make_shared<CTeleportDialogQuery>(this, *iw);
  2185. queries.addQuery(dialogQuery);
  2186. iw->queryID = dialogQuery->queryID;
  2187. sendToAllClients(iw);
  2188. }
  2189. void CGameHandler::giveResource(PlayerColor player, GameResID which, int val) //TODO: cap according to Bersy's suggestion
  2190. {
  2191. if (!val) return; //don't waste time on empty call
  2192. TResources resources;
  2193. resources[which] = val;
  2194. giveResources(player, resources);
  2195. }
  2196. void CGameHandler::giveResources(PlayerColor player, TResources resources)
  2197. {
  2198. SetResources sr;
  2199. sr.abs = false;
  2200. sr.player = player;
  2201. sr.res = resources;
  2202. sendAndApply(&sr);
  2203. }
  2204. void CGameHandler::giveCreatures(const CArmedInstance *obj, const CGHeroInstance * h, const CCreatureSet &creatures, bool remove)
  2205. {
  2206. COMPLAIN_RET_IF(!creatures.stacksCount(), "Strange, giveCreatures called without args!");
  2207. COMPLAIN_RET_IF(obj->stacksCount(), "Cannot give creatures from not-cleared object!");
  2208. COMPLAIN_RET_IF(creatures.stacksCount() > GameConstants::ARMY_SIZE, "Too many stacks to give!");
  2209. //first we move creatures to give to make them army of object-source
  2210. for (auto & elem : creatures.Slots())
  2211. {
  2212. addToSlot(StackLocation(obj, obj->getSlotFor(elem.second->type)), elem.second->type, elem.second->count);
  2213. }
  2214. tryJoiningArmy(obj, h, remove, true);
  2215. }
  2216. void CGameHandler::takeCreatures(ObjectInstanceID objid, const std::vector<CStackBasicDescriptor> &creatures)
  2217. {
  2218. std::vector<CStackBasicDescriptor> cres = creatures;
  2219. if (cres.size() <= 0)
  2220. return;
  2221. const CArmedInstance* obj = static_cast<const CArmedInstance*>(getObj(objid));
  2222. for (CStackBasicDescriptor &sbd : cres)
  2223. {
  2224. TQuantity collected = 0;
  2225. while(collected < sbd.count)
  2226. {
  2227. bool foundSth = false;
  2228. for (auto i = obj->Slots().begin(); i != obj->Slots().end(); i++)
  2229. {
  2230. if (i->second->type == sbd.type)
  2231. {
  2232. TQuantity take = std::min(sbd.count - collected, i->second->count); //collect as much cres as we can
  2233. changeStackCount(StackLocation(obj, i->first), -take, false);
  2234. collected += take;
  2235. foundSth = true;
  2236. break;
  2237. }
  2238. }
  2239. if (!foundSth) //we went through the whole loop and haven't found appropriate cres
  2240. {
  2241. complain("Unexpected failure during taking creatures!");
  2242. return;
  2243. }
  2244. }
  2245. }
  2246. }
  2247. void CGameHandler::heroVisitCastle(const CGTownInstance * obj, const CGHeroInstance * hero)
  2248. {
  2249. HeroVisitCastle vc;
  2250. vc.hid = hero->id;
  2251. vc.tid = obj->id;
  2252. vc.flags |= 1;
  2253. sendAndApply(&vc);
  2254. visitCastleObjects(obj, hero);
  2255. giveSpells (obj, hero);
  2256. checkVictoryLossConditionsForPlayer(hero->tempOwner); //transported artifact?
  2257. }
  2258. void CGameHandler::visitCastleObjects(const CGTownInstance * t, const CGHeroInstance * h)
  2259. {
  2260. for (auto building : t->bonusingBuildings)
  2261. building->onHeroVisit(h);
  2262. }
  2263. void CGameHandler::stopHeroVisitCastle(const CGTownInstance * obj, const CGHeroInstance * hero)
  2264. {
  2265. HeroVisitCastle vc;
  2266. vc.hid = hero->id;
  2267. vc.tid = obj->id;
  2268. sendAndApply(&vc);
  2269. }
  2270. void CGameHandler::removeArtifact(const ArtifactLocation &al)
  2271. {
  2272. EraseArtifact ea;
  2273. ea.al = al;
  2274. sendAndApply(&ea);
  2275. }
  2276. void CGameHandler::startBattlePrimary(const CArmedInstance *army1, const CArmedInstance *army2, int3 tile,
  2277. const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool creatureBank,
  2278. const CGTownInstance *town) //use hero=nullptr for no hero
  2279. {
  2280. if(gs->curB)
  2281. gs->curB.dellNull();
  2282. static const CArmedInstance *armies[2];
  2283. armies[0] = army1;
  2284. armies[1] = army2;
  2285. static const CGHeroInstance*heroes[2];
  2286. heroes[0] = hero1;
  2287. heroes[1] = hero2;
  2288. setupBattle(tile, armies, heroes, creatureBank, town); //initializes stacks, places creatures on battlefield, blocks and informs player interfaces
  2289. auto lastBattleQuery = std::dynamic_pointer_cast<CBattleQuery>(queries.topQuery(gs->curB->sides[0].color));
  2290. //existing battle query for retying auto-combat
  2291. if(lastBattleQuery)
  2292. {
  2293. for(int i : {0, 1})
  2294. {
  2295. if(heroes[i])
  2296. {
  2297. SetMana restoreInitialMana;
  2298. restoreInitialMana.val = lastBattleQuery->initialHeroMana[i];
  2299. restoreInitialMana.hid = heroes[i]->id;
  2300. sendAndApply(&restoreInitialMana);
  2301. }
  2302. }
  2303. lastBattleQuery->bi = gs->curB;
  2304. lastBattleQuery->result = std::nullopt;
  2305. lastBattleQuery->belligerents[0] = gs->curB->sides[0].armyObject;
  2306. lastBattleQuery->belligerents[1] = gs->curB->sides[1].armyObject;
  2307. }
  2308. auto nextBattleQuery = std::make_shared<CBattleQuery>(this, gs->curB);
  2309. for(int i : {0, 1})
  2310. {
  2311. if(heroes[i])
  2312. {
  2313. nextBattleQuery->initialHeroMana[i] = heroes[i]->mana;
  2314. }
  2315. }
  2316. queries.addQuery(nextBattleQuery);
  2317. this->battleThread = std::make_unique<boost::thread>(boost::thread(&CGameHandler::runBattle, this));
  2318. }
  2319. void CGameHandler::startBattleI(const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, bool creatureBank)
  2320. {
  2321. startBattlePrimary(army1, army2, tile,
  2322. army1->ID == Obj::HERO ? static_cast<const CGHeroInstance*>(army1) : nullptr,
  2323. army2->ID == Obj::HERO ? static_cast<const CGHeroInstance*>(army2) : nullptr,
  2324. creatureBank);
  2325. }
  2326. void CGameHandler::startBattleI(const CArmedInstance *army1, const CArmedInstance *army2, bool creatureBank)
  2327. {
  2328. startBattleI(army1, army2, army2->visitablePos(), creatureBank);
  2329. }
  2330. void CGameHandler::changeSpells(const CGHeroInstance * hero, bool give, const std::set<SpellID> &spells)
  2331. {
  2332. ChangeSpells cs;
  2333. cs.hid = hero->id;
  2334. cs.spells = spells;
  2335. cs.learn = give;
  2336. sendAndApply(&cs);
  2337. }
  2338. void CGameHandler::giveHeroBonus(GiveBonus * bonus)
  2339. {
  2340. sendAndApply(bonus);
  2341. }
  2342. void CGameHandler::setMovePoints(SetMovePoints * smp)
  2343. {
  2344. sendAndApply(smp);
  2345. }
  2346. void CGameHandler::setManaPoints(ObjectInstanceID hid, int val)
  2347. {
  2348. SetMana sm;
  2349. sm.hid = hid;
  2350. sm.val = val;
  2351. sm.absolute = true;
  2352. sendAndApply(&sm);
  2353. }
  2354. void CGameHandler::giveHero(ObjectInstanceID id, PlayerColor player, ObjectInstanceID boatId)
  2355. {
  2356. GiveHero gh;
  2357. gh.id = id;
  2358. gh.player = player;
  2359. gh.boatId = boatId;
  2360. sendAndApply(&gh);
  2361. //Reveal fow around new hero, especially released from Prison
  2362. auto h = getHero(id);
  2363. changeFogOfWar(h->pos, h->getSightRadius(), player, false);
  2364. }
  2365. void CGameHandler::changeObjPos(ObjectInstanceID objid, int3 newPos)
  2366. {
  2367. ChangeObjPos cop;
  2368. cop.objid = objid;
  2369. cop.nPos = newPos;
  2370. sendAndApply(&cop);
  2371. }
  2372. void CGameHandler::useScholarSkill(ObjectInstanceID fromHero, ObjectInstanceID toHero)
  2373. {
  2374. const CGHeroInstance * h1 = getHero(fromHero);
  2375. const CGHeroInstance * h2 = getHero(toHero);
  2376. int h1_scholarSpellLevel = h1->valOfBonuses(BonusType::LEARN_MEETING_SPELL_LIMIT, -1);
  2377. int h2_scholarSpellLevel = h2->valOfBonuses(BonusType::LEARN_MEETING_SPELL_LIMIT, -1);
  2378. if (h1_scholarSpellLevel < h2_scholarSpellLevel)
  2379. {
  2380. std::swap (h1,h2);//1st hero need to have higher scholar level for correct message
  2381. std::swap(fromHero, toHero);
  2382. }
  2383. int ScholarSpellLevel = std::max(h1_scholarSpellLevel, h2_scholarSpellLevel);//heroes can trade up to this level
  2384. if (!ScholarSpellLevel || !h1->hasSpellbook() || !h2->hasSpellbook())
  2385. return;//no scholar skill or no spellbook
  2386. int h1Lvl = std::min(ScholarSpellLevel, h1->maxSpellLevel()),
  2387. h2Lvl = std::min(ScholarSpellLevel, h2->maxSpellLevel());//heroes can receive this levels
  2388. ChangeSpells cs1;
  2389. cs1.learn = true;
  2390. cs1.hid = toHero;//giving spells to first hero
  2391. for (auto it : h1->getSpellsInSpellbook())
  2392. if (h2Lvl >= it.toSpell()->level && !h2->spellbookContainsSpell(it))//hero can learn it and don't have it yet
  2393. cs1.spells.insert(it);//spell to learn
  2394. ChangeSpells cs2;
  2395. cs2.learn = true;
  2396. cs2.hid = fromHero;
  2397. for (auto it : h2->getSpellsInSpellbook())
  2398. if (h1Lvl >= it.toSpell()->level && !h1->spellbookContainsSpell(it))
  2399. cs2.spells.insert(it);
  2400. if (!cs1.spells.empty() || !cs2.spells.empty())//create a message
  2401. {
  2402. int ScholarSkillLevel = std::max(h1->getSecSkillLevel(SecondarySkill::SCHOLAR),
  2403. h2->getSecSkillLevel(SecondarySkill::SCHOLAR));
  2404. InfoWindow iw;
  2405. iw.player = h1->tempOwner;
  2406. iw.components.emplace_back(Component::EComponentType::SEC_SKILL, 18, ScholarSkillLevel, 0);
  2407. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 139);//"%s, who has studied magic extensively,
  2408. iw.text.replaceRawString(h1->getNameTranslated());
  2409. if (!cs2.spells.empty())//if found new spell - apply
  2410. {
  2411. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 140);//learns
  2412. int size = static_cast<int>(cs2.spells.size());
  2413. for (auto it : cs2.spells)
  2414. {
  2415. iw.components.emplace_back(Component::EComponentType::SPELL, it, 1, 0);
  2416. iw.text.appendLocalString(EMetaText::SPELL_NAME, it.toEnum());
  2417. switch (size--)
  2418. {
  2419. case 2:
  2420. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 141);
  2421. case 1:
  2422. break;
  2423. default:
  2424. iw.text.appendRawString(", ");
  2425. }
  2426. }
  2427. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 142);//from %s
  2428. iw.text.replaceRawString(h2->getNameTranslated());
  2429. sendAndApply(&cs2);
  2430. }
  2431. if (!cs1.spells.empty() && !cs2.spells.empty())
  2432. {
  2433. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 141);//and
  2434. }
  2435. if (!cs1.spells.empty())
  2436. {
  2437. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 147);//teaches
  2438. int size = static_cast<int>(cs1.spells.size());
  2439. for (auto it : cs1.spells)
  2440. {
  2441. iw.components.emplace_back(Component::EComponentType::SPELL, it, 1, 0);
  2442. iw.text.appendLocalString(EMetaText::SPELL_NAME, it.toEnum());
  2443. switch (size--)
  2444. {
  2445. case 2:
  2446. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 141);
  2447. case 1:
  2448. break;
  2449. default:
  2450. iw.text.appendRawString(", ");
  2451. }
  2452. }
  2453. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 148);//from %s
  2454. iw.text.replaceRawString(h2->getNameTranslated());
  2455. sendAndApply(&cs1);
  2456. }
  2457. sendAndApply(&iw);
  2458. }
  2459. }
  2460. void CGameHandler::heroExchange(ObjectInstanceID hero1, ObjectInstanceID hero2)
  2461. {
  2462. auto h1 = getHero(hero1), h2 = getHero(hero2);
  2463. if (getPlayerRelations(h1->getOwner(), h2->getOwner()))
  2464. {
  2465. auto exchange = std::make_shared<CGarrisonDialogQuery>(this, h1, h2);
  2466. ExchangeDialog hex;
  2467. hex.queryID = exchange->queryID;
  2468. hex.player = h1->getOwner();
  2469. hex.hero1 = hero1;
  2470. hex.hero2 = hero2;
  2471. sendAndApply(&hex);
  2472. useScholarSkill(hero1,hero2);
  2473. queries.addQuery(exchange);
  2474. }
  2475. }
  2476. void CGameHandler::sendToAllClients(CPackForClient * pack)
  2477. {
  2478. logNetwork->trace("\tSending to all clients: %s", typeid(*pack).name());
  2479. for (auto c : lobby->connections)
  2480. {
  2481. if(!c->isOpen())
  2482. continue;
  2483. c->sendPack(pack);
  2484. }
  2485. }
  2486. void CGameHandler::sendAndApply(CPackForClient * pack)
  2487. {
  2488. sendToAllClients(pack);
  2489. gs->apply(pack);
  2490. logNetwork->trace("\tApplied on gs: %s", typeid(*pack).name());
  2491. }
  2492. void CGameHandler::applyAndSend(CPackForClient * pack)
  2493. {
  2494. gs->apply(pack);
  2495. sendToAllClients(pack);
  2496. }
  2497. void CGameHandler::sendAndApply(CGarrisonOperationPack * pack)
  2498. {
  2499. sendAndApply(static_cast<CPackForClient *>(pack));
  2500. checkVictoryLossConditionsForAll();
  2501. }
  2502. void CGameHandler::sendAndApply(SetResources * pack)
  2503. {
  2504. sendAndApply(static_cast<CPackForClient *>(pack));
  2505. checkVictoryLossConditionsForPlayer(pack->player);
  2506. }
  2507. void CGameHandler::sendAndApply(NewStructures * pack)
  2508. {
  2509. sendAndApply(static_cast<CPackForClient *>(pack));
  2510. checkVictoryLossConditionsForPlayer(getTown(pack->tid)->tempOwner);
  2511. }
  2512. bool CGameHandler::isPlayerOwns(CPackForServer * pack, ObjectInstanceID id)
  2513. {
  2514. return getPlayerAt(pack->c) == getOwner(id);
  2515. }
  2516. void CGameHandler::throwNotAllowedAction(CPackForServer * pack)
  2517. {
  2518. if(pack->c)
  2519. playerMessages->sendSystemMessage(pack->c, "You are not allowed to perform this action!");
  2520. logNetwork->error("Player is not allowed to perform this action!");
  2521. throw ExceptionNotAllowedAction();
  2522. }
  2523. void CGameHandler::wrongPlayerMessage(CPackForServer * pack, PlayerColor expectedplayer)
  2524. {
  2525. std::ostringstream oss;
  2526. oss << "You were identified as player " << getPlayerAt(pack->c) << " while expecting " << expectedplayer;
  2527. logNetwork->error(oss.str());
  2528. if(pack->c)
  2529. playerMessages->sendSystemMessage(pack->c, oss.str());
  2530. }
  2531. void CGameHandler::throwOnWrongOwner(CPackForServer * pack, ObjectInstanceID id)
  2532. {
  2533. if(!isPlayerOwns(pack, id))
  2534. {
  2535. wrongPlayerMessage(pack, getOwner(id));
  2536. throwNotAllowedAction(pack);
  2537. }
  2538. }
  2539. void CGameHandler::throwOnWrongPlayer(CPackForServer * pack, PlayerColor player)
  2540. {
  2541. if(!hasPlayerAt(player, pack->c) && player != getPlayerAt(pack->c))
  2542. {
  2543. wrongPlayerMessage(pack, player);
  2544. throwNotAllowedAction(pack);
  2545. }
  2546. }
  2547. void CGameHandler::throwAndComplain(CPackForServer * pack, std::string txt)
  2548. {
  2549. complain(txt);
  2550. throwNotAllowedAction(pack);
  2551. }
  2552. void CGameHandler::save(const std::string & filename)
  2553. {
  2554. logGlobal->info("Saving to %s", filename);
  2555. const auto stem = FileInfo::GetPathStem(filename);
  2556. const auto savefname = stem.to_string() + ".vsgm1";
  2557. CResourceHandler::get("local")->createResource(savefname);
  2558. try
  2559. {
  2560. {
  2561. CSaveFile save(*CResourceHandler::get("local")->getResourceName(ResourceID(stem.to_string(), EResType::SAVEGAME)));
  2562. saveCommonState(save);
  2563. logGlobal->info("Saving server state");
  2564. save << *this;
  2565. }
  2566. logGlobal->info("Game has been successfully saved!");
  2567. }
  2568. catch(std::exception &e)
  2569. {
  2570. logGlobal->error("Failed to save game: %s", e.what());
  2571. }
  2572. }
  2573. bool CGameHandler::load(const std::string & filename)
  2574. {
  2575. logGlobal->info("Loading from %s", filename);
  2576. const auto stem = FileInfo::GetPathStem(filename);
  2577. reinitScripting();
  2578. try
  2579. {
  2580. {
  2581. CLoadFile lf(*CResourceHandler::get()->getResourceName(ResourceID(stem.to_string(), EResType::SAVEGAME)), MINIMAL_SERIALIZATION_VERSION);
  2582. loadCommonState(lf);
  2583. logGlobal->info("Loading server state");
  2584. lf >> *this;
  2585. }
  2586. logGlobal->info("Game has been successfully loaded!");
  2587. }
  2588. catch(const ModIncompatibility & e)
  2589. {
  2590. logGlobal->error("Failed to load game: %s", e.what());
  2591. auto errorMsg = VLC->generaltexth->translate("vcmi.server.errors.modsIncompatibility") + '\n';
  2592. errorMsg += e.what();
  2593. lobby->announceMessage(errorMsg);
  2594. return false;
  2595. }
  2596. catch(const std::exception & e)
  2597. {
  2598. logGlobal->error("Failed to load game: %s", e.what());
  2599. return false;
  2600. }
  2601. gs->preInit(VLC);
  2602. gs->updateOnLoad(lobby->si.get());
  2603. return true;
  2604. }
  2605. bool CGameHandler::bulkSplitStack(SlotID slotSrc, ObjectInstanceID srcOwner, si32 howMany)
  2606. {
  2607. if(!slotSrc.validSlot() && complain(complainInvalidSlot))
  2608. return false;
  2609. const CArmedInstance * army = static_cast<const CArmedInstance*>(getObjInstance(srcOwner));
  2610. const CCreatureSet & creatureSet = *army;
  2611. if((!vstd::contains(creatureSet.stacks, slotSrc) && complain(complainNoCreatures))
  2612. || (howMany < 1 && complain("Invalid split parameter!")))
  2613. {
  2614. return false;
  2615. }
  2616. auto actualAmount = army->getStackCount(slotSrc);
  2617. if(actualAmount <= howMany && complain(complainNotEnoughCreatures)) // '<=' because it's not intended just for moving a stack
  2618. return false;
  2619. auto freeSlots = creatureSet.getFreeSlots();
  2620. if(freeSlots.empty() && complain("No empty stacks"))
  2621. return false;
  2622. BulkRebalanceStacks bulkRS;
  2623. for(auto slot : freeSlots)
  2624. {
  2625. RebalanceStacks rs;
  2626. rs.srcArmy = army->id;
  2627. rs.dstArmy = army->id;
  2628. rs.srcSlot = slotSrc;
  2629. rs.dstSlot = slot;
  2630. rs.count = howMany;
  2631. bulkRS.moves.push_back(rs);
  2632. actualAmount -= howMany;
  2633. if(actualAmount <= howMany)
  2634. break;
  2635. }
  2636. sendAndApply(&bulkRS);
  2637. return true;
  2638. }
  2639. bool CGameHandler::bulkMergeStacks(SlotID slotSrc, ObjectInstanceID srcOwner)
  2640. {
  2641. if(!slotSrc.validSlot() && complain(complainInvalidSlot))
  2642. return false;
  2643. const CArmedInstance * army = static_cast<const CArmedInstance*>(getObjInstance(srcOwner));
  2644. const CCreatureSet & creatureSet = *army;
  2645. if(!vstd::contains(creatureSet.stacks, slotSrc) && complain(complainNoCreatures))
  2646. return false;
  2647. auto actualAmount = creatureSet.getStackCount(slotSrc);
  2648. if(actualAmount < 1 && complain(complainNoCreatures))
  2649. return false;
  2650. auto currentCreature = creatureSet.getCreature(slotSrc);
  2651. if(!currentCreature && complain(complainNoCreatures))
  2652. return false;
  2653. auto creatureSlots = creatureSet.getCreatureSlots(currentCreature, slotSrc);
  2654. if(!creatureSlots.size())
  2655. return false;
  2656. BulkRebalanceStacks bulkRS;
  2657. for(auto slot : creatureSlots)
  2658. {
  2659. RebalanceStacks rs;
  2660. rs.srcArmy = army->id;
  2661. rs.dstArmy = army->id;
  2662. rs.srcSlot = slot;
  2663. rs.dstSlot = slotSrc;
  2664. rs.count = creatureSet.getStackCount(slot);
  2665. bulkRS.moves.push_back(rs);
  2666. }
  2667. sendAndApply(&bulkRS);
  2668. return true;
  2669. }
  2670. bool CGameHandler::bulkMoveArmy(ObjectInstanceID srcArmy, ObjectInstanceID destArmy, SlotID srcSlot)
  2671. {
  2672. if(!srcSlot.validSlot() && complain(complainInvalidSlot))
  2673. return false;
  2674. const CArmedInstance * armySrc = static_cast<const CArmedInstance*>(getObjInstance(srcArmy));
  2675. const CCreatureSet & setSrc = *armySrc;
  2676. if(!vstd::contains(setSrc.stacks, srcSlot) && complain(complainNoCreatures))
  2677. return false;
  2678. const CArmedInstance * armyDest = static_cast<const CArmedInstance*>(getObjInstance(destArmy));
  2679. const CCreatureSet & setDest = *armyDest;
  2680. auto freeSlots = setDest.getFreeSlotsQueue();
  2681. typedef std::map<SlotID, std::pair<SlotID, TQuantity>> TRebalanceMap;
  2682. TRebalanceMap moves;
  2683. auto srcQueue = setSrc.getCreatureQueue(srcSlot); // Exclude srcSlot, it should be moved last
  2684. auto slotsLeft = setSrc.stacksCount();
  2685. auto destMap = setDest.getCreatureMap();
  2686. TMapCreatureSlot::key_compare keyComp = destMap.key_comp();
  2687. while(!srcQueue.empty())
  2688. {
  2689. auto pair = srcQueue.top();
  2690. srcQueue.pop();
  2691. auto currCreature = pair.first;
  2692. auto currSlot = pair.second;
  2693. const auto quantity = setSrc.getStackCount(currSlot);
  2694. TMapCreatureSlot::iterator lb = destMap.lower_bound(currCreature);
  2695. const bool alreadyExists = (lb != destMap.end() && !(keyComp(currCreature, lb->first)));
  2696. if(!alreadyExists)
  2697. {
  2698. if(freeSlots.empty())
  2699. continue;
  2700. auto currFreeSlot = freeSlots.front();
  2701. freeSlots.pop();
  2702. destMap.insert(lb, TMapCreatureSlot::value_type(currCreature, currFreeSlot));
  2703. }
  2704. moves.insert(std::make_pair(currSlot, std::make_pair(destMap[currCreature], quantity)));
  2705. slotsLeft--;
  2706. }
  2707. if(slotsLeft == 1)
  2708. {
  2709. auto lastCreature = setSrc.getCreature(srcSlot);
  2710. auto slotToMove = SlotID();
  2711. // Try to find a slot for last creature
  2712. if(destMap.find(lastCreature) == destMap.end())
  2713. {
  2714. if(!freeSlots.empty())
  2715. slotToMove = freeSlots.front();
  2716. }
  2717. else
  2718. {
  2719. slotToMove = destMap[lastCreature];
  2720. }
  2721. if(slotToMove != SlotID())
  2722. {
  2723. const bool needsLastStack = armySrc->needsLastStack();
  2724. const auto quantity = setSrc.getStackCount(srcSlot) - (needsLastStack ? 1 : 0);
  2725. moves.insert(std::make_pair(srcSlot, std::make_pair(slotToMove, quantity)));
  2726. }
  2727. }
  2728. BulkRebalanceStacks bulkRS;
  2729. for(auto & move : moves)
  2730. {
  2731. RebalanceStacks rs;
  2732. rs.srcArmy = armySrc->id;
  2733. rs.dstArmy = armyDest->id;
  2734. rs.srcSlot = move.first;
  2735. rs.dstSlot = move.second.first;
  2736. rs.count = move.second.second;
  2737. bulkRS.moves.push_back(rs);
  2738. }
  2739. sendAndApply(&bulkRS);
  2740. return true;
  2741. }
  2742. bool CGameHandler::bulkSmartSplitStack(SlotID slotSrc, ObjectInstanceID srcOwner)
  2743. {
  2744. if(!slotSrc.validSlot() && complain(complainInvalidSlot))
  2745. return false;
  2746. const CArmedInstance * army = static_cast<const CArmedInstance*>(getObjInstance(srcOwner));
  2747. const CCreatureSet & creatureSet = *army;
  2748. if(!vstd::contains(creatureSet.stacks, slotSrc) && complain(complainNoCreatures))
  2749. return false;
  2750. auto actualAmount = creatureSet.getStackCount(slotSrc);
  2751. if(actualAmount <= 1 && complain(complainNoCreatures))
  2752. return false;
  2753. auto freeSlot = creatureSet.getFreeSlot();
  2754. auto currentCreature = creatureSet.getCreature(slotSrc);
  2755. if(freeSlot == SlotID() && creatureSet.isCreatureBalanced(currentCreature))
  2756. return true;
  2757. auto creatureSlots = creatureSet.getCreatureSlots(currentCreature, SlotID(-1), 1); // Ignore slots where's only 1 creature, don't ignore slotSrc
  2758. TQuantity totalCreatures = 0;
  2759. for(auto slot : creatureSlots)
  2760. totalCreatures += creatureSet.getStackCount(slot);
  2761. if(totalCreatures <= 1 && complain("Total creatures number is invalid"))
  2762. return false;
  2763. if(freeSlot != SlotID())
  2764. creatureSlots.push_back(freeSlot);
  2765. if(creatureSlots.empty() && complain("No available slots for smart rebalancing"))
  2766. return false;
  2767. const auto totalCreatureSlots = creatureSlots.size();
  2768. const auto rem = totalCreatures % totalCreatureSlots;
  2769. const auto quotient = totalCreatures / totalCreatureSlots;
  2770. // totalCreatures == rem * (quotient + 1) + (totalCreatureSlots - rem) * quotient;
  2771. // Proof: r(q+1)+(s-r)q = rq+r+qs-rq = r+qs = total, where total/s = q+r/s
  2772. BulkSmartRebalanceStacks bulkSRS;
  2773. if(freeSlot != SlotID())
  2774. {
  2775. RebalanceStacks rs;
  2776. rs.srcArmy = rs.dstArmy = army->id;
  2777. rs.srcSlot = slotSrc;
  2778. rs.dstSlot = freeSlot;
  2779. rs.count = 1;
  2780. bulkSRS.moves.push_back(rs);
  2781. }
  2782. auto currSlot = 0;
  2783. auto check = 0;
  2784. for(auto slot : creatureSlots)
  2785. {
  2786. ChangeStackCount csc;
  2787. csc.army = army->id;
  2788. csc.slot = slot;
  2789. csc.count = (currSlot < rem)
  2790. ? quotient + 1
  2791. : quotient;
  2792. csc.absoluteValue = true;
  2793. bulkSRS.changes.push_back(csc);
  2794. currSlot++;
  2795. check += csc.count;
  2796. }
  2797. if(check != totalCreatures)
  2798. {
  2799. complain((boost::format("Failure: totalCreatures=%d but check=%d") % totalCreatures % check).str());
  2800. return false;
  2801. }
  2802. sendAndApply(&bulkSRS);
  2803. return true;
  2804. }
  2805. bool CGameHandler::arrangeStacks(ObjectInstanceID id1, ObjectInstanceID id2, ui8 what, SlotID p1, SlotID p2, si32 val, PlayerColor player)
  2806. {
  2807. const CArmedInstance * s1 = static_cast<const CArmedInstance *>(getObjInstance(id1)),
  2808. * s2 = static_cast<const CArmedInstance *>(getObjInstance(id2));
  2809. const CCreatureSet &S1 = *s1, &S2 = *s2;
  2810. StackLocation sl1(s1, p1), sl2(s2, p2);
  2811. if (!sl1.slot.validSlot() || !sl2.slot.validSlot())
  2812. {
  2813. complain(complainInvalidSlot);
  2814. return false;
  2815. }
  2816. if (!isAllowedExchange(id1,id2))
  2817. {
  2818. complain("Cannot exchange stacks between these two objects!\n");
  2819. return false;
  2820. }
  2821. // We can always put stacks into locked garrison, but not take them out of it
  2822. auto notRemovable = [&](const CArmedInstance * army)
  2823. {
  2824. if (id1 != id2) // Stack arrangement inside locked garrison is allowed
  2825. {
  2826. auto g = dynamic_cast<const CGGarrison *>(army);
  2827. if (g && !g->removableUnits)
  2828. {
  2829. complain("Stacks in this garrison are not removable!\n");
  2830. return true;
  2831. }
  2832. }
  2833. return false;
  2834. };
  2835. if (what==1) //swap
  2836. {
  2837. if (((s1->tempOwner != player && s1->tempOwner != PlayerColor::UNFLAGGABLE) && s1->getStackCount(p1))
  2838. || ((s2->tempOwner != player && s2->tempOwner != PlayerColor::UNFLAGGABLE) && s2->getStackCount(p2)))
  2839. {
  2840. complain("Can't take troops from another player!");
  2841. return false;
  2842. }
  2843. if (sl1.army == sl2.army && sl1.slot == sl2.slot)
  2844. {
  2845. complain("Cannot swap stacks - slots are the same!");
  2846. return false;
  2847. }
  2848. if (!s1->slotEmpty(p1) && !s2->slotEmpty(p2))
  2849. {
  2850. if (notRemovable(sl1.army) || notRemovable(sl2.army))
  2851. return false;
  2852. }
  2853. if (s1->slotEmpty(p1) && notRemovable(sl2.army))
  2854. return false;
  2855. else if (s2->slotEmpty(p2) && notRemovable(sl1.army))
  2856. return false;
  2857. swapStacks(sl1, sl2);
  2858. }
  2859. else if (what==2)//merge
  2860. {
  2861. if ((s1->getCreature(p1) != s2->getCreature(p2) && complain("Cannot merge different creatures stacks!"))
  2862. || (((s1->tempOwner != player && s1->tempOwner != PlayerColor::UNFLAGGABLE) && s2->getStackCount(p2)) && complain("Can't take troops from another player!")))
  2863. return false;
  2864. if (s1->slotEmpty(p1) || s2->slotEmpty(p2))
  2865. {
  2866. complain("Cannot merge empty stack!");
  2867. return false;
  2868. }
  2869. else if (notRemovable(sl1.army))
  2870. return false;
  2871. moveStack(sl1, sl2);
  2872. }
  2873. else if (what==3) //split
  2874. {
  2875. const int countToMove = val - s2->getStackCount(p2);
  2876. const int countLeftOnSrc = s1->getStackCount(p1) - countToMove;
  2877. if ( (s1->tempOwner != player && countLeftOnSrc < s1->getStackCount(p1))
  2878. || (s2->tempOwner != player && val < s2->getStackCount(p2)))
  2879. {
  2880. complain("Can't move troops of another player!");
  2881. return false;
  2882. }
  2883. //general conditions checking
  2884. if ((!vstd::contains(S1.stacks,p1) && complain(complainNoCreatures))
  2885. || (val<1 && complain(complainNoCreatures)) )
  2886. {
  2887. return false;
  2888. }
  2889. if (vstd::contains(S2.stacks,p2)) //dest. slot not free - it must be "rebalancing"...
  2890. {
  2891. int total = s1->getStackCount(p1) + s2->getStackCount(p2);
  2892. if ((total < val && complain("Cannot split that stack, not enough creatures!"))
  2893. || (s1->getCreature(p1) != s2->getCreature(p2) && complain("Cannot rebalance different creatures stacks!"))
  2894. )
  2895. {
  2896. return false;
  2897. }
  2898. if (notRemovable(sl1.army))
  2899. {
  2900. if (s1->getStackCount(p1) > countLeftOnSrc)
  2901. return false;
  2902. }
  2903. else if (notRemovable(sl2.army))
  2904. {
  2905. if (s2->getStackCount(p1) < countLeftOnSrc)
  2906. return false;
  2907. }
  2908. moveStack(sl1, sl2, countToMove);
  2909. //S2.slots[p2]->count = val;
  2910. //S1.slots[p1]->count = total - val;
  2911. }
  2912. else //split one stack to the two
  2913. {
  2914. if (s1->getStackCount(p1) < val)//not enough creatures
  2915. {
  2916. complain(complainNotEnoughCreatures);
  2917. return false;
  2918. }
  2919. if (notRemovable(sl1.army))
  2920. return false;
  2921. moveStack(sl1, sl2, val);
  2922. }
  2923. }
  2924. return true;
  2925. }
  2926. bool CGameHandler::hasPlayerAt(PlayerColor player, std::shared_ptr<CConnection> c) const
  2927. {
  2928. return connections.at(player).count(c);
  2929. }
  2930. PlayerColor CGameHandler::getPlayerAt(std::shared_ptr<CConnection> c) const
  2931. {
  2932. std::set<PlayerColor> all;
  2933. for (auto i=connections.cbegin(); i!=connections.cend(); i++)
  2934. if(vstd::contains(i->second, c))
  2935. all.insert(i->first);
  2936. switch(all.size())
  2937. {
  2938. case 0:
  2939. return PlayerColor::NEUTRAL;
  2940. case 1:
  2941. return *all.begin();
  2942. default:
  2943. {
  2944. //if we have more than one player at this connection, try to pick active one
  2945. if (vstd::contains(all, gs->currentPlayer))
  2946. return gs->currentPlayer;
  2947. else
  2948. return PlayerColor::CANNOT_DETERMINE; //cannot say which player is it
  2949. }
  2950. }
  2951. }
  2952. bool CGameHandler::disbandCreature(ObjectInstanceID id, SlotID pos)
  2953. {
  2954. const CArmedInstance * s1 = static_cast<const CArmedInstance *>(getObjInstance(id));
  2955. if (!vstd::contains(s1->stacks,pos))
  2956. {
  2957. complain("Illegal call to disbandCreature - no such stack in army!");
  2958. return false;
  2959. }
  2960. eraseStack(StackLocation(s1, pos));
  2961. return true;
  2962. }
  2963. bool CGameHandler::buildStructure(ObjectInstanceID tid, BuildingID requestedID, bool force)
  2964. {
  2965. const CGTownInstance * t = getTown(tid);
  2966. if(!t)
  2967. COMPLAIN_RETF("No such town (ID=%s)!", tid);
  2968. if(!t->town->buildings.count(requestedID))
  2969. COMPLAIN_RETF("Town of faction %s does not have info about building ID=%s!", t->town->faction->getNameTranslated() % requestedID);
  2970. if(t->hasBuilt(requestedID))
  2971. COMPLAIN_RETF("Building %s is already built in %s", t->town->buildings.at(requestedID)->getNameTranslated() % t->getNameTranslated());
  2972. const CBuilding * requestedBuilding = t->town->buildings.at(requestedID);
  2973. //Vector with future list of built building and buildings in auto-mode that are not yet built.
  2974. std::vector<const CBuilding*> remainingAutoBuildings;
  2975. std::set<BuildingID> buildingsThatWillBe;
  2976. //Check validity of request
  2977. if(!force)
  2978. {
  2979. switch(requestedBuilding->mode)
  2980. {
  2981. case CBuilding::BUILD_NORMAL :
  2982. if (canBuildStructure(t, requestedID) != EBuildingState::ALLOWED)
  2983. COMPLAIN_RET("Cannot build that building!");
  2984. break;
  2985. case CBuilding::BUILD_AUTO :
  2986. case CBuilding::BUILD_SPECIAL:
  2987. COMPLAIN_RET("This building can not be constructed normally!");
  2988. case CBuilding::BUILD_GRAIL :
  2989. if(requestedBuilding->mode == CBuilding::BUILD_GRAIL) //needs grail
  2990. {
  2991. if(!t->visitingHero || !t->visitingHero->hasArt(ArtifactID::GRAIL))
  2992. COMPLAIN_RET("Cannot build this without grail!")
  2993. else
  2994. removeArtifact(ArtifactLocation(t->visitingHero, t->visitingHero->getArtPos(ArtifactID::GRAIL, false)));
  2995. }
  2996. break;
  2997. }
  2998. }
  2999. //Performs stuff that has to be done before new building is built
  3000. auto processBeforeBuiltStructure = [t, this](const BuildingID buildingID)
  3001. {
  3002. if(buildingID >= BuildingID::DWELL_FIRST) //dwelling
  3003. {
  3004. int level = (buildingID - BuildingID::DWELL_FIRST) % GameConstants::CREATURES_PER_TOWN;
  3005. int upgradeNumber = (buildingID - BuildingID::DWELL_FIRST) / GameConstants::CREATURES_PER_TOWN;
  3006. if(upgradeNumber >= t->town->creatures.at(level).size())
  3007. {
  3008. complain(boost::str(boost::format("Error ecountered when building dwelling (bid=%s):"
  3009. "no creature found (upgrade number %d, level %d!")
  3010. % buildingID % upgradeNumber % level));
  3011. return;
  3012. }
  3013. CCreature * crea = VLC->creh->objects.at(t->town->creatures.at(level).at(upgradeNumber));
  3014. SetAvailableCreatures ssi;
  3015. ssi.tid = t->id;
  3016. ssi.creatures = t->creatures;
  3017. if (ssi.creatures[level].second.empty()) // first creature in a dwelling
  3018. ssi.creatures[level].first = crea->getGrowth();
  3019. ssi.creatures[level].second.push_back(crea->getId());
  3020. sendAndApply(&ssi);
  3021. }
  3022. if(t->town->buildings.at(buildingID)->subId == BuildingSubID::PORTAL_OF_SUMMONING)
  3023. {
  3024. setPortalDwelling(t);
  3025. }
  3026. };
  3027. //Performs stuff that has to be done after new building is built
  3028. auto processAfterBuiltStructure = [t, this](const BuildingID buildingID)
  3029. {
  3030. auto isMageGuild = (buildingID <= BuildingID::MAGES_GUILD_5 && buildingID >= BuildingID::MAGES_GUILD_1);
  3031. auto isLibrary = isMageGuild ? false
  3032. : t->town->buildings.at(buildingID)->subId == BuildingSubID::EBuildingSubID::LIBRARY;
  3033. if(isMageGuild || isLibrary || (t->subID == ETownType::CONFLUX && buildingID == BuildingID::GRAIL))
  3034. {
  3035. if(t->visitingHero)
  3036. giveSpells(t,t->visitingHero);
  3037. if(t->garrisonHero)
  3038. giveSpells(t,t->garrisonHero);
  3039. }
  3040. };
  3041. //Checks if all requirements will be met with expected building list "buildingsThatWillBe"
  3042. auto areRequirementsFullfilled = [&](const BuildingID & buildID)
  3043. {
  3044. return buildingsThatWillBe.count(buildID);
  3045. };
  3046. //Init the vectors
  3047. for(auto & build : t->town->buildings)
  3048. {
  3049. if(t->hasBuilt(build.first))
  3050. {
  3051. buildingsThatWillBe.insert(build.first);
  3052. }
  3053. else
  3054. {
  3055. if(build.second->mode == CBuilding::BUILD_AUTO) //not built auto building
  3056. remainingAutoBuildings.push_back(build.second);
  3057. }
  3058. }
  3059. //Prepare structure (list of building ids will be filled later)
  3060. NewStructures ns;
  3061. ns.tid = tid;
  3062. ns.builded = force ? t->builded : (t->builded+1);
  3063. std::queue<const CBuilding*> buildingsToAdd;
  3064. buildingsToAdd.push(requestedBuilding);
  3065. while(!buildingsToAdd.empty())
  3066. {
  3067. auto b = buildingsToAdd.front();
  3068. buildingsToAdd.pop();
  3069. ns.bid.insert(b->bid);
  3070. buildingsThatWillBe.insert(b->bid);
  3071. remainingAutoBuildings -= b;
  3072. for(auto autoBuilding : remainingAutoBuildings)
  3073. {
  3074. auto actualRequirements = t->genBuildingRequirements(autoBuilding->bid);
  3075. if(actualRequirements.test(areRequirementsFullfilled))
  3076. buildingsToAdd.push(autoBuilding);
  3077. }
  3078. }
  3079. // FIXME: it's done before NewStructures applied because otherwise town window wont be properly updated on client. That should be actually fixed on client and not on server.
  3080. for(auto builtID : ns.bid)
  3081. processBeforeBuiltStructure(builtID);
  3082. //Take cost
  3083. if(!force)
  3084. giveResources(t->tempOwner, -requestedBuilding->resources);
  3085. //We know what has been built, apply changes. Do this as final step to properly update town window
  3086. sendAndApply(&ns);
  3087. //Other post-built events. To some logic like giving spells to work gamestate changes for new building must be already in place!
  3088. for(auto builtID : ns.bid)
  3089. processAfterBuiltStructure(builtID);
  3090. // now when everything is built - reveal tiles for lookout tower
  3091. FoWChange fw;
  3092. fw.player = t->tempOwner;
  3093. fw.mode = 1;
  3094. getTilesInRange(fw.tiles, t->getSightCenter(), t->getSightRadius(), t->tempOwner, 1);
  3095. sendAndApply(&fw);
  3096. if(t->visitingHero)
  3097. visitCastleObjects(t, t->visitingHero);
  3098. if(t->garrisonHero)
  3099. visitCastleObjects(t, t->garrisonHero);
  3100. checkVictoryLossConditionsForPlayer(t->tempOwner);
  3101. return true;
  3102. }
  3103. bool CGameHandler::razeStructure (ObjectInstanceID tid, BuildingID bid)
  3104. {
  3105. ///incomplete, simply erases target building
  3106. const CGTownInstance * t = getTown(tid);
  3107. if (!vstd::contains(t->builtBuildings, bid))
  3108. return false;
  3109. RazeStructures rs;
  3110. rs.tid = tid;
  3111. rs.bid.insert(bid);
  3112. rs.destroyed = t->destroyed + 1;
  3113. sendAndApply(&rs);
  3114. //TODO: Remove dwellers
  3115. // if (t->subID == 4 && bid == 17) //Veil of Darkness
  3116. // {
  3117. // RemoveBonus rb(RemoveBonus::TOWN);
  3118. // rb.whoID = t->id;
  3119. // rb.source = BonusSource::TOWN_STRUCTURE;
  3120. // rb.id = 17;
  3121. // sendAndApply(&rb);
  3122. // }
  3123. return true;
  3124. }
  3125. bool CGameHandler::recruitCreatures(ObjectInstanceID objid, ObjectInstanceID dstid, CreatureID crid, ui32 cram, si32 fromLvl)
  3126. {
  3127. const CGDwelling * dw = static_cast<const CGDwelling *>(getObj(objid));
  3128. const CArmedInstance *dst = nullptr;
  3129. const CCreature *c = VLC->creh->objects.at(crid);
  3130. const bool warMachine = c->warMachine != ArtifactID::NONE;
  3131. //TODO: test for owning
  3132. //TODO: check if dst can recruit objects (e.g. hero is actually visiting object, town and source are same, etc)
  3133. dst = dynamic_cast<const CArmedInstance*>(getObj(dstid));
  3134. assert(dw && dst);
  3135. //verify
  3136. bool found = false;
  3137. int level = 0;
  3138. for (; level < dw->creatures.size(); level++) //iterate through all levels
  3139. {
  3140. if ((fromLvl != -1) && (level !=fromLvl))
  3141. continue;
  3142. const auto &cur = dw->creatures.at(level); //current level info <amount, list of cr. ids>
  3143. int i = 0;
  3144. for (; i < cur.second.size(); i++) //look for crid among available creatures list on current level
  3145. if (cur.second.at(i) == crid)
  3146. break;
  3147. if (i < cur.second.size())
  3148. {
  3149. found = true;
  3150. cram = std::min(cram, cur.first); //reduce recruited amount up to available amount
  3151. break;
  3152. }
  3153. }
  3154. SlotID slot = dst->getSlotFor(crid);
  3155. if ((!found && complain("Cannot recruit: no such creatures!"))
  3156. || ((si32)cram > VLC->creh->objects.at(crid)->maxAmount(getPlayerState(dst->tempOwner)->resources) && complain("Cannot recruit: lack of resources!"))
  3157. || (cram<=0 && complain("Cannot recruit: cram <= 0!"))
  3158. || (!slot.validSlot() && !warMachine && complain("Cannot recruit: no available slot!")))
  3159. {
  3160. return false;
  3161. }
  3162. //recruit
  3163. giveResources(dst->tempOwner, -(c->getFullRecruitCost() * cram));
  3164. SetAvailableCreatures sac;
  3165. sac.tid = objid;
  3166. sac.creatures = dw->creatures;
  3167. sac.creatures[level].first -= cram;
  3168. sendAndApply(&sac);
  3169. if (warMachine)
  3170. {
  3171. const CGHeroInstance *h = dynamic_cast<const CGHeroInstance*>(dst);
  3172. COMPLAIN_RET_FALSE_IF(!h, "Only hero can buy war machines");
  3173. ArtifactID artId = c->warMachine;
  3174. COMPLAIN_RET_FALSE_IF(artId == ArtifactID::CATAPULT, "Catapult cannot be recruited!");
  3175. const CArtifact * art = artId.toArtifact();
  3176. COMPLAIN_RET_FALSE_IF(nullptr == art, "Invalid war machine artifact");
  3177. return giveHeroNewArtifact(h, art);
  3178. }
  3179. else
  3180. {
  3181. addToSlot(StackLocation(dst, slot), c, cram);
  3182. }
  3183. return true;
  3184. }
  3185. bool CGameHandler::upgradeCreature(ObjectInstanceID objid, SlotID pos, CreatureID upgID)
  3186. {
  3187. const CArmedInstance * obj = static_cast<const CArmedInstance *>(getObjInstance(objid));
  3188. if (!obj->hasStackAtSlot(pos))
  3189. {
  3190. COMPLAIN_RET("Cannot upgrade, no stack at slot " + boost::to_string(pos));
  3191. }
  3192. UpgradeInfo ui;
  3193. fillUpgradeInfo(obj, pos, ui);
  3194. PlayerColor player = obj->tempOwner;
  3195. const PlayerState *p = getPlayerState(player);
  3196. int crQuantity = obj->stacks.at(pos)->count;
  3197. int newIDpos= vstd::find_pos(ui.newID, upgID);//get position of new id in UpgradeInfo
  3198. //check if upgrade is possible
  3199. if ((ui.oldID<0 || newIDpos == -1) && complain("That upgrade is not possible!"))
  3200. {
  3201. return false;
  3202. }
  3203. TResources totalCost = ui.cost.at(newIDpos) * crQuantity;
  3204. //check if player has enough resources
  3205. if (!p->resources.canAfford(totalCost))
  3206. COMPLAIN_RET("Cannot upgrade, not enough resources!");
  3207. //take resources
  3208. giveResources(player, -totalCost);
  3209. //upgrade creature
  3210. changeStackType(StackLocation(obj, pos), VLC->creh->objects.at(upgID));
  3211. return true;
  3212. }
  3213. bool CGameHandler::changeStackType(const StackLocation &sl, const CCreature *c)
  3214. {
  3215. if (!sl.army->hasStackAtSlot(sl.slot))
  3216. COMPLAIN_RET("Cannot find a stack to change type");
  3217. SetStackType sst;
  3218. sst.army = sl.army->id;
  3219. sst.slot = sl.slot;
  3220. sst.type = c->getId();
  3221. sendAndApply(&sst);
  3222. return true;
  3223. }
  3224. void CGameHandler::moveArmy(const CArmedInstance *src, const CArmedInstance *dst, bool allowMerging)
  3225. {
  3226. assert(src->canBeMergedWith(*dst, allowMerging));
  3227. while(src->stacksCount())//while there are unmoved creatures
  3228. {
  3229. auto i = src->Slots().begin(); //iterator to stack to move
  3230. StackLocation sl(src, i->first); //location of stack to move
  3231. SlotID pos = dst->getSlotFor(i->second->type);
  3232. if (!pos.validSlot())
  3233. {
  3234. //try to merge two other stacks to make place
  3235. std::pair<SlotID, SlotID> toMerge;
  3236. if (dst->mergableStacks(toMerge, i->first) && allowMerging)
  3237. {
  3238. moveStack(StackLocation(dst, toMerge.first), StackLocation(dst, toMerge.second)); //merge toMerge.first into toMerge.second
  3239. assert(!dst->hasStackAtSlot(toMerge.first)); //we have now a new free slot
  3240. moveStack(sl, StackLocation(dst, toMerge.first)); //move stack to freed slot
  3241. }
  3242. else
  3243. {
  3244. complain("Unexpected failure during an attempt to move army from " + src->nodeName() + " to " + dst->nodeName() + "!");
  3245. return;
  3246. }
  3247. }
  3248. else
  3249. {
  3250. moveStack(sl, StackLocation(dst, pos));
  3251. }
  3252. }
  3253. }
  3254. bool CGameHandler::swapGarrisonOnSiege(ObjectInstanceID tid)
  3255. {
  3256. const CGTownInstance * town = getTown(tid);
  3257. if(!town->garrisonHero == !town->visitingHero)
  3258. return false;
  3259. SetHeroesInTown intown;
  3260. intown.tid = tid;
  3261. if(town->garrisonHero) //garrison -> vising
  3262. {
  3263. intown.garrison = ObjectInstanceID();
  3264. intown.visiting = town->garrisonHero->id;
  3265. }
  3266. else //visiting -> garrison
  3267. {
  3268. if(town->armedGarrison())
  3269. town->mergeGarrisonOnSiege();
  3270. intown.visiting = ObjectInstanceID();
  3271. intown.garrison = town->visitingHero->id;
  3272. }
  3273. sendAndApply(&intown);
  3274. return true;
  3275. }
  3276. bool CGameHandler::garrisonSwap(ObjectInstanceID tid)
  3277. {
  3278. const CGTownInstance * town = getTown(tid);
  3279. if (!town->garrisonHero && town->visitingHero) //visiting => garrison, merge armies: town army => hero army
  3280. {
  3281. if (!town->visitingHero->canBeMergedWith(*town))
  3282. {
  3283. complain("Cannot make garrison swap, not enough free slots!");
  3284. return false;
  3285. }
  3286. moveArmy(town, town->visitingHero, true);
  3287. SetHeroesInTown intown;
  3288. intown.tid = tid;
  3289. intown.visiting = ObjectInstanceID();
  3290. intown.garrison = town->visitingHero->id;
  3291. sendAndApply(&intown);
  3292. return true;
  3293. }
  3294. else if (town->garrisonHero && !town->visitingHero) //move hero out of the garrison
  3295. {
  3296. //check if moving hero out of town will break 8 wandering heroes limit
  3297. if (getHeroCount(town->garrisonHero->tempOwner,false) >= 8)
  3298. {
  3299. complain("Cannot move hero out of the garrison, there are already 8 wandering heroes!");
  3300. return false;
  3301. }
  3302. SetHeroesInTown intown;
  3303. intown.tid = tid;
  3304. intown.garrison = ObjectInstanceID();
  3305. intown.visiting = town->garrisonHero->id;
  3306. sendAndApply(&intown);
  3307. return true;
  3308. }
  3309. else if (!!town->garrisonHero && town->visitingHero) //swap visiting and garrison hero
  3310. {
  3311. SetHeroesInTown intown;
  3312. intown.tid = tid;
  3313. intown.garrison = town->visitingHero->id;
  3314. intown.visiting = town->garrisonHero->id;
  3315. sendAndApply(&intown);
  3316. return true;
  3317. }
  3318. else
  3319. {
  3320. complain("Cannot swap garrison hero!");
  3321. return false;
  3322. }
  3323. }
  3324. // With the amount of changes done to the function, it's more like transferArtifacts.
  3325. // Function moves artifact from src to dst. If dst is not a backpack and is already occupied, old dst art goes to backpack and is replaced.
  3326. bool CGameHandler::moveArtifact(const ArtifactLocation &al1, const ArtifactLocation &al2)
  3327. {
  3328. ArtifactLocation src = al1, dst = al2;
  3329. const PlayerColor srcPlayer = src.owningPlayer(), dstPlayer = dst.owningPlayer();
  3330. const CArmedInstance *srcObj = src.relatedObj(), *dstObj = dst.relatedObj();
  3331. // Make sure exchange is even possible between the two heroes.
  3332. if(!isAllowedExchange(srcObj->id, dstObj->id))
  3333. COMPLAIN_RET("That heroes cannot make any exchange!");
  3334. const CArtifactInstance *srcArtifact = src.getArt();
  3335. const CArtifactInstance *destArtifact = dst.getArt();
  3336. const bool isDstSlotBackpack = ArtifactUtils::isSlotBackpack(dst.slot);
  3337. if(srcArtifact == nullptr)
  3338. COMPLAIN_RET("No artifact to move!");
  3339. if(destArtifact && srcPlayer != dstPlayer && !isDstSlotBackpack)
  3340. COMPLAIN_RET("Can't touch artifact on hero of another player!");
  3341. // Check if src/dest slots are appropriate for the artifacts exchanged.
  3342. // Moving to the backpack is always allowed.
  3343. if((!srcArtifact || !isDstSlotBackpack)
  3344. && srcArtifact && !srcArtifact->canBePutAt(dst, true))
  3345. COMPLAIN_RET("Cannot move artifact!");
  3346. auto srcSlot = src.getSlot();
  3347. auto dstSlot = dst.getSlot();
  3348. if((srcSlot && srcSlot->locked) || (dstSlot && dstSlot->locked))
  3349. COMPLAIN_RET("Cannot move artifact locks.");
  3350. if(isDstSlotBackpack && srcArtifact->artType->isBig())
  3351. COMPLAIN_RET("Cannot put big artifacts in backpack!");
  3352. if(src.slot == ArtifactPosition::MACH4 || dst.slot == ArtifactPosition::MACH4)
  3353. COMPLAIN_RET("Cannot move catapult!");
  3354. if(isDstSlotBackpack)
  3355. {
  3356. if(!ArtifactUtils::isBackpackFreeSlots(dst.getHolderArtSet()))
  3357. COMPLAIN_RET("Backpack is full!");
  3358. vstd::amin(dst.slot, GameConstants::BACKPACK_START + dst.getHolderArtSet()->artifactsInBackpack.size());
  3359. }
  3360. if(!(src.slot == ArtifactPosition::TRANSITION_POS && dst.slot == ArtifactPosition::TRANSITION_POS))
  3361. {
  3362. if(src.slot == dst.slot && src.artHolder == dst.artHolder)
  3363. COMPLAIN_RET("Won't move artifact: Dest same as source!");
  3364. // Check if dst slot is occupied
  3365. if(!isDstSlotBackpack && destArtifact)
  3366. {
  3367. // Previous artifact must be removed first
  3368. moveArtifact(dst, ArtifactLocation(dst.artHolder, ArtifactPosition::TRANSITION_POS));
  3369. }
  3370. try
  3371. {
  3372. auto hero = std::get<ConstTransitivePtr<CGHeroInstance>>(dst.artHolder);
  3373. if(ArtifactUtils::checkSpellbookIsNeeded(hero, srcArtifact->artType->getId(), dst.slot))
  3374. giveHeroNewArtifact(hero, VLC->arth->objects[ArtifactID::SPELLBOOK], ArtifactPosition::SPELLBOOK);
  3375. }
  3376. catch(const std::bad_variant_access &)
  3377. {
  3378. // object other than hero received an art - ignore
  3379. }
  3380. MoveArtifact ma(&src, &dst);
  3381. if(dst.slot == ArtifactPosition::TRANSITION_POS)
  3382. ma.askAssemble = false;
  3383. sendAndApply(&ma);
  3384. }
  3385. return true;
  3386. }
  3387. bool CGameHandler::bulkMoveArtifacts(ObjectInstanceID srcHero, ObjectInstanceID dstHero, bool swap)
  3388. {
  3389. // Make sure exchange is even possible between the two heroes.
  3390. if(!isAllowedExchange(srcHero, dstHero))
  3391. COMPLAIN_RET("That heroes cannot make any exchange!");
  3392. auto psrcHero = getHero(srcHero);
  3393. auto pdstHero = getHero(dstHero);
  3394. if((!psrcHero) || (!pdstHero))
  3395. COMPLAIN_RET("bulkMoveArtifacts: wrong hero's ID");
  3396. BulkMoveArtifacts ma(static_cast<ConstTransitivePtr<CGHeroInstance>>(psrcHero),
  3397. static_cast<ConstTransitivePtr<CGHeroInstance>>(pdstHero), swap);
  3398. auto & slotsSrcDst = ma.artsPack0;
  3399. auto & slotsDstSrc = ma.artsPack1;
  3400. // Temporary fitting set for artifacts. Used to select available slots before sending data.
  3401. CArtifactFittingSet artFittingSet(pdstHero->bearerType());
  3402. auto moveArtifact = [this, &artFittingSet](const CArtifactInstance * artifact,
  3403. ArtifactPosition srcSlot, const CGHeroInstance * dstHero,
  3404. std::vector<BulkMoveArtifacts::LinkedSlots> & slots) -> void
  3405. {
  3406. assert(artifact);
  3407. auto dstSlot = ArtifactUtils::getArtAnyPosition(&artFittingSet, artifact->getTypeId());
  3408. if(dstSlot != ArtifactPosition::PRE_FIRST)
  3409. {
  3410. artFittingSet.putArtifact(dstSlot, static_cast<ConstTransitivePtr<CArtifactInstance>>(artifact));
  3411. slots.push_back(BulkMoveArtifacts::LinkedSlots(srcSlot, dstSlot));
  3412. if(ArtifactUtils::checkSpellbookIsNeeded(dstHero, artifact->getTypeId(), dstSlot))
  3413. giveHeroNewArtifact(dstHero, VLC->arth->objects[ArtifactID::SPELLBOOK], ArtifactPosition::SPELLBOOK);
  3414. }
  3415. };
  3416. if(swap)
  3417. {
  3418. auto moveArtsWorn = [moveArtifact](const CGHeroInstance * srcHero, const CGHeroInstance * dstHero,
  3419. std::vector<BulkMoveArtifacts::LinkedSlots> & slots) -> void
  3420. {
  3421. for(auto & artifact : srcHero->artifactsWorn)
  3422. {
  3423. if(ArtifactUtils::isArtRemovable(artifact))
  3424. moveArtifact(artifact.second.getArt(), artifact.first, dstHero, slots);
  3425. }
  3426. };
  3427. auto moveArtsInBackpack = [](const CArtifactSet * artSet,
  3428. std::vector<BulkMoveArtifacts::LinkedSlots> & slots) -> void
  3429. {
  3430. for(auto & slotInfo : artSet->artifactsInBackpack)
  3431. {
  3432. auto slot = artSet->getArtPos(slotInfo.artifact);
  3433. slots.push_back(BulkMoveArtifacts::LinkedSlots(slot, slot));
  3434. }
  3435. };
  3436. // Move over artifacts that are worn srcHero -> dstHero
  3437. moveArtsWorn(psrcHero, pdstHero, slotsSrcDst);
  3438. artFittingSet.artifactsWorn.clear();
  3439. // Move over artifacts that are worn dstHero -> srcHero
  3440. moveArtsWorn(pdstHero, psrcHero, slotsDstSrc);
  3441. // Move over artifacts that are in backpack srcHero -> dstHero
  3442. moveArtsInBackpack(psrcHero, slotsSrcDst);
  3443. // Move over artifacts that are in backpack dstHero -> srcHero
  3444. moveArtsInBackpack(pdstHero, slotsDstSrc);
  3445. }
  3446. else
  3447. {
  3448. artFittingSet.artifactsInBackpack = pdstHero->artifactsInBackpack;
  3449. artFittingSet.artifactsWorn = pdstHero->artifactsWorn;
  3450. // Move over artifacts that are worn
  3451. for(auto & artInfo : psrcHero->artifactsWorn)
  3452. {
  3453. if(ArtifactUtils::isArtRemovable(artInfo))
  3454. {
  3455. moveArtifact(psrcHero->getArt(artInfo.first), artInfo.first, pdstHero, slotsSrcDst);
  3456. }
  3457. }
  3458. // Move over artifacts that are in backpack
  3459. for(auto & slotInfo : psrcHero->artifactsInBackpack)
  3460. {
  3461. moveArtifact(psrcHero->getArt(psrcHero->getArtPos(slotInfo.artifact)),
  3462. psrcHero->getArtPos(slotInfo.artifact), pdstHero, slotsSrcDst);
  3463. }
  3464. }
  3465. sendAndApply(&ma);
  3466. return true;
  3467. }
  3468. /**
  3469. * Assembles or disassembles a combination artifact.
  3470. * @param heroID ID of hero holding the artifact(s).
  3471. * @param artifactSlot The worn slot ID of the combination- or constituent artifact.
  3472. * @param assemble True for assembly operation, false for disassembly.
  3473. * @param assembleTo If assemble is true, this represents the artifact ID of the combination
  3474. * artifact to assemble to. Otherwise it's not used.
  3475. */
  3476. bool CGameHandler::assembleArtifacts (ObjectInstanceID heroID, ArtifactPosition artifactSlot, bool assemble, ArtifactID assembleTo)
  3477. {
  3478. const CGHeroInstance * hero = getHero(heroID);
  3479. const CArtifactInstance * destArtifact = hero->getArt(artifactSlot);
  3480. if(!destArtifact)
  3481. COMPLAIN_RET("assembleArtifacts: there is no such artifact instance!");
  3482. if(assemble)
  3483. {
  3484. CArtifact * combinedArt = VLC->arth->objects[assembleTo];
  3485. if(!combinedArt->isCombined())
  3486. COMPLAIN_RET("assembleArtifacts: Artifact being attempted to assemble is not a combined artifacts!");
  3487. if (!vstd::contains(ArtifactUtils::assemblyPossibilities(hero, destArtifact->getTypeId(),
  3488. ArtifactUtils::isSlotEquipment(artifactSlot)), combinedArt))
  3489. {
  3490. COMPLAIN_RET("assembleArtifacts: It's impossible to assemble requested artifact!");
  3491. }
  3492. if(ArtifactUtils::checkSpellbookIsNeeded(hero, assembleTo, artifactSlot))
  3493. giveHeroNewArtifact(hero, VLC->arth->objects[ArtifactID::SPELLBOOK], ArtifactPosition::SPELLBOOK);
  3494. AssembledArtifact aa;
  3495. aa.al = ArtifactLocation(hero, artifactSlot);
  3496. aa.builtArt = combinedArt;
  3497. sendAndApply(&aa);
  3498. }
  3499. else
  3500. {
  3501. if(!destArtifact->isCombined())
  3502. COMPLAIN_RET("assembleArtifacts: Artifact being attempted to disassemble is not a combined artifact!");
  3503. if(ArtifactUtils::isSlotBackpack(artifactSlot)
  3504. && !ArtifactUtils::isBackpackFreeSlots(hero, destArtifact->artType->getConstituents().size() - 1))
  3505. COMPLAIN_RET("assembleArtifacts: Artifact being attempted to disassemble but backpack is full!");
  3506. DisassembledArtifact da;
  3507. da.al = ArtifactLocation(hero, artifactSlot);
  3508. sendAndApply(&da);
  3509. }
  3510. return true;
  3511. }
  3512. bool CGameHandler::eraseArtifactByClient(const ArtifactLocation & al)
  3513. {
  3514. const auto * hero = getHero(al.relatedObj()->id);
  3515. if(hero == nullptr)
  3516. COMPLAIN_RET("eraseArtifactByClient: wrong hero's ID");
  3517. const auto * art = al.getArt();
  3518. if(art == nullptr)
  3519. COMPLAIN_RET("Cannot remove artifact!");
  3520. if(al.getArt()->artType->canBePutAt(hero) || al.slot != ArtifactPosition::TRANSITION_POS)
  3521. COMPLAIN_RET("Illegal artifact removal request");
  3522. removeArtifact(al);
  3523. return true;
  3524. }
  3525. bool CGameHandler::buyArtifact(ObjectInstanceID hid, ArtifactID aid)
  3526. {
  3527. const CGHeroInstance * hero = getHero(hid);
  3528. COMPLAIN_RET_FALSE_IF(nullptr == hero, "Invalid hero index");
  3529. const CGTownInstance * town = hero->visitedTown;
  3530. COMPLAIN_RET_FALSE_IF(nullptr == town, "Hero not in town");
  3531. if (aid==ArtifactID::SPELLBOOK)
  3532. {
  3533. if ((!town->hasBuilt(BuildingID::MAGES_GUILD_1) && complain("Cannot buy a spellbook, no mage guild in the town!"))
  3534. || (getResource(hero->getOwner(), EGameResID::GOLD) < GameConstants::SPELLBOOK_GOLD_COST && complain("Cannot buy a spellbook, not enough gold!"))
  3535. || (hero->getArt(ArtifactPosition::SPELLBOOK) && complain("Cannot buy a spellbook, hero already has a one!"))
  3536. )
  3537. return false;
  3538. giveResource(hero->getOwner(),EGameResID::GOLD,-GameConstants::SPELLBOOK_GOLD_COST);
  3539. giveHeroNewArtifact(hero, VLC->arth->objects[ArtifactID::SPELLBOOK], ArtifactPosition::SPELLBOOK);
  3540. assert(hero->getArt(ArtifactPosition::SPELLBOOK));
  3541. giveSpells(town,hero);
  3542. return true;
  3543. }
  3544. else
  3545. {
  3546. const CArtifact * art = aid.toArtifact();
  3547. COMPLAIN_RET_FALSE_IF(nullptr == art, "Invalid artifact index to buy");
  3548. COMPLAIN_RET_FALSE_IF(art->getWarMachine() == CreatureID::NONE, "War machine artifact required");
  3549. COMPLAIN_RET_FALSE_IF(hero->hasArt(aid),"Hero already has this machine!");
  3550. const int price = art->getPrice();
  3551. COMPLAIN_RET_FALSE_IF(getPlayerState(hero->getOwner())->resources[EGameResID::GOLD] < price, "Not enough gold!");
  3552. if ((town->hasBuilt(BuildingID::BLACKSMITH) && town->town->warMachine == aid)
  3553. || (town->hasBuilt(BuildingSubID::BALLISTA_YARD) && aid == ArtifactID::BALLISTA))
  3554. {
  3555. giveResource(hero->getOwner(),EGameResID::GOLD,-price);
  3556. return giveHeroNewArtifact(hero, art);
  3557. }
  3558. else
  3559. COMPLAIN_RET("This machine is unavailable here!");
  3560. }
  3561. }
  3562. bool CGameHandler::buyArtifact(const IMarket *m, const CGHeroInstance *h, GameResID rid, ArtifactID aid)
  3563. {
  3564. if(!h)
  3565. COMPLAIN_RET("Only hero can buy artifacts!");
  3566. if (!vstd::contains(m->availableItemsIds(EMarketMode::RESOURCE_ARTIFACT), aid))
  3567. COMPLAIN_RET("That artifact is unavailable!");
  3568. int b1, b2;
  3569. m->getOffer(rid, aid, b1, b2, EMarketMode::RESOURCE_ARTIFACT);
  3570. if (getResource(h->tempOwner, rid) < b1)
  3571. COMPLAIN_RET("You can't afford to buy this artifact!");
  3572. giveResource(h->tempOwner, rid, -b1);
  3573. SetAvailableArtifacts saa;
  3574. if(dynamic_cast<const CGTownInstance *>(m))
  3575. {
  3576. saa.id = -1;
  3577. saa.arts = CGTownInstance::merchantArtifacts;
  3578. }
  3579. else if(const CGBlackMarket *bm = dynamic_cast<const CGBlackMarket *>(m)) //black market
  3580. {
  3581. saa.id = bm->id.getNum();
  3582. saa.arts = bm->artifacts;
  3583. }
  3584. else
  3585. COMPLAIN_RET("Wrong marktet...");
  3586. bool found = false;
  3587. for (const CArtifact *&art : saa.arts)
  3588. {
  3589. if (art && art->getId() == aid)
  3590. {
  3591. art = nullptr;
  3592. found = true;
  3593. break;
  3594. }
  3595. }
  3596. if (!found)
  3597. COMPLAIN_RET("Cannot find selected artifact on the list");
  3598. sendAndApply(&saa);
  3599. giveHeroNewArtifact(h, VLC->arth->objects[aid], ArtifactPosition::FIRST_AVAILABLE);
  3600. return true;
  3601. }
  3602. bool CGameHandler::sellArtifact(const IMarket *m, const CGHeroInstance *h, ArtifactInstanceID aid, GameResID rid)
  3603. {
  3604. COMPLAIN_RET_FALSE_IF((!h), "Only hero can sell artifacts!");
  3605. const CArtifactInstance *art = h->getArtByInstanceId(aid);
  3606. COMPLAIN_RET_FALSE_IF((!art), "There is no artifact to sell!");
  3607. COMPLAIN_RET_FALSE_IF((!art->artType->isTradable()), "Cannot sell a war machine or spellbook!");
  3608. int resVal = 0, dump = 1;
  3609. m->getOffer(art->artType->getId(), rid, dump, resVal, EMarketMode::ARTIFACT_RESOURCE);
  3610. removeArtifact(ArtifactLocation(h, h->getArtPos(art)));
  3611. giveResource(h->tempOwner, rid, resVal);
  3612. return true;
  3613. }
  3614. bool CGameHandler::buySecSkill(const IMarket *m, const CGHeroInstance *h, SecondarySkill skill)
  3615. {
  3616. if (!h)
  3617. COMPLAIN_RET("You need hero to buy a skill!");
  3618. if (h->getSecSkillLevel(SecondarySkill(skill)))
  3619. COMPLAIN_RET("Hero already know this skill");
  3620. if (!h->canLearnSkill())
  3621. COMPLAIN_RET("Hero can't learn any more skills");
  3622. if (!h->canLearnSkill(skill))
  3623. COMPLAIN_RET("The hero can't learn this skill!");
  3624. if (!vstd::contains(m->availableItemsIds(EMarketMode::RESOURCE_SKILL), skill))
  3625. COMPLAIN_RET("That skill is unavailable!");
  3626. if (getResource(h->tempOwner, EGameResID::GOLD) < GameConstants::SKILL_GOLD_COST)//TODO: remove hardcoded resource\summ?
  3627. COMPLAIN_RET("You can't afford to buy this skill");
  3628. giveResource(h->tempOwner, EGameResID::GOLD, -GameConstants::SKILL_GOLD_COST);
  3629. changeSecSkill(h, skill, 1, true);
  3630. return true;
  3631. }
  3632. bool CGameHandler::tradeResources(const IMarket *market, ui32 val, PlayerColor player, ui32 id1, ui32 id2)
  3633. {
  3634. TResourceCap r1 = getPlayerState(player)->resources[id1];
  3635. vstd::amin(val, r1); //can't trade more resources than have
  3636. int b1, b2; //base quantities for trade
  3637. market->getOffer(id1, id2, b1, b2, EMarketMode::RESOURCE_RESOURCE);
  3638. int units = val / b1; //how many base quantities we trade
  3639. if (val%b1) //all offered units of resource should be used, if not -> somewhere in calculations must be an error
  3640. {
  3641. COMPLAIN_RET("Invalid deal, not all offered units of resource were used.");
  3642. }
  3643. giveResource(player, GameResID(id1), - b1 * units);
  3644. giveResource(player, GameResID(id2), b2 * units);
  3645. return true;
  3646. }
  3647. bool CGameHandler::sellCreatures(ui32 count, const IMarket *market, const CGHeroInstance * hero, SlotID slot, GameResID resourceID)
  3648. {
  3649. if(!hero)
  3650. COMPLAIN_RET("Only hero can sell creatures!");
  3651. if (!vstd::contains(hero->Slots(), slot))
  3652. COMPLAIN_RET("Hero doesn't have any creature in that slot!");
  3653. const CStackInstance &s = hero->getStack(slot);
  3654. if (s.count < (TQuantity)count //can't sell more creatures than have
  3655. || (hero->stacksCount() == 1 && hero->needsLastStack() && s.count == count)) //can't sell last stack
  3656. {
  3657. COMPLAIN_RET("Not enough creatures in army!");
  3658. }
  3659. int b1, b2; //base quantities for trade
  3660. market->getOffer(s.type->getId(), resourceID, b1, b2, EMarketMode::CREATURE_RESOURCE);
  3661. int units = count / b1; //how many base quantities we trade
  3662. if (count%b1) //all offered units of resource should be used, if not -> somewhere in calculations must be an error
  3663. {
  3664. //TODO: complain?
  3665. assert(0);
  3666. }
  3667. changeStackCount(StackLocation(hero, slot), -(TQuantity)count);
  3668. giveResource(hero->tempOwner, resourceID, b2 * units);
  3669. return true;
  3670. }
  3671. bool CGameHandler::transformInUndead(const IMarket *market, const CGHeroInstance * hero, SlotID slot)
  3672. {
  3673. const CArmedInstance *army = nullptr;
  3674. if (hero)
  3675. army = hero;
  3676. else
  3677. army = dynamic_cast<const CGTownInstance *>(market);
  3678. if (!army)
  3679. COMPLAIN_RET("Incorrect call to transform in undead!");
  3680. if (!army->hasStackAtSlot(slot))
  3681. COMPLAIN_RET("Army doesn't have any creature in that slot!");
  3682. const CStackInstance &s = army->getStack(slot);
  3683. //resulting creature - bone dragons or skeletons
  3684. CreatureID resCreature = CreatureID::SKELETON;
  3685. if ((s.hasBonusOfType(BonusType::DRAGON_NATURE)
  3686. && !(s.hasBonusOfType(BonusType::UNDEAD)))
  3687. || (s.getCreatureID() == CreatureID::HYDRA)
  3688. || (s.getCreatureID() == CreatureID::CHAOS_HYDRA))
  3689. resCreature = CreatureID::BONE_DRAGON;
  3690. changeStackType(StackLocation(army, slot), resCreature.toCreature());
  3691. return true;
  3692. }
  3693. bool CGameHandler::sendResources(ui32 val, PlayerColor player, GameResID r1, PlayerColor r2)
  3694. {
  3695. const PlayerState *p2 = getPlayerState(r2, false);
  3696. if (!p2 || p2->status != EPlayerStatus::INGAME)
  3697. {
  3698. complain("Dest player must be in game!");
  3699. return false;
  3700. }
  3701. TResourceCap curRes1 = getPlayerState(player)->resources[r1];
  3702. vstd::amin(val, curRes1);
  3703. giveResource(player, r1, -(int)val);
  3704. giveResource(r2, r1, val);
  3705. return true;
  3706. }
  3707. bool CGameHandler::setFormation(ObjectInstanceID hid, ui8 formation)
  3708. {
  3709. const CGHeroInstance *h = getHero(hid);
  3710. if (!h)
  3711. {
  3712. logGlobal->error("Hero doesn't exist!");
  3713. return false;
  3714. }
  3715. ChangeFormation cf;
  3716. cf.hid = hid;
  3717. cf.formation = formation;
  3718. sendAndApply(&cf);
  3719. return true;
  3720. }
  3721. bool CGameHandler::queryReply(QueryID qid, const JsonNode & answer, PlayerColor player)
  3722. {
  3723. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  3724. logGlobal->trace("Player %s attempts answering query %d with answer:", player, qid);
  3725. logGlobal->trace(answer.toJson());
  3726. auto topQuery = queries.topQuery(player);
  3727. COMPLAIN_RET_FALSE_IF(!topQuery, "This player doesn't have any queries!");
  3728. if(topQuery->queryID != qid)
  3729. {
  3730. auto currentQuery = queries.getQuery(qid);
  3731. if(currentQuery != nullptr && currentQuery->endsByPlayerAnswer())
  3732. currentQuery->setReply(answer);
  3733. COMPLAIN_RET("This player top query has different ID!"); //topQuery->queryID != qid
  3734. }
  3735. COMPLAIN_RET_FALSE_IF(!topQuery->endsByPlayerAnswer(), "This query cannot be ended by player's answer!");
  3736. topQuery->setReply(answer);
  3737. queries.popQuery(topQuery);
  3738. return true;
  3739. }
  3740. static EndAction end_action;
  3741. void CGameHandler::updateGateState()
  3742. {
  3743. // GATE_BRIDGE - leftmost tile, located over moat
  3744. // GATE_OUTER - central tile, mostly covered by gate image
  3745. // GATE_INNER - rightmost tile, inside the walls
  3746. // GATE_OUTER or GATE_INNER:
  3747. // - if defender moves unit on these tiles, bridge will open
  3748. // - if there is a creature (dead or alive) on these tiles, bridge will always remain open
  3749. // - blocked to attacker if bridge is closed
  3750. // GATE_BRIDGE
  3751. // - if there is a unit or corpse here, bridge can't open (and can't close in fortress)
  3752. // - if Force Field is cast here, bridge can't open (but can close, in any town)
  3753. // - deals moat damage to attacker if bridge is closed (fortress only)
  3754. bool hasForceFieldOnBridge = !battleGetAllObstaclesOnPos(BattleHex(ESiegeHex::GATE_BRIDGE), true).empty();
  3755. bool hasStackAtGateInner = gs->curB->battleGetUnitByPos(BattleHex(ESiegeHex::GATE_INNER), false) != nullptr;
  3756. bool hasStackAtGateOuter = gs->curB->battleGetUnitByPos(BattleHex(ESiegeHex::GATE_OUTER), false) != nullptr;
  3757. bool hasStackAtGateBridge = gs->curB->battleGetUnitByPos(BattleHex(ESiegeHex::GATE_BRIDGE), false) != nullptr;
  3758. bool hasWideMoat = vstd::contains_if(battleGetAllObstaclesOnPos(BattleHex(ESiegeHex::GATE_BRIDGE), false), [](const std::shared_ptr<const CObstacleInstance> & obst)
  3759. {
  3760. return obst->obstacleType == CObstacleInstance::MOAT;
  3761. });
  3762. BattleUpdateGateState db;
  3763. db.state = gs->curB->si.gateState;
  3764. if (gs->curB->si.wallState[EWallPart::GATE] == EWallState::DESTROYED)
  3765. {
  3766. db.state = EGateState::DESTROYED;
  3767. }
  3768. else if (db.state == EGateState::OPENED)
  3769. {
  3770. bool hasStackOnLongBridge = hasStackAtGateBridge && hasWideMoat;
  3771. bool gateCanClose = !hasStackAtGateInner && !hasStackAtGateOuter && !hasStackOnLongBridge;
  3772. if (gateCanClose)
  3773. db.state = EGateState::CLOSED;
  3774. else
  3775. db.state = EGateState::OPENED;
  3776. }
  3777. else // CLOSED or BLOCKED
  3778. {
  3779. bool gateBlocked = hasForceFieldOnBridge || hasStackAtGateBridge;
  3780. if (gateBlocked)
  3781. db.state = EGateState::BLOCKED;
  3782. else
  3783. db.state = EGateState::CLOSED;
  3784. }
  3785. if (db.state != gs->curB->si.gateState)
  3786. sendAndApply(&db);
  3787. }
  3788. bool CGameHandler::makeBattleAction(BattleAction &ba)
  3789. {
  3790. boost::unique_lock lock(battleActionMutex);
  3791. bool ok = true;
  3792. battle::Target target = ba.getTarget(gs->curB);
  3793. const CStack * stack = battleGetStackByID(ba.stackNumber); //may be nullptr if action is not about stack
  3794. const bool isAboutActiveStack = stack && (ba.stackNumber == gs->curB->getActiveStackID());
  3795. logGlobal->trace("Making action: %s", ba.toString());
  3796. switch(ba.actionType)
  3797. {
  3798. case EActionType::WALK: //walk
  3799. case EActionType::DEFEND: //defend
  3800. case EActionType::WAIT: //wait
  3801. case EActionType::WALK_AND_ATTACK: //walk or attack
  3802. case EActionType::SHOOT: //shoot
  3803. case EActionType::CATAPULT: //catapult
  3804. case EActionType::STACK_HEAL: //healing with First Aid Tent
  3805. case EActionType::MONSTER_SPELL:
  3806. if (!stack)
  3807. {
  3808. complain("No such stack!");
  3809. return false;
  3810. }
  3811. if (!stack->alive())
  3812. {
  3813. complain("This stack is dead: " + stack->nodeName());
  3814. return false;
  3815. }
  3816. if (battleTacticDist())
  3817. {
  3818. if (stack && stack->unitSide() != battleGetTacticsSide())
  3819. {
  3820. complain("This is not a stack of side that has tactics!");
  3821. return false;
  3822. }
  3823. }
  3824. else if (!isAboutActiveStack)
  3825. {
  3826. complain("Action has to be about active stack!");
  3827. return false;
  3828. }
  3829. }
  3830. auto wrapAction = [this](BattleAction &ba)
  3831. {
  3832. StartAction startAction(ba);
  3833. sendAndApply(&startAction);
  3834. return vstd::makeScopeGuard([&]()
  3835. {
  3836. sendAndApply(&end_action);
  3837. });
  3838. };
  3839. switch(ba.actionType)
  3840. {
  3841. case EActionType::END_TACTIC_PHASE: //wait
  3842. case EActionType::BAD_MORALE:
  3843. case EActionType::NO_ACTION:
  3844. {
  3845. auto wrapper = wrapAction(ba);
  3846. break;
  3847. }
  3848. case EActionType::WALK:
  3849. {
  3850. auto wrapper = wrapAction(ba);
  3851. if(target.size() < 1)
  3852. {
  3853. complain("Destination required for move action.");
  3854. ok = false;
  3855. break;
  3856. }
  3857. int walkedTiles = moveStack(ba.stackNumber, target.at(0).hexValue); //move
  3858. if (!walkedTiles)
  3859. complain("Stack failed movement!");
  3860. break;
  3861. }
  3862. case EActionType::DEFEND:
  3863. {
  3864. //defensive stance, TODO: filter out spell boosts from bonus (stone skin etc.)
  3865. SetStackEffect sse;
  3866. Bonus defenseBonusToAdd(BonusDuration::STACK_GETS_TURN, BonusType::PRIMARY_SKILL, BonusSource::OTHER, 20, -1, PrimarySkill::DEFENSE, BonusValueType::PERCENT_TO_ALL);
  3867. Bonus bonus2(BonusDuration::STACK_GETS_TURN, BonusType::PRIMARY_SKILL, BonusSource::OTHER, stack->valOfBonuses(BonusType::DEFENSIVE_STANCE),
  3868. -1, PrimarySkill::DEFENSE, BonusValueType::ADDITIVE_VALUE);
  3869. Bonus alternativeWeakCreatureBonus(BonusDuration::STACK_GETS_TURN, BonusType::PRIMARY_SKILL, BonusSource::OTHER, 1, -1, PrimarySkill::DEFENSE, BonusValueType::ADDITIVE_VALUE);
  3870. BonusList defence = *stack->getBonuses(Selector::typeSubtype(BonusType::PRIMARY_SKILL, PrimarySkill::DEFENSE));
  3871. int oldDefenceValue = defence.totalValue();
  3872. defence.push_back(std::make_shared<Bonus>(defenseBonusToAdd));
  3873. defence.push_back(std::make_shared<Bonus>(bonus2));
  3874. int difference = defence.totalValue() - oldDefenceValue;
  3875. std::vector<Bonus> buffer;
  3876. if(difference == 0) //give replacement bonus for creatures not reaching 5 defense points (20% of def becomes 0)
  3877. {
  3878. difference = 1;
  3879. buffer.push_back(alternativeWeakCreatureBonus);
  3880. }
  3881. else
  3882. {
  3883. buffer.push_back(defenseBonusToAdd);
  3884. }
  3885. buffer.push_back(bonus2);
  3886. sse.toUpdate.push_back(std::make_pair(ba.stackNumber, buffer));
  3887. sendAndApply(&sse);
  3888. BattleLogMessage message;
  3889. MetaString text;
  3890. stack->addText(text, EMetaText::GENERAL_TXT, 120);
  3891. stack->addNameReplacement(text);
  3892. text.replaceNumber(difference);
  3893. message.lines.push_back(text);
  3894. sendAndApply(&message);
  3895. //don't break - we share code with next case
  3896. }
  3897. [[fallthrough]];
  3898. case EActionType::WAIT:
  3899. {
  3900. auto wrapper = wrapAction(ba);
  3901. break;
  3902. }
  3903. case EActionType::RETREAT: //retreat/flee
  3904. {
  3905. if (!gs->curB->battleCanFlee(gs->curB->sides.at(ba.side).color))
  3906. complain("Cannot retreat!");
  3907. else
  3908. setBattleResult(BattleResult::ESCAPE, !ba.side); //surrendering side loses
  3909. break;
  3910. }
  3911. case EActionType::SURRENDER:
  3912. {
  3913. PlayerColor player = gs->curB->sides.at(ba.side).color;
  3914. int cost = gs->curB->battleGetSurrenderCost(player);
  3915. if (cost < 0)
  3916. complain("Cannot surrender!");
  3917. else if (getResource(player, EGameResID::GOLD) < cost)
  3918. complain("Not enough gold to surrender!");
  3919. else
  3920. {
  3921. giveResource(player, EGameResID::GOLD, -cost);
  3922. setBattleResult(BattleResult::SURRENDER, !ba.side); //surrendering side loses
  3923. }
  3924. break;
  3925. }
  3926. case EActionType::WALK_AND_ATTACK: //walk or attack
  3927. {
  3928. auto wrapper = wrapAction(ba);
  3929. if(!stack)
  3930. {
  3931. complain("No attacker");
  3932. ok = false;
  3933. break;
  3934. }
  3935. if(target.size() < 2)
  3936. {
  3937. complain("Two destinations required for attack action.");
  3938. ok = false;
  3939. break;
  3940. }
  3941. BattleHex attackPos = target.at(0).hexValue;
  3942. BattleHex destinationTile = target.at(1).hexValue;
  3943. const CStack * destinationStack = gs->curB->battleGetStackByPos(destinationTile, true);
  3944. if(!destinationStack)
  3945. {
  3946. complain("Invalid target to attack");
  3947. ok = false;
  3948. break;
  3949. }
  3950. BattleHex startingPos = stack->getPosition();
  3951. int distance = moveStack(ba.stackNumber, attackPos);
  3952. logGlobal->trace("%s will attack %s", stack->nodeName(), destinationStack->nodeName());
  3953. if(stack->getPosition() != attackPos
  3954. && !(stack->doubleWide() && (stack->getPosition() == attackPos.cloneInDirection(stack->destShiftDir(), false)))
  3955. )
  3956. {
  3957. // we were not able to reach destination tile, nor occupy specified hex
  3958. // abort attack attempt, but treat this case as legal - we may have stepped onto a quicksands/mine
  3959. break;
  3960. }
  3961. if(destinationStack && stack->unitId() == destinationStack->unitId()) //we should just move, it will be handled by following check
  3962. {
  3963. destinationStack = nullptr;
  3964. }
  3965. if(!destinationStack)
  3966. {
  3967. complain("Unit can not attack itself");
  3968. ok = false;
  3969. break;
  3970. }
  3971. if(!CStack::isMeleeAttackPossible(stack, destinationStack))
  3972. {
  3973. complain("Attack cannot be performed!");
  3974. ok = false;
  3975. break;
  3976. }
  3977. //attack
  3978. int totalAttacks = stack->totalAttacks.getMeleeValue();
  3979. //TODO: move to CUnitState
  3980. const auto * attackingHero = gs->curB->battleGetFightingHero(ba.side);
  3981. if(attackingHero)
  3982. {
  3983. totalAttacks += attackingHero->valOfBonuses(BonusType::HERO_GRANTS_ATTACKS, stack->creatureIndex());
  3984. }
  3985. const bool firstStrike = destinationStack->hasBonusOfType(BonusType::FIRST_STRIKE);
  3986. const bool retaliation = destinationStack->ableToRetaliate();
  3987. for (int i = 0; i < totalAttacks; ++i)
  3988. {
  3989. //first strike
  3990. if(i == 0 && firstStrike && retaliation)
  3991. {
  3992. makeAttack(destinationStack, stack, 0, stack->getPosition(), true, false, true);
  3993. }
  3994. //move can cause death, eg. by walking into the moat, first strike can cause death or paralysis/petrification
  3995. if(stack->alive() && !stack->hasBonusOfType(BonusType::NOT_ACTIVE) && destinationStack->alive())
  3996. {
  3997. makeAttack(stack, destinationStack, (i ? 0 : distance), destinationTile, i==0, false, false);//no distance travelled on second attack
  3998. }
  3999. //counterattack
  4000. //we check retaliation twice, so if it unblocked during attack it will work only on next attack
  4001. if(stack->alive()
  4002. && !stack->hasBonusOfType(BonusType::BLOCKS_RETALIATION)
  4003. && (i == 0 && !firstStrike)
  4004. && retaliation && destinationStack->ableToRetaliate())
  4005. {
  4006. makeAttack(destinationStack, stack, 0, stack->getPosition(), true, false, true);
  4007. }
  4008. }
  4009. //return
  4010. if(stack->hasBonusOfType(BonusType::RETURN_AFTER_STRIKE)
  4011. && target.size() == 3
  4012. && startingPos != stack->getPosition()
  4013. && startingPos == target.at(2).hexValue
  4014. && stack->alive())
  4015. {
  4016. moveStack(ba.stackNumber, startingPos);
  4017. //NOTE: curStack->unitId() == ba.stackNumber (rev 1431)
  4018. }
  4019. break;
  4020. }
  4021. case EActionType::SHOOT:
  4022. {
  4023. if(target.size() < 1)
  4024. {
  4025. complain("Destination required for shot action.");
  4026. ok = false;
  4027. break;
  4028. }
  4029. auto destination = target.at(0).hexValue;
  4030. const CStack * destinationStack = gs->curB->battleGetStackByPos(destination);
  4031. if (!gs->curB->battleCanShoot(stack, destination))
  4032. {
  4033. complain("Cannot shoot!");
  4034. break;
  4035. }
  4036. if (!destinationStack)
  4037. {
  4038. complain("No target to shoot!");
  4039. break;
  4040. }
  4041. auto wrapper = wrapAction(ba);
  4042. makeAttack(stack, destinationStack, 0, destination, true, true, false);
  4043. //ranged counterattack
  4044. if (destinationStack->hasBonusOfType(BonusType::RANGED_RETALIATION)
  4045. && !stack->hasBonusOfType(BonusType::BLOCKS_RANGED_RETALIATION)
  4046. && destinationStack->ableToRetaliate()
  4047. && gs->curB->battleCanShoot(destinationStack, stack->getPosition())
  4048. && stack->alive()) //attacker may have died (fire shield)
  4049. {
  4050. makeAttack(destinationStack, stack, 0, stack->getPosition(), true, true, true);
  4051. }
  4052. //allow more than one additional attack
  4053. int totalRangedAttacks = stack->totalAttacks.getRangedValue();
  4054. //TODO: move to CUnitState
  4055. const auto * attackingHero = gs->curB->battleGetFightingHero(ba.side);
  4056. if(attackingHero)
  4057. {
  4058. totalRangedAttacks += attackingHero->valOfBonuses(BonusType::HERO_GRANTS_ATTACKS, stack->creatureIndex());
  4059. }
  4060. for(int i = 1; i < totalRangedAttacks; ++i)
  4061. {
  4062. if(
  4063. stack->alive()
  4064. && destinationStack->alive()
  4065. && stack->shots.canUse()
  4066. )
  4067. {
  4068. makeAttack(stack, destinationStack, 0, destination, false, true, false);
  4069. }
  4070. }
  4071. break;
  4072. }
  4073. case EActionType::CATAPULT:
  4074. {
  4075. auto wrapper = wrapAction(ba);
  4076. const CStack * shooter = gs->curB->battleGetStackByID(ba.stackNumber);
  4077. std::shared_ptr<const Bonus> catapultAbility = stack->getBonusLocalFirst(Selector::type()(BonusType::CATAPULT));
  4078. if(!catapultAbility || catapultAbility->subtype < 0)
  4079. {
  4080. complain("We do not know how to shoot :P");
  4081. }
  4082. else
  4083. {
  4084. const CSpell * spell = SpellID(catapultAbility->subtype).toSpell();
  4085. spells::BattleCast parameters(gs->curB, shooter, spells::Mode::SPELL_LIKE_ATTACK, spell); //We can shot infinitely by catapult
  4086. auto shotLevel = stack->valOfBonuses(Selector::typeSubtype(BonusType::CATAPULT_EXTRA_SHOTS, catapultAbility->subtype));
  4087. parameters.setSpellLevel(shotLevel);
  4088. parameters.cast(spellEnv, target);
  4089. }
  4090. //finish by scope guard
  4091. break;
  4092. }
  4093. case EActionType::STACK_HEAL: //healing with First Aid Tent
  4094. {
  4095. auto wrapper = wrapAction(ba);
  4096. const CStack * healer = gs->curB->battleGetStackByID(ba.stackNumber);
  4097. if(target.size() < 1)
  4098. {
  4099. complain("Destination required for heal action.");
  4100. ok = false;
  4101. break;
  4102. }
  4103. const battle::Unit * destStack = nullptr;
  4104. std::shared_ptr<const Bonus> healerAbility = stack->getBonusLocalFirst(Selector::type()(BonusType::HEALER));
  4105. if(target.at(0).unitValue)
  4106. destStack = target.at(0).unitValue;
  4107. else
  4108. destStack = gs->curB->battleGetUnitByPos(target.at(0).hexValue);
  4109. if(healer == nullptr || destStack == nullptr || !healerAbility || healerAbility->subtype < 0)
  4110. {
  4111. complain("There is either no healer, no destination, or healer cannot heal :P");
  4112. }
  4113. else
  4114. {
  4115. const CSpell * spell = SpellID(healerAbility->subtype).toSpell();
  4116. spells::BattleCast parameters(gs->curB, healer, spells::Mode::SPELL_LIKE_ATTACK, spell); //We can heal infinitely by first aid tent
  4117. auto dest = battle::Destination(destStack, target.at(0).hexValue);
  4118. parameters.setSpellLevel(0);
  4119. parameters.cast(spellEnv, {dest});
  4120. }
  4121. break;
  4122. }
  4123. case EActionType::MONSTER_SPELL:
  4124. {
  4125. auto wrapper = wrapAction(ba);
  4126. const CStack * stack = gs->curB->battleGetStackByID(ba.stackNumber);
  4127. SpellID spellID = SpellID(ba.actionSubtype);
  4128. std::shared_ptr<const Bonus> randSpellcaster = stack->getBonus(Selector::type()(BonusType::RANDOM_SPELLCASTER));
  4129. std::shared_ptr<const Bonus> spellcaster = stack->getBonus(Selector::typeSubtype(BonusType::SPELLCASTER, spellID));
  4130. //TODO special bonus for genies ability
  4131. if (randSpellcaster && battleGetRandomStackSpell(getRandomGenerator(), stack, CBattleInfoCallback::RANDOM_AIMED) < 0)
  4132. spellID = battleGetRandomStackSpell(getRandomGenerator(), stack, CBattleInfoCallback::RANDOM_GENIE);
  4133. if (spellID < 0)
  4134. complain("That stack can't cast spells!");
  4135. else
  4136. {
  4137. const CSpell * spell = SpellID(spellID).toSpell();
  4138. spells::BattleCast parameters(gs->curB, stack, spells::Mode::CREATURE_ACTIVE, spell);
  4139. int32_t spellLvl = 0;
  4140. if(spellcaster)
  4141. vstd::amax(spellLvl, spellcaster->val);
  4142. if(randSpellcaster)
  4143. vstd::amax(spellLvl, randSpellcaster->val);
  4144. parameters.setSpellLevel(spellLvl);
  4145. parameters.cast(spellEnv, target);
  4146. }
  4147. break;
  4148. }
  4149. }
  4150. if(ba.actionType == EActionType::WAIT || ba.actionType == EActionType::DEFEND
  4151. || ba.actionType == EActionType::SHOOT || ba.actionType == EActionType::MONSTER_SPELL)
  4152. handleObstacleTriggersForUnit(*spellEnv, *stack);
  4153. if(ba.stackNumber == gs->curB->activeStack || battleResult.get()) //active stack has moved or battle has finished
  4154. battleMadeAction.setn(true);
  4155. return ok;
  4156. }
  4157. bool CGameHandler::makeCustomAction(BattleAction & ba)
  4158. {
  4159. boost::unique_lock lock(battleActionMutex);
  4160. switch(ba.actionType)
  4161. {
  4162. case EActionType::HERO_SPELL:
  4163. {
  4164. COMPLAIN_RET_FALSE_IF(ba.side > 1, "Side must be 0 or 1!");
  4165. const CGHeroInstance *h = gs->curB->battleGetFightingHero(ba.side);
  4166. COMPLAIN_RET_FALSE_IF((!h), "Wrong caster!");
  4167. const CSpell * s = SpellID(ba.actionSubtype).toSpell();
  4168. if (!s)
  4169. {
  4170. logGlobal->error("Wrong spell id (%d)!", ba.actionSubtype);
  4171. return false;
  4172. }
  4173. spells::BattleCast parameters(gs->curB, h, spells::Mode::HERO, s);
  4174. spells::detail::ProblemImpl problem;
  4175. auto m = s->battleMechanics(&parameters);
  4176. if(!m->canBeCast(problem))//todo: should we check aimed cast?
  4177. {
  4178. logGlobal->warn("Spell cannot be cast!");
  4179. std::vector<std::string> texts;
  4180. problem.getAll(texts);
  4181. for(auto s : texts)
  4182. logGlobal->warn(s);
  4183. return false;
  4184. }
  4185. StartAction start_action(ba);
  4186. sendAndApply(&start_action); //start spell casting
  4187. parameters.cast(spellEnv, ba.getTarget(gs->curB));
  4188. sendAndApply(&end_action);
  4189. if (!gs->curB->battleGetStackByID(gs->curB->activeStack))
  4190. {
  4191. battleMadeAction.setn(true);
  4192. }
  4193. checkBattleStateChanges();
  4194. if (battleResult.get())
  4195. {
  4196. battleMadeAction.setn(true);
  4197. //battle will be ended by startBattle function
  4198. //endBattle(gs->curB->tile, gs->curB->heroes[0], gs->curB->heroes[1]);
  4199. }
  4200. return true;
  4201. }
  4202. }
  4203. return false;
  4204. }
  4205. void CGameHandler::stackEnchantedTrigger(const CStack * st)
  4206. {
  4207. auto bl = *(st->getBonuses(Selector::type()(BonusType::ENCHANTED)));
  4208. for(auto b : bl)
  4209. {
  4210. const CSpell * sp = SpellID(b->subtype).toSpell();
  4211. if(!sp)
  4212. continue;
  4213. const int32_t val = bl.valOfBonuses(Selector::typeSubtype(b->type, b->subtype));
  4214. const int32_t level = ((val > 3) ? (val - 3) : val);
  4215. spells::BattleCast battleCast(gs->curB, st, spells::Mode::PASSIVE, sp);
  4216. //this makes effect accumulate for at most 50 turns by default, but effect may be permanent and last till the end of battle
  4217. battleCast.setEffectDuration(50);
  4218. battleCast.setSpellLevel(level);
  4219. spells::Target target;
  4220. if(val > 3)
  4221. {
  4222. for(auto s : gs->curB->battleGetAllStacks())
  4223. if(battleMatchOwner(st, s, true) && s->isValidTarget()) //all allied
  4224. target.emplace_back(s);
  4225. }
  4226. else
  4227. {
  4228. target.emplace_back(st);
  4229. }
  4230. battleCast.applyEffects(spellEnv, target, false, true);
  4231. }
  4232. }
  4233. void CGameHandler::stackTurnTrigger(const CStack *st)
  4234. {
  4235. BattleTriggerEffect bte;
  4236. bte.stackID = st->unitId();
  4237. bte.effect = -1;
  4238. bte.val = 0;
  4239. bte.additionalInfo = 0;
  4240. if (st->alive())
  4241. {
  4242. //unbind
  4243. if (st->hasBonus(Selector::type()(BonusType::BIND_EFFECT)))
  4244. {
  4245. bool unbind = true;
  4246. BonusList bl = *(st->getBonuses(Selector::type()(BonusType::BIND_EFFECT)));
  4247. auto adjacent = gs->curB->battleAdjacentUnits(st);
  4248. for (auto b : bl)
  4249. {
  4250. if(b->additionalInfo != CAddInfo::NONE)
  4251. {
  4252. const CStack * stack = gs->curB->battleGetStackByID(b->additionalInfo[0]); //binding stack must be alive and adjacent
  4253. if(stack)
  4254. {
  4255. if(vstd::contains(adjacent, stack)) //binding stack is still present
  4256. unbind = false;
  4257. }
  4258. }
  4259. else
  4260. {
  4261. unbind = false;
  4262. }
  4263. }
  4264. if (unbind)
  4265. {
  4266. BattleSetStackProperty ssp;
  4267. ssp.which = BattleSetStackProperty::UNBIND;
  4268. ssp.stackID = st->unitId();
  4269. sendAndApply(&ssp);
  4270. }
  4271. }
  4272. if (st->hasBonusOfType(BonusType::POISON))
  4273. {
  4274. std::shared_ptr<const Bonus> b = st->getBonusLocalFirst(Selector::source(BonusSource::SPELL_EFFECT, SpellID::POISON).And(Selector::type()(BonusType::STACK_HEALTH)));
  4275. if (b) //TODO: what if not?...
  4276. {
  4277. bte.val = std::max (b->val - 10, -(st->valOfBonuses(BonusType::POISON)));
  4278. if (bte.val < b->val) //(negative) poison effect increases - update it
  4279. {
  4280. bte.effect = vstd::to_underlying(BonusType::POISON);
  4281. sendAndApply(&bte);
  4282. }
  4283. }
  4284. }
  4285. if(st->hasBonusOfType(BonusType::MANA_DRAIN) && !st->drainedMana)
  4286. {
  4287. const PlayerColor opponent = gs->curB->otherPlayer(gs->curB->battleGetOwner(st));
  4288. const CGHeroInstance * opponentHero = gs->curB->getHero(opponent);
  4289. if(opponentHero)
  4290. {
  4291. ui32 manaDrained = st->valOfBonuses(BonusType::MANA_DRAIN);
  4292. vstd::amin(manaDrained, opponentHero->mana);
  4293. if(manaDrained)
  4294. {
  4295. bte.effect = vstd::to_underlying(BonusType::MANA_DRAIN);
  4296. bte.val = manaDrained;
  4297. bte.additionalInfo = opponentHero->id.getNum(); //for sanity
  4298. sendAndApply(&bte);
  4299. }
  4300. }
  4301. }
  4302. if (st->isLiving() && !st->hasBonusOfType(BonusType::FEARLESS))
  4303. {
  4304. bool fearsomeCreature = false;
  4305. for (CStack * stack : gs->curB->stacks)
  4306. {
  4307. if (battleMatchOwner(st, stack) && stack->alive() && stack->hasBonusOfType(BonusType::FEAR))
  4308. {
  4309. fearsomeCreature = true;
  4310. break;
  4311. }
  4312. }
  4313. if (fearsomeCreature)
  4314. {
  4315. if (getRandomGenerator().nextInt(99) < 10) //fixed 10%
  4316. {
  4317. bte.effect = vstd::to_underlying(BonusType::FEAR);
  4318. sendAndApply(&bte);
  4319. }
  4320. }
  4321. }
  4322. BonusList bl = *(st->getBonuses(Selector::type()(BonusType::ENCHANTER)));
  4323. int side = gs->curB->whatSide(st->unitOwner());
  4324. if(st->canCast() && gs->curB->battleGetEnchanterCounter(side) == 0)
  4325. {
  4326. bool cast = false;
  4327. while(!bl.empty() && !cast)
  4328. {
  4329. auto bonus = *RandomGeneratorUtil::nextItem(bl, getRandomGenerator());
  4330. auto spellID = SpellID(bonus->subtype);
  4331. const CSpell * spell = SpellID(spellID).toSpell();
  4332. bl.remove_if([&bonus](const Bonus * b)
  4333. {
  4334. return b == bonus.get();
  4335. });
  4336. spells::BattleCast parameters(gs->curB, st, spells::Mode::ENCHANTER, spell);
  4337. parameters.setSpellLevel(bonus->val);
  4338. parameters.massive = true;
  4339. parameters.smart = true;
  4340. //todo: recheck effect level
  4341. if(parameters.castIfPossible(spellEnv, spells::Target(1, spells::Destination())))
  4342. {
  4343. cast = true;
  4344. int cooldown = bonus->additionalInfo[0];
  4345. BattleSetStackProperty ssp;
  4346. ssp.which = BattleSetStackProperty::ENCHANTER_COUNTER;
  4347. ssp.absolute = false;
  4348. ssp.val = cooldown;
  4349. ssp.stackID = st->unitId();
  4350. sendAndApply(&ssp);
  4351. }
  4352. }
  4353. }
  4354. }
  4355. }
  4356. void CGameHandler::handleTimeEvents()
  4357. {
  4358. gs->map->events.sort(evntCmp);
  4359. while(gs->map->events.size() && gs->map->events.front().firstOccurence+1 == gs->day)
  4360. {
  4361. CMapEvent ev = gs->map->events.front();
  4362. for (int player = 0; player < PlayerColor::PLAYER_LIMIT_I; player++)
  4363. {
  4364. auto color = PlayerColor(player);
  4365. const PlayerState * pinfo = getPlayerState(color, false); //do not output error if player does not exist
  4366. if (pinfo //player exists
  4367. && (ev.players & 1<<player) //event is enabled to this player
  4368. && ((ev.computerAffected && !pinfo->human)
  4369. || (ev.humanAffected && pinfo->human)
  4370. )
  4371. )
  4372. {
  4373. //give resources
  4374. giveResources(color, ev.resources);
  4375. //prepare dialog
  4376. InfoWindow iw;
  4377. iw.player = color;
  4378. iw.text.appendRawString(ev.message);
  4379. for (int i=0; i<ev.resources.size(); i++)
  4380. {
  4381. if (ev.resources[i]) //if resource is changed, we add it to the dialog
  4382. iw.components.emplace_back(Component::EComponentType::RESOURCE,i,ev.resources[i],0);
  4383. }
  4384. sendAndApply(&iw); //show dialog
  4385. }
  4386. } //PLAYERS LOOP
  4387. if (ev.nextOccurence)
  4388. {
  4389. gs->map->events.pop_front();
  4390. ev.firstOccurence += ev.nextOccurence;
  4391. auto it = gs->map->events.begin();
  4392. while(it != gs->map->events.end() && it->earlierThanOrEqual(ev))
  4393. it++;
  4394. gs->map->events.insert(it, ev);
  4395. }
  4396. else
  4397. {
  4398. gs->map->events.pop_front();
  4399. }
  4400. }
  4401. //TODO send only if changed
  4402. UpdateMapEvents ume;
  4403. ume.events = gs->map->events;
  4404. sendAndApply(&ume);
  4405. }
  4406. void CGameHandler::handleTownEvents(CGTownInstance * town, NewTurn &n)
  4407. {
  4408. town->events.sort(evntCmp);
  4409. while(town->events.size() && town->events.front().firstOccurence == gs->day)
  4410. {
  4411. PlayerColor player = town->tempOwner;
  4412. CCastleEvent ev = town->events.front();
  4413. const PlayerState * pinfo = getPlayerState(player, false);
  4414. if (pinfo //player exists
  4415. && (ev.players & 1<<player.getNum()) //event is enabled to this player
  4416. && ((ev.computerAffected && !pinfo->human)
  4417. || (ev.humanAffected && pinfo->human)))
  4418. {
  4419. // dialog
  4420. InfoWindow iw;
  4421. iw.player = player;
  4422. iw.text.appendRawString(ev.message);
  4423. if (ev.resources.nonZero())
  4424. {
  4425. TResources was = n.res[player];
  4426. n.res[player] += ev.resources;
  4427. n.res[player].amax(0);
  4428. for (int i=0; i<ev.resources.size(); i++)
  4429. if (ev.resources[i] && pinfo->resources[i] != n.res.at(player)[i]) //if resource had changed, we add it to the dialog
  4430. iw.components.emplace_back(Component::EComponentType::RESOURCE,i,n.res.at(player)[i]-was[i],0);
  4431. }
  4432. for (auto & i : ev.buildings)
  4433. {
  4434. if (!town->hasBuilt(i))
  4435. {
  4436. buildStructure(town->id, i, true);
  4437. iw.components.emplace_back(Component::EComponentType::BUILDING, town->subID, i, 0);
  4438. }
  4439. }
  4440. if (!ev.creatures.empty() && !vstd::contains(n.cres, town->id))
  4441. {
  4442. n.cres[town->id].tid = town->id;
  4443. n.cres[town->id].creatures = town->creatures;
  4444. }
  4445. auto & sac = n.cres[town->id];
  4446. for (si32 i=0;i<ev.creatures.size();i++) //creature growths
  4447. {
  4448. if (!town->creatures.at(i).second.empty() && ev.creatures.at(i) > 0)//there is dwelling
  4449. {
  4450. sac.creatures[i].first += ev.creatures.at(i);
  4451. iw.components.emplace_back(Component::EComponentType::CREATURE,
  4452. town->creatures.at(i).second.back(), ev.creatures.at(i), 0);
  4453. }
  4454. }
  4455. sendAndApply(&iw); //show dialog
  4456. }
  4457. if (ev.nextOccurence)
  4458. {
  4459. town->events.pop_front();
  4460. ev.firstOccurence += ev.nextOccurence;
  4461. auto it = town->events.begin();
  4462. while(it != town->events.end() && it->earlierThanOrEqual(ev))
  4463. it++;
  4464. town->events.insert(it, ev);
  4465. }
  4466. else
  4467. {
  4468. town->events.pop_front();
  4469. }
  4470. }
  4471. //TODO send only if changed
  4472. UpdateCastleEvents uce;
  4473. uce.town = town->id;
  4474. uce.events = town->events;
  4475. sendAndApply(&uce);
  4476. }
  4477. bool CGameHandler::complain(const std::string &problem)
  4478. {
  4479. playerMessages->broadcastSystemMessage("Server encountered a problem: " + problem);
  4480. logGlobal->error(problem);
  4481. return true;
  4482. }
  4483. void CGameHandler::showGarrisonDialog(ObjectInstanceID upobj, ObjectInstanceID hid, bool removableUnits)
  4484. {
  4485. //PlayerColor player = getOwner(hid);
  4486. auto upperArmy = dynamic_cast<const CArmedInstance*>(getObj(upobj));
  4487. auto lowerArmy = dynamic_cast<const CArmedInstance*>(getObj(hid));
  4488. assert(lowerArmy);
  4489. assert(upperArmy);
  4490. auto garrisonQuery = std::make_shared<CGarrisonDialogQuery>(this, upperArmy, lowerArmy);
  4491. queries.addQuery(garrisonQuery);
  4492. GarrisonDialog gd;
  4493. gd.hid = hid;
  4494. gd.objid = upobj;
  4495. gd.removableUnits = removableUnits;
  4496. gd.queryID = garrisonQuery->queryID;
  4497. sendAndApply(&gd);
  4498. }
  4499. void CGameHandler::showThievesGuildWindow(PlayerColor player, ObjectInstanceID requestingObjId)
  4500. {
  4501. OpenWindow ow;
  4502. ow.window = EOpenWindowMode::THIEVES_GUILD;
  4503. ow.id1 = player.getNum();
  4504. ow.id2 = requestingObjId.getNum();
  4505. sendAndApply(&ow);
  4506. }
  4507. bool CGameHandler::isAllowedExchange(ObjectInstanceID id1, ObjectInstanceID id2)
  4508. {
  4509. if (id1 == id2)
  4510. return true;
  4511. const CGObjectInstance *o1 = getObj(id1), *o2 = getObj(id2);
  4512. if (!o1 || !o2)
  4513. return true; //arranging stacks within an object should be always allowed
  4514. if (o1 && o2)
  4515. {
  4516. if (o1->ID == Obj::TOWN)
  4517. {
  4518. const CGTownInstance *t = static_cast<const CGTownInstance*>(o1);
  4519. if (t->visitingHero == o2 || t->garrisonHero == o2)
  4520. return true;
  4521. }
  4522. if (o2->ID == Obj::TOWN)
  4523. {
  4524. const CGTownInstance *t = static_cast<const CGTownInstance*>(o2);
  4525. if (t->visitingHero == o1 || t->garrisonHero == o1)
  4526. return true;
  4527. }
  4528. if (o1->ID == Obj::HERO && o2->ID == Obj::HERO)
  4529. {
  4530. const CGHeroInstance *h1 = static_cast<const CGHeroInstance*>(o1);
  4531. const CGHeroInstance *h2 = static_cast<const CGHeroInstance*>(o2);
  4532. // two heroes in same town (garrisoned and visiting)
  4533. if (h1->visitedTown != nullptr && h2->visitedTown != nullptr && h1->visitedTown == h2->visitedTown)
  4534. return true;
  4535. }
  4536. //Ongoing garrison exchange - usually picking from top garison (from o1 to o2), but who knows
  4537. auto dialog = std::dynamic_pointer_cast<CGarrisonDialogQuery>(queries.topQuery(o1->tempOwner));
  4538. if (!dialog)
  4539. {
  4540. dialog = std::dynamic_pointer_cast<CGarrisonDialogQuery>(queries.topQuery(o2->tempOwner));
  4541. }
  4542. if (dialog)
  4543. {
  4544. auto topArmy = dialog->exchangingArmies.at(0);
  4545. auto bottomArmy = dialog->exchangingArmies.at(1);
  4546. if ((topArmy == o1 && bottomArmy == o2) || (bottomArmy == o1 && topArmy == o2))
  4547. return true;
  4548. }
  4549. }
  4550. return false;
  4551. }
  4552. void CGameHandler::objectVisited(const CGObjectInstance * obj, const CGHeroInstance * h)
  4553. {
  4554. using events::ObjectVisitStarted;
  4555. logGlobal->debug("%s visits %s (%d:%d)", h->nodeName(), obj->getObjectName(), obj->ID, obj->subID);
  4556. std::shared_ptr<CObjectVisitQuery> visitQuery;
  4557. auto startVisit = [&](ObjectVisitStarted & event)
  4558. {
  4559. auto visitedObject = obj;
  4560. if(obj->ID == Obj::HERO)
  4561. {
  4562. auto visitedHero = static_cast<const CGHeroInstance *>(obj);
  4563. const auto visitedTown = visitedHero->visitedTown;
  4564. if(visitedTown)
  4565. {
  4566. const bool isEnemy = visitedHero->getOwner() != h->getOwner();
  4567. if(isEnemy && !visitedTown->isBattleOutsideTown(visitedHero))
  4568. visitedObject = visitedTown;
  4569. }
  4570. }
  4571. visitQuery = std::make_shared<CObjectVisitQuery>(this, visitedObject, h, visitedObject->visitablePos());
  4572. queries.addQuery(visitQuery); //TODO real visit pos
  4573. HeroVisit hv;
  4574. hv.objId = obj->id;
  4575. hv.heroId = h->id;
  4576. hv.player = h->tempOwner;
  4577. hv.starting = true;
  4578. sendAndApply(&hv);
  4579. obj->onHeroVisit(h);
  4580. };
  4581. ObjectVisitStarted::defaultExecute(serverEventBus.get(), startVisit, h->tempOwner, h->id, obj->id);
  4582. if(visitQuery)
  4583. queries.popIfTop(visitQuery); //visit ends here if no queries were created
  4584. }
  4585. void CGameHandler::objectVisitEnded(const CObjectVisitQuery & query)
  4586. {
  4587. using events::ObjectVisitEnded;
  4588. logGlobal->debug("%s visit ends.\n", query.visitingHero->nodeName());
  4589. auto endVisit = [&](ObjectVisitEnded & event)
  4590. {
  4591. HeroVisit hv;
  4592. hv.player = event.getPlayer();
  4593. hv.heroId = event.getHero();
  4594. hv.starting = false;
  4595. sendAndApply(&hv);
  4596. };
  4597. //TODO: ObjectVisitEnded should also have id of visited object,
  4598. //but this requires object being deleted only by `removeAfterVisit()` but not `removeObject()`
  4599. ObjectVisitEnded::defaultExecute(serverEventBus.get(), endVisit, query.players.front(), query.visitingHero->id);
  4600. }
  4601. bool CGameHandler::buildBoat(ObjectInstanceID objid, PlayerColor playerID)
  4602. {
  4603. const IShipyard *obj = IShipyard::castFrom(getObj(objid));
  4604. if (obj->shipyardStatus() != IBoatGenerator::GOOD)
  4605. {
  4606. complain("Cannot build boat in this shipyard!");
  4607. return false;
  4608. }
  4609. TResources boatCost;
  4610. obj->getBoatCost(boatCost);
  4611. TResources aviable = getPlayerState(playerID)->resources;
  4612. if (!aviable.canAfford(boatCost))
  4613. {
  4614. complain("Not enough resources to build a boat!");
  4615. return false;
  4616. }
  4617. int3 tile = obj->bestLocation();
  4618. if (!gs->map->isInTheMap(tile))
  4619. {
  4620. complain("Cannot find appropriate tile for a boat!");
  4621. return false;
  4622. }
  4623. giveResources(playerID, -boatCost);
  4624. createObject(tile, Obj::BOAT, obj->getBoatType().getNum());
  4625. return true;
  4626. }
  4627. void CGameHandler::engageIntoBattle(PlayerColor player)
  4628. {
  4629. //notify interfaces
  4630. PlayerBlocked pb;
  4631. pb.player = player;
  4632. pb.reason = PlayerBlocked::UPCOMING_BATTLE;
  4633. pb.startOrEnd = PlayerBlocked::BLOCKADE_STARTED;
  4634. sendAndApply(&pb);
  4635. }
  4636. void CGameHandler::checkVictoryLossConditions(const std::set<PlayerColor> & playerColors)
  4637. {
  4638. for (auto playerColor : playerColors)
  4639. {
  4640. if (getPlayerState(playerColor, false))
  4641. checkVictoryLossConditionsForPlayer(playerColor);
  4642. }
  4643. }
  4644. void CGameHandler::checkVictoryLossConditionsForAll()
  4645. {
  4646. std::set<PlayerColor> playerColors;
  4647. for (int i = 0; i < PlayerColor::PLAYER_LIMIT_I; ++i)
  4648. {
  4649. playerColors.insert(PlayerColor(i));
  4650. }
  4651. checkVictoryLossConditions(playerColors);
  4652. }
  4653. void CGameHandler::checkVictoryLossConditionsForPlayer(PlayerColor player)
  4654. {
  4655. const PlayerState * p = getPlayerState(player);
  4656. if(!p || p->status != EPlayerStatus::INGAME) return;
  4657. auto victoryLossCheckResult = gs->checkForVictoryAndLoss(player);
  4658. if (victoryLossCheckResult.victory() || victoryLossCheckResult.loss())
  4659. {
  4660. InfoWindow iw;
  4661. getVictoryLossMessage(player, victoryLossCheckResult, iw);
  4662. sendAndApply(&iw);
  4663. PlayerEndsGame peg;
  4664. peg.player = player;
  4665. peg.victoryLossCheckResult = victoryLossCheckResult;
  4666. sendAndApply(&peg);
  4667. if (victoryLossCheckResult.victory())
  4668. {
  4669. //one player won -> all enemies lost
  4670. for (auto i = gs->players.cbegin(); i!=gs->players.cend(); i++)
  4671. {
  4672. if (i->first != player && getPlayerState(i->first)->status == EPlayerStatus::INGAME)
  4673. {
  4674. peg.player = i->first;
  4675. peg.victoryLossCheckResult = getPlayerRelations(player, i->first) == PlayerRelations::ALLIES ?
  4676. victoryLossCheckResult : victoryLossCheckResult.invert(); // ally of winner
  4677. InfoWindow iw;
  4678. getVictoryLossMessage(player, peg.victoryLossCheckResult, iw);
  4679. iw.player = i->first;
  4680. sendAndApply(&iw);
  4681. sendAndApply(&peg);
  4682. }
  4683. }
  4684. if(p->human)
  4685. {
  4686. lobby->state = EServerState::GAMEPLAY_ENDED;
  4687. }
  4688. }
  4689. else
  4690. {
  4691. //copy heroes vector to avoid iterator invalidation as removal change PlayerState
  4692. auto hlp = p->heroes;
  4693. for (auto h : hlp) //eliminate heroes
  4694. {
  4695. if (h.get())
  4696. removeObject(h);
  4697. }
  4698. //player lost -> all his objects become unflagged (neutral)
  4699. for (auto obj : gs->map->objects) //unflag objs
  4700. {
  4701. if (obj.get() && obj->tempOwner == player)
  4702. setOwner(obj, PlayerColor::NEUTRAL);
  4703. }
  4704. //eliminating one player may cause victory of another:
  4705. std::set<PlayerColor> playerColors;
  4706. //do not copy player state (CBonusSystemNode) by value
  4707. for (auto &p : gs->players) //players may have different colors, iterate over players and not integers
  4708. {
  4709. if (p.first != player)
  4710. playerColors.insert(p.first);
  4711. }
  4712. //notify all players
  4713. for (auto pc : playerColors)
  4714. {
  4715. if (getPlayerState(pc)->status == EPlayerStatus::INGAME)
  4716. {
  4717. InfoWindow iw;
  4718. getVictoryLossMessage(player, victoryLossCheckResult.invert(), iw);
  4719. iw.player = pc;
  4720. sendAndApply(&iw);
  4721. }
  4722. }
  4723. checkVictoryLossConditions(playerColors);
  4724. }
  4725. auto playerInfo = getPlayerState(gs->currentPlayer, false);
  4726. // If we are called before the actual game start, there might be no current player
  4727. if (playerInfo && playerInfo->status != EPlayerStatus::INGAME)
  4728. {
  4729. // If player making turn has lost his turn must be over as well
  4730. states.setFlag(gs->currentPlayer, &PlayerStatus::makingTurn, false);
  4731. }
  4732. }
  4733. }
  4734. void CGameHandler::getVictoryLossMessage(PlayerColor player, const EVictoryLossCheckResult & victoryLossCheckResult, InfoWindow & out) const
  4735. {
  4736. out.player = player;
  4737. out.text = victoryLossCheckResult.messageToSelf;
  4738. out.text.replaceLocalString(EMetaText::COLOR, player.getNum());
  4739. out.components.emplace_back(Component::EComponentType::FLAG, player.getNum(), 0, 0);
  4740. }
  4741. bool CGameHandler::dig(const CGHeroInstance *h)
  4742. {
  4743. if (h->diggingStatus() != EDiggingStatus::CAN_DIG) //checks for terrain and movement
  4744. COMPLAIN_RETF("Hero cannot dig (error code %d)!", h->diggingStatus());
  4745. createObject(h->visitablePos(), Obj::HOLE, 0 );
  4746. //take MPs
  4747. SetMovePoints smp;
  4748. smp.hid = h->id;
  4749. smp.val = 0;
  4750. sendAndApply(&smp);
  4751. InfoWindow iw;
  4752. iw.type = EInfoWindowMode::AUTO;
  4753. iw.player = h->tempOwner;
  4754. if (gs->map->grailPos == h->visitablePos())
  4755. {
  4756. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 58); //"Congratulations! After spending many hours digging here, your hero has uncovered the "
  4757. iw.text.appendLocalString(EMetaText::ART_NAMES, ArtifactID::GRAIL);
  4758. iw.soundID = soundBase::ULTIMATEARTIFACT;
  4759. giveHeroNewArtifact(h, VLC->arth->objects[ArtifactID::GRAIL], ArtifactPosition::FIRST_AVAILABLE); //give grail
  4760. sendAndApply(&iw);
  4761. iw.soundID = soundBase::invalid;
  4762. iw.components.emplace_back(Component::EComponentType::ARTIFACT, ArtifactID::GRAIL, 0, 0);
  4763. iw.text.clear();
  4764. iw.text.appendLocalString(EMetaText::ART_DESCR, ArtifactID::GRAIL);
  4765. sendAndApply(&iw);
  4766. }
  4767. else
  4768. {
  4769. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 59); //"Nothing here. \n Where could it be?"
  4770. iw.soundID = soundBase::Dig;
  4771. sendAndApply(&iw);
  4772. }
  4773. return true;
  4774. }
  4775. void CGameHandler::attackCasting(bool ranged, BonusType attackMode, const battle::Unit * attacker, const battle::Unit * defender)
  4776. {
  4777. if(attacker->hasBonusOfType(attackMode))
  4778. {
  4779. std::set<SpellID> spellsToCast;
  4780. TConstBonusListPtr spells = attacker->getBonuses(Selector::type()(attackMode));
  4781. for(const auto & sf : *spells)
  4782. {
  4783. spellsToCast.insert(SpellID(sf->subtype));
  4784. }
  4785. for(SpellID spellID : spellsToCast)
  4786. {
  4787. bool castMe = false;
  4788. if(!defender->alive())
  4789. {
  4790. logGlobal->debug("attackCasting: all attacked creatures have been killed");
  4791. return;
  4792. }
  4793. int32_t spellLevel = 0;
  4794. TConstBonusListPtr spellsByType = attacker->getBonuses(Selector::typeSubtype(attackMode, spellID));
  4795. for(const auto & sf : *spellsByType)
  4796. {
  4797. int meleeRanged;
  4798. if(sf->additionalInfo.size() < 2)
  4799. {
  4800. // legacy format
  4801. vstd::amax(spellLevel, sf->additionalInfo[0] % 1000);
  4802. meleeRanged = sf->additionalInfo[0] / 1000;
  4803. }
  4804. else
  4805. {
  4806. vstd::amax(spellLevel, sf->additionalInfo[0]);
  4807. meleeRanged = sf->additionalInfo[1];
  4808. }
  4809. if (meleeRanged == 0 || (meleeRanged == 1 && ranged) || (meleeRanged == 2 && !ranged))
  4810. castMe = true;
  4811. }
  4812. int chance = attacker->valOfBonuses((Selector::typeSubtype(attackMode, spellID)));
  4813. vstd::amin(chance, 100);
  4814. const CSpell * spell = SpellID(spellID).toSpell();
  4815. spells::AbilityCaster caster(attacker, spellLevel);
  4816. spells::Target target;
  4817. target.emplace_back(defender);
  4818. spells::BattleCast parameters(gs->curB, &caster, spells::Mode::PASSIVE, spell);
  4819. auto m = spell->battleMechanics(&parameters);
  4820. spells::detail::ProblemImpl ignored;
  4821. if(!m->canBeCastAt(target, ignored))
  4822. continue;
  4823. //check if spell should be cast (probability handling)
  4824. if(getRandomGenerator().nextInt(99) >= chance)
  4825. continue;
  4826. //casting
  4827. if(castMe)
  4828. {
  4829. parameters.cast(spellEnv, target);
  4830. }
  4831. }
  4832. }
  4833. }
  4834. void CGameHandler::handleAttackBeforeCasting(bool ranged, const CStack * attacker, const CStack * defender)
  4835. {
  4836. attackCasting(ranged, BonusType::SPELL_BEFORE_ATTACK, attacker, defender); //no death stare / acid breath needed?
  4837. }
  4838. void CGameHandler::handleAfterAttackCasting(bool ranged, const CStack * attacker, const CStack * defender)
  4839. {
  4840. if(!attacker->alive() || !defender->alive()) // can be already dead
  4841. return;
  4842. attackCasting(ranged, BonusType::SPELL_AFTER_ATTACK, attacker, defender);
  4843. if(!defender->alive())
  4844. {
  4845. //don't try death stare or acid breath on dead stack (crash!)
  4846. return;
  4847. }
  4848. if(attacker->hasBonusOfType(BonusType::DEATH_STARE))
  4849. {
  4850. // mechanics of Death Stare as in H3:
  4851. // each gorgon have 10% chance to kill (counted separately in H3) -> binomial distribution
  4852. //original formula x = min(x, (gorgons_count + 9)/10);
  4853. double chanceToKill = attacker->valOfBonuses(BonusType::DEATH_STARE, 0) / 100.0f;
  4854. vstd::amin(chanceToKill, 1); //cap at 100%
  4855. std::binomial_distribution<> distribution(attacker->getCount(), chanceToKill);
  4856. int staredCreatures = distribution(getRandomGenerator().getStdGenerator());
  4857. double cap = 1 / std::max(chanceToKill, (double)(0.01));//don't divide by 0
  4858. int maxToKill = static_cast<int>((attacker->getCount() + cap - 1) / cap); //not much more than chance * count
  4859. vstd::amin(staredCreatures, maxToKill);
  4860. staredCreatures += (attacker->level() * attacker->valOfBonuses(BonusType::DEATH_STARE, 1)) / defender->level();
  4861. if(staredCreatures)
  4862. {
  4863. //TODO: death stare was not originally available for multiple-hex attacks, but...
  4864. const CSpell * spell = SpellID(SpellID::DEATH_STARE).toSpell();
  4865. spells::AbilityCaster caster(attacker, 0);
  4866. spells::BattleCast parameters(gs->curB, &caster, spells::Mode::PASSIVE, spell);
  4867. spells::Target target;
  4868. target.emplace_back(defender);
  4869. parameters.setEffectValue(staredCreatures);
  4870. parameters.cast(spellEnv, target);
  4871. }
  4872. }
  4873. if(!defender->alive())
  4874. return;
  4875. int64_t acidDamage = 0;
  4876. TConstBonusListPtr acidBreath = attacker->getBonuses(Selector::type()(BonusType::ACID_BREATH));
  4877. for(const auto & b : *acidBreath)
  4878. {
  4879. if(b->additionalInfo[0] > getRandomGenerator().nextInt(99))
  4880. acidDamage += b->val;
  4881. }
  4882. if(acidDamage > 0)
  4883. {
  4884. const CSpell * spell = SpellID(SpellID::ACID_BREATH_DAMAGE).toSpell();
  4885. spells::AbilityCaster caster(attacker, 0);
  4886. spells::BattleCast parameters(gs->curB, &caster, spells::Mode::PASSIVE, spell);
  4887. spells::Target target;
  4888. target.emplace_back(defender);
  4889. parameters.setEffectValue(acidDamage * attacker->getCount());
  4890. parameters.cast(spellEnv, target);
  4891. }
  4892. if(!defender->alive())
  4893. return;
  4894. if(attacker->hasBonusOfType(BonusType::TRANSMUTATION) && defender->isLiving()) //transmutation mechanics, similar to WoG werewolf ability
  4895. {
  4896. double chanceToTrigger = attacker->valOfBonuses(BonusType::TRANSMUTATION) / 100.0f;
  4897. vstd::amin(chanceToTrigger, 1); //cap at 100%
  4898. if(getRandomGenerator().getDoubleRange(0, 1)() > chanceToTrigger)
  4899. return;
  4900. int bonusAdditionalInfo = attacker->getBonus(Selector::type()(BonusType::TRANSMUTATION))->additionalInfo[0];
  4901. if(defender->unitType()->getId() == bonusAdditionalInfo ||
  4902. (bonusAdditionalInfo == CAddInfo::NONE && defender->unitType()->getId() == attacker->unitType()->getId()))
  4903. return;
  4904. battle::UnitInfo resurrectInfo;
  4905. resurrectInfo.id = gs->curB->battleNextUnitId();
  4906. resurrectInfo.summoned = false;
  4907. resurrectInfo.position = defender->getPosition();
  4908. resurrectInfo.side = defender->unitSide();
  4909. if(bonusAdditionalInfo != CAddInfo::NONE)
  4910. resurrectInfo.type = CreatureID(bonusAdditionalInfo);
  4911. else
  4912. resurrectInfo.type = attacker->creatureId();
  4913. if(attacker->hasBonusOfType((BonusType::TRANSMUTATION), 0))
  4914. resurrectInfo.count = std::max((defender->getCount() * defender->getMaxHealth()) / resurrectInfo.type.toCreature()->getMaxHealth(), 1u);
  4915. else if (attacker->hasBonusOfType((BonusType::TRANSMUTATION), 1))
  4916. resurrectInfo.count = defender->getCount();
  4917. else
  4918. return; //wrong subtype
  4919. BattleUnitsChanged addUnits;
  4920. addUnits.changedStacks.emplace_back(resurrectInfo.id, UnitChanges::EOperation::ADD);
  4921. resurrectInfo.save(addUnits.changedStacks.back().data);
  4922. BattleUnitsChanged removeUnits;
  4923. removeUnits.changedStacks.emplace_back(defender->unitId(), UnitChanges::EOperation::REMOVE);
  4924. sendAndApply(&removeUnits);
  4925. sendAndApply(&addUnits);
  4926. }
  4927. if(attacker->hasBonusOfType(BonusType::DESTRUCTION, 0) || attacker->hasBonusOfType(BonusType::DESTRUCTION, 1))
  4928. {
  4929. double chanceToTrigger = 0;
  4930. int amountToDie = 0;
  4931. if(attacker->hasBonusOfType(BonusType::DESTRUCTION, 0)) //killing by percentage
  4932. {
  4933. chanceToTrigger = attacker->valOfBonuses(BonusType::DESTRUCTION, 0) / 100.0f;
  4934. int percentageToDie = attacker->getBonus(Selector::type()(BonusType::DESTRUCTION).And(Selector::subtype()(0)))->additionalInfo[0];
  4935. amountToDie = static_cast<int>(defender->getCount() * percentageToDie * 0.01f);
  4936. }
  4937. else if(attacker->hasBonusOfType(BonusType::DESTRUCTION, 1)) //killing by count
  4938. {
  4939. chanceToTrigger = attacker->valOfBonuses(BonusType::DESTRUCTION, 1) / 100.0f;
  4940. amountToDie = attacker->getBonus(Selector::type()(BonusType::DESTRUCTION).And(Selector::subtype()(1)))->additionalInfo[0];
  4941. }
  4942. vstd::amin(chanceToTrigger, 1); //cap trigger chance at 100%
  4943. if(getRandomGenerator().getDoubleRange(0, 1)() > chanceToTrigger)
  4944. return;
  4945. BattleStackAttacked bsa;
  4946. bsa.attackerID = -1;
  4947. bsa.stackAttacked = defender->unitId();
  4948. bsa.damageAmount = amountToDie * defender->getMaxHealth();
  4949. bsa.flags = BattleStackAttacked::SPELL_EFFECT;
  4950. bsa.spellID = SpellID::SLAYER;
  4951. defender->prepareAttacked(bsa, getRandomGenerator());
  4952. StacksInjured si;
  4953. si.stacks.push_back(bsa);
  4954. sendAndApply(&si);
  4955. sendGenericKilledLog(defender, bsa.killedAmount, false);
  4956. }
  4957. }
  4958. void CGameHandler::visitObjectOnTile(const TerrainTile &t, const CGHeroInstance * h)
  4959. {
  4960. if (!t.visitableObjects.empty())
  4961. {
  4962. //to prevent self-visiting heroes on space press
  4963. if (t.visitableObjects.back() != h)
  4964. objectVisited(t.visitableObjects.back(), h);
  4965. else if (t.visitableObjects.size() > 1)
  4966. objectVisited(*(t.visitableObjects.end()-2),h);
  4967. }
  4968. }
  4969. bool CGameHandler::sacrificeCreatures(const IMarket * market, const CGHeroInstance * hero, const std::vector<SlotID> & slot, const std::vector<ui32> & count)
  4970. {
  4971. if (!hero)
  4972. COMPLAIN_RET("You need hero to sacrifice creature!");
  4973. int expSum = 0;
  4974. auto finish = [this, &hero, &expSum]()
  4975. {
  4976. changePrimSkill(hero, PrimarySkill::EXPERIENCE, hero->calculateXp(expSum));
  4977. };
  4978. for(int i = 0; i < slot.size(); ++i)
  4979. {
  4980. int oldCount = hero->getStackCount(slot[i]);
  4981. if(oldCount < (int)count[i])
  4982. {
  4983. finish();
  4984. COMPLAIN_RET("Not enough creatures to sacrifice!")
  4985. }
  4986. else if(oldCount == count[i] && hero->stacksCount() == 1 && hero->needsLastStack())
  4987. {
  4988. finish();
  4989. COMPLAIN_RET("Cannot sacrifice last creature!");
  4990. }
  4991. int crid = hero->getStack(slot[i]).type->getId();
  4992. changeStackCount(StackLocation(hero, slot[i]), -(TQuantity)count[i]);
  4993. int dump, exp;
  4994. market->getOffer(crid, 0, dump, exp, EMarketMode::CREATURE_EXP);
  4995. exp *= count[i];
  4996. expSum += exp;
  4997. }
  4998. finish();
  4999. return true;
  5000. }
  5001. bool CGameHandler::sacrificeArtifact(const IMarket * m, const CGHeroInstance * hero, const std::vector<ArtifactPosition> & slot)
  5002. {
  5003. if (!hero)
  5004. COMPLAIN_RET("You need hero to sacrifice artifact!");
  5005. int expSum = 0;
  5006. auto finish = [this, &hero, &expSum]()
  5007. {
  5008. changePrimSkill(hero, PrimarySkill::EXPERIENCE, hero->calculateXp(expSum));
  5009. };
  5010. for(int i = 0; i < slot.size(); ++i)
  5011. {
  5012. ArtifactLocation al(hero, slot[i]);
  5013. const CArtifactInstance * a = al.getArt();
  5014. if(!a)
  5015. {
  5016. finish();
  5017. COMPLAIN_RET("Cannot find artifact to sacrifice!");
  5018. }
  5019. const CArtifactInstance * art = hero->getArt(slot[i]);
  5020. if(!art)
  5021. {
  5022. finish();
  5023. COMPLAIN_RET("No artifact at position to sacrifice!");
  5024. }
  5025. si32 typId = art->artType->getId();
  5026. int dmp, expToGive;
  5027. m->getOffer(typId, 0, dmp, expToGive, EMarketMode::ARTIFACT_EXP);
  5028. expSum += expToGive;
  5029. removeArtifact(al);
  5030. }
  5031. finish();
  5032. return true;
  5033. }
  5034. void CGameHandler::makeStackDoNothing(const CStack * next)
  5035. {
  5036. BattleAction doNothing;
  5037. doNothing.actionType = EActionType::NO_ACTION;
  5038. doNothing.side = next->unitSide();
  5039. doNothing.stackNumber = next->unitId();
  5040. makeAutomaticAction(next, doNothing);
  5041. }
  5042. bool CGameHandler::insertNewStack(const StackLocation &sl, const CCreature *c, TQuantity count)
  5043. {
  5044. if (sl.army->hasStackAtSlot(sl.slot))
  5045. COMPLAIN_RET("Slot is already taken!");
  5046. if (!sl.slot.validSlot())
  5047. COMPLAIN_RET("Cannot insert stack to that slot!");
  5048. InsertNewStack ins;
  5049. ins.army = sl.army->id;
  5050. ins.slot = sl.slot;
  5051. ins.type = c->getId();
  5052. ins.count = count;
  5053. sendAndApply(&ins);
  5054. return true;
  5055. }
  5056. bool CGameHandler::eraseStack(const StackLocation &sl, bool forceRemoval)
  5057. {
  5058. if (!sl.army->hasStackAtSlot(sl.slot))
  5059. COMPLAIN_RET("Cannot find a stack to erase");
  5060. if (sl.army->stacksCount() == 1 //from the last stack
  5061. && sl.army->needsLastStack() //that must be left
  5062. && !forceRemoval) //ignore above conditions if we are forcing removal
  5063. {
  5064. COMPLAIN_RET("Cannot erase the last stack!");
  5065. }
  5066. EraseStack es;
  5067. es.army = sl.army->id;
  5068. es.slot = sl.slot;
  5069. sendAndApply(&es);
  5070. return true;
  5071. }
  5072. bool CGameHandler::changeStackCount(const StackLocation &sl, TQuantity count, bool absoluteValue)
  5073. {
  5074. TQuantity currentCount = sl.army->getStackCount(sl.slot);
  5075. if ((absoluteValue && count < 0)
  5076. || (!absoluteValue && -count > currentCount))
  5077. {
  5078. COMPLAIN_RET("Cannot take more stacks than present!");
  5079. }
  5080. if ((currentCount == -count && !absoluteValue)
  5081. || (!count && absoluteValue))
  5082. {
  5083. eraseStack(sl);
  5084. }
  5085. else
  5086. {
  5087. ChangeStackCount csc;
  5088. csc.army = sl.army->id;
  5089. csc.slot = sl.slot;
  5090. csc.count = count;
  5091. csc.absoluteValue = absoluteValue;
  5092. sendAndApply(&csc);
  5093. }
  5094. return true;
  5095. }
  5096. bool CGameHandler::addToSlot(const StackLocation &sl, const CCreature *c, TQuantity count)
  5097. {
  5098. const CCreature *slotC = sl.army->getCreature(sl.slot);
  5099. if (!slotC) //slot is empty
  5100. insertNewStack(sl, c, count);
  5101. else if (c == slotC)
  5102. changeStackCount(sl, count);
  5103. else
  5104. {
  5105. COMPLAIN_RET("Cannot add " + c->getNamePluralTranslated() + " to slot " + boost::lexical_cast<std::string>(sl.slot) + "!");
  5106. }
  5107. return true;
  5108. }
  5109. void CGameHandler::tryJoiningArmy(const CArmedInstance *src, const CArmedInstance *dst, bool removeObjWhenFinished, bool allowMerging)
  5110. {
  5111. if (removeObjWhenFinished)
  5112. removeAfterVisit(src);
  5113. if (!src->canBeMergedWith(*dst, allowMerging))
  5114. {
  5115. if (allowMerging) //do that, add all matching creatures.
  5116. {
  5117. bool cont = true;
  5118. while (cont)
  5119. {
  5120. for (auto i = src->stacks.begin(); i != src->stacks.end(); i++)//while there are unmoved creatures
  5121. {
  5122. SlotID pos = dst->getSlotFor(i->second->type);
  5123. if (pos.validSlot())
  5124. {
  5125. moveStack(StackLocation(src, i->first), StackLocation(dst, pos));
  5126. cont = true;
  5127. break; //or iterator crashes
  5128. }
  5129. cont = false;
  5130. }
  5131. }
  5132. }
  5133. showGarrisonDialog(src->id, dst->id, true); //show garrison window and optionally remove ourselves from map when player ends
  5134. }
  5135. else //merge
  5136. {
  5137. moveArmy(src, dst, allowMerging);
  5138. }
  5139. }
  5140. bool CGameHandler::moveStack(const StackLocation &src, const StackLocation &dst, TQuantity count)
  5141. {
  5142. if (!src.army->hasStackAtSlot(src.slot))
  5143. COMPLAIN_RET("No stack to move!");
  5144. if (dst.army->hasStackAtSlot(dst.slot) && dst.army->getCreature(dst.slot) != src.army->getCreature(src.slot))
  5145. COMPLAIN_RET("Cannot move: stack of different type at destination pos!");
  5146. if (!dst.slot.validSlot())
  5147. COMPLAIN_RET("Cannot move stack to that slot!");
  5148. if (count == -1)
  5149. {
  5150. count = src.army->getStackCount(src.slot);
  5151. }
  5152. if (src.army != dst.army //moving away
  5153. && count == src.army->getStackCount(src.slot) //all creatures
  5154. && src.army->stacksCount() == 1 //from the last stack
  5155. && src.army->needsLastStack()) //that must be left
  5156. {
  5157. COMPLAIN_RET("Cannot move away the last creature!");
  5158. }
  5159. RebalanceStacks rs;
  5160. rs.srcArmy = src.army->id;
  5161. rs.dstArmy = dst.army->id;
  5162. rs.srcSlot = src.slot;
  5163. rs.dstSlot = dst.slot;
  5164. rs.count = count;
  5165. sendAndApply(&rs);
  5166. return true;
  5167. }
  5168. void CGameHandler::castSpell(const spells::Caster * caster, SpellID spellID, const int3 &pos)
  5169. {
  5170. const CSpell * s = spellID.toSpell();
  5171. if(!s)
  5172. return;
  5173. AdventureSpellCastParameters p;
  5174. p.caster = caster;
  5175. p.pos = pos;
  5176. s->adventureCast(spellEnv, p);
  5177. }
  5178. bool CGameHandler::swapStacks(const StackLocation & sl1, const StackLocation & sl2)
  5179. {
  5180. if(!sl1.army->hasStackAtSlot(sl1.slot))
  5181. {
  5182. return moveStack(sl2, sl1);
  5183. }
  5184. else if(!sl2.army->hasStackAtSlot(sl2.slot))
  5185. {
  5186. return moveStack(sl1, sl2);
  5187. }
  5188. else
  5189. {
  5190. SwapStacks ss;
  5191. ss.srcArmy = sl1.army->id;
  5192. ss.dstArmy = sl2.army->id;
  5193. ss.srcSlot = sl1.slot;
  5194. ss.dstSlot = sl2.slot;
  5195. sendAndApply(&ss);
  5196. return true;
  5197. }
  5198. }
  5199. void CGameHandler::runBattle()
  5200. {
  5201. boost::unique_lock lock(battleActionMutex);
  5202. setBattle(gs->curB);
  5203. assert(gs->curB);
  5204. //TODO: pre-tactic stuff, call scripts etc.
  5205. //Moat should be initialized here, because only here we can use spellcasting
  5206. if (gs->curB->town && gs->curB->town->fortLevel() >= CGTownInstance::CITADEL)
  5207. {
  5208. const auto * h = gs->curB->battleGetFightingHero(BattleSide::DEFENDER);
  5209. const auto * actualCaster = h ? static_cast<const spells::Caster*>(h) : nullptr;
  5210. auto moatCaster = spells::SilentCaster(gs->curB->getSidePlayer(BattleSide::DEFENDER), actualCaster);
  5211. auto cast = spells::BattleCast(gs->curB, &moatCaster, spells::Mode::PASSIVE, gs->curB->town->town->moatAbility.toSpell());
  5212. auto target = spells::Target();
  5213. cast.cast(spellEnv, target);
  5214. }
  5215. //tactic round
  5216. {
  5217. while ((lobby->state != EServerState::SHUTDOWN) && gs->curB->tacticDistance && !battleResult.get())
  5218. {
  5219. auto unlockGuard = vstd::makeUnlockGuard(battleActionMutex);
  5220. boost::this_thread::sleep(boost::posix_time::milliseconds(50));
  5221. }
  5222. }
  5223. //initial stacks appearance triggers, e.g. built-in bonus spells
  5224. auto initialStacks = gs->curB->stacks; //use temporary variable to outclude summoned stacks added to gs->curB->stacks from processing
  5225. for (CStack * stack : initialStacks)
  5226. {
  5227. if (stack->hasBonusOfType(BonusType::SUMMON_GUARDIANS))
  5228. {
  5229. std::shared_ptr<const Bonus> summonInfo = stack->getBonus(Selector::type()(BonusType::SUMMON_GUARDIANS));
  5230. auto accessibility = getAccesibility();
  5231. CreatureID creatureData = CreatureID(summonInfo->subtype);
  5232. std::vector<BattleHex> targetHexes;
  5233. const bool targetIsBig = stack->unitType()->isDoubleWide(); //target = creature to guard
  5234. const bool guardianIsBig = creatureData.toCreature()->isDoubleWide();
  5235. /*Chosen idea for two hex units was to cover all possible surrounding hexes of target unit with as small number of stacks as possible.
  5236. For one-hex targets there are four guardians - front, back and one per side (up + down).
  5237. Two-hex targets are wider and the difference is there are two guardians per side to cover 3 hexes + extra hex in the front
  5238. Additionally, there are special cases for starting positions etc., where guardians would be outside of battlefield if spawned normally*/
  5239. if (!guardianIsBig)
  5240. targetHexes = stack->getSurroundingHexes();
  5241. else
  5242. summonGuardiansHelper(targetHexes, stack->getPosition(), stack->unitSide(), targetIsBig);
  5243. for(auto hex : targetHexes)
  5244. {
  5245. if(accessibility.accessible(hex, guardianIsBig, stack->unitSide())) //without this multiple creatures can occupy one hex
  5246. {
  5247. battle::UnitInfo info;
  5248. info.id = gs->curB->battleNextUnitId();
  5249. info.count = std::max(1, (int)(stack->getCount() * 0.01 * summonInfo->val));
  5250. info.type = creatureData;
  5251. info.side = stack->unitSide();
  5252. info.position = hex;
  5253. info.summoned = true;
  5254. BattleUnitsChanged pack;
  5255. pack.changedStacks.emplace_back(info.id, UnitChanges::EOperation::ADD);
  5256. info.save(pack.changedStacks.back().data);
  5257. sendAndApply(&pack);
  5258. }
  5259. }
  5260. }
  5261. stackEnchantedTrigger(stack);
  5262. }
  5263. //spells opening battle
  5264. for (int i = 0; i < 2; ++i)
  5265. {
  5266. auto h = gs->curB->battleGetFightingHero(i);
  5267. if (h)
  5268. {
  5269. TConstBonusListPtr bl = h->getBonuses(Selector::type()(BonusType::OPENING_BATTLE_SPELL));
  5270. for (auto b : *bl)
  5271. {
  5272. spells::BonusCaster caster(h, b);
  5273. const CSpell * spell = SpellID(b->subtype).toSpell();
  5274. spells::BattleCast parameters(gs->curB, &caster, spells::Mode::PASSIVE, spell);
  5275. parameters.setSpellLevel(3);
  5276. parameters.setEffectDuration(b->val);
  5277. parameters.massive = true;
  5278. parameters.castIfPossible(spellEnv, spells::Target());
  5279. }
  5280. }
  5281. }
  5282. // it is possible that due to opening spells one side was eliminated -> check for end of battle
  5283. checkBattleStateChanges();
  5284. bool firstRound = true;//FIXME: why first round is -1?
  5285. //main loop
  5286. while ((lobby->state != EServerState::SHUTDOWN) && !battleResult.get()) //till the end of the battle ;]
  5287. {
  5288. BattleNextRound bnr;
  5289. bnr.round = gs->curB->round + 1;
  5290. logGlobal->debug("Round %d", bnr.round);
  5291. sendAndApply(&bnr);
  5292. auto obstacles = gs->curB->obstacles; //we copy container, because we're going to modify it
  5293. for (auto &obstPtr : obstacles)
  5294. {
  5295. if (const SpellCreatedObstacle *sco = dynamic_cast<const SpellCreatedObstacle *>(obstPtr.get()))
  5296. if (sco->turnsRemaining == 0)
  5297. removeObstacle(*obstPtr);
  5298. }
  5299. const BattleInfo & curB = *gs->curB;
  5300. for(auto stack : curB.stacks)
  5301. {
  5302. if(stack->alive() && !firstRound)
  5303. stackEnchantedTrigger(stack);
  5304. }
  5305. //stack loop
  5306. auto getNextStack = [this]() -> const CStack *
  5307. {
  5308. if(battleResult.get())
  5309. return nullptr;
  5310. std::vector<battle::Units> q;
  5311. gs->curB->battleGetTurnOrder(q, 1, 0, -1); //todo: get rid of "turn -1"
  5312. if(!q.empty())
  5313. {
  5314. if(!q.front().empty())
  5315. {
  5316. auto next = q.front().front();
  5317. const auto stack = dynamic_cast<const CStack *>(next);
  5318. // regeneration takes place before everything else but only during first turn attempt in each round
  5319. // also works under blind and similar effects
  5320. if(stack && stack->alive() && !stack->waiting)
  5321. {
  5322. BattleTriggerEffect bte;
  5323. bte.stackID = stack->unitId();
  5324. bte.effect = vstd::to_underlying(BonusType::HP_REGENERATION);
  5325. const int32_t lostHealth = stack->getMaxHealth() - stack->getFirstHPleft();
  5326. if(stack->hasBonusOfType(BonusType::HP_REGENERATION))
  5327. bte.val = std::min(lostHealth, stack->valOfBonuses(BonusType::HP_REGENERATION));
  5328. if(bte.val) // anything to heal
  5329. sendAndApply(&bte);
  5330. }
  5331. if(next->willMove())
  5332. return stack;
  5333. }
  5334. }
  5335. return nullptr;
  5336. };
  5337. const CStack * next = nullptr;
  5338. while((lobby->state != EServerState::SHUTDOWN) && (next = getNextStack()))
  5339. {
  5340. BattleUnitsChanged removeGhosts;
  5341. for(auto stack : curB.stacks)
  5342. {
  5343. if(stack->ghostPending)
  5344. removeGhosts.changedStacks.emplace_back(stack->unitId(), UnitChanges::EOperation::REMOVE);
  5345. }
  5346. if(!removeGhosts.changedStacks.empty())
  5347. sendAndApply(&removeGhosts);
  5348. // check for bad morale => freeze
  5349. int nextStackMorale = next->moraleVal();
  5350. if(!next->hadMorale && !next->waited() && nextStackMorale < 0)
  5351. {
  5352. auto diceSize = VLC->settings()->getVector(EGameSettings::COMBAT_BAD_MORALE_DICE);
  5353. size_t diceIndex = std::min<size_t>(diceSize.size()-1, -nextStackMorale);
  5354. if(diceSize.size() > 0 && getRandomGenerator().nextInt(1, diceSize[diceIndex]) == 1)
  5355. {
  5356. //unit loses its turn - empty freeze action
  5357. BattleAction ba;
  5358. ba.actionType = EActionType::BAD_MORALE;
  5359. ba.side = next->unitSide();
  5360. ba.stackNumber = next->unitId();
  5361. makeAutomaticAction(next, ba);
  5362. continue;
  5363. }
  5364. }
  5365. if (next->hasBonusOfType(BonusType::ATTACKS_NEAREST_CREATURE)) //while in berserk
  5366. {
  5367. logGlobal->trace("Handle Berserk effect");
  5368. std::pair<const battle::Unit *, BattleHex> attackInfo = curB.getNearestStack(next);
  5369. if (attackInfo.first != nullptr)
  5370. {
  5371. BattleAction attack;
  5372. attack.actionType = EActionType::WALK_AND_ATTACK;
  5373. attack.side = next->unitSide();
  5374. attack.stackNumber = next->unitId();
  5375. attack.aimToHex(attackInfo.second);
  5376. attack.aimToUnit(attackInfo.first);
  5377. makeAutomaticAction(next, attack);
  5378. logGlobal->trace("Attacked nearest target %s", attackInfo.first->getDescription());
  5379. }
  5380. else
  5381. {
  5382. makeStackDoNothing(next);
  5383. logGlobal->trace("No target found");
  5384. }
  5385. continue;
  5386. }
  5387. const CGHeroInstance * curOwner = battleGetOwnerHero(next);
  5388. const int stackCreatureId = next->unitType()->getId();
  5389. if ((stackCreatureId == CreatureID::ARROW_TOWERS || stackCreatureId == CreatureID::BALLISTA)
  5390. && (!curOwner || getRandomGenerator().nextInt(99) >= curOwner->valOfBonuses(BonusType::MANUAL_CONTROL, stackCreatureId)))
  5391. {
  5392. BattleAction attack;
  5393. attack.actionType = EActionType::SHOOT;
  5394. attack.side = next->unitSide();
  5395. attack.stackNumber = next->unitId();
  5396. //TODO: select target by priority
  5397. const battle::Unit * target = nullptr;
  5398. for(auto & elem : gs->curB->stacks)
  5399. {
  5400. if(elem->unitType()->getId() != CreatureID::CATAPULT
  5401. && elem->unitOwner() != next->unitOwner()
  5402. && elem->isValidTarget()
  5403. && gs->curB->battleCanShoot(next, elem->getPosition()))
  5404. {
  5405. target = elem;
  5406. break;
  5407. }
  5408. }
  5409. if(target == nullptr)
  5410. {
  5411. makeStackDoNothing(next);
  5412. }
  5413. else
  5414. {
  5415. attack.aimToUnit(target);
  5416. makeAutomaticAction(next, attack);
  5417. }
  5418. continue;
  5419. }
  5420. if (next->unitType()->getId() == CreatureID::CATAPULT)
  5421. {
  5422. const auto & attackableBattleHexes = curB.getAttackableBattleHexes();
  5423. if (attackableBattleHexes.empty())
  5424. {
  5425. makeStackDoNothing(next);
  5426. continue;
  5427. }
  5428. if (!curOwner || getRandomGenerator().nextInt(99) >= curOwner->valOfBonuses(BonusType::MANUAL_CONTROL, CreatureID::CATAPULT))
  5429. {
  5430. BattleAction attack;
  5431. attack.actionType = EActionType::CATAPULT;
  5432. attack.side = next->unitSide();
  5433. attack.stackNumber = next->unitId();
  5434. makeAutomaticAction(next, attack);
  5435. continue;
  5436. }
  5437. }
  5438. if (next->unitType()->getId() == CreatureID::FIRST_AID_TENT)
  5439. {
  5440. TStacks possibleStacks = battleGetStacksIf([=](const CStack * s)
  5441. {
  5442. return s->unitOwner() == next->unitOwner() && s->canBeHealed();
  5443. });
  5444. if (!possibleStacks.size())
  5445. {
  5446. makeStackDoNothing(next);
  5447. continue;
  5448. }
  5449. if (!curOwner || getRandomGenerator().nextInt(99) >= curOwner->valOfBonuses(BonusType::MANUAL_CONTROL, CreatureID::FIRST_AID_TENT))
  5450. {
  5451. RandomGeneratorUtil::randomShuffle(possibleStacks, getRandomGenerator());
  5452. const CStack * toBeHealed = possibleStacks.front();
  5453. BattleAction heal;
  5454. heal.actionType = EActionType::STACK_HEAL;
  5455. heal.aimToUnit(toBeHealed);
  5456. heal.side = next->unitSide();
  5457. heal.stackNumber = next->unitId();
  5458. makeAutomaticAction(next, heal);
  5459. continue;
  5460. }
  5461. }
  5462. int numberOfAsks = 1;
  5463. bool breakOuter = false;
  5464. do
  5465. {//ask interface and wait for answer
  5466. if (!battleResult.get())
  5467. {
  5468. stackTurnTrigger(next); //various effects
  5469. if(next->fear)
  5470. {
  5471. makeStackDoNothing(next); //end immediately if stack was affected by fear
  5472. }
  5473. else
  5474. {
  5475. logGlobal->trace("Activating %s", next->nodeName());
  5476. auto nextId = next->unitId();
  5477. BattleSetActiveStack sas;
  5478. sas.stack = nextId;
  5479. sendAndApply(&sas);
  5480. auto actionWasMade = [&]() -> bool
  5481. {
  5482. if (battleMadeAction.data)//active stack has made its action
  5483. return true;
  5484. if (battleResult.get())// battle is finished
  5485. return true;
  5486. if (next == nullptr)//active stack was been removed
  5487. return true;
  5488. return !next->alive();//active stack is dead
  5489. };
  5490. boost::unique_lock<boost::mutex> lock(battleMadeAction.mx);
  5491. battleMadeAction.data = false;
  5492. while ((lobby->state != EServerState::SHUTDOWN) && !actionWasMade())
  5493. {
  5494. {
  5495. auto unlockGuard = vstd::makeUnlockGuard(battleActionMutex);
  5496. battleMadeAction.cond.wait(lock);
  5497. }
  5498. if (battleGetStackByID(nextId, false) != next)
  5499. next = nullptr; //it may be removed, while we wait
  5500. }
  5501. }
  5502. }
  5503. if (battleResult.get()) //don't touch it, battle could be finished while waiting got action
  5504. {
  5505. breakOuter = true;
  5506. break;
  5507. }
  5508. //we're after action, all results applied
  5509. checkBattleStateChanges(); //check if this action ended the battle
  5510. if(next != nullptr)
  5511. {
  5512. //check for good morale
  5513. nextStackMorale = next->moraleVal();
  5514. if( !battleResult.get()
  5515. && !next->hadMorale
  5516. && !next->defending
  5517. && !next->waited()
  5518. && !next->fear
  5519. && next->alive()
  5520. && nextStackMorale > 0)
  5521. {
  5522. auto diceSize = VLC->settings()->getVector(EGameSettings::COMBAT_GOOD_MORALE_DICE);
  5523. size_t diceIndex = std::min<size_t>(diceSize.size()-1, nextStackMorale);
  5524. if(diceSize.size() > 0 && getRandomGenerator().nextInt(1, diceSize[diceIndex]) == 1)
  5525. {
  5526. BattleTriggerEffect bte;
  5527. bte.stackID = next->unitId();
  5528. bte.effect = vstd::to_underlying(BonusType::MORALE);
  5529. bte.val = 1;
  5530. bte.additionalInfo = 0;
  5531. sendAndApply(&bte); //play animation
  5532. ++numberOfAsks; //move this stack once more
  5533. }
  5534. }
  5535. }
  5536. --numberOfAsks;
  5537. } while (numberOfAsks > 0);
  5538. if (breakOuter)
  5539. {
  5540. break;
  5541. }
  5542. }
  5543. firstRound = false;
  5544. }
  5545. if (lobby->state != EServerState::SHUTDOWN)
  5546. endBattle(gs->curB->tile, gs->curB->battleGetFightingHero(0), gs->curB->battleGetFightingHero(1));
  5547. }
  5548. bool CGameHandler::makeAutomaticAction(const CStack *stack, BattleAction &ba)
  5549. {
  5550. boost::unique_lock lock(battleActionMutex);
  5551. BattleSetActiveStack bsa;
  5552. bsa.stack = stack->unitId();
  5553. bsa.askPlayerInterface = false;
  5554. sendAndApply(&bsa);
  5555. bool ret = makeBattleAction(ba);
  5556. checkBattleStateChanges();
  5557. return ret;
  5558. }
  5559. bool CGameHandler::giveHeroArtifact(const CGHeroInstance * h, const CArtifactInstance * a, ArtifactPosition pos)
  5560. {
  5561. assert(a->artType);
  5562. ArtifactLocation al(h, ArtifactPosition::PRE_FIRST);
  5563. if(pos == ArtifactPosition::FIRST_AVAILABLE)
  5564. {
  5565. al.slot = ArtifactUtils::getArtAnyPosition(h, a->getTypeId());
  5566. }
  5567. else if(ArtifactUtils::isSlotBackpack(pos))
  5568. {
  5569. al.slot = ArtifactUtils::getArtBackpackPosition(h, a->getTypeId());
  5570. }
  5571. else
  5572. {
  5573. al.slot = pos;
  5574. }
  5575. if(a->canBePutAt(al))
  5576. putArtifact(al, a);
  5577. else
  5578. return false;
  5579. return true;
  5580. }
  5581. void CGameHandler::putArtifact(const ArtifactLocation &al, const CArtifactInstance *a)
  5582. {
  5583. PutArtifact pa;
  5584. pa.art = a;
  5585. pa.al = al;
  5586. sendAndApply(&pa);
  5587. }
  5588. bool CGameHandler::giveHeroNewArtifact(const CGHeroInstance * h, const CArtifact * artType, ArtifactPosition pos)
  5589. {
  5590. assert(artType);
  5591. if(pos == ArtifactPosition::FIRST_AVAILABLE)
  5592. {
  5593. if(!artType->canBePutAt(h, ArtifactUtils::getArtAnyPosition(h, artType->getId())))
  5594. COMPLAIN_RET("Cannot put artifact in that slot!");
  5595. }
  5596. else if(ArtifactUtils::isSlotBackpack(pos))
  5597. {
  5598. if(!artType->canBePutAt(h, ArtifactUtils::getArtBackpackPosition(h, artType->getId())))
  5599. COMPLAIN_RET("Cannot put artifact in that slot!");
  5600. }
  5601. else
  5602. {
  5603. COMPLAIN_RET_FALSE_IF(!artType->canBePutAt(h, pos, false), "Cannot put artifact in that slot!");
  5604. }
  5605. auto * newArtInst = new CArtifactInstance();
  5606. newArtInst->artType = artType; // *NOT* via settype -> all bonus-related stuff must be done by NewArtifact apply
  5607. NewArtifact na;
  5608. na.art = newArtInst;
  5609. sendAndApply(&na); // -> updates newArtInst!!!
  5610. if(giveHeroArtifact(h, newArtInst, pos))
  5611. return true;
  5612. else
  5613. return false;
  5614. }
  5615. void CGameHandler::setBattleResult(BattleResult::EResult resultType, int victoriusSide)
  5616. {
  5617. boost::unique_lock<boost::mutex> guard(battleResult.mx);
  5618. if (battleResult.data)
  5619. {
  5620. complain((boost::format("The battle result has been already set (to %d, asked to %d)")
  5621. % battleResult.data->result % resultType).str());
  5622. return;
  5623. }
  5624. auto br = new BattleResult();
  5625. br->result = resultType;
  5626. br->winner = victoriusSide; //surrendering side loses
  5627. gs->curB->calculateCasualties(br->casualties);
  5628. battleResult.data = br;
  5629. }
  5630. void CGameHandler::spawnWanderingMonsters(CreatureID creatureID)
  5631. {
  5632. std::vector<int3>::iterator tile;
  5633. std::vector<int3> tiles;
  5634. getFreeTiles(tiles);
  5635. ui32 amount = (ui32)tiles.size() / 200; //Chance is 0.5% for each tile
  5636. RandomGeneratorUtil::randomShuffle(tiles, getRandomGenerator());
  5637. logGlobal->trace("Spawning wandering monsters. Found %d free tiles. Creature type: %d", tiles.size(), creatureID.num);
  5638. const CCreature *cre = VLC->creh->objects.at(creatureID);
  5639. for (int i = 0; i < (int)amount; ++i)
  5640. {
  5641. tile = tiles.begin();
  5642. logGlobal->trace("\tSpawning monster at %s", tile->toString());
  5643. {
  5644. auto count = cre->getRandomAmount(std::rand);
  5645. createObject(*tile, Obj::MONSTER, creatureID);
  5646. auto monsterId = getTopObj(*tile)->id;
  5647. setObjProperty(monsterId, ObjProperty::MONSTER_COUNT, count);
  5648. setObjProperty(monsterId, ObjProperty::MONSTER_POWER, (si64)1000*count);
  5649. }
  5650. tiles.erase(tile); //not use it again
  5651. }
  5652. }
  5653. void CGameHandler::removeObstacle(const CObstacleInstance & obstacle)
  5654. {
  5655. BattleObstaclesChanged obsRem;
  5656. obsRem.changes.emplace_back(obstacle.uniqueID, ObstacleChanges::EOperation::REMOVE);
  5657. sendAndApply(&obsRem);
  5658. }
  5659. void CGameHandler::synchronizeArtifactHandlerLists()
  5660. {
  5661. UpdateArtHandlerLists uahl;
  5662. uahl.treasures = VLC->arth->treasures;
  5663. uahl.minors = VLC->arth->minors;
  5664. uahl.majors = VLC->arth->majors;
  5665. uahl.relics = VLC->arth->relics;
  5666. sendAndApply(&uahl);
  5667. }
  5668. bool CGameHandler::isValidObject(const CGObjectInstance *obj) const
  5669. {
  5670. return vstd::contains(gs->map->objects, obj);
  5671. }
  5672. bool CGameHandler::isBlockedByQueries(const CPack *pack, PlayerColor player)
  5673. {
  5674. if (!strcmp(typeid(*pack).name(), typeid(PlayerMessage).name()))
  5675. return false;
  5676. auto query = queries.topQuery(player);
  5677. if (query && query->blocksPack(pack))
  5678. {
  5679. complain(boost::str(boost::format(
  5680. "\r\n| Player \"%s\" has to answer queries before attempting any further actions.\r\n| Top Query: \"%s\"\r\n")
  5681. % boost::to_upper_copy<std::string>(player.getStr())
  5682. % query->toString()
  5683. ));
  5684. return true;
  5685. }
  5686. return false;
  5687. }
  5688. void CGameHandler::removeAfterVisit(const CGObjectInstance *object)
  5689. {
  5690. //If the object is being visited, there must be a matching query
  5691. for (const auto &query : queries.allQueries())
  5692. {
  5693. if (auto someVistQuery = std::dynamic_pointer_cast<CObjectVisitQuery>(query))
  5694. {
  5695. if (someVistQuery->visitedObject == object)
  5696. {
  5697. someVistQuery->removeObjectAfterVisit = true;
  5698. return;
  5699. }
  5700. }
  5701. }
  5702. //If we haven't returned so far, there is no query and no visit, call was wrong
  5703. assert("This function needs to be called during the object visit!");
  5704. }
  5705. void CGameHandler::changeFogOfWar(int3 center, ui32 radius, PlayerColor player, bool hide)
  5706. {
  5707. std::unordered_set<int3> tiles;
  5708. getTilesInRange(tiles, center, radius, player, hide? -1 : 1);
  5709. if (hide)
  5710. {
  5711. std::unordered_set<int3> observedTiles; //do not hide tiles observed by heroes. May lead to disastrous AI problems
  5712. auto p = getPlayerState(player);
  5713. for (auto h : p->heroes)
  5714. {
  5715. getTilesInRange(observedTiles, h->getSightCenter(), h->getSightRadius(), h->tempOwner, -1);
  5716. }
  5717. for (auto t : p->towns)
  5718. {
  5719. getTilesInRange(observedTiles, t->getSightCenter(), t->getSightRadius(), t->tempOwner, -1);
  5720. }
  5721. for (auto tile : observedTiles)
  5722. vstd::erase_if_present (tiles, tile);
  5723. }
  5724. changeFogOfWar(tiles, player, hide);
  5725. }
  5726. void CGameHandler::changeFogOfWar(std::unordered_set<int3> &tiles, PlayerColor player, bool hide)
  5727. {
  5728. FoWChange fow;
  5729. fow.tiles = tiles;
  5730. fow.player = player;
  5731. fow.mode = hide? 0 : 1;
  5732. sendAndApply(&fow);
  5733. }
  5734. bool CGameHandler::isVisitCoveredByAnotherQuery(const CGObjectInstance *obj, const CGHeroInstance *hero)
  5735. {
  5736. if (auto topQuery = queries.topQuery(hero->getOwner()))
  5737. if (auto visit = std::dynamic_pointer_cast<const CObjectVisitQuery>(topQuery))
  5738. return !(visit->visitedObject == obj && visit->visitingHero == hero);
  5739. return true;
  5740. }
  5741. void CGameHandler::setObjProperty(ObjectInstanceID objid, int prop, si64 val)
  5742. {
  5743. SetObjectProperty sob;
  5744. sob.id = objid;
  5745. sob.what = prop;
  5746. sob.val = static_cast<ui32>(val);
  5747. sendAndApply(&sob);
  5748. }
  5749. void CGameHandler::showInfoDialog(InfoWindow * iw)
  5750. {
  5751. sendAndApply(iw);
  5752. }
  5753. void CGameHandler::showInfoDialog(const std::string & msg, PlayerColor player)
  5754. {
  5755. InfoWindow iw;
  5756. iw.player = player;
  5757. iw.text.appendRawString(msg);
  5758. showInfoDialog(&iw);
  5759. }
  5760. CasualtiesAfterBattle::CasualtiesAfterBattle(const SideInBattle & battleSide, const BattleInfo * bat):
  5761. army(battleSide.armyObject)
  5762. {
  5763. heroWithDeadCommander = ObjectInstanceID();
  5764. PlayerColor color = battleSide.color;
  5765. for(CStack * st : bat->stacks)
  5766. {
  5767. if(st->summoned) //don't take into account temporary summoned stacks
  5768. continue;
  5769. if(st->unitOwner() != color) //remove only our stacks
  5770. continue;
  5771. logGlobal->debug("Calculating casualties for %s", st->nodeName());
  5772. st->health.takeResurrected();
  5773. if(st->unitSlot() == SlotID::ARROW_TOWERS_SLOT)
  5774. {
  5775. logGlobal->debug("Ignored arrow towers stack.");
  5776. }
  5777. else if(st->unitSlot() == SlotID::WAR_MACHINES_SLOT)
  5778. {
  5779. auto warMachine = st->unitType()->warMachine;
  5780. if(warMachine == ArtifactID::NONE)
  5781. {
  5782. logGlobal->error("Invalid creature in war machine virtual slot. Stack: %s", st->nodeName());
  5783. }
  5784. //catapult artifact remain even if "creature" killed in siege
  5785. else if(warMachine != ArtifactID::CATAPULT && st->getCount() <= 0)
  5786. {
  5787. logGlobal->debug("War machine has been destroyed");
  5788. auto hero = dynamic_ptr_cast<CGHeroInstance> (army);
  5789. if (hero)
  5790. removedWarMachines.push_back (ArtifactLocation(hero, hero->getArtPos(warMachine, true)));
  5791. else
  5792. logGlobal->error("War machine in army without hero");
  5793. }
  5794. }
  5795. else if(st->unitSlot() == SlotID::SUMMONED_SLOT_PLACEHOLDER)
  5796. {
  5797. if(st->alive() && st->getCount() > 0)
  5798. {
  5799. logGlobal->debug("Permanently summoned %d units.", st->getCount());
  5800. const CreatureID summonedType = st->creatureId();
  5801. summoned[summonedType] += st->getCount();
  5802. }
  5803. }
  5804. else if(st->unitSlot() == SlotID::COMMANDER_SLOT_PLACEHOLDER)
  5805. {
  5806. if (nullptr == st->base)
  5807. {
  5808. logGlobal->error("Stack with no base in commander slot. Stack: %s", st->nodeName());
  5809. }
  5810. else
  5811. {
  5812. auto c = dynamic_cast <const CCommanderInstance *>(st->base);
  5813. if(c)
  5814. {
  5815. auto h = dynamic_cast <const CGHeroInstance *>(army);
  5816. if(h && h->commander == c && (st->getCount() == 0 || !st->alive()))
  5817. {
  5818. logGlobal->debug("Commander is dead.");
  5819. heroWithDeadCommander = army->id; //TODO: unify commander handling
  5820. }
  5821. }
  5822. else
  5823. logGlobal->error("Stack with invalid instance in commander slot. Stack: %s", st->nodeName());
  5824. }
  5825. }
  5826. else if(st->base && !army->slotEmpty(st->unitSlot()))
  5827. {
  5828. logGlobal->debug("Count: %d; base count: %d", st->getCount(), army->getStackCount(st->unitSlot()));
  5829. if(st->getCount() == 0 || !st->alive())
  5830. {
  5831. logGlobal->debug("Stack has been destroyed.");
  5832. StackLocation sl(army, st->unitSlot());
  5833. newStackCounts.push_back(TStackAndItsNewCount(sl, 0));
  5834. }
  5835. else if(st->getCount() < army->getStackCount(st->unitSlot()))
  5836. {
  5837. logGlobal->debug("Stack lost %d units.", army->getStackCount(st->unitSlot()) - st->getCount());
  5838. StackLocation sl(army, st->unitSlot());
  5839. newStackCounts.push_back(TStackAndItsNewCount(sl, st->getCount()));
  5840. }
  5841. else if(st->getCount() > army->getStackCount(st->unitSlot()))
  5842. {
  5843. logGlobal->debug("Stack gained %d units.", st->getCount() - army->getStackCount(st->unitSlot()));
  5844. StackLocation sl(army, st->unitSlot());
  5845. newStackCounts.push_back(TStackAndItsNewCount(sl, st->getCount()));
  5846. }
  5847. }
  5848. else
  5849. {
  5850. logGlobal->warn("Unable to process stack: %s", st->nodeName());
  5851. }
  5852. }
  5853. }
  5854. void CasualtiesAfterBattle::updateArmy(CGameHandler *gh)
  5855. {
  5856. for (TStackAndItsNewCount &ncount : newStackCounts)
  5857. {
  5858. if (ncount.second > 0)
  5859. gh->changeStackCount(ncount.first, ncount.second, true);
  5860. else
  5861. gh->eraseStack(ncount.first, true);
  5862. }
  5863. for (auto summoned_iter : summoned)
  5864. {
  5865. SlotID slot = army->getSlotFor(summoned_iter.first);
  5866. if (slot.validSlot())
  5867. {
  5868. StackLocation location(army, slot);
  5869. gh->addToSlot(location, summoned_iter.first.toCreature(), summoned_iter.second);
  5870. }
  5871. else
  5872. {
  5873. //even if it will be possible to summon anything permanently it should be checked for free slot
  5874. //necromancy is handled separately
  5875. gh->complain("No free slot to put summoned creature");
  5876. }
  5877. }
  5878. for (auto al : removedWarMachines)
  5879. {
  5880. gh->removeArtifact(al);
  5881. }
  5882. if (heroWithDeadCommander != ObjectInstanceID())
  5883. {
  5884. SetCommanderProperty scp;
  5885. scp.heroid = heroWithDeadCommander;
  5886. scp.which = SetCommanderProperty::ALIVE;
  5887. scp.amount = 0;
  5888. gh->sendAndApply(&scp);
  5889. }
  5890. }
  5891. CGameHandler::FinishingBattleHelper::FinishingBattleHelper(std::shared_ptr<const CBattleQuery> Query, int RemainingBattleQueriesCount)
  5892. {
  5893. assert(Query->result);
  5894. assert(Query->bi);
  5895. auto &result = *Query->result;
  5896. auto &info = *Query->bi;
  5897. winnerHero = result.winner != 0 ? info.sides[1].hero : info.sides[0].hero;
  5898. loserHero = result.winner != 0 ? info.sides[0].hero : info.sides[1].hero;
  5899. victor = info.sides[result.winner].color;
  5900. loser = info.sides[!result.winner].color;
  5901. winnerSide = result.winner;
  5902. remainingBattleQueriesCount = RemainingBattleQueriesCount;
  5903. }
  5904. CGameHandler::FinishingBattleHelper::FinishingBattleHelper()
  5905. {
  5906. winnerHero = loserHero = nullptr;
  5907. winnerSide = 0;
  5908. remainingBattleQueriesCount = 0;
  5909. }
  5910. CRandomGenerator & CGameHandler::getRandomGenerator()
  5911. {
  5912. return CRandomGenerator::getDefault();
  5913. }
  5914. #if SCRIPTING_ENABLED
  5915. scripting::Pool * CGameHandler::getGlobalContextPool() const
  5916. {
  5917. return serverScripts.get();
  5918. }
  5919. scripting::Pool * CGameHandler::getContextPool() const
  5920. {
  5921. return serverScripts.get();
  5922. }
  5923. #endif
  5924. void CGameHandler::createObject(const int3 & visitablePosition, Obj type, int32_t subtype)
  5925. {
  5926. NewObject no;
  5927. no.ID = type;
  5928. no.subID= subtype;
  5929. no.targetPos = visitablePosition;
  5930. sendAndApply(&no);
  5931. }
  5932. void CGameHandler::deserializationFix()
  5933. {
  5934. //FIXME: pointer to GameHandler itself can't be deserialized at the moment since GameHandler is top-level entity in serialization
  5935. // restore any places that requires such pointer manually
  5936. heroPool->gameHandler = this;
  5937. playerMessages->gameHandler = this;
  5938. }