CGameHandler.cpp 219 KB

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