CGameHandler.cpp 221 KB

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