CGameHandler.cpp 221 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401
  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 << 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. logGlobal->warn("There is no player owner of town %s at %s", town->getNameTranslated(), town->pos.toString());
  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)
  2381. {
  2382. GiveHero gh;
  2383. gh.id = id;
  2384. gh.player = player;
  2385. sendAndApply(&gh);
  2386. }
  2387. void CGameHandler::changeObjPos(ObjectInstanceID objid, int3 newPos)
  2388. {
  2389. ChangeObjPos cop;
  2390. cop.objid = objid;
  2391. cop.nPos = newPos;
  2392. sendAndApply(&cop);
  2393. }
  2394. void CGameHandler::useScholarSkill(ObjectInstanceID fromHero, ObjectInstanceID toHero)
  2395. {
  2396. const CGHeroInstance * h1 = getHero(fromHero);
  2397. const CGHeroInstance * h2 = getHero(toHero);
  2398. int h1_scholarSpellLevel = h1->valOfBonuses(BonusType::LEARN_MEETING_SPELL_LIMIT, -1);
  2399. int h2_scholarSpellLevel = h2->valOfBonuses(BonusType::LEARN_MEETING_SPELL_LIMIT, -1);
  2400. if (h1_scholarSpellLevel < h2_scholarSpellLevel)
  2401. {
  2402. std::swap (h1,h2);//1st hero need to have higher scholar level for correct message
  2403. std::swap(fromHero, toHero);
  2404. }
  2405. int ScholarSpellLevel = std::max(h1_scholarSpellLevel, h2_scholarSpellLevel);//heroes can trade up to this level
  2406. if (!ScholarSpellLevel || !h1->hasSpellbook() || !h2->hasSpellbook())
  2407. return;//no scholar skill or no spellbook
  2408. int h1Lvl = std::min(ScholarSpellLevel, h1->maxSpellLevel()),
  2409. h2Lvl = std::min(ScholarSpellLevel, h2->maxSpellLevel());//heroes can receive this levels
  2410. ChangeSpells cs1;
  2411. cs1.learn = true;
  2412. cs1.hid = toHero;//giving spells to first hero
  2413. for (auto it : h1->getSpellsInSpellbook())
  2414. if (h2Lvl >= it.toSpell()->level && !h2->spellbookContainsSpell(it))//hero can learn it and don't have it yet
  2415. cs1.spells.insert(it);//spell to learn
  2416. ChangeSpells cs2;
  2417. cs2.learn = true;
  2418. cs2.hid = fromHero;
  2419. for (auto it : h2->getSpellsInSpellbook())
  2420. if (h1Lvl >= it.toSpell()->level && !h1->spellbookContainsSpell(it))
  2421. cs2.spells.insert(it);
  2422. if (!cs1.spells.empty() || !cs2.spells.empty())//create a message
  2423. {
  2424. int ScholarSkillLevel = std::max(h1->getSecSkillLevel(SecondarySkill::SCHOLAR),
  2425. h2->getSecSkillLevel(SecondarySkill::SCHOLAR));
  2426. InfoWindow iw;
  2427. iw.player = h1->tempOwner;
  2428. iw.components.emplace_back(Component::EComponentType::SEC_SKILL, 18, ScholarSkillLevel, 0);
  2429. iw.text.addTxt(MetaString::GENERAL_TXT, 139);//"%s, who has studied magic extensively,
  2430. iw.text.addReplacement(h1->getNameTranslated());
  2431. if (!cs2.spells.empty())//if found new spell - apply
  2432. {
  2433. iw.text.addTxt(MetaString::GENERAL_TXT, 140);//learns
  2434. int size = static_cast<int>(cs2.spells.size());
  2435. for (auto it : cs2.spells)
  2436. {
  2437. iw.components.emplace_back(Component::EComponentType::SPELL, it, 1, 0);
  2438. iw.text.addTxt(MetaString::SPELL_NAME, it.toEnum());
  2439. switch (size--)
  2440. {
  2441. case 2: iw.text.addTxt(MetaString::GENERAL_TXT, 141);
  2442. case 1: break;
  2443. default: iw.text << ", ";
  2444. }
  2445. }
  2446. iw.text.addTxt(MetaString::GENERAL_TXT, 142);//from %s
  2447. iw.text.addReplacement(h2->getNameTranslated());
  2448. sendAndApply(&cs2);
  2449. }
  2450. if (!cs1.spells.empty() && !cs2.spells.empty())
  2451. {
  2452. iw.text.addTxt(MetaString::GENERAL_TXT, 141);//and
  2453. }
  2454. if (!cs1.spells.empty())
  2455. {
  2456. iw.text.addTxt(MetaString::GENERAL_TXT, 147);//teaches
  2457. int size = static_cast<int>(cs1.spells.size());
  2458. for (auto it : cs1.spells)
  2459. {
  2460. iw.components.emplace_back(Component::EComponentType::SPELL, it, 1, 0);
  2461. iw.text.addTxt(MetaString::SPELL_NAME, it.toEnum());
  2462. switch (size--)
  2463. {
  2464. case 2: iw.text.addTxt(MetaString::GENERAL_TXT, 141);
  2465. case 1: break;
  2466. default: iw.text << ", ";
  2467. }
  2468. }
  2469. iw.text.addTxt(MetaString::GENERAL_TXT, 148);//from %s
  2470. iw.text.addReplacement(h2->getNameTranslated());
  2471. sendAndApply(&cs1);
  2472. }
  2473. sendAndApply(&iw);
  2474. }
  2475. }
  2476. void CGameHandler::heroExchange(ObjectInstanceID hero1, ObjectInstanceID hero2)
  2477. {
  2478. auto h1 = getHero(hero1), h2 = getHero(hero2);
  2479. if (getPlayerRelations(h1->getOwner(), h2->getOwner()))
  2480. {
  2481. auto exchange = std::make_shared<CGarrisonDialogQuery>(this, h1, h2);
  2482. ExchangeDialog hex;
  2483. hex.queryID = exchange->queryID;
  2484. hex.player = h1->getOwner();
  2485. hex.hero1 = hero1;
  2486. hex.hero2 = hero2;
  2487. sendAndApply(&hex);
  2488. useScholarSkill(hero1,hero2);
  2489. queries.addQuery(exchange);
  2490. }
  2491. }
  2492. void CGameHandler::sendToAllClients(CPackForClient * pack)
  2493. {
  2494. logNetwork->trace("\tSending to all clients: %s", typeid(*pack).name());
  2495. for (auto c : lobby->connections)
  2496. {
  2497. if(!c->isOpen())
  2498. continue;
  2499. c->sendPack(pack);
  2500. }
  2501. }
  2502. void CGameHandler::sendAndApply(CPackForClient * pack)
  2503. {
  2504. sendToAllClients(pack);
  2505. gs->apply(pack);
  2506. logNetwork->trace("\tApplied on gs: %s", typeid(*pack).name());
  2507. }
  2508. void CGameHandler::applyAndSend(CPackForClient * pack)
  2509. {
  2510. gs->apply(pack);
  2511. sendToAllClients(pack);
  2512. }
  2513. void CGameHandler::sendAndApply(CGarrisonOperationPack * pack)
  2514. {
  2515. sendAndApply(static_cast<CPackForClient *>(pack));
  2516. checkVictoryLossConditionsForAll();
  2517. }
  2518. void CGameHandler::sendAndApply(SetResources * pack)
  2519. {
  2520. sendAndApply(static_cast<CPackForClient *>(pack));
  2521. checkVictoryLossConditionsForPlayer(pack->player);
  2522. }
  2523. void CGameHandler::sendAndApply(NewStructures * pack)
  2524. {
  2525. sendAndApply(static_cast<CPackForClient *>(pack));
  2526. checkVictoryLossConditionsForPlayer(getTown(pack->tid)->tempOwner);
  2527. }
  2528. bool CGameHandler::isPlayerOwns(CPackForServer * pack, ObjectInstanceID id)
  2529. {
  2530. return getPlayerAt(pack->c) == getOwner(id);
  2531. }
  2532. void CGameHandler::throwNotAllowedAction(CPackForServer * pack)
  2533. {
  2534. if(pack->c)
  2535. {
  2536. SystemMessage temp_message("You are not allowed to perform this action!");
  2537. pack->c->sendPack(&temp_message);
  2538. }
  2539. logNetwork->error("Player is not allowed to perform this action!");
  2540. throw ExceptionNotAllowedAction();
  2541. }
  2542. void CGameHandler::wrongPlayerMessage(CPackForServer * pack, PlayerColor expectedplayer)
  2543. {
  2544. std::ostringstream oss;
  2545. oss << "You were identified as player " << getPlayerAt(pack->c) << " while expecting " << expectedplayer;
  2546. logNetwork->error(oss.str());
  2547. if(pack->c)
  2548. {
  2549. SystemMessage temp_message(oss.str());
  2550. pack->c->sendPack(&temp_message);
  2551. }
  2552. }
  2553. void CGameHandler::throwOnWrongOwner(CPackForServer * pack, ObjectInstanceID id)
  2554. {
  2555. if(!isPlayerOwns(pack, id))
  2556. {
  2557. wrongPlayerMessage(pack, getOwner(id));
  2558. throwNotAllowedAction(pack);
  2559. }
  2560. }
  2561. void CGameHandler::throwOnWrongPlayer(CPackForServer * pack, PlayerColor player)
  2562. {
  2563. if(!hasPlayerAt(player, pack->c) && player != getPlayerAt(pack->c))
  2564. {
  2565. wrongPlayerMessage(pack, player);
  2566. throwNotAllowedAction(pack);
  2567. }
  2568. }
  2569. void CGameHandler::throwAndComplain(CPackForServer * pack, std::string txt)
  2570. {
  2571. complain(txt);
  2572. throwNotAllowedAction(pack);
  2573. }
  2574. void CGameHandler::save(const std::string & filename)
  2575. {
  2576. logGlobal->info("Saving to %s", filename);
  2577. const auto stem = FileInfo::GetPathStem(filename);
  2578. const auto savefname = stem.to_string() + ".vsgm1";
  2579. CResourceHandler::get("local")->createResource(savefname);
  2580. {
  2581. logGlobal->info("Ordering clients to serialize...");
  2582. SaveGameClient sg(savefname);
  2583. sendToAllClients(&sg);
  2584. }
  2585. try
  2586. {
  2587. {
  2588. CSaveFile save(*CResourceHandler::get("local")->getResourceName(ResourceID(stem.to_string(), EResType::SERVER_SAVEGAME)));
  2589. saveCommonState(save);
  2590. logGlobal->info("Saving server state");
  2591. save << *this;
  2592. }
  2593. logGlobal->info("Game has been successfully saved!");
  2594. }
  2595. catch(std::exception &e)
  2596. {
  2597. logGlobal->error("Failed to save game: %s", e.what());
  2598. }
  2599. }
  2600. bool CGameHandler::load(const std::string & filename)
  2601. {
  2602. logGlobal->info("Loading from %s", filename);
  2603. const auto stem = FileInfo::GetPathStem(filename);
  2604. reinitScripting();
  2605. try
  2606. {
  2607. {
  2608. CLoadFile lf(*CResourceHandler::get("local")->getResourceName(ResourceID(stem.to_string(), EResType::SERVER_SAVEGAME)), MINIMAL_SERIALIZATION_VERSION);
  2609. loadCommonState(lf);
  2610. logGlobal->info("Loading server state");
  2611. lf >> *this;
  2612. }
  2613. logGlobal->info("Game has been successfully loaded!");
  2614. }
  2615. catch(const CModHandler::Incompatibility & e)
  2616. {
  2617. logGlobal->error("Failed to load game: %s", e.what());
  2618. auto errorMsg = VLC->generaltexth->translate("vcmi.server.errors.modsIncompatibility") + '\n';
  2619. errorMsg += e.what();
  2620. lobby->announceMessage(errorMsg);
  2621. return false;
  2622. }
  2623. catch(const std::exception & e)
  2624. {
  2625. logGlobal->error("Failed to load game: %s", e.what());
  2626. return false;
  2627. }
  2628. gs->preInit(VLC);
  2629. gs->updateOnLoad(lobby->si.get());
  2630. return true;
  2631. }
  2632. bool CGameHandler::bulkSplitStack(SlotID slotSrc, ObjectInstanceID srcOwner, si32 howMany)
  2633. {
  2634. if(!slotSrc.validSlot() && complain(complainInvalidSlot))
  2635. return false;
  2636. const CArmedInstance * army = static_cast<const CArmedInstance*>(getObjInstance(srcOwner));
  2637. const CCreatureSet & creatureSet = *army;
  2638. if((!vstd::contains(creatureSet.stacks, slotSrc) && complain(complainNoCreatures))
  2639. || (howMany < 1 && complain("Invalid split parameter!")))
  2640. {
  2641. return false;
  2642. }
  2643. auto actualAmount = army->getStackCount(slotSrc);
  2644. if(actualAmount <= howMany && complain(complainNotEnoughCreatures)) // '<=' because it's not intended just for moving a stack
  2645. return false;
  2646. auto freeSlots = creatureSet.getFreeSlots();
  2647. if(freeSlots.empty() && complain("No empty stacks"))
  2648. return false;
  2649. BulkRebalanceStacks bulkRS;
  2650. for(auto slot : freeSlots)
  2651. {
  2652. RebalanceStacks rs;
  2653. rs.srcArmy = army->id;
  2654. rs.dstArmy = army->id;
  2655. rs.srcSlot = slotSrc;
  2656. rs.dstSlot = slot;
  2657. rs.count = howMany;
  2658. bulkRS.moves.push_back(rs);
  2659. actualAmount -= howMany;
  2660. if(actualAmount <= howMany)
  2661. break;
  2662. }
  2663. sendAndApply(&bulkRS);
  2664. return true;
  2665. }
  2666. bool CGameHandler::bulkMergeStacks(SlotID slotSrc, ObjectInstanceID srcOwner)
  2667. {
  2668. if(!slotSrc.validSlot() && complain(complainInvalidSlot))
  2669. return false;
  2670. const CArmedInstance * army = static_cast<const CArmedInstance*>(getObjInstance(srcOwner));
  2671. const CCreatureSet & creatureSet = *army;
  2672. if(!vstd::contains(creatureSet.stacks, slotSrc) && complain(complainNoCreatures))
  2673. return false;
  2674. auto actualAmount = creatureSet.getStackCount(slotSrc);
  2675. if(actualAmount < 1 && complain(complainNoCreatures))
  2676. return false;
  2677. auto currentCreature = creatureSet.getCreature(slotSrc);
  2678. if(!currentCreature && complain(complainNoCreatures))
  2679. return false;
  2680. auto creatureSlots = creatureSet.getCreatureSlots(currentCreature, slotSrc);
  2681. if(!creatureSlots.size())
  2682. return false;
  2683. BulkRebalanceStacks bulkRS;
  2684. for(auto slot : creatureSlots)
  2685. {
  2686. RebalanceStacks rs;
  2687. rs.srcArmy = army->id;
  2688. rs.dstArmy = army->id;
  2689. rs.srcSlot = slot;
  2690. rs.dstSlot = slotSrc;
  2691. rs.count = creatureSet.getStackCount(slot);
  2692. bulkRS.moves.push_back(rs);
  2693. }
  2694. sendAndApply(&bulkRS);
  2695. return true;
  2696. }
  2697. bool CGameHandler::bulkMoveArmy(ObjectInstanceID srcArmy, ObjectInstanceID destArmy, SlotID srcSlot)
  2698. {
  2699. if(!srcSlot.validSlot() && complain(complainInvalidSlot))
  2700. return false;
  2701. const CArmedInstance * armySrc = static_cast<const CArmedInstance*>(getObjInstance(srcArmy));
  2702. const CCreatureSet & setSrc = *armySrc;
  2703. if(!vstd::contains(setSrc.stacks, srcSlot) && complain(complainNoCreatures))
  2704. return false;
  2705. const CArmedInstance * armyDest = static_cast<const CArmedInstance*>(getObjInstance(destArmy));
  2706. const CCreatureSet & setDest = *armyDest;
  2707. auto freeSlots = setDest.getFreeSlotsQueue();
  2708. typedef std::map<SlotID, std::pair<SlotID, TQuantity>> TRebalanceMap;
  2709. TRebalanceMap moves;
  2710. auto srcQueue = setSrc.getCreatureQueue(srcSlot); // Exclude srcSlot, it should be moved last
  2711. auto slotsLeft = setSrc.stacksCount();
  2712. auto destMap = setDest.getCreatureMap();
  2713. TMapCreatureSlot::key_compare keyComp = destMap.key_comp();
  2714. while(!srcQueue.empty())
  2715. {
  2716. auto pair = srcQueue.top();
  2717. srcQueue.pop();
  2718. auto currCreature = pair.first;
  2719. auto currSlot = pair.second;
  2720. const auto quantity = setSrc.getStackCount(currSlot);
  2721. TMapCreatureSlot::iterator lb = destMap.lower_bound(currCreature);
  2722. const bool alreadyExists = (lb != destMap.end() && !(keyComp(currCreature, lb->first)));
  2723. if(!alreadyExists)
  2724. {
  2725. if(freeSlots.empty())
  2726. continue;
  2727. auto currFreeSlot = freeSlots.front();
  2728. freeSlots.pop();
  2729. destMap.insert(lb, TMapCreatureSlot::value_type(currCreature, currFreeSlot));
  2730. }
  2731. moves.insert(std::make_pair(currSlot, std::make_pair(destMap[currCreature], quantity)));
  2732. slotsLeft--;
  2733. }
  2734. if(slotsLeft == 1)
  2735. {
  2736. auto lastCreature = setSrc.getCreature(srcSlot);
  2737. auto slotToMove = SlotID();
  2738. // Try to find a slot for last creature
  2739. if(destMap.find(lastCreature) == destMap.end())
  2740. {
  2741. if(!freeSlots.empty())
  2742. slotToMove = freeSlots.front();
  2743. }
  2744. else
  2745. {
  2746. slotToMove = destMap[lastCreature];
  2747. }
  2748. if(slotToMove != SlotID())
  2749. {
  2750. const bool needsLastStack = armySrc->needsLastStack();
  2751. const auto quantity = setSrc.getStackCount(srcSlot) - (needsLastStack ? 1 : 0);
  2752. moves.insert(std::make_pair(srcSlot, std::make_pair(slotToMove, quantity)));
  2753. }
  2754. }
  2755. BulkRebalanceStacks bulkRS;
  2756. for(auto & move : moves)
  2757. {
  2758. RebalanceStacks rs;
  2759. rs.srcArmy = armySrc->id;
  2760. rs.dstArmy = armyDest->id;
  2761. rs.srcSlot = move.first;
  2762. rs.dstSlot = move.second.first;
  2763. rs.count = move.second.second;
  2764. bulkRS.moves.push_back(rs);
  2765. }
  2766. sendAndApply(&bulkRS);
  2767. return true;
  2768. }
  2769. bool CGameHandler::bulkSmartSplitStack(SlotID slotSrc, ObjectInstanceID srcOwner)
  2770. {
  2771. if(!slotSrc.validSlot() && complain(complainInvalidSlot))
  2772. return false;
  2773. const CArmedInstance * army = static_cast<const CArmedInstance*>(getObjInstance(srcOwner));
  2774. const CCreatureSet & creatureSet = *army;
  2775. if(!vstd::contains(creatureSet.stacks, slotSrc) && complain(complainNoCreatures))
  2776. return false;
  2777. auto actualAmount = creatureSet.getStackCount(slotSrc);
  2778. if(actualAmount <= 1 && complain(complainNoCreatures))
  2779. return false;
  2780. auto freeSlot = creatureSet.getFreeSlot();
  2781. auto currentCreature = creatureSet.getCreature(slotSrc);
  2782. if(freeSlot == SlotID() && creatureSet.isCreatureBalanced(currentCreature))
  2783. return true;
  2784. auto creatureSlots = creatureSet.getCreatureSlots(currentCreature, SlotID(-1), 1); // Ignore slots where's only 1 creature, don't ignore slotSrc
  2785. TQuantity totalCreatures = 0;
  2786. for(auto slot : creatureSlots)
  2787. totalCreatures += creatureSet.getStackCount(slot);
  2788. if(totalCreatures <= 1 && complain("Total creatures number is invalid"))
  2789. return false;
  2790. if(freeSlot != SlotID())
  2791. creatureSlots.push_back(freeSlot);
  2792. if(creatureSlots.empty() && complain("No available slots for smart rebalancing"))
  2793. return false;
  2794. const auto totalCreatureSlots = creatureSlots.size();
  2795. const auto rem = totalCreatures % totalCreatureSlots;
  2796. const auto quotient = totalCreatures / totalCreatureSlots;
  2797. // totalCreatures == rem * (quotient + 1) + (totalCreatureSlots - rem) * quotient;
  2798. // Proof: r(q+1)+(s-r)q = rq+r+qs-rq = r+qs = total, where total/s = q+r/s
  2799. BulkSmartRebalanceStacks bulkSRS;
  2800. if(freeSlot != SlotID())
  2801. {
  2802. RebalanceStacks rs;
  2803. rs.srcArmy = rs.dstArmy = army->id;
  2804. rs.srcSlot = slotSrc;
  2805. rs.dstSlot = freeSlot;
  2806. rs.count = 1;
  2807. bulkSRS.moves.push_back(rs);
  2808. }
  2809. auto currSlot = 0;
  2810. auto check = 0;
  2811. for(auto slot : creatureSlots)
  2812. {
  2813. ChangeStackCount csc;
  2814. csc.army = army->id;
  2815. csc.slot = slot;
  2816. csc.count = (currSlot < rem)
  2817. ? quotient + 1
  2818. : quotient;
  2819. csc.absoluteValue = true;
  2820. bulkSRS.changes.push_back(csc);
  2821. currSlot++;
  2822. check += csc.count;
  2823. }
  2824. if(check != totalCreatures)
  2825. {
  2826. complain((boost::format("Failure: totalCreatures=%d but check=%d") % totalCreatures % check).str());
  2827. return false;
  2828. }
  2829. sendAndApply(&bulkSRS);
  2830. return true;
  2831. }
  2832. bool CGameHandler::arrangeStacks(ObjectInstanceID id1, ObjectInstanceID id2, ui8 what, SlotID p1, SlotID p2, si32 val, PlayerColor player)
  2833. {
  2834. const CArmedInstance * s1 = static_cast<const CArmedInstance *>(getObjInstance(id1)),
  2835. * s2 = static_cast<const CArmedInstance *>(getObjInstance(id2));
  2836. const CCreatureSet &S1 = *s1, &S2 = *s2;
  2837. StackLocation sl1(s1, p1), sl2(s2, p2);
  2838. if (!sl1.slot.validSlot() || !sl2.slot.validSlot())
  2839. {
  2840. complain(complainInvalidSlot);
  2841. return false;
  2842. }
  2843. if (!isAllowedExchange(id1,id2))
  2844. {
  2845. complain("Cannot exchange stacks between these two objects!\n");
  2846. return false;
  2847. }
  2848. // We can always put stacks into locked garrison, but not take them out of it
  2849. auto notRemovable = [&](const CArmedInstance * army)
  2850. {
  2851. if (id1 != id2) // Stack arrangement inside locked garrison is allowed
  2852. {
  2853. auto g = dynamic_cast<const CGGarrison *>(army);
  2854. if (g && !g->removableUnits)
  2855. {
  2856. complain("Stacks in this garrison are not removable!\n");
  2857. return true;
  2858. }
  2859. }
  2860. return false;
  2861. };
  2862. if (what==1) //swap
  2863. {
  2864. if (((s1->tempOwner != player && s1->tempOwner != PlayerColor::UNFLAGGABLE) && s1->getStackCount(p1))
  2865. || ((s2->tempOwner != player && s2->tempOwner != PlayerColor::UNFLAGGABLE) && s2->getStackCount(p2)))
  2866. {
  2867. complain("Can't take troops from another player!");
  2868. return false;
  2869. }
  2870. if (sl1.army == sl2.army && sl1.slot == sl2.slot)
  2871. {
  2872. complain("Cannot swap stacks - slots are the same!");
  2873. return false;
  2874. }
  2875. if (!s1->slotEmpty(p1) && !s2->slotEmpty(p2))
  2876. {
  2877. if (notRemovable(sl1.army) || notRemovable(sl2.army))
  2878. return false;
  2879. }
  2880. if (s1->slotEmpty(p1) && notRemovable(sl2.army))
  2881. return false;
  2882. else if (s2->slotEmpty(p2) && notRemovable(sl1.army))
  2883. return false;
  2884. swapStacks(sl1, sl2);
  2885. }
  2886. else if (what==2)//merge
  2887. {
  2888. if ((s1->getCreature(p1) != s2->getCreature(p2) && complain("Cannot merge different creatures stacks!"))
  2889. || (((s1->tempOwner != player && s1->tempOwner != PlayerColor::UNFLAGGABLE) && s2->getStackCount(p2)) && complain("Can't take troops from another player!")))
  2890. return false;
  2891. if (s1->slotEmpty(p1) || s2->slotEmpty(p2))
  2892. {
  2893. complain("Cannot merge empty stack!");
  2894. return false;
  2895. }
  2896. else if (notRemovable(sl1.army))
  2897. return false;
  2898. moveStack(sl1, sl2);
  2899. }
  2900. else if (what==3) //split
  2901. {
  2902. const int countToMove = val - s2->getStackCount(p2);
  2903. const int countLeftOnSrc = s1->getStackCount(p1) - countToMove;
  2904. if ( (s1->tempOwner != player && countLeftOnSrc < s1->getStackCount(p1))
  2905. || (s2->tempOwner != player && val < s2->getStackCount(p2)))
  2906. {
  2907. complain("Can't move troops of another player!");
  2908. return false;
  2909. }
  2910. //general conditions checking
  2911. if ((!vstd::contains(S1.stacks,p1) && complain(complainNoCreatures))
  2912. || (val<1 && complain(complainNoCreatures)) )
  2913. {
  2914. return false;
  2915. }
  2916. if (vstd::contains(S2.stacks,p2)) //dest. slot not free - it must be "rebalancing"...
  2917. {
  2918. int total = s1->getStackCount(p1) + s2->getStackCount(p2);
  2919. if ((total < val && complain("Cannot split that stack, not enough creatures!"))
  2920. || (s1->getCreature(p1) != s2->getCreature(p2) && complain("Cannot rebalance different creatures stacks!"))
  2921. )
  2922. {
  2923. return false;
  2924. }
  2925. if (notRemovable(sl1.army))
  2926. {
  2927. if (s1->getStackCount(p1) > countLeftOnSrc)
  2928. return false;
  2929. }
  2930. else if (notRemovable(sl2.army))
  2931. {
  2932. if (s2->getStackCount(p1) < countLeftOnSrc)
  2933. return false;
  2934. }
  2935. moveStack(sl1, sl2, countToMove);
  2936. //S2.slots[p2]->count = val;
  2937. //S1.slots[p1]->count = total - val;
  2938. }
  2939. else //split one stack to the two
  2940. {
  2941. if (s1->getStackCount(p1) < val)//not enough creatures
  2942. {
  2943. complain(complainNotEnoughCreatures);
  2944. return false;
  2945. }
  2946. if (notRemovable(sl1.army))
  2947. return false;
  2948. moveStack(sl1, sl2, val);
  2949. }
  2950. }
  2951. return true;
  2952. }
  2953. bool CGameHandler::hasPlayerAt(PlayerColor player, std::shared_ptr<CConnection> c) const
  2954. {
  2955. return connections.at(player).count(c);
  2956. }
  2957. PlayerColor CGameHandler::getPlayerAt(std::shared_ptr<CConnection> c) const
  2958. {
  2959. std::set<PlayerColor> all;
  2960. for (auto i=connections.cbegin(); i!=connections.cend(); i++)
  2961. if(vstd::contains(i->second, c))
  2962. all.insert(i->first);
  2963. switch(all.size())
  2964. {
  2965. case 0:
  2966. return PlayerColor::NEUTRAL;
  2967. case 1:
  2968. return *all.begin();
  2969. default:
  2970. {
  2971. //if we have more than one player at this connection, try to pick active one
  2972. if (vstd::contains(all, gs->currentPlayer))
  2973. return gs->currentPlayer;
  2974. else
  2975. return PlayerColor::CANNOT_DETERMINE; //cannot say which player is it
  2976. }
  2977. }
  2978. }
  2979. bool CGameHandler::disbandCreature(ObjectInstanceID id, SlotID pos)
  2980. {
  2981. const CArmedInstance * s1 = static_cast<const CArmedInstance *>(getObjInstance(id));
  2982. if (!vstd::contains(s1->stacks,pos))
  2983. {
  2984. complain("Illegal call to disbandCreature - no such stack in army!");
  2985. return false;
  2986. }
  2987. eraseStack(StackLocation(s1, pos));
  2988. return true;
  2989. }
  2990. bool CGameHandler::buildStructure(ObjectInstanceID tid, BuildingID requestedID, bool force)
  2991. {
  2992. const CGTownInstance * t = getTown(tid);
  2993. if(!t)
  2994. COMPLAIN_RETF("No such town (ID=%s)!", tid);
  2995. if(!t->town->buildings.count(requestedID))
  2996. COMPLAIN_RETF("Town of faction %s does not have info about building ID=%s!", t->town->faction->getNameTranslated() % requestedID);
  2997. if(t->hasBuilt(requestedID))
  2998. COMPLAIN_RETF("Building %s is already built in %s", t->town->buildings.at(requestedID)->getNameTranslated() % t->getNameTranslated());
  2999. const CBuilding * requestedBuilding = t->town->buildings.at(requestedID);
  3000. //Vector with future list of built building and buildings in auto-mode that are not yet built.
  3001. std::vector<const CBuilding*> remainingAutoBuildings;
  3002. std::set<BuildingID> buildingsThatWillBe;
  3003. //Check validity of request
  3004. if(!force)
  3005. {
  3006. switch(requestedBuilding->mode)
  3007. {
  3008. case CBuilding::BUILD_NORMAL :
  3009. if (canBuildStructure(t, requestedID) != EBuildingState::ALLOWED)
  3010. COMPLAIN_RET("Cannot build that building!");
  3011. break;
  3012. case CBuilding::BUILD_AUTO :
  3013. case CBuilding::BUILD_SPECIAL:
  3014. COMPLAIN_RET("This building can not be constructed normally!");
  3015. case CBuilding::BUILD_GRAIL :
  3016. if(requestedBuilding->mode == CBuilding::BUILD_GRAIL) //needs grail
  3017. {
  3018. if(!t->visitingHero || !t->visitingHero->hasArt(ArtifactID::GRAIL))
  3019. COMPLAIN_RET("Cannot build this without grail!")
  3020. else
  3021. removeArtifact(ArtifactLocation(t->visitingHero, t->visitingHero->getArtPos(ArtifactID::GRAIL, false)));
  3022. }
  3023. break;
  3024. }
  3025. }
  3026. //Performs stuff that has to be done before new building is built
  3027. auto processBeforeBuiltStructure = [t, this](const BuildingID buildingID)
  3028. {
  3029. if(buildingID >= BuildingID::DWELL_FIRST) //dwelling
  3030. {
  3031. int level = (buildingID - BuildingID::DWELL_FIRST) % GameConstants::CREATURES_PER_TOWN;
  3032. int upgradeNumber = (buildingID - BuildingID::DWELL_FIRST) / GameConstants::CREATURES_PER_TOWN;
  3033. if(upgradeNumber >= t->town->creatures.at(level).size())
  3034. {
  3035. complain(boost::str(boost::format("Error ecountered when building dwelling (bid=%s):"
  3036. "no creature found (upgrade number %d, level %d!")
  3037. % buildingID % upgradeNumber % level));
  3038. return;
  3039. }
  3040. CCreature * crea = VLC->creh->objects.at(t->town->creatures.at(level).at(upgradeNumber));
  3041. SetAvailableCreatures ssi;
  3042. ssi.tid = t->id;
  3043. ssi.creatures = t->creatures;
  3044. if (ssi.creatures[level].second.empty()) // first creature in a dwelling
  3045. ssi.creatures[level].first = crea->getGrowth();
  3046. ssi.creatures[level].second.push_back(crea->getId());
  3047. sendAndApply(&ssi);
  3048. }
  3049. if(t->town->buildings.at(buildingID)->subId == BuildingSubID::PORTAL_OF_SUMMONING)
  3050. {
  3051. setPortalDwelling(t);
  3052. }
  3053. };
  3054. //Performs stuff that has to be done after new building is built
  3055. auto processAfterBuiltStructure = [t, this](const BuildingID buildingID)
  3056. {
  3057. auto isMageGuild = (buildingID <= BuildingID::MAGES_GUILD_5 && buildingID >= BuildingID::MAGES_GUILD_1);
  3058. auto isLibrary = isMageGuild ? false
  3059. : t->town->buildings.at(buildingID)->subId == BuildingSubID::EBuildingSubID::LIBRARY;
  3060. if(isMageGuild || isLibrary || (t->subID == ETownType::CONFLUX && buildingID == BuildingID::GRAIL))
  3061. {
  3062. if(t->visitingHero)
  3063. giveSpells(t,t->visitingHero);
  3064. if(t->garrisonHero)
  3065. giveSpells(t,t->garrisonHero);
  3066. }
  3067. };
  3068. //Checks if all requirements will be met with expected building list "buildingsThatWillBe"
  3069. auto areRequirementsFullfilled = [&](const BuildingID & buildID)
  3070. {
  3071. return buildingsThatWillBe.count(buildID);
  3072. };
  3073. //Init the vectors
  3074. for(auto & build : t->town->buildings)
  3075. {
  3076. if(t->hasBuilt(build.first))
  3077. {
  3078. buildingsThatWillBe.insert(build.first);
  3079. }
  3080. else
  3081. {
  3082. if(build.second->mode == CBuilding::BUILD_AUTO) //not built auto building
  3083. remainingAutoBuildings.push_back(build.second);
  3084. }
  3085. }
  3086. //Prepare structure (list of building ids will be filled later)
  3087. NewStructures ns;
  3088. ns.tid = tid;
  3089. ns.builded = force ? t->builded : (t->builded+1);
  3090. std::queue<const CBuilding*> buildingsToAdd;
  3091. buildingsToAdd.push(requestedBuilding);
  3092. while(!buildingsToAdd.empty())
  3093. {
  3094. auto b = buildingsToAdd.front();
  3095. buildingsToAdd.pop();
  3096. ns.bid.insert(b->bid);
  3097. buildingsThatWillBe.insert(b->bid);
  3098. remainingAutoBuildings -= b;
  3099. for(auto autoBuilding : remainingAutoBuildings)
  3100. {
  3101. auto actualRequirements = t->genBuildingRequirements(autoBuilding->bid);
  3102. if(actualRequirements.test(areRequirementsFullfilled))
  3103. buildingsToAdd.push(autoBuilding);
  3104. }
  3105. }
  3106. // 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.
  3107. for(auto builtID : ns.bid)
  3108. processBeforeBuiltStructure(builtID);
  3109. //Take cost
  3110. if(!force)
  3111. giveResources(t->tempOwner, -requestedBuilding->resources);
  3112. //We know what has been built, apply changes. Do this as final step to properly update town window
  3113. sendAndApply(&ns);
  3114. //Other post-built events. To some logic like giving spells to work gamestate changes for new building must be already in place!
  3115. for(auto builtID : ns.bid)
  3116. processAfterBuiltStructure(builtID);
  3117. // now when everything is built - reveal tiles for lookout tower
  3118. FoWChange fw;
  3119. fw.player = t->tempOwner;
  3120. fw.mode = 1;
  3121. getTilesInRange(fw.tiles, t->getSightCenter(), t->getSightRadius(), t->tempOwner, 1);
  3122. sendAndApply(&fw);
  3123. if(t->visitingHero)
  3124. objectVisited(t, t->visitingHero);
  3125. if(t->garrisonHero)
  3126. visitCastleObjects(t, t->garrisonHero);
  3127. checkVictoryLossConditionsForPlayer(t->tempOwner);
  3128. return true;
  3129. }
  3130. bool CGameHandler::razeStructure (ObjectInstanceID tid, BuildingID bid)
  3131. {
  3132. ///incomplete, simply erases target building
  3133. const CGTownInstance * t = getTown(tid);
  3134. if (!vstd::contains(t->builtBuildings, bid))
  3135. return false;
  3136. RazeStructures rs;
  3137. rs.tid = tid;
  3138. rs.bid.insert(bid);
  3139. rs.destroyed = t->destroyed + 1;
  3140. sendAndApply(&rs);
  3141. //TODO: Remove dwellers
  3142. // if (t->subID == 4 && bid == 17) //Veil of Darkness
  3143. // {
  3144. // RemoveBonus rb(RemoveBonus::TOWN);
  3145. // rb.whoID = t->id;
  3146. // rb.source = BonusSource::TOWN_STRUCTURE;
  3147. // rb.id = 17;
  3148. // sendAndApply(&rb);
  3149. // }
  3150. return true;
  3151. }
  3152. void CGameHandler::sendMessageToAll(const std::string &message)
  3153. {
  3154. SystemMessage sm;
  3155. sm.text = message;
  3156. sendToAllClients(&sm);
  3157. }
  3158. bool CGameHandler::recruitCreatures(ObjectInstanceID objid, ObjectInstanceID dstid, CreatureID crid, ui32 cram, si32 fromLvl)
  3159. {
  3160. const CGDwelling * dw = static_cast<const CGDwelling *>(getObj(objid));
  3161. const CArmedInstance *dst = nullptr;
  3162. const CCreature *c = VLC->creh->objects.at(crid);
  3163. const bool warMachine = c->warMachine != ArtifactID::NONE;
  3164. //TODO: test for owning
  3165. //TODO: check if dst can recruit objects (e.g. hero is actually visiting object, town and source are same, etc)
  3166. dst = dynamic_cast<const CArmedInstance*>(getObj(dstid));
  3167. assert(dw && dst);
  3168. //verify
  3169. bool found = false;
  3170. int level = 0;
  3171. for (; level < dw->creatures.size(); level++) //iterate through all levels
  3172. {
  3173. if ((fromLvl != -1) && (level !=fromLvl))
  3174. continue;
  3175. const auto &cur = dw->creatures.at(level); //current level info <amount, list of cr. ids>
  3176. int i = 0;
  3177. for (; i < cur.second.size(); i++) //look for crid among available creatures list on current level
  3178. if (cur.second.at(i) == crid)
  3179. break;
  3180. if (i < cur.second.size())
  3181. {
  3182. found = true;
  3183. cram = std::min(cram, cur.first); //reduce recruited amount up to available amount
  3184. break;
  3185. }
  3186. }
  3187. SlotID slot = dst->getSlotFor(crid);
  3188. if ((!found && complain("Cannot recruit: no such creatures!"))
  3189. || ((si32)cram > VLC->creh->objects.at(crid)->maxAmount(getPlayerState(dst->tempOwner)->resources) && complain("Cannot recruit: lack of resources!"))
  3190. || (cram<=0 && complain("Cannot recruit: cram <= 0!"))
  3191. || (!slot.validSlot() && !warMachine && complain("Cannot recruit: no available slot!")))
  3192. {
  3193. return false;
  3194. }
  3195. //recruit
  3196. giveResources(dst->tempOwner, -(c->getFullRecruitCost() * cram));
  3197. SetAvailableCreatures sac;
  3198. sac.tid = objid;
  3199. sac.creatures = dw->creatures;
  3200. sac.creatures[level].first -= cram;
  3201. sendAndApply(&sac);
  3202. if (warMachine)
  3203. {
  3204. const CGHeroInstance *h = dynamic_cast<const CGHeroInstance*>(dst);
  3205. COMPLAIN_RET_FALSE_IF(!h, "Only hero can buy war machines");
  3206. ArtifactID artId = c->warMachine;
  3207. COMPLAIN_RET_FALSE_IF(artId == ArtifactID::CATAPULT, "Catapult cannot be recruited!");
  3208. const CArtifact * art = artId.toArtifact();
  3209. COMPLAIN_RET_FALSE_IF(nullptr == art, "Invalid war machine artifact");
  3210. return giveHeroNewArtifact(h, art);
  3211. }
  3212. else
  3213. {
  3214. addToSlot(StackLocation(dst, slot), c, cram);
  3215. }
  3216. return true;
  3217. }
  3218. bool CGameHandler::upgradeCreature(ObjectInstanceID objid, SlotID pos, CreatureID upgID)
  3219. {
  3220. const CArmedInstance * obj = static_cast<const CArmedInstance *>(getObjInstance(objid));
  3221. if (!obj->hasStackAtSlot(pos))
  3222. {
  3223. COMPLAIN_RET("Cannot upgrade, no stack at slot " + boost::to_string(pos));
  3224. }
  3225. UpgradeInfo ui;
  3226. fillUpgradeInfo(obj, pos, ui);
  3227. PlayerColor player = obj->tempOwner;
  3228. const PlayerState *p = getPlayerState(player);
  3229. int crQuantity = obj->stacks.at(pos)->count;
  3230. int newIDpos= vstd::find_pos(ui.newID, upgID);//get position of new id in UpgradeInfo
  3231. //check if upgrade is possible
  3232. if ((ui.oldID<0 || newIDpos == -1) && complain("That upgrade is not possible!"))
  3233. {
  3234. return false;
  3235. }
  3236. TResources totalCost = ui.cost.at(newIDpos) * crQuantity;
  3237. //check if player has enough resources
  3238. if (!p->resources.canAfford(totalCost))
  3239. COMPLAIN_RET("Cannot upgrade, not enough resources!");
  3240. //take resources
  3241. giveResources(player, -totalCost);
  3242. //upgrade creature
  3243. changeStackType(StackLocation(obj, pos), VLC->creh->objects.at(upgID));
  3244. return true;
  3245. }
  3246. bool CGameHandler::changeStackType(const StackLocation &sl, const CCreature *c)
  3247. {
  3248. if (!sl.army->hasStackAtSlot(sl.slot))
  3249. COMPLAIN_RET("Cannot find a stack to change type");
  3250. SetStackType sst;
  3251. sst.army = sl.army->id;
  3252. sst.slot = sl.slot;
  3253. sst.type = c->getId();
  3254. sendAndApply(&sst);
  3255. return true;
  3256. }
  3257. void CGameHandler::moveArmy(const CArmedInstance *src, const CArmedInstance *dst, bool allowMerging)
  3258. {
  3259. assert(src->canBeMergedWith(*dst, allowMerging));
  3260. while(src->stacksCount())//while there are unmoved creatures
  3261. {
  3262. auto i = src->Slots().begin(); //iterator to stack to move
  3263. StackLocation sl(src, i->first); //location of stack to move
  3264. SlotID pos = dst->getSlotFor(i->second->type);
  3265. if (!pos.validSlot())
  3266. {
  3267. //try to merge two other stacks to make place
  3268. std::pair<SlotID, SlotID> toMerge;
  3269. if (dst->mergableStacks(toMerge, i->first) && allowMerging)
  3270. {
  3271. moveStack(StackLocation(dst, toMerge.first), StackLocation(dst, toMerge.second)); //merge toMerge.first into toMerge.second
  3272. assert(!dst->hasStackAtSlot(toMerge.first)); //we have now a new free slot
  3273. moveStack(sl, StackLocation(dst, toMerge.first)); //move stack to freed slot
  3274. }
  3275. else
  3276. {
  3277. complain("Unexpected failure during an attempt to move army from " + src->nodeName() + " to " + dst->nodeName() + "!");
  3278. return;
  3279. }
  3280. }
  3281. else
  3282. {
  3283. moveStack(sl, StackLocation(dst, pos));
  3284. }
  3285. }
  3286. }
  3287. bool CGameHandler::swapGarrisonOnSiege(ObjectInstanceID tid)
  3288. {
  3289. const CGTownInstance * town = getTown(tid);
  3290. if(!town->garrisonHero == !town->visitingHero)
  3291. return false;
  3292. SetHeroesInTown intown;
  3293. intown.tid = tid;
  3294. if(town->garrisonHero) //garrison -> vising
  3295. {
  3296. intown.garrison = ObjectInstanceID();
  3297. intown.visiting = town->garrisonHero->id;
  3298. }
  3299. else //visiting -> garrison
  3300. {
  3301. if(town->armedGarrison())
  3302. town->mergeGarrisonOnSiege();
  3303. intown.visiting = ObjectInstanceID();
  3304. intown.garrison = town->visitingHero->id;
  3305. }
  3306. sendAndApply(&intown);
  3307. return true;
  3308. }
  3309. bool CGameHandler::garrisonSwap(ObjectInstanceID tid)
  3310. {
  3311. const CGTownInstance * town = getTown(tid);
  3312. if (!town->garrisonHero && town->visitingHero) //visiting => garrison, merge armies: town army => hero army
  3313. {
  3314. if (!town->visitingHero->canBeMergedWith(*town))
  3315. {
  3316. complain("Cannot make garrison swap, not enough free slots!");
  3317. return false;
  3318. }
  3319. moveArmy(town, town->visitingHero, true);
  3320. SetHeroesInTown intown;
  3321. intown.tid = tid;
  3322. intown.visiting = ObjectInstanceID();
  3323. intown.garrison = town->visitingHero->id;
  3324. sendAndApply(&intown);
  3325. return true;
  3326. }
  3327. else if (town->garrisonHero && !town->visitingHero) //move hero out of the garrison
  3328. {
  3329. //check if moving hero out of town will break 8 wandering heroes limit
  3330. if (getHeroCount(town->garrisonHero->tempOwner,false) >= 8)
  3331. {
  3332. complain("Cannot move hero out of the garrison, there are already 8 wandering heroes!");
  3333. return false;
  3334. }
  3335. SetHeroesInTown intown;
  3336. intown.tid = tid;
  3337. intown.garrison = ObjectInstanceID();
  3338. intown.visiting = town->garrisonHero->id;
  3339. sendAndApply(&intown);
  3340. return true;
  3341. }
  3342. else if (!!town->garrisonHero && town->visitingHero) //swap visiting and garrison hero
  3343. {
  3344. SetHeroesInTown intown;
  3345. intown.tid = tid;
  3346. intown.garrison = town->visitingHero->id;
  3347. intown.visiting = town->garrisonHero->id;
  3348. sendAndApply(&intown);
  3349. return true;
  3350. }
  3351. else
  3352. {
  3353. complain("Cannot swap garrison hero!");
  3354. return false;
  3355. }
  3356. }
  3357. // With the amount of changes done to the function, it's more like transferArtifacts.
  3358. // 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.
  3359. bool CGameHandler::moveArtifact(const ArtifactLocation &al1, const ArtifactLocation &al2)
  3360. {
  3361. ArtifactLocation src = al1, dst = al2;
  3362. const PlayerColor srcPlayer = src.owningPlayer(), dstPlayer = dst.owningPlayer();
  3363. const CArmedInstance *srcObj = src.relatedObj(), *dstObj = dst.relatedObj();
  3364. // Make sure exchange is even possible between the two heroes.
  3365. if(!isAllowedExchange(srcObj->id, dstObj->id))
  3366. COMPLAIN_RET("That heroes cannot make any exchange!");
  3367. const CArtifactInstance *srcArtifact = src.getArt();
  3368. const CArtifactInstance *destArtifact = dst.getArt();
  3369. const bool isDstSlotBackpack = ArtifactUtils::isSlotBackpack(dst.slot);
  3370. if(srcArtifact == nullptr)
  3371. COMPLAIN_RET("No artifact to move!");
  3372. if(destArtifact && srcPlayer != dstPlayer && !isDstSlotBackpack)
  3373. COMPLAIN_RET("Can't touch artifact on hero of another player!");
  3374. // Check if src/dest slots are appropriate for the artifacts exchanged.
  3375. // Moving to the backpack is always allowed.
  3376. if((!srcArtifact || !isDstSlotBackpack)
  3377. && srcArtifact && !srcArtifact->canBePutAt(dst, true))
  3378. COMPLAIN_RET("Cannot move artifact!");
  3379. auto srcSlot = src.getSlot();
  3380. auto dstSlot = dst.getSlot();
  3381. if((srcSlot && srcSlot->locked) || (dstSlot && dstSlot->locked))
  3382. COMPLAIN_RET("Cannot move artifact locks.");
  3383. if(isDstSlotBackpack && srcArtifact->artType->isBig())
  3384. COMPLAIN_RET("Cannot put big artifacts in backpack!");
  3385. if(src.slot == ArtifactPosition::MACH4 || dst.slot == ArtifactPosition::MACH4)
  3386. COMPLAIN_RET("Cannot move catapult!");
  3387. if(isDstSlotBackpack)
  3388. {
  3389. if(!ArtifactUtils::isBackpackFreeSlots(dst.getHolderArtSet()))
  3390. COMPLAIN_RET("Backpack is full!");
  3391. vstd::amin(dst.slot, GameConstants::BACKPACK_START + dst.getHolderArtSet()->artifactsInBackpack.size());
  3392. }
  3393. if(!(src.slot == ArtifactPosition::TRANSITION_POS && dst.slot == ArtifactPosition::TRANSITION_POS))
  3394. {
  3395. if(src.slot == dst.slot && src.artHolder == dst.artHolder)
  3396. COMPLAIN_RET("Won't move artifact: Dest same as source!");
  3397. // Check if dst slot is occupied
  3398. if(!isDstSlotBackpack && destArtifact)
  3399. {
  3400. // Previous artifact must be removed first
  3401. moveArtifact(dst, ArtifactLocation(dst.artHolder, ArtifactPosition::TRANSITION_POS));
  3402. }
  3403. try
  3404. {
  3405. auto hero = std::get<ConstTransitivePtr<CGHeroInstance>>(dst.artHolder);
  3406. if(ArtifactUtils::checkSpellbookIsNeeded(hero, srcArtifact->artType->getId(), dst.slot))
  3407. giveHeroNewArtifact(hero, VLC->arth->objects[ArtifactID::SPELLBOOK], ArtifactPosition::SPELLBOOK);
  3408. }
  3409. catch(const std::bad_variant_access &)
  3410. {
  3411. // object other than hero received an art - ignore
  3412. }
  3413. MoveArtifact ma(&src, &dst);
  3414. if(dst.slot == ArtifactPosition::TRANSITION_POS)
  3415. ma.askAssemble = false;
  3416. sendAndApply(&ma);
  3417. }
  3418. return true;
  3419. }
  3420. bool CGameHandler::bulkMoveArtifacts(ObjectInstanceID srcHero, ObjectInstanceID dstHero, bool swap)
  3421. {
  3422. // Make sure exchange is even possible between the two heroes.
  3423. if(!isAllowedExchange(srcHero, dstHero))
  3424. COMPLAIN_RET("That heroes cannot make any exchange!");
  3425. auto psrcHero = getHero(srcHero);
  3426. auto pdstHero = getHero(dstHero);
  3427. if((!psrcHero) || (!pdstHero))
  3428. COMPLAIN_RET("bulkMoveArtifacts: wrong hero's ID");
  3429. BulkMoveArtifacts ma(static_cast<ConstTransitivePtr<CGHeroInstance>>(psrcHero),
  3430. static_cast<ConstTransitivePtr<CGHeroInstance>>(pdstHero), swap);
  3431. auto & slotsSrcDst = ma.artsPack0;
  3432. auto & slotsDstSrc = ma.artsPack1;
  3433. // Temporary fitting set for artifacts. Used to select available slots before sending data.
  3434. CArtifactFittingSet artFittingSet(pdstHero->bearerType());
  3435. auto moveArtifact = [this, &artFittingSet](const CArtifactInstance * artifact,
  3436. ArtifactPosition srcSlot, const CGHeroInstance * dstHero,
  3437. std::vector<BulkMoveArtifacts::LinkedSlots> & slots) -> void
  3438. {
  3439. assert(artifact);
  3440. auto dstSlot = ArtifactUtils::getArtAnyPosition(&artFittingSet, artifact->getTypeId());
  3441. if(dstSlot != ArtifactPosition::PRE_FIRST)
  3442. {
  3443. artFittingSet.putArtifact(dstSlot, static_cast<ConstTransitivePtr<CArtifactInstance>>(artifact));
  3444. slots.push_back(BulkMoveArtifacts::LinkedSlots(srcSlot, dstSlot));
  3445. if(ArtifactUtils::checkSpellbookIsNeeded(dstHero, artifact->getTypeId(), dstSlot))
  3446. giveHeroNewArtifact(dstHero, VLC->arth->objects[ArtifactID::SPELLBOOK], ArtifactPosition::SPELLBOOK);
  3447. }
  3448. };
  3449. if(swap)
  3450. {
  3451. auto moveArtsWorn = [moveArtifact](const CGHeroInstance * srcHero, const CGHeroInstance * dstHero,
  3452. std::vector<BulkMoveArtifacts::LinkedSlots> & slots) -> void
  3453. {
  3454. for(auto & artifact : srcHero->artifactsWorn)
  3455. {
  3456. if(ArtifactUtils::isArtRemovable(artifact))
  3457. moveArtifact(artifact.second.getArt(), artifact.first, dstHero, slots);
  3458. }
  3459. };
  3460. auto moveArtsInBackpack = [](const CArtifactSet * artSet,
  3461. std::vector<BulkMoveArtifacts::LinkedSlots> & slots) -> void
  3462. {
  3463. for(auto & slotInfo : artSet->artifactsInBackpack)
  3464. {
  3465. auto slot = artSet->getArtPos(slotInfo.artifact);
  3466. slots.push_back(BulkMoveArtifacts::LinkedSlots(slot, slot));
  3467. }
  3468. };
  3469. // Move over artifacts that are worn srcHero -> dstHero
  3470. moveArtsWorn(psrcHero, pdstHero, slotsSrcDst);
  3471. artFittingSet.artifactsWorn.clear();
  3472. // Move over artifacts that are worn dstHero -> srcHero
  3473. moveArtsWorn(pdstHero, psrcHero, slotsDstSrc);
  3474. // Move over artifacts that are in backpack srcHero -> dstHero
  3475. moveArtsInBackpack(psrcHero, slotsSrcDst);
  3476. // Move over artifacts that are in backpack dstHero -> srcHero
  3477. moveArtsInBackpack(pdstHero, slotsDstSrc);
  3478. }
  3479. else
  3480. {
  3481. artFittingSet.artifactsInBackpack = pdstHero->artifactsInBackpack;
  3482. artFittingSet.artifactsWorn = pdstHero->artifactsWorn;
  3483. // Move over artifacts that are worn
  3484. for(auto & artInfo : psrcHero->artifactsWorn)
  3485. {
  3486. if(ArtifactUtils::isArtRemovable(artInfo))
  3487. {
  3488. moveArtifact(psrcHero->getArt(artInfo.first), artInfo.first, pdstHero, slotsSrcDst);
  3489. }
  3490. }
  3491. // Move over artifacts that are in backpack
  3492. for(auto & slotInfo : psrcHero->artifactsInBackpack)
  3493. {
  3494. moveArtifact(psrcHero->getArt(psrcHero->getArtPos(slotInfo.artifact)),
  3495. psrcHero->getArtPos(slotInfo.artifact), pdstHero, slotsSrcDst);
  3496. }
  3497. }
  3498. sendAndApply(&ma);
  3499. return true;
  3500. }
  3501. /**
  3502. * Assembles or disassembles a combination artifact.
  3503. * @param heroID ID of hero holding the artifact(s).
  3504. * @param artifactSlot The worn slot ID of the combination- or constituent artifact.
  3505. * @param assemble True for assembly operation, false for disassembly.
  3506. * @param assembleTo If assemble is true, this represents the artifact ID of the combination
  3507. * artifact to assemble to. Otherwise it's not used.
  3508. */
  3509. bool CGameHandler::assembleArtifacts (ObjectInstanceID heroID, ArtifactPosition artifactSlot, bool assemble, ArtifactID assembleTo)
  3510. {
  3511. const CGHeroInstance * hero = getHero(heroID);
  3512. const CArtifactInstance * destArtifact = hero->getArt(artifactSlot);
  3513. if(!destArtifact)
  3514. COMPLAIN_RET("assembleArtifacts: there is no such artifact instance!");
  3515. if(assemble)
  3516. {
  3517. CArtifact * combinedArt = VLC->arth->objects[assembleTo];
  3518. if(!combinedArt->constituents)
  3519. COMPLAIN_RET("assembleArtifacts: Artifact being attempted to assemble is not a combined artifacts!");
  3520. if (!vstd::contains(ArtifactUtils::assemblyPossibilities(hero, destArtifact->getTypeId(),
  3521. ArtifactUtils::isSlotEquipment(artifactSlot)), combinedArt))
  3522. {
  3523. COMPLAIN_RET("assembleArtifacts: It's impossible to assemble requested artifact!");
  3524. }
  3525. if(ArtifactUtils::checkSpellbookIsNeeded(hero, assembleTo, artifactSlot))
  3526. giveHeroNewArtifact(hero, VLC->arth->objects[ArtifactID::SPELLBOOK], ArtifactPosition::SPELLBOOK);
  3527. AssembledArtifact aa;
  3528. aa.al = ArtifactLocation(hero, artifactSlot);
  3529. aa.builtArt = combinedArt;
  3530. sendAndApply(&aa);
  3531. }
  3532. else
  3533. {
  3534. if(!destArtifact->canBeDisassembled())
  3535. COMPLAIN_RET("assembleArtifacts: Artifact being attempted to disassemble is not a combined artifact!");
  3536. if(ArtifactUtils::isSlotBackpack(artifactSlot)
  3537. && !ArtifactUtils::isBackpackFreeSlots(hero, destArtifact->artType->constituents->size() - 1))
  3538. COMPLAIN_RET("assembleArtifacts: Artifact being attempted to disassemble but backpack is full!");
  3539. DisassembledArtifact da;
  3540. da.al = ArtifactLocation(hero, artifactSlot);
  3541. sendAndApply(&da);
  3542. }
  3543. return true;
  3544. }
  3545. bool CGameHandler::eraseArtifactByClient(const ArtifactLocation & al)
  3546. {
  3547. const auto * hero = getHero(al.relatedObj()->id);
  3548. if(hero == nullptr)
  3549. COMPLAIN_RET("eraseArtifactByClient: wrong hero's ID");
  3550. const auto * art = al.getArt();
  3551. if(art == nullptr)
  3552. COMPLAIN_RET("Cannot remove artifact!");
  3553. if(al.getArt()->artType->canBePutAt(hero) || al.slot != ArtifactPosition::TRANSITION_POS)
  3554. COMPLAIN_RET("Illegal artifact removal request");
  3555. removeArtifact(al);
  3556. return true;
  3557. }
  3558. bool CGameHandler::buyArtifact(ObjectInstanceID hid, ArtifactID aid)
  3559. {
  3560. const CGHeroInstance * hero = getHero(hid);
  3561. COMPLAIN_RET_FALSE_IF(nullptr == hero, "Invalid hero index");
  3562. const CGTownInstance * town = hero->visitedTown;
  3563. COMPLAIN_RET_FALSE_IF(nullptr == town, "Hero not in town");
  3564. if (aid==ArtifactID::SPELLBOOK)
  3565. {
  3566. if ((!town->hasBuilt(BuildingID::MAGES_GUILD_1) && complain("Cannot buy a spellbook, no mage guild in the town!"))
  3567. || (getResource(hero->getOwner(), EGameResID::GOLD) < GameConstants::SPELLBOOK_GOLD_COST && complain("Cannot buy a spellbook, not enough gold!"))
  3568. || (hero->getArt(ArtifactPosition::SPELLBOOK) && complain("Cannot buy a spellbook, hero already has a one!"))
  3569. )
  3570. return false;
  3571. giveResource(hero->getOwner(),EGameResID::GOLD,-GameConstants::SPELLBOOK_GOLD_COST);
  3572. giveHeroNewArtifact(hero, VLC->arth->objects[ArtifactID::SPELLBOOK], ArtifactPosition::SPELLBOOK);
  3573. assert(hero->getArt(ArtifactPosition::SPELLBOOK));
  3574. giveSpells(town,hero);
  3575. return true;
  3576. }
  3577. else
  3578. {
  3579. const CArtifact * art = aid.toArtifact();
  3580. COMPLAIN_RET_FALSE_IF(nullptr == art, "Invalid artifact index to buy");
  3581. COMPLAIN_RET_FALSE_IF(art->warMachine == CreatureID::NONE, "War machine artifact required");
  3582. COMPLAIN_RET_FALSE_IF(hero->hasArt(aid),"Hero already has this machine!");
  3583. const int price = art->price;
  3584. COMPLAIN_RET_FALSE_IF(getPlayerState(hero->getOwner())->resources[EGameResID::GOLD] < price, "Not enough gold!");
  3585. if ((town->hasBuilt(BuildingID::BLACKSMITH) && town->town->warMachine == aid)
  3586. || (town->hasBuilt(BuildingSubID::BALLISTA_YARD) && aid == ArtifactID::BALLISTA))
  3587. {
  3588. giveResource(hero->getOwner(),EGameResID::GOLD,-price);
  3589. return giveHeroNewArtifact(hero, art);
  3590. }
  3591. else
  3592. COMPLAIN_RET("This machine is unavailable here!");
  3593. }
  3594. }
  3595. bool CGameHandler::buyArtifact(const IMarket *m, const CGHeroInstance *h, GameResID rid, ArtifactID aid)
  3596. {
  3597. if(!h)
  3598. COMPLAIN_RET("Only hero can buy artifacts!");
  3599. if (!vstd::contains(m->availableItemsIds(EMarketMode::RESOURCE_ARTIFACT), aid))
  3600. COMPLAIN_RET("That artifact is unavailable!");
  3601. int b1, b2;
  3602. m->getOffer(rid, aid, b1, b2, EMarketMode::RESOURCE_ARTIFACT);
  3603. if (getResource(h->tempOwner, rid) < b1)
  3604. COMPLAIN_RET("You can't afford to buy this artifact!");
  3605. giveResource(h->tempOwner, rid, -b1);
  3606. SetAvailableArtifacts saa;
  3607. if(dynamic_cast<const CGTownInstance *>(m))
  3608. {
  3609. saa.id = -1;
  3610. saa.arts = CGTownInstance::merchantArtifacts;
  3611. }
  3612. else if(const CGBlackMarket *bm = dynamic_cast<const CGBlackMarket *>(m)) //black market
  3613. {
  3614. saa.id = bm->id.getNum();
  3615. saa.arts = bm->artifacts;
  3616. }
  3617. else
  3618. COMPLAIN_RET("Wrong marktet...");
  3619. bool found = false;
  3620. for (const CArtifact *&art : saa.arts)
  3621. {
  3622. if (art && art->getId() == aid)
  3623. {
  3624. art = nullptr;
  3625. found = true;
  3626. break;
  3627. }
  3628. }
  3629. if (!found)
  3630. COMPLAIN_RET("Cannot find selected artifact on the list");
  3631. sendAndApply(&saa);
  3632. giveHeroNewArtifact(h, VLC->arth->objects[aid], ArtifactPosition::FIRST_AVAILABLE);
  3633. return true;
  3634. }
  3635. bool CGameHandler::sellArtifact(const IMarket *m, const CGHeroInstance *h, ArtifactInstanceID aid, GameResID rid)
  3636. {
  3637. COMPLAIN_RET_FALSE_IF((!h), "Only hero can sell artifacts!");
  3638. const CArtifactInstance *art = h->getArtByInstanceId(aid);
  3639. COMPLAIN_RET_FALSE_IF((!art), "There is no artifact to sell!");
  3640. COMPLAIN_RET_FALSE_IF((!art->artType->isTradable()), "Cannot sell a war machine or spellbook!");
  3641. int resVal = 0, dump = 1;
  3642. m->getOffer(art->artType->getId(), rid, dump, resVal, EMarketMode::ARTIFACT_RESOURCE);
  3643. removeArtifact(ArtifactLocation(h, h->getArtPos(art)));
  3644. giveResource(h->tempOwner, rid, resVal);
  3645. return true;
  3646. }
  3647. bool CGameHandler::buySecSkill(const IMarket *m, const CGHeroInstance *h, SecondarySkill skill)
  3648. {
  3649. if (!h)
  3650. COMPLAIN_RET("You need hero to buy a skill!");
  3651. if (h->getSecSkillLevel(SecondarySkill(skill)))
  3652. COMPLAIN_RET("Hero already know this skill");
  3653. if (!h->canLearnSkill())
  3654. COMPLAIN_RET("Hero can't learn any more skills");
  3655. if (!h->canLearnSkill(skill))
  3656. COMPLAIN_RET("The hero can't learn this skill!");
  3657. if (!vstd::contains(m->availableItemsIds(EMarketMode::RESOURCE_SKILL), skill))
  3658. COMPLAIN_RET("That skill is unavailable!");
  3659. if (getResource(h->tempOwner, EGameResID::GOLD) < GameConstants::SKILL_GOLD_COST)//TODO: remove hardcoded resource\summ?
  3660. COMPLAIN_RET("You can't afford to buy this skill");
  3661. giveResource(h->tempOwner, EGameResID::GOLD, -GameConstants::SKILL_GOLD_COST);
  3662. changeSecSkill(h, skill, 1, true);
  3663. return true;
  3664. }
  3665. bool CGameHandler::tradeResources(const IMarket *market, ui32 val, PlayerColor player, ui32 id1, ui32 id2)
  3666. {
  3667. TResourceCap r1 = getPlayerState(player)->resources[id1];
  3668. vstd::amin(val, r1); //can't trade more resources than have
  3669. int b1, b2; //base quantities for trade
  3670. market->getOffer(id1, id2, b1, b2, EMarketMode::RESOURCE_RESOURCE);
  3671. int units = val / b1; //how many base quantities we trade
  3672. if (val%b1) //all offered units of resource should be used, if not -> somewhere in calculations must be an error
  3673. {
  3674. COMPLAIN_RET("Invalid deal, not all offered units of resource were used.");
  3675. }
  3676. giveResource(player, GameResID(id1), - b1 * units);
  3677. giveResource(player, GameResID(id2), b2 * units);
  3678. return true;
  3679. }
  3680. bool CGameHandler::sellCreatures(ui32 count, const IMarket *market, const CGHeroInstance * hero, SlotID slot, GameResID resourceID)
  3681. {
  3682. if(!hero)
  3683. COMPLAIN_RET("Only hero can sell creatures!");
  3684. if (!vstd::contains(hero->Slots(), slot))
  3685. COMPLAIN_RET("Hero doesn't have any creature in that slot!");
  3686. const CStackInstance &s = hero->getStack(slot);
  3687. if (s.count < (TQuantity)count //can't sell more creatures than have
  3688. || (hero->stacksCount() == 1 && hero->needsLastStack() && s.count == count)) //can't sell last stack
  3689. {
  3690. COMPLAIN_RET("Not enough creatures in army!");
  3691. }
  3692. int b1, b2; //base quantities for trade
  3693. market->getOffer(s.type->getId(), resourceID, b1, b2, EMarketMode::CREATURE_RESOURCE);
  3694. int units = count / b1; //how many base quantities we trade
  3695. if (count%b1) //all offered units of resource should be used, if not -> somewhere in calculations must be an error
  3696. {
  3697. //TODO: complain?
  3698. assert(0);
  3699. }
  3700. changeStackCount(StackLocation(hero, slot), -(TQuantity)count);
  3701. giveResource(hero->tempOwner, resourceID, b2 * units);
  3702. return true;
  3703. }
  3704. bool CGameHandler::transformInUndead(const IMarket *market, const CGHeroInstance * hero, SlotID slot)
  3705. {
  3706. const CArmedInstance *army = nullptr;
  3707. if (hero)
  3708. army = hero;
  3709. else
  3710. army = dynamic_cast<const CGTownInstance *>(market);
  3711. if (!army)
  3712. COMPLAIN_RET("Incorrect call to transform in undead!");
  3713. if (!army->hasStackAtSlot(slot))
  3714. COMPLAIN_RET("Army doesn't have any creature in that slot!");
  3715. const CStackInstance &s = army->getStack(slot);
  3716. //resulting creature - bone dragons or skeletons
  3717. CreatureID resCreature = CreatureID::SKELETON;
  3718. if ((s.hasBonusOfType(BonusType::DRAGON_NATURE)
  3719. && !(s.hasBonusOfType(BonusType::UNDEAD)))
  3720. || (s.getCreatureID() == CreatureID::HYDRA)
  3721. || (s.getCreatureID() == CreatureID::CHAOS_HYDRA))
  3722. resCreature = CreatureID::BONE_DRAGON;
  3723. changeStackType(StackLocation(army, slot), resCreature.toCreature());
  3724. return true;
  3725. }
  3726. bool CGameHandler::sendResources(ui32 val, PlayerColor player, GameResID r1, PlayerColor r2)
  3727. {
  3728. const PlayerState *p2 = getPlayerState(r2, false);
  3729. if (!p2 || p2->status != EPlayerStatus::INGAME)
  3730. {
  3731. complain("Dest player must be in game!");
  3732. return false;
  3733. }
  3734. TResourceCap curRes1 = getPlayerState(player)->resources[r1];
  3735. vstd::amin(val, curRes1);
  3736. giveResource(player, r1, -(int)val);
  3737. giveResource(r2, r1, val);
  3738. return true;
  3739. }
  3740. bool CGameHandler::setFormation(ObjectInstanceID hid, ui8 formation)
  3741. {
  3742. const CGHeroInstance *h = getHero(hid);
  3743. if (!h)
  3744. {
  3745. logGlobal->error("Hero doesn't exist!");
  3746. return false;
  3747. }
  3748. ChangeFormation cf;
  3749. cf.hid = hid;
  3750. cf.formation = formation;
  3751. sendAndApply(&cf);
  3752. return true;
  3753. }
  3754. bool CGameHandler::hireHero(const CGObjectInstance *obj, ui8 hid, PlayerColor player)
  3755. {
  3756. const PlayerState * p = getPlayerState(player);
  3757. const CGTownInstance * t = getTown(obj->id);
  3758. //common preconditions
  3759. // if ((p->resources.at(EGameResID::GOLD)<GOLD_NEEDED && complain("Not enough gold for buying hero!"))
  3760. // || (getHeroCount(player, false) >= GameConstants::MAX_HEROES_PER_PLAYER && complain("Cannot hire hero, only 8 wandering heroes are allowed!")))
  3761. if ((p->resources[EGameResID::GOLD] < GameConstants::HERO_GOLD_COST && complain("Not enough gold for buying hero!"))
  3762. || ((getHeroCount(player, false) >= VLC->settings()->getInteger(EGameSettings::HEROES_PER_PLAYER_ON_MAP_CAP) && complain("Cannot hire hero, too many wandering heroes already!")))
  3763. || ((getHeroCount(player, true) >= VLC->settings()->getInteger(EGameSettings::HEROES_PER_PLAYER_TOTAL_CAP) && complain("Cannot hire hero, too many heroes garrizoned and wandering already!"))))
  3764. {
  3765. return false;
  3766. }
  3767. if (t) //tavern in town
  3768. {
  3769. if ((!t->hasBuilt(BuildingID::TAVERN) && complain("No tavern!"))
  3770. || (t->visitingHero && complain("There is visiting hero - no place!")))
  3771. {
  3772. return false;
  3773. }
  3774. }
  3775. else if (obj->ID == Obj::TAVERN)
  3776. {
  3777. if (getTile(obj->visitablePos())->visitableObjects.back() != obj && complain("Tavern entry must be unoccupied!"))
  3778. {
  3779. return false;
  3780. }
  3781. }
  3782. const CGHeroInstance *nh = p->availableHeroes.at(hid);
  3783. if (!nh)
  3784. {
  3785. complain ("Hero is not available for hiring!");
  3786. return false;
  3787. }
  3788. HeroRecruited hr;
  3789. hr.tid = obj->id;
  3790. hr.hid = nh->subID;
  3791. hr.player = player;
  3792. hr.tile = nh->convertFromVisitablePos(obj->visitablePos());
  3793. sendAndApply(&hr);
  3794. std::map<ui32, ConstTransitivePtr<CGHeroInstance> > pool = gs->unusedHeroesFromPool();
  3795. const CGHeroInstance *theOtherHero = p->availableHeroes.at(!hid);
  3796. const CGHeroInstance *newHero = nullptr;
  3797. if (theOtherHero) //on XXL maps all heroes can be imprisoned :(
  3798. {
  3799. newHero = gs->hpool.pickHeroFor(false, player, getNativeTown(player), pool, getRandomGenerator(), theOtherHero->type->heroClass);
  3800. }
  3801. SetAvailableHeroes sah;
  3802. sah.player = player;
  3803. if (newHero)
  3804. {
  3805. sah.hid[hid] = newHero->subID;
  3806. sah.army[hid].clear();
  3807. sah.army[hid].setCreature(SlotID(0), newHero->type->initialArmy[0].creature, 1);
  3808. }
  3809. else
  3810. {
  3811. sah.hid[hid] = -1;
  3812. }
  3813. sah.hid[!hid] = theOtherHero ? theOtherHero->subID : -1;
  3814. sendAndApply(&sah);
  3815. giveResource(player, EGameResID::GOLD, -GameConstants::HERO_GOLD_COST);
  3816. if(t)
  3817. {
  3818. objectVisited(t, nh);
  3819. }
  3820. return true;
  3821. }
  3822. bool CGameHandler::queryReply(QueryID qid, const JsonNode & answer, PlayerColor player)
  3823. {
  3824. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  3825. logGlobal->trace("Player %s attempts answering query %d with answer:", player, qid);
  3826. logGlobal->trace(answer.toJson());
  3827. auto topQuery = queries.topQuery(player);
  3828. COMPLAIN_RET_FALSE_IF(!topQuery, "This player doesn't have any queries!");
  3829. if(topQuery->queryID != qid)
  3830. {
  3831. auto currentQuery = queries.getQuery(qid);
  3832. if(currentQuery != nullptr && currentQuery->endsByPlayerAnswer())
  3833. currentQuery->setReply(answer);
  3834. COMPLAIN_RET("This player top query has different ID!"); //topQuery->queryID != qid
  3835. }
  3836. COMPLAIN_RET_FALSE_IF(!topQuery->endsByPlayerAnswer(), "This query cannot be ended by player's answer!");
  3837. topQuery->setReply(answer);
  3838. queries.popQuery(topQuery);
  3839. return true;
  3840. }
  3841. static EndAction end_action;
  3842. void CGameHandler::updateGateState()
  3843. {
  3844. // GATE_BRIDGE - leftmost tile, located over moat
  3845. // GATE_OUTER - central tile, mostly covered by gate image
  3846. // GATE_INNER - rightmost tile, inside the walls
  3847. // GATE_OUTER or GATE_INNER:
  3848. // - if defender moves unit on these tiles, bridge will open
  3849. // - if there is a creature (dead or alive) on these tiles, bridge will always remain open
  3850. // - blocked to attacker if bridge is closed
  3851. // GATE_BRIDGE
  3852. // - if there is a unit or corpse here, bridge can't open (and can't close in fortress)
  3853. // - if Force Field is cast here, bridge can't open (but can close, in any town)
  3854. // - deals moat damage to attacker if bridge is closed (fortress only)
  3855. bool hasForceFieldOnBridge = !battleGetAllObstaclesOnPos(BattleHex(ESiegeHex::GATE_BRIDGE), true).empty();
  3856. bool hasStackAtGateInner = gs->curB->battleGetUnitByPos(BattleHex(ESiegeHex::GATE_INNER), false) != nullptr;
  3857. bool hasStackAtGateOuter = gs->curB->battleGetUnitByPos(BattleHex(ESiegeHex::GATE_OUTER), false) != nullptr;
  3858. bool hasStackAtGateBridge = gs->curB->battleGetUnitByPos(BattleHex(ESiegeHex::GATE_BRIDGE), false) != nullptr;
  3859. bool hasWideMoat = vstd::contains_if(battleGetAllObstaclesOnPos(BattleHex(ESiegeHex::GATE_BRIDGE), false), [](const std::shared_ptr<const CObstacleInstance> & obst)
  3860. {
  3861. return obst->obstacleType == CObstacleInstance::MOAT;
  3862. });
  3863. BattleUpdateGateState db;
  3864. db.state = gs->curB->si.gateState;
  3865. if (gs->curB->si.wallState[EWallPart::GATE] == EWallState::DESTROYED)
  3866. {
  3867. db.state = EGateState::DESTROYED;
  3868. }
  3869. else if (db.state == EGateState::OPENED)
  3870. {
  3871. bool hasStackOnLongBridge = hasStackAtGateBridge && hasWideMoat;
  3872. bool gateCanClose = !hasStackAtGateInner && !hasStackAtGateOuter && !hasStackOnLongBridge;
  3873. if (gateCanClose)
  3874. db.state = EGateState::CLOSED;
  3875. else
  3876. db.state = EGateState::OPENED;
  3877. }
  3878. else // CLOSED or BLOCKED
  3879. {
  3880. bool gateBlocked = hasForceFieldOnBridge || hasStackAtGateBridge;
  3881. if (gateBlocked)
  3882. db.state = EGateState::BLOCKED;
  3883. else
  3884. db.state = EGateState::CLOSED;
  3885. }
  3886. if (db.state != gs->curB->si.gateState)
  3887. sendAndApply(&db);
  3888. }
  3889. bool CGameHandler::makeBattleAction(BattleAction &ba)
  3890. {
  3891. bool ok = true;
  3892. battle::Target target = ba.getTarget(gs->curB);
  3893. const CStack * stack = battleGetStackByID(ba.stackNumber); //may be nullptr if action is not about stack
  3894. const bool isAboutActiveStack = stack && (ba.stackNumber == gs->curB->getActiveStackID());
  3895. logGlobal->trace("Making action: %s", ba.toString());
  3896. switch(ba.actionType)
  3897. {
  3898. case EActionType::WALK: //walk
  3899. case EActionType::DEFEND: //defend
  3900. case EActionType::WAIT: //wait
  3901. case EActionType::WALK_AND_ATTACK: //walk or attack
  3902. case EActionType::SHOOT: //shoot
  3903. case EActionType::CATAPULT: //catapult
  3904. case EActionType::STACK_HEAL: //healing with First Aid Tent
  3905. case EActionType::MONSTER_SPELL:
  3906. if (!stack)
  3907. {
  3908. complain("No such stack!");
  3909. return false;
  3910. }
  3911. if (!stack->alive())
  3912. {
  3913. complain("This stack is dead: " + stack->nodeName());
  3914. return false;
  3915. }
  3916. if (battleTacticDist())
  3917. {
  3918. if (stack && stack->unitSide() != battleGetTacticsSide())
  3919. {
  3920. complain("This is not a stack of side that has tactics!");
  3921. return false;
  3922. }
  3923. }
  3924. else if (!isAboutActiveStack)
  3925. {
  3926. complain("Action has to be about active stack!");
  3927. return false;
  3928. }
  3929. }
  3930. auto wrapAction = [this](BattleAction &ba)
  3931. {
  3932. StartAction startAction(ba);
  3933. sendAndApply(&startAction);
  3934. return vstd::makeScopeGuard([&]()
  3935. {
  3936. sendAndApply(&end_action);
  3937. });
  3938. };
  3939. switch(ba.actionType)
  3940. {
  3941. case EActionType::END_TACTIC_PHASE: //wait
  3942. case EActionType::BAD_MORALE:
  3943. case EActionType::NO_ACTION:
  3944. {
  3945. auto wrapper = wrapAction(ba);
  3946. break;
  3947. }
  3948. case EActionType::WALK:
  3949. {
  3950. auto wrapper = wrapAction(ba);
  3951. if(target.size() < 1)
  3952. {
  3953. complain("Destination required for move action.");
  3954. ok = false;
  3955. break;
  3956. }
  3957. int walkedTiles = moveStack(ba.stackNumber, target.at(0).hexValue); //move
  3958. if (!walkedTiles)
  3959. complain("Stack failed movement!");
  3960. break;
  3961. }
  3962. case EActionType::DEFEND:
  3963. {
  3964. //defensive stance, TODO: filter out spell boosts from bonus (stone skin etc.)
  3965. SetStackEffect sse;
  3966. Bonus defenseBonusToAdd(BonusDuration::STACK_GETS_TURN, BonusType::PRIMARY_SKILL, BonusSource::OTHER, 20, -1, PrimarySkill::DEFENSE, BonusValueType::PERCENT_TO_ALL);
  3967. Bonus bonus2(BonusDuration::STACK_GETS_TURN, BonusType::PRIMARY_SKILL, BonusSource::OTHER, stack->valOfBonuses(BonusType::DEFENSIVE_STANCE),
  3968. -1, PrimarySkill::DEFENSE, BonusValueType::ADDITIVE_VALUE);
  3969. Bonus alternativeWeakCreatureBonus(BonusDuration::STACK_GETS_TURN, BonusType::PRIMARY_SKILL, BonusSource::OTHER, 1, -1, PrimarySkill::DEFENSE, BonusValueType::ADDITIVE_VALUE);
  3970. BonusList defence = *stack->getBonuses(Selector::typeSubtype(BonusType::PRIMARY_SKILL, PrimarySkill::DEFENSE));
  3971. int oldDefenceValue = defence.totalValue();
  3972. defence.push_back(std::make_shared<Bonus>(defenseBonusToAdd));
  3973. defence.push_back(std::make_shared<Bonus>(bonus2));
  3974. int difference = defence.totalValue() - oldDefenceValue;
  3975. std::vector<Bonus> buffer;
  3976. if(difference == 0) //give replacement bonus for creatures not reaching 5 defense points (20% of def becomes 0)
  3977. {
  3978. difference = 1;
  3979. buffer.push_back(alternativeWeakCreatureBonus);
  3980. }
  3981. else
  3982. {
  3983. buffer.push_back(defenseBonusToAdd);
  3984. }
  3985. buffer.push_back(bonus2);
  3986. sse.toUpdate.push_back(std::make_pair(ba.stackNumber, buffer));
  3987. sendAndApply(&sse);
  3988. BattleLogMessage message;
  3989. MetaString text;
  3990. stack->addText(text, MetaString::GENERAL_TXT, 120);
  3991. stack->addNameReplacement(text);
  3992. text.addReplacement(difference);
  3993. message.lines.push_back(text);
  3994. sendAndApply(&message);
  3995. //don't break - we share code with next case
  3996. }
  3997. [[fallthrough]];
  3998. case EActionType::WAIT:
  3999. {
  4000. auto wrapper = wrapAction(ba);
  4001. break;
  4002. }
  4003. case EActionType::RETREAT: //retreat/flee
  4004. {
  4005. if (!gs->curB->battleCanFlee(gs->curB->sides.at(ba.side).color))
  4006. complain("Cannot retreat!");
  4007. else
  4008. setBattleResult(BattleResult::ESCAPE, !ba.side); //surrendering side loses
  4009. break;
  4010. }
  4011. case EActionType::SURRENDER:
  4012. {
  4013. PlayerColor player = gs->curB->sides.at(ba.side).color;
  4014. int cost = gs->curB->battleGetSurrenderCost(player);
  4015. if (cost < 0)
  4016. complain("Cannot surrender!");
  4017. else if (getResource(player, EGameResID::GOLD) < cost)
  4018. complain("Not enough gold to surrender!");
  4019. else
  4020. {
  4021. giveResource(player, EGameResID::GOLD, -cost);
  4022. setBattleResult(BattleResult::SURRENDER, !ba.side); //surrendering side loses
  4023. }
  4024. break;
  4025. }
  4026. case EActionType::WALK_AND_ATTACK: //walk or attack
  4027. {
  4028. auto wrapper = wrapAction(ba);
  4029. if(!stack)
  4030. {
  4031. complain("No attacker");
  4032. ok = false;
  4033. break;
  4034. }
  4035. if(target.size() < 2)
  4036. {
  4037. complain("Two destinations required for attack action.");
  4038. ok = false;
  4039. break;
  4040. }
  4041. BattleHex attackPos = target.at(0).hexValue;
  4042. BattleHex destinationTile = target.at(1).hexValue;
  4043. const CStack * destinationStack = gs->curB->battleGetStackByPos(destinationTile, true);
  4044. if(!destinationStack)
  4045. {
  4046. complain("Invalid target to attack");
  4047. ok = false;
  4048. break;
  4049. }
  4050. BattleHex startingPos = stack->getPosition();
  4051. int distance = moveStack(ba.stackNumber, attackPos);
  4052. logGlobal->trace("%s will attack %s", stack->nodeName(), destinationStack->nodeName());
  4053. if(stack->getPosition() != attackPos
  4054. && !(stack->doubleWide() && (stack->getPosition() == attackPos.cloneInDirection(stack->destShiftDir(), false)))
  4055. )
  4056. {
  4057. // we were not able to reach destination tile, nor occupy specified hex
  4058. // abort attack attempt, but treat this case as legal - we may have stepped onto a quicksands/mine
  4059. break;
  4060. }
  4061. if(destinationStack && stack->unitId() == destinationStack->unitId()) //we should just move, it will be handled by following check
  4062. {
  4063. destinationStack = nullptr;
  4064. }
  4065. if(!destinationStack)
  4066. {
  4067. complain("Unit can not attack itself");
  4068. ok = false;
  4069. break;
  4070. }
  4071. if(!CStack::isMeleeAttackPossible(stack, destinationStack))
  4072. {
  4073. complain("Attack cannot be performed!");
  4074. ok = false;
  4075. break;
  4076. }
  4077. //attack
  4078. int totalAttacks = stack->totalAttacks.getMeleeValue();
  4079. //TODO: move to CUnitState
  4080. const auto * attackingHero = gs->curB->battleGetFightingHero(ba.side);
  4081. if(attackingHero)
  4082. {
  4083. totalAttacks += attackingHero->valOfBonuses(BonusType::HERO_GRANTS_ATTACKS, stack->creatureIndex());
  4084. }
  4085. const bool firstStrike = destinationStack->hasBonusOfType(BonusType::FIRST_STRIKE);
  4086. const bool retaliation = destinationStack->ableToRetaliate();
  4087. for (int i = 0; i < totalAttacks; ++i)
  4088. {
  4089. //first strike
  4090. if(i == 0 && firstStrike && retaliation)
  4091. {
  4092. makeAttack(destinationStack, stack, 0, stack->getPosition(), true, false, true);
  4093. }
  4094. //move can cause death, eg. by walking into the moat, first strike can cause death or paralysis/petrification
  4095. if(stack->alive() && !stack->hasBonusOfType(BonusType::NOT_ACTIVE) && destinationStack->alive())
  4096. {
  4097. makeAttack(stack, destinationStack, (i ? 0 : distance), destinationTile, i==0, false, false);//no distance travelled on second attack
  4098. }
  4099. //counterattack
  4100. //we check retaliation twice, so if it unblocked during attack it will work only on next attack
  4101. if(stack->alive()
  4102. && !stack->hasBonusOfType(BonusType::BLOCKS_RETALIATION)
  4103. && (i == 0 && !firstStrike)
  4104. && retaliation && destinationStack->ableToRetaliate())
  4105. {
  4106. makeAttack(destinationStack, stack, 0, stack->getPosition(), true, false, true);
  4107. }
  4108. }
  4109. //return
  4110. if(stack->hasBonusOfType(BonusType::RETURN_AFTER_STRIKE)
  4111. && target.size() == 3
  4112. && startingPos != stack->getPosition()
  4113. && startingPos == target.at(2).hexValue
  4114. && stack->alive())
  4115. {
  4116. moveStack(ba.stackNumber, startingPos);
  4117. //NOTE: curStack->unitId() == ba.stackNumber (rev 1431)
  4118. }
  4119. break;
  4120. }
  4121. case EActionType::SHOOT:
  4122. {
  4123. if(target.size() < 1)
  4124. {
  4125. complain("Destination required for shot action.");
  4126. ok = false;
  4127. break;
  4128. }
  4129. auto destination = target.at(0).hexValue;
  4130. const CStack * destinationStack = gs->curB->battleGetStackByPos(destination);
  4131. if (!gs->curB->battleCanShoot(stack, destination))
  4132. {
  4133. complain("Cannot shoot!");
  4134. break;
  4135. }
  4136. if (!destinationStack)
  4137. {
  4138. complain("No target to shoot!");
  4139. break;
  4140. }
  4141. auto wrapper = wrapAction(ba);
  4142. makeAttack(stack, destinationStack, 0, destination, true, true, false);
  4143. //ranged counterattack
  4144. if (destinationStack->hasBonusOfType(BonusType::RANGED_RETALIATION)
  4145. && !stack->hasBonusOfType(BonusType::BLOCKS_RANGED_RETALIATION)
  4146. && destinationStack->ableToRetaliate()
  4147. && gs->curB->battleCanShoot(destinationStack, stack->getPosition())
  4148. && stack->alive()) //attacker may have died (fire shield)
  4149. {
  4150. makeAttack(destinationStack, stack, 0, stack->getPosition(), true, true, true);
  4151. }
  4152. //allow more than one additional attack
  4153. int totalRangedAttacks = stack->totalAttacks.getRangedValue();
  4154. //TODO: move to CUnitState
  4155. const auto * attackingHero = gs->curB->battleGetFightingHero(ba.side);
  4156. if(attackingHero)
  4157. {
  4158. totalRangedAttacks += attackingHero->valOfBonuses(BonusType::HERO_GRANTS_ATTACKS, stack->creatureIndex());
  4159. }
  4160. for(int i = 1; i < totalRangedAttacks; ++i)
  4161. {
  4162. if(
  4163. stack->alive()
  4164. && destinationStack->alive()
  4165. && stack->shots.canUse()
  4166. )
  4167. {
  4168. makeAttack(stack, destinationStack, 0, destination, false, true, false);
  4169. }
  4170. }
  4171. break;
  4172. }
  4173. case EActionType::CATAPULT:
  4174. {
  4175. auto wrapper = wrapAction(ba);
  4176. const CStack * shooter = gs->curB->battleGetStackByID(ba.stackNumber);
  4177. std::shared_ptr<const Bonus> catapultAbility = stack->getBonusLocalFirst(Selector::type()(BonusType::CATAPULT));
  4178. if(!catapultAbility || catapultAbility->subtype < 0)
  4179. {
  4180. complain("We do not know how to shoot :P");
  4181. }
  4182. else
  4183. {
  4184. const CSpell * spell = SpellID(catapultAbility->subtype).toSpell();
  4185. spells::BattleCast parameters(gs->curB, shooter, spells::Mode::SPELL_LIKE_ATTACK, spell); //We can shot infinitely by catapult
  4186. auto shotLevel = stack->valOfBonuses(Selector::typeSubtype(BonusType::CATAPULT_EXTRA_SHOTS, catapultAbility->subtype));
  4187. parameters.setSpellLevel(shotLevel);
  4188. parameters.cast(spellEnv, target);
  4189. }
  4190. //finish by scope guard
  4191. break;
  4192. }
  4193. case EActionType::STACK_HEAL: //healing with First Aid Tent
  4194. {
  4195. auto wrapper = wrapAction(ba);
  4196. const CStack * healer = gs->curB->battleGetStackByID(ba.stackNumber);
  4197. if(target.size() < 1)
  4198. {
  4199. complain("Destination required for heal action.");
  4200. ok = false;
  4201. break;
  4202. }
  4203. const battle::Unit * destStack = nullptr;
  4204. std::shared_ptr<const Bonus> healerAbility = stack->getBonusLocalFirst(Selector::type()(BonusType::HEALER));
  4205. if(target.at(0).unitValue)
  4206. destStack = target.at(0).unitValue;
  4207. else
  4208. destStack = gs->curB->battleGetUnitByPos(target.at(0).hexValue);
  4209. if(healer == nullptr || destStack == nullptr || !healerAbility || healerAbility->subtype < 0)
  4210. {
  4211. complain("There is either no healer, no destination, or healer cannot heal :P");
  4212. }
  4213. else
  4214. {
  4215. const CSpell * spell = SpellID(healerAbility->subtype).toSpell();
  4216. spells::BattleCast parameters(gs->curB, healer, spells::Mode::SPELL_LIKE_ATTACK, spell); //We can heal infinitely by first aid tent
  4217. auto dest = battle::Destination(destStack, target.at(0).hexValue);
  4218. parameters.setSpellLevel(0);
  4219. parameters.cast(spellEnv, {dest});
  4220. }
  4221. break;
  4222. }
  4223. case EActionType::MONSTER_SPELL:
  4224. {
  4225. auto wrapper = wrapAction(ba);
  4226. const CStack * stack = gs->curB->battleGetStackByID(ba.stackNumber);
  4227. SpellID spellID = SpellID(ba.actionSubtype);
  4228. std::shared_ptr<const Bonus> randSpellcaster = stack->getBonus(Selector::type()(BonusType::RANDOM_SPELLCASTER));
  4229. std::shared_ptr<const Bonus> spellcaster = stack->getBonus(Selector::typeSubtype(BonusType::SPELLCASTER, spellID));
  4230. //TODO special bonus for genies ability
  4231. if (randSpellcaster && battleGetRandomStackSpell(getRandomGenerator(), stack, CBattleInfoCallback::RANDOM_AIMED) < 0)
  4232. spellID = battleGetRandomStackSpell(getRandomGenerator(), stack, CBattleInfoCallback::RANDOM_GENIE);
  4233. if (spellID < 0)
  4234. complain("That stack can't cast spells!");
  4235. else
  4236. {
  4237. const CSpell * spell = SpellID(spellID).toSpell();
  4238. spells::BattleCast parameters(gs->curB, stack, spells::Mode::CREATURE_ACTIVE, spell);
  4239. int32_t spellLvl = 0;
  4240. if(spellcaster)
  4241. vstd::amax(spellLvl, spellcaster->val);
  4242. if(randSpellcaster)
  4243. vstd::amax(spellLvl, randSpellcaster->val);
  4244. parameters.setSpellLevel(spellLvl);
  4245. parameters.cast(spellEnv, target);
  4246. }
  4247. break;
  4248. }
  4249. }
  4250. if(ba.actionType == EActionType::WAIT || ba.actionType == EActionType::DEFEND
  4251. || ba.actionType == EActionType::SHOOT || ba.actionType == EActionType::MONSTER_SPELL)
  4252. handleObstacleTriggersForUnit(*spellEnv, *stack);
  4253. if(ba.stackNumber == gs->curB->activeStack || battleResult.get()) //active stack has moved or battle has finished
  4254. battleMadeAction.setn(true);
  4255. return ok;
  4256. }
  4257. void CGameHandler::playerMessage(PlayerColor player, const std::string &message, ObjectInstanceID currObj)
  4258. {
  4259. bool cheated = false;
  4260. if(!getPlayerSettings(player)->isControlledByAI())
  4261. {
  4262. PlayerMessageClient temp_message(player, message);
  4263. sendAndApply(&temp_message);
  4264. }
  4265. std::vector<std::string> words;
  4266. boost::split(words, message, boost::is_any_of(" "));
  4267. bool isHost = false;
  4268. for(auto & c : connections[player])
  4269. if(lobby->isClientHost(c->connectionID))
  4270. isHost = true;
  4271. if(isHost && words.size() >= 2 && words[0] == "game")
  4272. {
  4273. if(words[1] == "exit" || words[1] == "quit" || words[1] == "end")
  4274. {
  4275. SystemMessage temp_message("game was terminated");
  4276. sendAndApply(&temp_message);
  4277. lobby->state = EServerState::SHUTDOWN;
  4278. return;
  4279. }
  4280. if(words.size() == 3 && words[1] == "save")
  4281. {
  4282. save("Saves/" + words[2]);
  4283. SystemMessage temp_message("game saved as " + words[2]);
  4284. sendAndApply(&temp_message);
  4285. return;
  4286. }
  4287. if(words.size() == 3 && words[1] == "kick")
  4288. {
  4289. auto playername = words[2];
  4290. PlayerColor playerToKick(PlayerColor::CANNOT_DETERMINE);
  4291. if(std::all_of(playername.begin(), playername.end(), ::isdigit))
  4292. playerToKick = PlayerColor(std::stoi(playername));
  4293. else
  4294. {
  4295. for(auto & c : connections)
  4296. {
  4297. if(c.first.getStr(false) == playername)
  4298. playerToKick = c.first;
  4299. }
  4300. }
  4301. if(playerToKick != PlayerColor::CANNOT_DETERMINE)
  4302. {
  4303. PlayerCheated pc;
  4304. pc.player = playerToKick;
  4305. pc.losingCheatCode = true;
  4306. sendAndApply(&pc);
  4307. checkVictoryLossConditionsForPlayer(playerToKick);
  4308. }
  4309. return;
  4310. }
  4311. }
  4312. int obj = 0;
  4313. if (words.size() == 2 && words[0] != "vcmiexp" && words[0] != "vcmiolorin")
  4314. {
  4315. obj = std::atoi(words[1].c_str());
  4316. if (obj)
  4317. currObj = ObjectInstanceID(obj);
  4318. }
  4319. const CGHeroInstance * hero = getHero(currObj);
  4320. const CGTownInstance * town = getTown(currObj);
  4321. if (!town && hero)
  4322. town = hero->visitedTown;
  4323. if(words.size() > 1 && (words[0] == "vcmiarmy" || words[0] == "vcminissi" || words[0] == "vcmiexp" || words[0] == "vcmiolorin"))
  4324. {
  4325. std::string cheatCodeWithOneParameter = std::string(words[0]) + " " + words[1];
  4326. handleCheatCode(cheatCodeWithOneParameter, player, hero, town, cheated);
  4327. }
  4328. else if (words.size() == 1 || obj)
  4329. {
  4330. handleCheatCode(words[0], player, hero, town, cheated);
  4331. }
  4332. else
  4333. {
  4334. for (const auto & i : gs->players)
  4335. {
  4336. if (i.first == PlayerColor::NEUTRAL)
  4337. continue;
  4338. if (words[1] == "ai")
  4339. {
  4340. if (i.second.human)
  4341. continue;
  4342. }
  4343. else if (words[1] != "all" && words[1] != i.first.getStr())
  4344. continue;
  4345. if (words[0] == "vcmiformenos" || words[0] == "vcmieagles" || words[0] == "vcmiungoliant"
  4346. || words[0] == "vcmiresources" || words[0] == "vcmimap" || words[0] == "vcmihidemap")
  4347. {
  4348. handleCheatCode(words[0], i.first, nullptr, nullptr, cheated);
  4349. }
  4350. else if (words[0] == "vcmiarmenelos" || words[0] == "vcmibuild")
  4351. {
  4352. for (const auto & t : i.second.towns)
  4353. {
  4354. handleCheatCode(words[0], i.first, nullptr, t, cheated);
  4355. }
  4356. }
  4357. else
  4358. {
  4359. for (const auto & h : i.second.heroes)
  4360. {
  4361. handleCheatCode(words[0], i.first, h, nullptr, cheated);
  4362. }
  4363. }
  4364. }
  4365. }
  4366. if (cheated)
  4367. {
  4368. if(!getPlayerSettings(player)->isControlledByAI())
  4369. {
  4370. SystemMessage temp_message(VLC->generaltexth->allTexts[260]);
  4371. sendAndApply(&temp_message);
  4372. }
  4373. if(!player.isSpectator())
  4374. checkVictoryLossConditionsForPlayer(player);//Player enter win code or got required art\creature
  4375. }
  4376. }
  4377. bool CGameHandler::makeCustomAction(BattleAction & ba)
  4378. {
  4379. switch(ba.actionType)
  4380. {
  4381. case EActionType::HERO_SPELL:
  4382. {
  4383. COMPLAIN_RET_FALSE_IF(ba.side > 1, "Side must be 0 or 1!");
  4384. const CGHeroInstance *h = gs->curB->battleGetFightingHero(ba.side);
  4385. COMPLAIN_RET_FALSE_IF((!h), "Wrong caster!");
  4386. const CSpell * s = SpellID(ba.actionSubtype).toSpell();
  4387. if (!s)
  4388. {
  4389. logGlobal->error("Wrong spell id (%d)!", ba.actionSubtype);
  4390. return false;
  4391. }
  4392. spells::BattleCast parameters(gs->curB, h, spells::Mode::HERO, s);
  4393. spells::detail::ProblemImpl problem;
  4394. auto m = s->battleMechanics(&parameters);
  4395. if(!m->canBeCast(problem))//todo: should we check aimed cast?
  4396. {
  4397. logGlobal->warn("Spell cannot be cast!");
  4398. std::vector<std::string> texts;
  4399. problem.getAll(texts);
  4400. for(auto s : texts)
  4401. logGlobal->warn(s);
  4402. return false;
  4403. }
  4404. StartAction start_action(ba);
  4405. sendAndApply(&start_action); //start spell casting
  4406. parameters.cast(spellEnv, ba.getTarget(gs->curB));
  4407. sendAndApply(&end_action);
  4408. if (!gs->curB->battleGetStackByID(gs->curB->activeStack))
  4409. {
  4410. battleMadeAction.setn(true);
  4411. }
  4412. checkBattleStateChanges();
  4413. if (battleResult.get())
  4414. {
  4415. battleMadeAction.setn(true);
  4416. //battle will be ended by startBattle function
  4417. //endBattle(gs->curB->tile, gs->curB->heroes[0], gs->curB->heroes[1]);
  4418. }
  4419. return true;
  4420. }
  4421. }
  4422. return false;
  4423. }
  4424. void CGameHandler::stackEnchantedTrigger(const CStack * st)
  4425. {
  4426. auto bl = *(st->getBonuses(Selector::type()(BonusType::ENCHANTED)));
  4427. for(auto b : bl)
  4428. {
  4429. const CSpell * sp = SpellID(b->subtype).toSpell();
  4430. if(!sp)
  4431. continue;
  4432. const int32_t val = bl.valOfBonuses(Selector::typeSubtype(b->type, b->subtype));
  4433. const int32_t level = ((val > 3) ? (val - 3) : val);
  4434. spells::BattleCast battleCast(gs->curB, st, spells::Mode::PASSIVE, sp);
  4435. //this makes effect accumulate for at most 50 turns by default, but effect may be permanent and last till the end of battle
  4436. battleCast.setEffectDuration(50);
  4437. battleCast.setSpellLevel(level);
  4438. spells::Target target;
  4439. if(val > 3)
  4440. {
  4441. for(auto s : gs->curB->battleGetAllStacks())
  4442. if(battleMatchOwner(st, s, true) && s->isValidTarget()) //all allied
  4443. target.emplace_back(s);
  4444. }
  4445. else
  4446. {
  4447. target.emplace_back(st);
  4448. }
  4449. battleCast.applyEffects(spellEnv, target, false, true);
  4450. }
  4451. }
  4452. void CGameHandler::stackTurnTrigger(const CStack *st)
  4453. {
  4454. BattleTriggerEffect bte;
  4455. bte.stackID = st->unitId();
  4456. bte.effect = -1;
  4457. bte.val = 0;
  4458. bte.additionalInfo = 0;
  4459. if (st->alive())
  4460. {
  4461. //unbind
  4462. if (st->hasBonus(Selector::type()(BonusType::BIND_EFFECT)))
  4463. {
  4464. bool unbind = true;
  4465. BonusList bl = *(st->getBonuses(Selector::type()(BonusType::BIND_EFFECT)));
  4466. auto adjacent = gs->curB->battleAdjacentUnits(st);
  4467. for (auto b : bl)
  4468. {
  4469. if(b->additionalInfo != CAddInfo::NONE)
  4470. {
  4471. const CStack * stack = gs->curB->battleGetStackByID(b->additionalInfo[0]); //binding stack must be alive and adjacent
  4472. if(stack)
  4473. {
  4474. if(vstd::contains(adjacent, stack)) //binding stack is still present
  4475. unbind = false;
  4476. }
  4477. }
  4478. else
  4479. {
  4480. unbind = false;
  4481. }
  4482. }
  4483. if (unbind)
  4484. {
  4485. BattleSetStackProperty ssp;
  4486. ssp.which = BattleSetStackProperty::UNBIND;
  4487. ssp.stackID = st->unitId();
  4488. sendAndApply(&ssp);
  4489. }
  4490. }
  4491. if (st->hasBonusOfType(BonusType::POISON))
  4492. {
  4493. std::shared_ptr<const Bonus> b = st->getBonusLocalFirst(Selector::source(BonusSource::SPELL_EFFECT, SpellID::POISON).And(Selector::type()(BonusType::STACK_HEALTH)));
  4494. if (b) //TODO: what if not?...
  4495. {
  4496. bte.val = std::max (b->val - 10, -(st->valOfBonuses(BonusType::POISON)));
  4497. if (bte.val < b->val) //(negative) poison effect increases - update it
  4498. {
  4499. bte.effect = vstd::to_underlying(BonusType::POISON);
  4500. sendAndApply(&bte);
  4501. }
  4502. }
  4503. }
  4504. if(st->hasBonusOfType(BonusType::MANA_DRAIN) && !st->drainedMana)
  4505. {
  4506. const PlayerColor opponent = gs->curB->otherPlayer(gs->curB->battleGetOwner(st));
  4507. const CGHeroInstance * opponentHero = gs->curB->getHero(opponent);
  4508. if(opponentHero)
  4509. {
  4510. ui32 manaDrained = st->valOfBonuses(BonusType::MANA_DRAIN);
  4511. vstd::amin(manaDrained, opponentHero->mana);
  4512. if(manaDrained)
  4513. {
  4514. bte.effect = vstd::to_underlying(BonusType::MANA_DRAIN);
  4515. bte.val = manaDrained;
  4516. bte.additionalInfo = opponentHero->id.getNum(); //for sanity
  4517. sendAndApply(&bte);
  4518. }
  4519. }
  4520. }
  4521. if (st->isLiving() && !st->hasBonusOfType(BonusType::FEARLESS))
  4522. {
  4523. bool fearsomeCreature = false;
  4524. for (CStack * stack : gs->curB->stacks)
  4525. {
  4526. if (battleMatchOwner(st, stack) && stack->alive() && stack->hasBonusOfType(BonusType::FEAR))
  4527. {
  4528. fearsomeCreature = true;
  4529. break;
  4530. }
  4531. }
  4532. if (fearsomeCreature)
  4533. {
  4534. if (getRandomGenerator().nextInt(99) < 10) //fixed 10%
  4535. {
  4536. bte.effect = vstd::to_underlying(BonusType::FEAR);
  4537. sendAndApply(&bte);
  4538. }
  4539. }
  4540. }
  4541. BonusList bl = *(st->getBonuses(Selector::type()(BonusType::ENCHANTER)));
  4542. int side = gs->curB->whatSide(st->unitOwner());
  4543. if(st->canCast() && gs->curB->battleGetEnchanterCounter(side) == 0)
  4544. {
  4545. bool cast = false;
  4546. while(!bl.empty() && !cast)
  4547. {
  4548. auto bonus = *RandomGeneratorUtil::nextItem(bl, getRandomGenerator());
  4549. auto spellID = SpellID(bonus->subtype);
  4550. const CSpell * spell = SpellID(spellID).toSpell();
  4551. bl.remove_if([&bonus](const Bonus * b)
  4552. {
  4553. return b == bonus.get();
  4554. });
  4555. spells::BattleCast parameters(gs->curB, st, spells::Mode::ENCHANTER, spell);
  4556. parameters.setSpellLevel(bonus->val);
  4557. parameters.massive = true;
  4558. parameters.smart = true;
  4559. //todo: recheck effect level
  4560. if(parameters.castIfPossible(spellEnv, spells::Target(1, spells::Destination())))
  4561. {
  4562. cast = true;
  4563. int cooldown = bonus->additionalInfo[0];
  4564. BattleSetStackProperty ssp;
  4565. ssp.which = BattleSetStackProperty::ENCHANTER_COUNTER;
  4566. ssp.absolute = false;
  4567. ssp.val = cooldown;
  4568. ssp.stackID = st->unitId();
  4569. sendAndApply(&ssp);
  4570. }
  4571. }
  4572. }
  4573. }
  4574. }
  4575. void CGameHandler::handleTimeEvents()
  4576. {
  4577. gs->map->events.sort(evntCmp);
  4578. while(gs->map->events.size() && gs->map->events.front().firstOccurence+1 == gs->day)
  4579. {
  4580. CMapEvent ev = gs->map->events.front();
  4581. for (int player = 0; player < PlayerColor::PLAYER_LIMIT_I; player++)
  4582. {
  4583. auto color = PlayerColor(player);
  4584. const PlayerState * pinfo = getPlayerState(color, false); //do not output error if player does not exist
  4585. if (pinfo //player exists
  4586. && (ev.players & 1<<player) //event is enabled to this player
  4587. && ((ev.computerAffected && !pinfo->human)
  4588. || (ev.humanAffected && pinfo->human)
  4589. )
  4590. )
  4591. {
  4592. //give resources
  4593. giveResources(color, ev.resources);
  4594. //prepare dialog
  4595. InfoWindow iw;
  4596. iw.player = color;
  4597. iw.text << ev.message;
  4598. for (int i=0; i<ev.resources.size(); i++)
  4599. {
  4600. if (ev.resources[i]) //if resource is changed, we add it to the dialog
  4601. iw.components.emplace_back(Component::EComponentType::RESOURCE,i,ev.resources[i],0);
  4602. }
  4603. sendAndApply(&iw); //show dialog
  4604. }
  4605. } //PLAYERS LOOP
  4606. if (ev.nextOccurence)
  4607. {
  4608. gs->map->events.pop_front();
  4609. ev.firstOccurence += ev.nextOccurence;
  4610. auto it = gs->map->events.begin();
  4611. while(it != gs->map->events.end() && it->earlierThanOrEqual(ev))
  4612. it++;
  4613. gs->map->events.insert(it, ev);
  4614. }
  4615. else
  4616. {
  4617. gs->map->events.pop_front();
  4618. }
  4619. }
  4620. //TODO send only if changed
  4621. UpdateMapEvents ume;
  4622. ume.events = gs->map->events;
  4623. sendAndApply(&ume);
  4624. }
  4625. void CGameHandler::handleTownEvents(CGTownInstance * town, NewTurn &n)
  4626. {
  4627. town->events.sort(evntCmp);
  4628. while(town->events.size() && town->events.front().firstOccurence == gs->day)
  4629. {
  4630. PlayerColor player = town->tempOwner;
  4631. CCastleEvent ev = town->events.front();
  4632. const PlayerState * pinfo = getPlayerState(player, false);
  4633. if (pinfo //player exists
  4634. && (ev.players & 1<<player.getNum()) //event is enabled to this player
  4635. && ((ev.computerAffected && !pinfo->human)
  4636. || (ev.humanAffected && pinfo->human)))
  4637. {
  4638. // dialog
  4639. InfoWindow iw;
  4640. iw.player = player;
  4641. iw.text << ev.message;
  4642. if (ev.resources.nonZero())
  4643. {
  4644. TResources was = n.res[player];
  4645. n.res[player] += ev.resources;
  4646. n.res[player].amax(0);
  4647. for (int i=0; i<ev.resources.size(); i++)
  4648. if (ev.resources[i] && pinfo->resources[i] != n.res.at(player)[i]) //if resource had changed, we add it to the dialog
  4649. iw.components.emplace_back(Component::EComponentType::RESOURCE,i,n.res.at(player)[i]-was[i],0);
  4650. }
  4651. for (auto & i : ev.buildings)
  4652. {
  4653. if (!town->hasBuilt(i))
  4654. {
  4655. buildStructure(town->id, i, true);
  4656. iw.components.emplace_back(Component::EComponentType::BUILDING, town->subID, i, 0);
  4657. }
  4658. }
  4659. if (!ev.creatures.empty() && !vstd::contains(n.cres, town->id))
  4660. {
  4661. n.cres[town->id].tid = town->id;
  4662. n.cres[town->id].creatures = town->creatures;
  4663. }
  4664. auto & sac = n.cres[town->id];
  4665. for (si32 i=0;i<ev.creatures.size();i++) //creature growths
  4666. {
  4667. if (!town->creatures.at(i).second.empty() && ev.creatures.at(i) > 0)//there is dwelling
  4668. {
  4669. sac.creatures[i].first += ev.creatures.at(i);
  4670. iw.components.emplace_back(Component::EComponentType::CREATURE,
  4671. town->creatures.at(i).second.back(), ev.creatures.at(i), 0);
  4672. }
  4673. }
  4674. sendAndApply(&iw); //show dialog
  4675. }
  4676. if (ev.nextOccurence)
  4677. {
  4678. town->events.pop_front();
  4679. ev.firstOccurence += ev.nextOccurence;
  4680. auto it = town->events.begin();
  4681. while(it != town->events.end() && it->earlierThanOrEqual(ev))
  4682. it++;
  4683. town->events.insert(it, ev);
  4684. }
  4685. else
  4686. {
  4687. town->events.pop_front();
  4688. }
  4689. }
  4690. //TODO send only if changed
  4691. UpdateCastleEvents uce;
  4692. uce.town = town->id;
  4693. uce.events = town->events;
  4694. sendAndApply(&uce);
  4695. }
  4696. bool CGameHandler::complain(const std::string &problem)
  4697. {
  4698. sendMessageToAll("Server encountered a problem: " + problem);
  4699. logGlobal->error(problem);
  4700. return true;
  4701. }
  4702. void CGameHandler::showGarrisonDialog(ObjectInstanceID upobj, ObjectInstanceID hid, bool removableUnits)
  4703. {
  4704. //PlayerColor player = getOwner(hid);
  4705. auto upperArmy = dynamic_cast<const CArmedInstance*>(getObj(upobj));
  4706. auto lowerArmy = dynamic_cast<const CArmedInstance*>(getObj(hid));
  4707. assert(lowerArmy);
  4708. assert(upperArmy);
  4709. auto garrisonQuery = std::make_shared<CGarrisonDialogQuery>(this, upperArmy, lowerArmy);
  4710. queries.addQuery(garrisonQuery);
  4711. GarrisonDialog gd;
  4712. gd.hid = hid;
  4713. gd.objid = upobj;
  4714. gd.removableUnits = removableUnits;
  4715. gd.queryID = garrisonQuery->queryID;
  4716. sendAndApply(&gd);
  4717. }
  4718. void CGameHandler::showThievesGuildWindow(PlayerColor player, ObjectInstanceID requestingObjId)
  4719. {
  4720. OpenWindow ow;
  4721. ow.window = EOpenWindowMode::THIEVES_GUILD;
  4722. ow.id1 = player.getNum();
  4723. ow.id2 = requestingObjId.getNum();
  4724. sendAndApply(&ow);
  4725. }
  4726. bool CGameHandler::isAllowedExchange(ObjectInstanceID id1, ObjectInstanceID id2)
  4727. {
  4728. if (id1 == id2)
  4729. return true;
  4730. const CGObjectInstance *o1 = getObj(id1), *o2 = getObj(id2);
  4731. if (!o1 || !o2)
  4732. return true; //arranging stacks within an object should be always allowed
  4733. if (o1 && o2)
  4734. {
  4735. if (o1->ID == Obj::TOWN)
  4736. {
  4737. const CGTownInstance *t = static_cast<const CGTownInstance*>(o1);
  4738. if (t->visitingHero == o2 || t->garrisonHero == o2)
  4739. return true;
  4740. }
  4741. if (o2->ID == Obj::TOWN)
  4742. {
  4743. const CGTownInstance *t = static_cast<const CGTownInstance*>(o2);
  4744. if (t->visitingHero == o1 || t->garrisonHero == o1)
  4745. return true;
  4746. }
  4747. if (o1->ID == Obj::HERO && o2->ID == Obj::HERO)
  4748. {
  4749. const CGHeroInstance *h1 = static_cast<const CGHeroInstance*>(o1);
  4750. const CGHeroInstance *h2 = static_cast<const CGHeroInstance*>(o2);
  4751. // two heroes in same town (garrisoned and visiting)
  4752. if (h1->visitedTown != nullptr && h2->visitedTown != nullptr && h1->visitedTown == h2->visitedTown)
  4753. return true;
  4754. }
  4755. //Ongoing garrison exchange - usually picking from top garison (from o1 to o2), but who knows
  4756. auto dialog = std::dynamic_pointer_cast<CGarrisonDialogQuery>(queries.topQuery(o1->tempOwner));
  4757. if (!dialog)
  4758. {
  4759. dialog = std::dynamic_pointer_cast<CGarrisonDialogQuery>(queries.topQuery(o2->tempOwner));
  4760. }
  4761. if (dialog)
  4762. {
  4763. auto topArmy = dialog->exchangingArmies.at(0);
  4764. auto bottomArmy = dialog->exchangingArmies.at(1);
  4765. if ((topArmy == o1 && bottomArmy == o2) || (bottomArmy == o1 && topArmy == o2))
  4766. return true;
  4767. }
  4768. }
  4769. return false;
  4770. }
  4771. void CGameHandler::objectVisited(const CGObjectInstance * obj, const CGHeroInstance * h)
  4772. {
  4773. using events::ObjectVisitStarted;
  4774. logGlobal->debug("%s visits %s (%d:%d)", h->nodeName(), obj->getObjectName(), obj->ID, obj->subID);
  4775. std::shared_ptr<CObjectVisitQuery> visitQuery;
  4776. auto startVisit = [&](ObjectVisitStarted & event)
  4777. {
  4778. auto visitedObject = obj;
  4779. if(obj->ID == Obj::HERO)
  4780. {
  4781. auto visitedHero = static_cast<const CGHeroInstance *>(obj);
  4782. const auto visitedTown = visitedHero->visitedTown;
  4783. if(visitedTown)
  4784. {
  4785. const bool isEnemy = visitedHero->getOwner() != h->getOwner();
  4786. if(isEnemy && !visitedTown->isBattleOutsideTown(visitedHero))
  4787. visitedObject = visitedTown;
  4788. }
  4789. }
  4790. visitQuery = std::make_shared<CObjectVisitQuery>(this, visitedObject, h, visitedObject->visitablePos());
  4791. queries.addQuery(visitQuery); //TODO real visit pos
  4792. HeroVisit hv;
  4793. hv.objId = obj->id;
  4794. hv.heroId = h->id;
  4795. hv.player = h->tempOwner;
  4796. hv.starting = true;
  4797. sendAndApply(&hv);
  4798. obj->onHeroVisit(h);
  4799. };
  4800. ObjectVisitStarted::defaultExecute(serverEventBus.get(), startVisit, h->tempOwner, h->id, obj->id);
  4801. if(visitQuery)
  4802. queries.popIfTop(visitQuery); //visit ends here if no queries were created
  4803. }
  4804. void CGameHandler::objectVisitEnded(const CObjectVisitQuery & query)
  4805. {
  4806. using events::ObjectVisitEnded;
  4807. logGlobal->debug("%s visit ends.\n", query.visitingHero->nodeName());
  4808. auto endVisit = [&](ObjectVisitEnded & event)
  4809. {
  4810. HeroVisit hv;
  4811. hv.player = event.getPlayer();
  4812. hv.heroId = event.getHero();
  4813. hv.starting = false;
  4814. sendAndApply(&hv);
  4815. };
  4816. //TODO: ObjectVisitEnded should also have id of visited object,
  4817. //but this requires object being deleted only by `removeAfterVisit()` but not `removeObject()`
  4818. ObjectVisitEnded::defaultExecute(serverEventBus.get(), endVisit, query.players.front(), query.visitingHero->id);
  4819. }
  4820. bool CGameHandler::buildBoat(ObjectInstanceID objid, PlayerColor playerID)
  4821. {
  4822. const IShipyard *obj = IShipyard::castFrom(getObj(objid));
  4823. if (obj->shipyardStatus() != IBoatGenerator::GOOD)
  4824. {
  4825. complain("Cannot build boat in this shipyard!");
  4826. return false;
  4827. }
  4828. else if (obj->o->ID == Obj::TOWN
  4829. && !static_cast<const CGTownInstance*>(obj)->hasBuilt(BuildingID::SHIPYARD))
  4830. {
  4831. complain("Cannot build boat in the town - no shipyard!");
  4832. return false;
  4833. }
  4834. TResources boatCost;
  4835. obj->getBoatCost(boatCost);
  4836. TResources aviable = getPlayerState(playerID)->resources;
  4837. if (!aviable.canAfford(boatCost))
  4838. {
  4839. complain("Not enough resources to build a boat!");
  4840. return false;
  4841. }
  4842. int3 tile = obj->bestLocation();
  4843. if (!gs->map->isInTheMap(tile))
  4844. {
  4845. complain("Cannot find appropriate tile for a boat!");
  4846. return false;
  4847. }
  4848. //take boat cost
  4849. giveResources(playerID, -boatCost);
  4850. //create boat
  4851. NewObject no;
  4852. no.ID = Obj::BOAT;
  4853. no.subID = obj->getBoatType().getNum();
  4854. no.pos = tile + int3(1,0,0);
  4855. sendAndApply(&no);
  4856. return true;
  4857. }
  4858. void CGameHandler::engageIntoBattle(PlayerColor player)
  4859. {
  4860. //notify interfaces
  4861. PlayerBlocked pb;
  4862. pb.player = player;
  4863. pb.reason = PlayerBlocked::UPCOMING_BATTLE;
  4864. pb.startOrEnd = PlayerBlocked::BLOCKADE_STARTED;
  4865. sendAndApply(&pb);
  4866. }
  4867. void CGameHandler::checkVictoryLossConditions(const std::set<PlayerColor> & playerColors)
  4868. {
  4869. for (auto playerColor : playerColors)
  4870. {
  4871. if (getPlayerState(playerColor, false))
  4872. checkVictoryLossConditionsForPlayer(playerColor);
  4873. }
  4874. }
  4875. void CGameHandler::checkVictoryLossConditionsForAll()
  4876. {
  4877. std::set<PlayerColor> playerColors;
  4878. for (int i = 0; i < PlayerColor::PLAYER_LIMIT_I; ++i)
  4879. {
  4880. playerColors.insert(PlayerColor(i));
  4881. }
  4882. checkVictoryLossConditions(playerColors);
  4883. }
  4884. void CGameHandler::checkVictoryLossConditionsForPlayer(PlayerColor player)
  4885. {
  4886. const PlayerState * p = getPlayerState(player);
  4887. if(!p || p->status != EPlayerStatus::INGAME) return;
  4888. auto victoryLossCheckResult = gs->checkForVictoryAndLoss(player);
  4889. if (victoryLossCheckResult.victory() || victoryLossCheckResult.loss())
  4890. {
  4891. InfoWindow iw;
  4892. getVictoryLossMessage(player, victoryLossCheckResult, iw);
  4893. sendAndApply(&iw);
  4894. PlayerEndsGame peg;
  4895. peg.player = player;
  4896. peg.victoryLossCheckResult = victoryLossCheckResult;
  4897. sendAndApply(&peg);
  4898. if (victoryLossCheckResult.victory())
  4899. {
  4900. //one player won -> all enemies lost
  4901. for (auto i = gs->players.cbegin(); i!=gs->players.cend(); i++)
  4902. {
  4903. if (i->first != player && getPlayerState(i->first)->status == EPlayerStatus::INGAME)
  4904. {
  4905. peg.player = i->first;
  4906. peg.victoryLossCheckResult = getPlayerRelations(player, i->first) == PlayerRelations::ALLIES ?
  4907. victoryLossCheckResult : victoryLossCheckResult.invert(); // ally of winner
  4908. InfoWindow iw;
  4909. getVictoryLossMessage(player, peg.victoryLossCheckResult, iw);
  4910. iw.player = i->first;
  4911. sendAndApply(&iw);
  4912. sendAndApply(&peg);
  4913. }
  4914. }
  4915. if(p->human)
  4916. {
  4917. lobby->state = EServerState::GAMEPLAY_ENDED;
  4918. }
  4919. }
  4920. else
  4921. {
  4922. //copy heroes vector to avoid iterator invalidation as removal change PlayerState
  4923. auto hlp = p->heroes;
  4924. for (auto h : hlp) //eliminate heroes
  4925. {
  4926. if (h.get())
  4927. removeObject(h);
  4928. }
  4929. //player lost -> all his objects become unflagged (neutral)
  4930. for (auto obj : gs->map->objects) //unflag objs
  4931. {
  4932. if (obj.get() && obj->tempOwner == player)
  4933. setOwner(obj, PlayerColor::NEUTRAL);
  4934. }
  4935. //eliminating one player may cause victory of another:
  4936. std::set<PlayerColor> playerColors;
  4937. //do not copy player state (CBonusSystemNode) by value
  4938. for (auto &p : gs->players) //players may have different colors, iterate over players and not integers
  4939. {
  4940. if (p.first != player)
  4941. playerColors.insert(p.first);
  4942. }
  4943. //notify all players
  4944. for (auto pc : playerColors)
  4945. {
  4946. if (getPlayerState(pc)->status == EPlayerStatus::INGAME)
  4947. {
  4948. InfoWindow iw;
  4949. getVictoryLossMessage(player, victoryLossCheckResult.invert(), iw);
  4950. iw.player = pc;
  4951. sendAndApply(&iw);
  4952. }
  4953. }
  4954. checkVictoryLossConditions(playerColors);
  4955. }
  4956. auto playerInfo = getPlayerState(gs->currentPlayer, false);
  4957. // If we are called before the actual game start, there might be no current player
  4958. if (playerInfo && playerInfo->status != EPlayerStatus::INGAME)
  4959. {
  4960. // If player making turn has lost his turn must be over as well
  4961. states.setFlag(gs->currentPlayer, &PlayerStatus::makingTurn, false);
  4962. }
  4963. }
  4964. }
  4965. void CGameHandler::getVictoryLossMessage(PlayerColor player, const EVictoryLossCheckResult & victoryLossCheckResult, InfoWindow & out) const
  4966. {
  4967. out.player = player;
  4968. out.text.clear();
  4969. out.text << victoryLossCheckResult.messageToSelf;
  4970. // hackish, insert one player-specific string, if applicable
  4971. if (victoryLossCheckResult.messageToSelf.find("%s") != std::string::npos)
  4972. out.text.addReplacement(MetaString::COLOR, player.getNum());
  4973. out.components.emplace_back(Component::EComponentType::FLAG, player.getNum(), 0, 0);
  4974. }
  4975. bool CGameHandler::dig(const CGHeroInstance *h)
  4976. {
  4977. if (h->diggingStatus() != EDiggingStatus::CAN_DIG) //checks for terrain and movement
  4978. COMPLAIN_RETF("Hero cannot dig (error code %d)!", h->diggingStatus());
  4979. //create a hole
  4980. NewObject no;
  4981. no.ID = Obj::HOLE;
  4982. no.pos = h->visitablePos();
  4983. no.subID = 0;
  4984. sendAndApply(&no);
  4985. //take MPs
  4986. SetMovePoints smp;
  4987. smp.hid = h->id;
  4988. smp.val = 0;
  4989. sendAndApply(&smp);
  4990. InfoWindow iw;
  4991. iw.type = EInfoWindowMode::AUTO;
  4992. iw.player = h->tempOwner;
  4993. if (gs->map->grailPos == h->visitablePos())
  4994. {
  4995. iw.text.addTxt(MetaString::GENERAL_TXT, 58); //"Congratulations! After spending many hours digging here, your hero has uncovered the "
  4996. iw.text.addTxt(MetaString::ART_NAMES, ArtifactID::GRAIL);
  4997. iw.soundID = soundBase::ULTIMATEARTIFACT;
  4998. giveHeroNewArtifact(h, VLC->arth->objects[ArtifactID::GRAIL], ArtifactPosition::FIRST_AVAILABLE); //give grail
  4999. sendAndApply(&iw);
  5000. iw.soundID = soundBase::invalid;
  5001. iw.components.emplace_back(Component::EComponentType::ARTIFACT, ArtifactID::GRAIL, 0, 0);
  5002. iw.text.clear();
  5003. iw.text.addTxt(MetaString::ART_DESCR, ArtifactID::GRAIL);
  5004. sendAndApply(&iw);
  5005. }
  5006. else
  5007. {
  5008. iw.text.addTxt(MetaString::GENERAL_TXT, 59); //"Nothing here. \n Where could it be?"
  5009. iw.soundID = soundBase::Dig;
  5010. sendAndApply(&iw);
  5011. }
  5012. return true;
  5013. }
  5014. void CGameHandler::attackCasting(bool ranged, BonusType attackMode, const battle::Unit * attacker, const battle::Unit * defender)
  5015. {
  5016. if(attacker->hasBonusOfType(attackMode))
  5017. {
  5018. std::set<SpellID> spellsToCast;
  5019. TConstBonusListPtr spells = attacker->getBonuses(Selector::type()(attackMode));
  5020. for(const auto & sf : *spells)
  5021. {
  5022. spellsToCast.insert(SpellID(sf->subtype));
  5023. }
  5024. for(SpellID spellID : spellsToCast)
  5025. {
  5026. bool castMe = false;
  5027. if(!defender->alive())
  5028. {
  5029. logGlobal->debug("attackCasting: all attacked creatures have been killed");
  5030. return;
  5031. }
  5032. int32_t spellLevel = 0;
  5033. TConstBonusListPtr spellsByType = attacker->getBonuses(Selector::typeSubtype(attackMode, spellID));
  5034. for(const auto & sf : *spellsByType)
  5035. {
  5036. int meleeRanged;
  5037. if(sf->additionalInfo.size() < 2)
  5038. {
  5039. // legacy format
  5040. vstd::amax(spellLevel, sf->additionalInfo[0] % 1000);
  5041. meleeRanged = sf->additionalInfo[0] / 1000;
  5042. }
  5043. else
  5044. {
  5045. vstd::amax(spellLevel, sf->additionalInfo[0]);
  5046. meleeRanged = sf->additionalInfo[1];
  5047. }
  5048. if (meleeRanged == 0 || (meleeRanged == 1 && ranged) || (meleeRanged == 2 && !ranged))
  5049. castMe = true;
  5050. }
  5051. int chance = attacker->valOfBonuses((Selector::typeSubtype(attackMode, spellID)));
  5052. vstd::amin(chance, 100);
  5053. const CSpell * spell = SpellID(spellID).toSpell();
  5054. spells::AbilityCaster caster(attacker, spellLevel);
  5055. spells::Target target;
  5056. target.emplace_back(defender);
  5057. spells::BattleCast parameters(gs->curB, &caster, spells::Mode::PASSIVE, spell);
  5058. auto m = spell->battleMechanics(&parameters);
  5059. spells::detail::ProblemImpl ignored;
  5060. if(!m->canBeCastAt(target, ignored))
  5061. continue;
  5062. //check if spell should be cast (probability handling)
  5063. if(getRandomGenerator().nextInt(99) >= chance)
  5064. continue;
  5065. //casting
  5066. if(castMe)
  5067. {
  5068. parameters.cast(spellEnv, target);
  5069. }
  5070. }
  5071. }
  5072. }
  5073. void CGameHandler::handleAttackBeforeCasting(bool ranged, const CStack * attacker, const CStack * defender)
  5074. {
  5075. attackCasting(ranged, BonusType::SPELL_BEFORE_ATTACK, attacker, defender); //no death stare / acid breath needed?
  5076. }
  5077. void CGameHandler::handleAfterAttackCasting(bool ranged, const CStack * attacker, const CStack * defender)
  5078. {
  5079. if(!attacker->alive() || !defender->alive()) // can be already dead
  5080. return;
  5081. attackCasting(ranged, BonusType::SPELL_AFTER_ATTACK, attacker, defender);
  5082. if(!defender->alive())
  5083. {
  5084. //don't try death stare or acid breath on dead stack (crash!)
  5085. return;
  5086. }
  5087. if(attacker->hasBonusOfType(BonusType::DEATH_STARE))
  5088. {
  5089. // mechanics of Death Stare as in H3:
  5090. // each gorgon have 10% chance to kill (counted separately in H3) -> binomial distribution
  5091. //original formula x = min(x, (gorgons_count + 9)/10);
  5092. double chanceToKill = attacker->valOfBonuses(BonusType::DEATH_STARE, 0) / 100.0f;
  5093. vstd::amin(chanceToKill, 1); //cap at 100%
  5094. std::binomial_distribution<> distribution(attacker->getCount(), chanceToKill);
  5095. int staredCreatures = distribution(getRandomGenerator().getStdGenerator());
  5096. double cap = 1 / std::max(chanceToKill, (double)(0.01));//don't divide by 0
  5097. int maxToKill = static_cast<int>((attacker->getCount() + cap - 1) / cap); //not much more than chance * count
  5098. vstd::amin(staredCreatures, maxToKill);
  5099. staredCreatures += (attacker->level() * attacker->valOfBonuses(BonusType::DEATH_STARE, 1)) / defender->level();
  5100. if(staredCreatures)
  5101. {
  5102. //TODO: death stare was not originally available for multiple-hex attacks, but...
  5103. const CSpell * spell = SpellID(SpellID::DEATH_STARE).toSpell();
  5104. spells::AbilityCaster caster(attacker, 0);
  5105. spells::BattleCast parameters(gs->curB, &caster, spells::Mode::PASSIVE, spell);
  5106. spells::Target target;
  5107. target.emplace_back(defender);
  5108. parameters.setEffectValue(staredCreatures);
  5109. parameters.cast(spellEnv, target);
  5110. }
  5111. }
  5112. if(!defender->alive())
  5113. return;
  5114. int64_t acidDamage = 0;
  5115. TConstBonusListPtr acidBreath = attacker->getBonuses(Selector::type()(BonusType::ACID_BREATH));
  5116. for(const auto & b : *acidBreath)
  5117. {
  5118. if(b->additionalInfo[0] > getRandomGenerator().nextInt(99))
  5119. acidDamage += b->val;
  5120. }
  5121. if(acidDamage > 0)
  5122. {
  5123. const CSpell * spell = SpellID(SpellID::ACID_BREATH_DAMAGE).toSpell();
  5124. spells::AbilityCaster caster(attacker, 0);
  5125. spells::BattleCast parameters(gs->curB, &caster, spells::Mode::PASSIVE, spell);
  5126. spells::Target target;
  5127. target.emplace_back(defender);
  5128. parameters.setEffectValue(acidDamage * attacker->getCount());
  5129. parameters.cast(spellEnv, target);
  5130. }
  5131. if(!defender->alive())
  5132. return;
  5133. if(attacker->hasBonusOfType(BonusType::TRANSMUTATION) && defender->isLiving()) //transmutation mechanics, similar to WoG werewolf ability
  5134. {
  5135. double chanceToTrigger = attacker->valOfBonuses(BonusType::TRANSMUTATION) / 100.0f;
  5136. vstd::amin(chanceToTrigger, 1); //cap at 100%
  5137. if(getRandomGenerator().getDoubleRange(0, 1)() > chanceToTrigger)
  5138. return;
  5139. int bonusAdditionalInfo = attacker->getBonus(Selector::type()(BonusType::TRANSMUTATION))->additionalInfo[0];
  5140. if(defender->unitType()->getId() == bonusAdditionalInfo ||
  5141. (bonusAdditionalInfo == CAddInfo::NONE && defender->unitType()->getId() == attacker->unitType()->getId()))
  5142. return;
  5143. battle::UnitInfo resurrectInfo;
  5144. resurrectInfo.id = gs->curB->battleNextUnitId();
  5145. resurrectInfo.summoned = false;
  5146. resurrectInfo.position = defender->getPosition();
  5147. resurrectInfo.side = defender->unitSide();
  5148. if(bonusAdditionalInfo != CAddInfo::NONE)
  5149. resurrectInfo.type = CreatureID(bonusAdditionalInfo);
  5150. else
  5151. resurrectInfo.type = attacker->creatureId();
  5152. if(attacker->hasBonusOfType((BonusType::TRANSMUTATION), 0))
  5153. resurrectInfo.count = std::max((defender->getCount() * defender->getMaxHealth()) / resurrectInfo.type.toCreature()->getMaxHealth(), 1u);
  5154. else if (attacker->hasBonusOfType((BonusType::TRANSMUTATION), 1))
  5155. resurrectInfo.count = defender->getCount();
  5156. else
  5157. return; //wrong subtype
  5158. BattleUnitsChanged addUnits;
  5159. addUnits.changedStacks.emplace_back(resurrectInfo.id, UnitChanges::EOperation::ADD);
  5160. resurrectInfo.save(addUnits.changedStacks.back().data);
  5161. BattleUnitsChanged removeUnits;
  5162. removeUnits.changedStacks.emplace_back(defender->unitId(), UnitChanges::EOperation::REMOVE);
  5163. sendAndApply(&removeUnits);
  5164. sendAndApply(&addUnits);
  5165. }
  5166. if(attacker->hasBonusOfType(BonusType::DESTRUCTION, 0) || attacker->hasBonusOfType(BonusType::DESTRUCTION, 1))
  5167. {
  5168. double chanceToTrigger = 0;
  5169. int amountToDie = 0;
  5170. if(attacker->hasBonusOfType(BonusType::DESTRUCTION, 0)) //killing by percentage
  5171. {
  5172. chanceToTrigger = attacker->valOfBonuses(BonusType::DESTRUCTION, 0) / 100.0f;
  5173. int percentageToDie = attacker->getBonus(Selector::type()(BonusType::DESTRUCTION).And(Selector::subtype()(0)))->additionalInfo[0];
  5174. amountToDie = static_cast<int>(defender->getCount() * percentageToDie * 0.01f);
  5175. }
  5176. else if(attacker->hasBonusOfType(BonusType::DESTRUCTION, 1)) //killing by count
  5177. {
  5178. chanceToTrigger = attacker->valOfBonuses(BonusType::DESTRUCTION, 1) / 100.0f;
  5179. amountToDie = attacker->getBonus(Selector::type()(BonusType::DESTRUCTION).And(Selector::subtype()(1)))->additionalInfo[0];
  5180. }
  5181. vstd::amin(chanceToTrigger, 1); //cap trigger chance at 100%
  5182. if(getRandomGenerator().getDoubleRange(0, 1)() > chanceToTrigger)
  5183. return;
  5184. BattleStackAttacked bsa;
  5185. bsa.attackerID = -1;
  5186. bsa.stackAttacked = defender->unitId();
  5187. bsa.damageAmount = amountToDie * defender->getMaxHealth();
  5188. bsa.flags = BattleStackAttacked::SPELL_EFFECT;
  5189. bsa.spellID = SpellID::SLAYER;
  5190. defender->prepareAttacked(bsa, getRandomGenerator());
  5191. StacksInjured si;
  5192. si.stacks.push_back(bsa);
  5193. sendAndApply(&si);
  5194. sendGenericKilledLog(defender, bsa.killedAmount, false);
  5195. }
  5196. }
  5197. void CGameHandler::visitObjectOnTile(const TerrainTile &t, const CGHeroInstance * h)
  5198. {
  5199. if (!t.visitableObjects.empty())
  5200. {
  5201. //to prevent self-visiting heroes on space press
  5202. if (t.visitableObjects.back() != h)
  5203. objectVisited(t.visitableObjects.back(), h);
  5204. else if (t.visitableObjects.size() > 1)
  5205. objectVisited(*(t.visitableObjects.end()-2),h);
  5206. }
  5207. }
  5208. bool CGameHandler::sacrificeCreatures(const IMarket * market, const CGHeroInstance * hero, const std::vector<SlotID> & slot, const std::vector<ui32> & count)
  5209. {
  5210. if (!hero)
  5211. COMPLAIN_RET("You need hero to sacrifice creature!");
  5212. int expSum = 0;
  5213. auto finish = [this, &hero, &expSum]()
  5214. {
  5215. changePrimSkill(hero, PrimarySkill::EXPERIENCE, hero->calculateXp(expSum));
  5216. };
  5217. for(int i = 0; i < slot.size(); ++i)
  5218. {
  5219. int oldCount = hero->getStackCount(slot[i]);
  5220. if(oldCount < (int)count[i])
  5221. {
  5222. finish();
  5223. COMPLAIN_RET("Not enough creatures to sacrifice!")
  5224. }
  5225. else if(oldCount == count[i] && hero->stacksCount() == 1 && hero->needsLastStack())
  5226. {
  5227. finish();
  5228. COMPLAIN_RET("Cannot sacrifice last creature!");
  5229. }
  5230. int crid = hero->getStack(slot[i]).type->getId();
  5231. changeStackCount(StackLocation(hero, slot[i]), -(TQuantity)count[i]);
  5232. int dump, exp;
  5233. market->getOffer(crid, 0, dump, exp, EMarketMode::CREATURE_EXP);
  5234. exp *= count[i];
  5235. expSum += exp;
  5236. }
  5237. finish();
  5238. return true;
  5239. }
  5240. bool CGameHandler::sacrificeArtifact(const IMarket * m, const CGHeroInstance * hero, const std::vector<ArtifactPosition> & slot)
  5241. {
  5242. if (!hero)
  5243. COMPLAIN_RET("You need hero to sacrifice artifact!");
  5244. int expSum = 0;
  5245. auto finish = [this, &hero, &expSum]()
  5246. {
  5247. changePrimSkill(hero, PrimarySkill::EXPERIENCE, hero->calculateXp(expSum));
  5248. };
  5249. for(int i = 0; i < slot.size(); ++i)
  5250. {
  5251. ArtifactLocation al(hero, slot[i]);
  5252. const CArtifactInstance * a = al.getArt();
  5253. if(!a)
  5254. {
  5255. finish();
  5256. COMPLAIN_RET("Cannot find artifact to sacrifice!");
  5257. }
  5258. const CArtifactInstance * art = hero->getArt(slot[i]);
  5259. if(!art)
  5260. {
  5261. finish();
  5262. COMPLAIN_RET("No artifact at position to sacrifice!");
  5263. }
  5264. si32 typId = art->artType->getId();
  5265. int dmp, expToGive;
  5266. m->getOffer(typId, 0, dmp, expToGive, EMarketMode::ARTIFACT_EXP);
  5267. expSum += expToGive;
  5268. removeArtifact(al);
  5269. }
  5270. finish();
  5271. return true;
  5272. }
  5273. void CGameHandler::makeStackDoNothing(const CStack * next)
  5274. {
  5275. BattleAction doNothing;
  5276. doNothing.actionType = EActionType::NO_ACTION;
  5277. doNothing.side = next->unitSide();
  5278. doNothing.stackNumber = next->unitId();
  5279. makeAutomaticAction(next, doNothing);
  5280. }
  5281. bool CGameHandler::insertNewStack(const StackLocation &sl, const CCreature *c, TQuantity count)
  5282. {
  5283. if (sl.army->hasStackAtSlot(sl.slot))
  5284. COMPLAIN_RET("Slot is already taken!");
  5285. if (!sl.slot.validSlot())
  5286. COMPLAIN_RET("Cannot insert stack to that slot!");
  5287. InsertNewStack ins;
  5288. ins.army = sl.army->id;
  5289. ins.slot = sl.slot;
  5290. ins.type = c->getId();
  5291. ins.count = count;
  5292. sendAndApply(&ins);
  5293. return true;
  5294. }
  5295. bool CGameHandler::eraseStack(const StackLocation &sl, bool forceRemoval)
  5296. {
  5297. if (!sl.army->hasStackAtSlot(sl.slot))
  5298. COMPLAIN_RET("Cannot find a stack to erase");
  5299. if (sl.army->stacksCount() == 1 //from the last stack
  5300. && sl.army->needsLastStack() //that must be left
  5301. && !forceRemoval) //ignore above conditions if we are forcing removal
  5302. {
  5303. COMPLAIN_RET("Cannot erase the last stack!");
  5304. }
  5305. EraseStack es;
  5306. es.army = sl.army->id;
  5307. es.slot = sl.slot;
  5308. sendAndApply(&es);
  5309. return true;
  5310. }
  5311. bool CGameHandler::changeStackCount(const StackLocation &sl, TQuantity count, bool absoluteValue)
  5312. {
  5313. TQuantity currentCount = sl.army->getStackCount(sl.slot);
  5314. if ((absoluteValue && count < 0)
  5315. || (!absoluteValue && -count > currentCount))
  5316. {
  5317. COMPLAIN_RET("Cannot take more stacks than present!");
  5318. }
  5319. if ((currentCount == -count && !absoluteValue)
  5320. || (!count && absoluteValue))
  5321. {
  5322. eraseStack(sl);
  5323. }
  5324. else
  5325. {
  5326. ChangeStackCount csc;
  5327. csc.army = sl.army->id;
  5328. csc.slot = sl.slot;
  5329. csc.count = count;
  5330. csc.absoluteValue = absoluteValue;
  5331. sendAndApply(&csc);
  5332. }
  5333. return true;
  5334. }
  5335. bool CGameHandler::addToSlot(const StackLocation &sl, const CCreature *c, TQuantity count)
  5336. {
  5337. const CCreature *slotC = sl.army->getCreature(sl.slot);
  5338. if (!slotC) //slot is empty
  5339. insertNewStack(sl, c, count);
  5340. else if (c == slotC)
  5341. changeStackCount(sl, count);
  5342. else
  5343. {
  5344. COMPLAIN_RET("Cannot add " + c->getNamePluralTranslated() + " to slot " + boost::lexical_cast<std::string>(sl.slot) + "!");
  5345. }
  5346. return true;
  5347. }
  5348. void CGameHandler::tryJoiningArmy(const CArmedInstance *src, const CArmedInstance *dst, bool removeObjWhenFinished, bool allowMerging)
  5349. {
  5350. if (removeObjWhenFinished)
  5351. removeAfterVisit(src);
  5352. if (!src->canBeMergedWith(*dst, allowMerging))
  5353. {
  5354. if (allowMerging) //do that, add all matching creatures.
  5355. {
  5356. bool cont = true;
  5357. while (cont)
  5358. {
  5359. for (auto i = src->stacks.begin(); i != src->stacks.end(); i++)//while there are unmoved creatures
  5360. {
  5361. SlotID pos = dst->getSlotFor(i->second->type);
  5362. if (pos.validSlot())
  5363. {
  5364. moveStack(StackLocation(src, i->first), StackLocation(dst, pos));
  5365. cont = true;
  5366. break; //or iterator crashes
  5367. }
  5368. cont = false;
  5369. }
  5370. }
  5371. }
  5372. showGarrisonDialog(src->id, dst->id, true); //show garrison window and optionally remove ourselves from map when player ends
  5373. }
  5374. else //merge
  5375. {
  5376. moveArmy(src, dst, allowMerging);
  5377. }
  5378. }
  5379. bool CGameHandler::moveStack(const StackLocation &src, const StackLocation &dst, TQuantity count)
  5380. {
  5381. if (!src.army->hasStackAtSlot(src.slot))
  5382. COMPLAIN_RET("No stack to move!");
  5383. if (dst.army->hasStackAtSlot(dst.slot) && dst.army->getCreature(dst.slot) != src.army->getCreature(src.slot))
  5384. COMPLAIN_RET("Cannot move: stack of different type at destination pos!");
  5385. if (!dst.slot.validSlot())
  5386. COMPLAIN_RET("Cannot move stack to that slot!");
  5387. if (count == -1)
  5388. {
  5389. count = src.army->getStackCount(src.slot);
  5390. }
  5391. if (src.army != dst.army //moving away
  5392. && count == src.army->getStackCount(src.slot) //all creatures
  5393. && src.army->stacksCount() == 1 //from the last stack
  5394. && src.army->needsLastStack()) //that must be left
  5395. {
  5396. COMPLAIN_RET("Cannot move away the last creature!");
  5397. }
  5398. RebalanceStacks rs;
  5399. rs.srcArmy = src.army->id;
  5400. rs.dstArmy = dst.army->id;
  5401. rs.srcSlot = src.slot;
  5402. rs.dstSlot = dst.slot;
  5403. rs.count = count;
  5404. sendAndApply(&rs);
  5405. return true;
  5406. }
  5407. void CGameHandler::castSpell(const spells::Caster * caster, SpellID spellID, const int3 &pos)
  5408. {
  5409. const CSpell * s = spellID.toSpell();
  5410. if(!s)
  5411. return;
  5412. AdventureSpellCastParameters p;
  5413. p.caster = caster;
  5414. p.pos = pos;
  5415. s->adventureCast(spellEnv, p);
  5416. }
  5417. bool CGameHandler::swapStacks(const StackLocation & sl1, const StackLocation & sl2)
  5418. {
  5419. if(!sl1.army->hasStackAtSlot(sl1.slot))
  5420. {
  5421. return moveStack(sl2, sl1);
  5422. }
  5423. else if(!sl2.army->hasStackAtSlot(sl2.slot))
  5424. {
  5425. return moveStack(sl1, sl2);
  5426. }
  5427. else
  5428. {
  5429. SwapStacks ss;
  5430. ss.srcArmy = sl1.army->id;
  5431. ss.dstArmy = sl2.army->id;
  5432. ss.srcSlot = sl1.slot;
  5433. ss.dstSlot = sl2.slot;
  5434. sendAndApply(&ss);
  5435. return true;
  5436. }
  5437. }
  5438. void CGameHandler::runBattle()
  5439. {
  5440. setBattle(gs->curB);
  5441. assert(gs->curB);
  5442. //TODO: pre-tactic stuff, call scripts etc.
  5443. //Moat should be initialized here, because only here we can use spellcasting
  5444. if (gs->curB->town && gs->curB->town->fortLevel() >= CGTownInstance::CITADEL)
  5445. {
  5446. const auto * h = gs->curB->battleGetFightingHero(BattleSide::DEFENDER);
  5447. const auto * actualCaster = h ? static_cast<const spells::Caster*>(h) : nullptr;
  5448. auto moatCaster = spells::SilentCaster(gs->curB->getSidePlayer(BattleSide::DEFENDER), actualCaster);
  5449. auto cast = spells::BattleCast(gs->curB, &moatCaster, spells::Mode::PASSIVE, gs->curB->town->town->moatAbility.toSpell());
  5450. auto target = spells::Target();
  5451. cast.cast(spellEnv, target);
  5452. }
  5453. //tactic round
  5454. {
  5455. while ((lobby->state != EServerState::SHUTDOWN) && gs->curB->tacticDistance && !battleResult.get())
  5456. boost::this_thread::sleep(boost::posix_time::milliseconds(50));
  5457. }
  5458. //initial stacks appearance triggers, e.g. built-in bonus spells
  5459. auto initialStacks = gs->curB->stacks; //use temporary variable to outclude summoned stacks added to gs->curB->stacks from processing
  5460. for (CStack * stack : initialStacks)
  5461. {
  5462. if (stack->hasBonusOfType(BonusType::SUMMON_GUARDIANS))
  5463. {
  5464. std::shared_ptr<const Bonus> summonInfo = stack->getBonus(Selector::type()(BonusType::SUMMON_GUARDIANS));
  5465. auto accessibility = getAccesibility();
  5466. CreatureID creatureData = CreatureID(summonInfo->subtype);
  5467. std::vector<BattleHex> targetHexes;
  5468. const bool targetIsBig = stack->unitType()->isDoubleWide(); //target = creature to guard
  5469. const bool guardianIsBig = creatureData.toCreature()->isDoubleWide();
  5470. /*Chosen idea for two hex units was to cover all possible surrounding hexes of target unit with as small number of stacks as possible.
  5471. For one-hex targets there are four guardians - front, back and one per side (up + down).
  5472. Two-hex targets are wider and the difference is there are two guardians per side to cover 3 hexes + extra hex in the front
  5473. Additionally, there are special cases for starting positions etc., where guardians would be outside of battlefield if spawned normally*/
  5474. if (!guardianIsBig)
  5475. targetHexes = stack->getSurroundingHexes();
  5476. else
  5477. summonGuardiansHelper(targetHexes, stack->getPosition(), stack->unitSide(), targetIsBig);
  5478. for(auto hex : targetHexes)
  5479. {
  5480. if(accessibility.accessible(hex, guardianIsBig, stack->unitSide())) //without this multiple creatures can occupy one hex
  5481. {
  5482. battle::UnitInfo info;
  5483. info.id = gs->curB->battleNextUnitId();
  5484. info.count = std::max(1, (int)(stack->getCount() * 0.01 * summonInfo->val));
  5485. info.type = creatureData;
  5486. info.side = stack->unitSide();
  5487. info.position = hex;
  5488. info.summoned = true;
  5489. BattleUnitsChanged pack;
  5490. pack.changedStacks.emplace_back(info.id, UnitChanges::EOperation::ADD);
  5491. info.save(pack.changedStacks.back().data);
  5492. sendAndApply(&pack);
  5493. }
  5494. }
  5495. }
  5496. stackEnchantedTrigger(stack);
  5497. }
  5498. //spells opening battle
  5499. for (int i = 0; i < 2; ++i)
  5500. {
  5501. auto h = gs->curB->battleGetFightingHero(i);
  5502. if (h)
  5503. {
  5504. TConstBonusListPtr bl = h->getBonuses(Selector::type()(BonusType::OPENING_BATTLE_SPELL));
  5505. for (auto b : *bl)
  5506. {
  5507. spells::BonusCaster caster(h, b);
  5508. const CSpell * spell = SpellID(b->subtype).toSpell();
  5509. spells::BattleCast parameters(gs->curB, &caster, spells::Mode::PASSIVE, spell);
  5510. parameters.setSpellLevel(3);
  5511. parameters.setEffectDuration(b->val);
  5512. parameters.massive = true;
  5513. parameters.castIfPossible(spellEnv, spells::Target());
  5514. }
  5515. }
  5516. }
  5517. // it is possible that due to opening spells one side was eliminated -> check for end of battle
  5518. checkBattleStateChanges();
  5519. bool firstRound = true;//FIXME: why first round is -1?
  5520. //main loop
  5521. while ((lobby->state != EServerState::SHUTDOWN) && !battleResult.get()) //till the end of the battle ;]
  5522. {
  5523. BattleNextRound bnr;
  5524. bnr.round = gs->curB->round + 1;
  5525. logGlobal->debug("Round %d", bnr.round);
  5526. sendAndApply(&bnr);
  5527. auto obstacles = gs->curB->obstacles; //we copy container, because we're going to modify it
  5528. for (auto &obstPtr : obstacles)
  5529. {
  5530. if (const SpellCreatedObstacle *sco = dynamic_cast<const SpellCreatedObstacle *>(obstPtr.get()))
  5531. if (sco->turnsRemaining == 0)
  5532. removeObstacle(*obstPtr);
  5533. }
  5534. const BattleInfo & curB = *gs->curB;
  5535. for(auto stack : curB.stacks)
  5536. {
  5537. if(stack->alive() && !firstRound)
  5538. stackEnchantedTrigger(stack);
  5539. }
  5540. //stack loop
  5541. auto getNextStack = [this]() -> const CStack *
  5542. {
  5543. if(battleResult.get())
  5544. return nullptr;
  5545. std::vector<battle::Units> q;
  5546. gs->curB->battleGetTurnOrder(q, 1, 0, -1); //todo: get rid of "turn -1"
  5547. if(!q.empty())
  5548. {
  5549. if(!q.front().empty())
  5550. {
  5551. auto next = q.front().front();
  5552. const auto stack = dynamic_cast<const CStack *>(next);
  5553. // regeneration takes place before everything else but only during first turn attempt in each round
  5554. // also works under blind and similar effects
  5555. if(stack && stack->alive() && !stack->waiting)
  5556. {
  5557. BattleTriggerEffect bte;
  5558. bte.stackID = stack->unitId();
  5559. bte.effect = vstd::to_underlying(BonusType::HP_REGENERATION);
  5560. const int32_t lostHealth = stack->getMaxHealth() - stack->getFirstHPleft();
  5561. if(stack->hasBonusOfType(BonusType::HP_REGENERATION))
  5562. bte.val = std::min(lostHealth, stack->valOfBonuses(BonusType::HP_REGENERATION));
  5563. if(bte.val) // anything to heal
  5564. sendAndApply(&bte);
  5565. }
  5566. if(next->willMove())
  5567. return stack;
  5568. }
  5569. }
  5570. return nullptr;
  5571. };
  5572. const CStack * next = nullptr;
  5573. while((lobby->state != EServerState::SHUTDOWN) && (next = getNextStack()))
  5574. {
  5575. BattleUnitsChanged removeGhosts;
  5576. for(auto stack : curB.stacks)
  5577. {
  5578. if(stack->ghostPending)
  5579. removeGhosts.changedStacks.emplace_back(stack->unitId(), UnitChanges::EOperation::REMOVE);
  5580. }
  5581. if(!removeGhosts.changedStacks.empty())
  5582. sendAndApply(&removeGhosts);
  5583. // check for bad morale => freeze
  5584. int nextStackMorale = next->moraleVal();
  5585. if(!next->hadMorale && !next->waited() && nextStackMorale < 0)
  5586. {
  5587. auto diceSize = VLC->settings()->getVector(EGameSettings::COMBAT_BAD_MORALE_DICE);
  5588. size_t diceIndex = std::min<size_t>(diceSize.size()-1, -nextStackMorale);
  5589. if(diceSize.size() > 0 && getRandomGenerator().nextInt(1, diceSize[diceIndex]) == 1)
  5590. {
  5591. //unit loses its turn - empty freeze action
  5592. BattleAction ba;
  5593. ba.actionType = EActionType::BAD_MORALE;
  5594. ba.side = next->unitSide();
  5595. ba.stackNumber = next->unitId();
  5596. makeAutomaticAction(next, ba);
  5597. continue;
  5598. }
  5599. }
  5600. if (next->hasBonusOfType(BonusType::ATTACKS_NEAREST_CREATURE)) //while in berserk
  5601. {
  5602. logGlobal->trace("Handle Berserk effect");
  5603. std::pair<const battle::Unit *, BattleHex> attackInfo = curB.getNearestStack(next);
  5604. if (attackInfo.first != nullptr)
  5605. {
  5606. BattleAction attack;
  5607. attack.actionType = EActionType::WALK_AND_ATTACK;
  5608. attack.side = next->unitSide();
  5609. attack.stackNumber = next->unitId();
  5610. attack.aimToHex(attackInfo.second);
  5611. attack.aimToUnit(attackInfo.first);
  5612. makeAutomaticAction(next, attack);
  5613. logGlobal->trace("Attacked nearest target %s", attackInfo.first->getDescription());
  5614. }
  5615. else
  5616. {
  5617. makeStackDoNothing(next);
  5618. logGlobal->trace("No target found");
  5619. }
  5620. continue;
  5621. }
  5622. const CGHeroInstance * curOwner = battleGetOwnerHero(next);
  5623. const int stackCreatureId = next->unitType()->getId();
  5624. if ((stackCreatureId == CreatureID::ARROW_TOWERS || stackCreatureId == CreatureID::BALLISTA)
  5625. && (!curOwner || getRandomGenerator().nextInt(99) >= curOwner->valOfBonuses(BonusType::MANUAL_CONTROL, stackCreatureId)))
  5626. {
  5627. BattleAction attack;
  5628. attack.actionType = EActionType::SHOOT;
  5629. attack.side = next->unitSide();
  5630. attack.stackNumber = next->unitId();
  5631. //TODO: select target by priority
  5632. const battle::Unit * target = nullptr;
  5633. for(auto & elem : gs->curB->stacks)
  5634. {
  5635. if(elem->unitType()->getId() != CreatureID::CATAPULT
  5636. && elem->unitOwner() != next->unitOwner()
  5637. && elem->isValidTarget()
  5638. && gs->curB->battleCanShoot(next, elem->getPosition()))
  5639. {
  5640. target = elem;
  5641. break;
  5642. }
  5643. }
  5644. if(target == nullptr)
  5645. {
  5646. makeStackDoNothing(next);
  5647. }
  5648. else
  5649. {
  5650. attack.aimToUnit(target);
  5651. makeAutomaticAction(next, attack);
  5652. }
  5653. continue;
  5654. }
  5655. if (next->unitType()->getId() == CreatureID::CATAPULT)
  5656. {
  5657. const auto & attackableBattleHexes = curB.getAttackableBattleHexes();
  5658. if (attackableBattleHexes.empty())
  5659. {
  5660. makeStackDoNothing(next);
  5661. continue;
  5662. }
  5663. if (!curOwner || getRandomGenerator().nextInt(99) >= curOwner->valOfBonuses(BonusType::MANUAL_CONTROL, CreatureID::CATAPULT))
  5664. {
  5665. BattleAction attack;
  5666. attack.actionType = EActionType::CATAPULT;
  5667. attack.side = next->unitSide();
  5668. attack.stackNumber = next->unitId();
  5669. makeAutomaticAction(next, attack);
  5670. continue;
  5671. }
  5672. }
  5673. if (next->unitType()->getId() == CreatureID::FIRST_AID_TENT)
  5674. {
  5675. TStacks possibleStacks = battleGetStacksIf([=](const CStack * s)
  5676. {
  5677. return s->unitOwner() == next->unitOwner() && s->canBeHealed();
  5678. });
  5679. if (!possibleStacks.size())
  5680. {
  5681. makeStackDoNothing(next);
  5682. continue;
  5683. }
  5684. if (!curOwner || getRandomGenerator().nextInt(99) >= curOwner->valOfBonuses(BonusType::MANUAL_CONTROL, CreatureID::FIRST_AID_TENT))
  5685. {
  5686. RandomGeneratorUtil::randomShuffle(possibleStacks, getRandomGenerator());
  5687. const CStack * toBeHealed = possibleStacks.front();
  5688. BattleAction heal;
  5689. heal.actionType = EActionType::STACK_HEAL;
  5690. heal.aimToUnit(toBeHealed);
  5691. heal.side = next->unitSide();
  5692. heal.stackNumber = next->unitId();
  5693. makeAutomaticAction(next, heal);
  5694. continue;
  5695. }
  5696. }
  5697. int numberOfAsks = 1;
  5698. bool breakOuter = false;
  5699. do
  5700. {//ask interface and wait for answer
  5701. if (!battleResult.get())
  5702. {
  5703. stackTurnTrigger(next); //various effects
  5704. if(next->fear)
  5705. {
  5706. makeStackDoNothing(next); //end immediately if stack was affected by fear
  5707. }
  5708. else
  5709. {
  5710. logGlobal->trace("Activating %s", next->nodeName());
  5711. auto nextId = next->unitId();
  5712. BattleSetActiveStack sas;
  5713. sas.stack = nextId;
  5714. sendAndApply(&sas);
  5715. auto actionWasMade = [&]() -> bool
  5716. {
  5717. if (battleMadeAction.data)//active stack has made its action
  5718. return true;
  5719. if (battleResult.get())// battle is finished
  5720. return true;
  5721. if (next == nullptr)//active stack was been removed
  5722. return true;
  5723. return !next->alive();//active stack is dead
  5724. };
  5725. boost::unique_lock<boost::mutex> lock(battleMadeAction.mx);
  5726. battleMadeAction.data = false;
  5727. while ((lobby->state != EServerState::SHUTDOWN) && !actionWasMade())
  5728. {
  5729. battleMadeAction.cond.wait(lock);
  5730. if (battleGetStackByID(nextId, false) != next)
  5731. next = nullptr; //it may be removed, while we wait
  5732. }
  5733. }
  5734. }
  5735. if (battleResult.get()) //don't touch it, battle could be finished while waiting got action
  5736. {
  5737. breakOuter = true;
  5738. break;
  5739. }
  5740. //we're after action, all results applied
  5741. checkBattleStateChanges(); //check if this action ended the battle
  5742. if(next != nullptr)
  5743. {
  5744. //check for good morale
  5745. nextStackMorale = next->moraleVal();
  5746. if( !battleResult.get()
  5747. && !next->hadMorale
  5748. && !next->defending
  5749. && !next->waited()
  5750. && !next->fear
  5751. && next->alive()
  5752. && nextStackMorale > 0)
  5753. {
  5754. auto diceSize = VLC->settings()->getVector(EGameSettings::COMBAT_GOOD_MORALE_DICE);
  5755. size_t diceIndex = std::min<size_t>(diceSize.size()-1, nextStackMorale);
  5756. if(diceSize.size() > 0 && getRandomGenerator().nextInt(1, diceSize[diceIndex]) == 1)
  5757. {
  5758. BattleTriggerEffect bte;
  5759. bte.stackID = next->unitId();
  5760. bte.effect = vstd::to_underlying(BonusType::MORALE);
  5761. bte.val = 1;
  5762. bte.additionalInfo = 0;
  5763. sendAndApply(&bte); //play animation
  5764. ++numberOfAsks; //move this stack once more
  5765. }
  5766. }
  5767. }
  5768. --numberOfAsks;
  5769. } while (numberOfAsks > 0);
  5770. if (breakOuter)
  5771. {
  5772. break;
  5773. }
  5774. }
  5775. firstRound = false;
  5776. }
  5777. if (lobby->state != EServerState::SHUTDOWN)
  5778. endBattle(gs->curB->tile, gs->curB->battleGetFightingHero(0), gs->curB->battleGetFightingHero(1));
  5779. }
  5780. bool CGameHandler::makeAutomaticAction(const CStack *stack, BattleAction &ba)
  5781. {
  5782. BattleSetActiveStack bsa;
  5783. bsa.stack = stack->unitId();
  5784. bsa.askPlayerInterface = false;
  5785. sendAndApply(&bsa);
  5786. bool ret = makeBattleAction(ba);
  5787. checkBattleStateChanges();
  5788. return ret;
  5789. }
  5790. bool CGameHandler::giveHeroArtifact(const CGHeroInstance * h, const CArtifactInstance * a, ArtifactPosition pos)
  5791. {
  5792. assert(a->artType);
  5793. ArtifactLocation al(h, ArtifactPosition::PRE_FIRST);
  5794. if(pos == ArtifactPosition::FIRST_AVAILABLE)
  5795. {
  5796. al.slot = ArtifactUtils::getArtAnyPosition(h, a->getTypeId());
  5797. }
  5798. else if(ArtifactUtils::isSlotBackpack(pos))
  5799. {
  5800. al.slot = ArtifactUtils::getArtBackpackPosition(h, a->getTypeId());
  5801. }
  5802. else
  5803. {
  5804. al.slot = pos;
  5805. }
  5806. if(a->canBePutAt(al))
  5807. putArtifact(al, a);
  5808. else
  5809. return false;
  5810. return true;
  5811. }
  5812. void CGameHandler::putArtifact(const ArtifactLocation &al, const CArtifactInstance *a)
  5813. {
  5814. PutArtifact pa;
  5815. pa.art = a;
  5816. pa.al = al;
  5817. sendAndApply(&pa);
  5818. }
  5819. bool CGameHandler::giveHeroNewArtifact(const CGHeroInstance * h, const CArtifact * artType, ArtifactPosition pos)
  5820. {
  5821. assert(artType);
  5822. if(pos == ArtifactPosition::FIRST_AVAILABLE)
  5823. {
  5824. if(!artType->canBePutAt(h, ArtifactUtils::getArtAnyPosition(h, artType->getId())))
  5825. COMPLAIN_RET("Cannot put artifact in that slot!");
  5826. }
  5827. else if(ArtifactUtils::isSlotBackpack(pos))
  5828. {
  5829. if(!artType->canBePutAt(h, ArtifactUtils::getArtBackpackPosition(h, artType->getId())))
  5830. COMPLAIN_RET("Cannot put artifact in that slot!");
  5831. }
  5832. else
  5833. {
  5834. COMPLAIN_RET_FALSE_IF(!artType->canBePutAt(h, pos, false), "Cannot put artifact in that slot!");
  5835. }
  5836. CArtifactInstance * newArtInst = nullptr;
  5837. if(artType->canBeDisassembled())
  5838. newArtInst = new CCombinedArtifactInstance();
  5839. else
  5840. newArtInst = new CArtifactInstance();
  5841. newArtInst->artType = artType; // *NOT* via settype -> all bonus-related stuff must be done by NewArtifact apply
  5842. NewArtifact na;
  5843. na.art = newArtInst;
  5844. sendAndApply(&na); // -> updates a!!!, will create a on other machines
  5845. if(giveHeroArtifact(h, newArtInst, pos))
  5846. return true;
  5847. else
  5848. return false;
  5849. }
  5850. void CGameHandler::setBattleResult(BattleResult::EResult resultType, int victoriusSide)
  5851. {
  5852. boost::unique_lock<boost::mutex> guard(battleResult.mx);
  5853. if (battleResult.data)
  5854. {
  5855. complain((boost::format("The battle result has been already set (to %d, asked to %d)")
  5856. % battleResult.data->result % resultType).str());
  5857. return;
  5858. }
  5859. auto br = new BattleResult();
  5860. br->result = resultType;
  5861. br->winner = victoriusSide; //surrendering side loses
  5862. gs->curB->calculateCasualties(br->casualties);
  5863. battleResult.data = br;
  5864. }
  5865. void CGameHandler::spawnWanderingMonsters(CreatureID creatureID)
  5866. {
  5867. std::vector<int3>::iterator tile;
  5868. std::vector<int3> tiles;
  5869. getFreeTiles(tiles);
  5870. ui32 amount = (ui32)tiles.size() / 200; //Chance is 0.5% for each tile
  5871. RandomGeneratorUtil::randomShuffle(tiles, getRandomGenerator());
  5872. logGlobal->trace("Spawning wandering monsters. Found %d free tiles. Creature type: %d", tiles.size(), creatureID.num);
  5873. const CCreature *cre = VLC->creh->objects.at(creatureID);
  5874. for (int i = 0; i < (int)amount; ++i)
  5875. {
  5876. tile = tiles.begin();
  5877. logGlobal->trace("\tSpawning monster at %s", tile->toString());
  5878. {
  5879. auto count = cre->getRandomAmount(std::rand);
  5880. auto monsterId = putNewObject(Obj::MONSTER, creatureID, *tile);
  5881. setObjProperty(monsterId, ObjProperty::MONSTER_COUNT, count);
  5882. setObjProperty(monsterId, ObjProperty::MONSTER_POWER, (si64)1000*count);
  5883. }
  5884. tiles.erase(tile); //not use it again
  5885. }
  5886. }
  5887. void CGameHandler::handleCheatCode(std::string & cheat, PlayerColor player, const CGHeroInstance * hero, const CGTownInstance * town, bool & cheated)
  5888. {
  5889. //Make cheat case-insensitive
  5890. std::transform(cheat.begin(), cheat.end(), cheat.begin(), [](unsigned char c){ return std::tolower(c); });
  5891. if (cheat == "vcmiistari" || cheat == "vcmispells")
  5892. {
  5893. cheated = true;
  5894. if (!hero) return;
  5895. ///Give hero spellbook
  5896. if (!hero->hasSpellbook())
  5897. giveHeroNewArtifact(hero, VLC->arth->objects[ArtifactID::SPELLBOOK], ArtifactPosition::SPELLBOOK);
  5898. ///Give all spells with bonus (to allow banned spells)
  5899. GiveBonus giveBonus(GiveBonus::ETarget::HERO);
  5900. giveBonus.id = hero->id.getNum();
  5901. giveBonus.bonus = Bonus(BonusDuration::PERMANENT, BonusType::SPELLS_OF_LEVEL, BonusSource::OTHER, 0, 0);
  5902. //start with level 0 to skip abilities
  5903. for (int level = 1; level <= GameConstants::SPELL_LEVELS; level++)
  5904. {
  5905. giveBonus.bonus.subtype = level;
  5906. sendAndApply(&giveBonus);
  5907. }
  5908. ///Give mana
  5909. SetMana sm;
  5910. sm.hid = hero->id;
  5911. sm.val = 999;
  5912. sm.absolute = true;
  5913. sendAndApply(&sm);
  5914. }
  5915. else if (cheat == "vcmiarmenelos" || cheat == "vcmibuild")
  5916. {
  5917. cheated = true;
  5918. if (!town) return;
  5919. ///Build all buildings in selected town
  5920. for (auto & build : town->town->buildings)
  5921. {
  5922. if (!town->hasBuilt(build.first)
  5923. && !build.second->getNameTranslated().empty()
  5924. && build.first != BuildingID::SHIP)
  5925. {
  5926. buildStructure(town->id, build.first, true);
  5927. }
  5928. }
  5929. }
  5930. else if (cheat == "vcmiainur" || cheat == "vcmiangband" || cheat == "vcmiglaurung" || cheat == "vcmiarchangel"
  5931. || cheat == "vcmiblackknight" || cheat == "vcmicrystal" || cheat == "vcmiazure" || cheat == "vcmifaerie")
  5932. {
  5933. cheated = true;
  5934. if (!hero) return;
  5935. ///Gives N creatures into each slot
  5936. std::map<std::string, std::pair<std::string, int>> creatures;
  5937. creatures.insert(std::make_pair("vcmiainur", std::make_pair("archangel", 5))); //5 archangels
  5938. creatures.insert(std::make_pair("vcmiangband", std::make_pair("blackKnight", 10))); //10 black knights
  5939. creatures.insert(std::make_pair("vcmiglaurung", std::make_pair("crystalDragon", 5000))); //5000 crystal dragons
  5940. creatures.insert(std::make_pair("vcmiarchangel", std::make_pair("archangel", 5))); //5 archangels
  5941. creatures.insert(std::make_pair("vcmiblackknight", std::make_pair("blackKnight", 10))); //10 black knights
  5942. creatures.insert(std::make_pair("vcmicrystal", std::make_pair("crystalDragon", 5000))); //5000 crystal dragons
  5943. creatures.insert(std::make_pair("vcmiazure", std::make_pair("azureDragon", 5000))); //5000 azure dragons
  5944. creatures.insert(std::make_pair("vcmifaerie", std::make_pair("fairieDragon", 5000))); //5000 faerie dragons
  5945. const int32_t creatureIdentifier = VLC->modh->identifiers.getIdentifier(CModHandler::scopeGame(), "creature", creatures[cheat].first, false).value();
  5946. const CCreature * creature = VLC->creh->objects.at(creatureIdentifier);
  5947. for (int i = 0; i < GameConstants::ARMY_SIZE; i++)
  5948. if (!hero->hasStackAtSlot(SlotID(i)))
  5949. insertNewStack(StackLocation(hero, SlotID(i)), creature, creatures[cheat].second);
  5950. }
  5951. else if (boost::starts_with(cheat, "vcmiarmy") || boost::starts_with(cheat, "vcminissi"))
  5952. {
  5953. cheated = true;
  5954. if (!hero) return;
  5955. std::vector<std::string> words;
  5956. boost::split(words, cheat, boost::is_any_of(" "));
  5957. if(words.size() < 2)
  5958. return;
  5959. std::string creatureIdentifier = words[1];
  5960. std::optional<int32_t> creatureId = VLC->modh->identifiers.getIdentifier(CModHandler::scopeGame(), "creature", creatureIdentifier, false);
  5961. if(creatureId.has_value())
  5962. {
  5963. const auto * creature = CreatureID(creatureId.value()).toCreature();
  5964. for (int i = 0; i < GameConstants::ARMY_SIZE; i++)
  5965. if (!hero->hasStackAtSlot(SlotID(i)))
  5966. insertNewStack(StackLocation(hero, SlotID(i)), creature, 5 * std::pow(10, i));
  5967. }
  5968. }
  5969. else if (cheat == "vcminoldor" || cheat == "vcmimachines")
  5970. {
  5971. cheated = true;
  5972. if (!hero) return;
  5973. ///Give all war machines to hero
  5974. if (!hero->getArt(ArtifactPosition::MACH1))
  5975. giveHeroNewArtifact(hero, VLC->arth->objects[ArtifactID::BALLISTA], ArtifactPosition::MACH1);
  5976. if (!hero->getArt(ArtifactPosition::MACH2))
  5977. giveHeroNewArtifact(hero, VLC->arth->objects[ArtifactID::AMMO_CART], ArtifactPosition::MACH2);
  5978. if (!hero->getArt(ArtifactPosition::MACH3))
  5979. giveHeroNewArtifact(hero, VLC->arth->objects[ArtifactID::FIRST_AID_TENT], ArtifactPosition::MACH3);
  5980. }
  5981. else if (cheat == "vcmiforgeofnoldorking" || cheat == "vcmiartifacts")
  5982. {
  5983. cheated = true;
  5984. if (!hero) return;
  5985. ///Give hero all artifacts except war machines, spell scrolls and spell book
  5986. for(int g = 7; g < VLC->arth->objects.size(); ++g) //including artifacts from mods
  5987. {
  5988. if(VLC->arth->objects[g]->canBePutAt(hero))
  5989. giveHeroNewArtifact(hero, VLC->arth->objects[g], ArtifactPosition::FIRST_AVAILABLE);
  5990. }
  5991. }
  5992. else if (cheat == "vcmiglorfindel" || cheat == "vcmilevel")
  5993. {
  5994. cheated = true;
  5995. if (!hero) return;
  5996. ///selected hero gains a new level
  5997. changePrimSkill(hero, PrimarySkill::EXPERIENCE, VLC->heroh->reqExp(hero->level + 1) - VLC->heroh->reqExp(hero->level));
  5998. }
  5999. else if (boost::starts_with(cheat, "vcmiexp") || boost::starts_with(cheat, "vcmiolorin"))
  6000. {
  6001. cheated = true;
  6002. if (!hero) return;
  6003. std::vector<std::string> words;
  6004. boost::split(words, cheat, boost::is_any_of(" "));
  6005. if(words.size() < 2)
  6006. return;
  6007. std::string expAmount = words[1];
  6008. long expAmountProcessed = 0;
  6009. try
  6010. {
  6011. expAmountProcessed = std::stol(expAmount);
  6012. }
  6013. catch(std::exception&)
  6014. {
  6015. logGlobal->error("Could not parse experience amount for vcmiexp cheat");
  6016. }
  6017. if(expAmountProcessed > 1)
  6018. {
  6019. changePrimSkill(hero, PrimarySkill::EXPERIENCE, expAmountProcessed);
  6020. }
  6021. }
  6022. else if (cheat == "vcminahar" || cheat == "vcmimove")
  6023. {
  6024. cheated = true;
  6025. if (!hero) return;
  6026. ///Give 1000000 movement points to hero
  6027. SetMovePoints smp;
  6028. smp.hid = hero->id;
  6029. smp.val = 1000000;
  6030. sendAndApply(&smp);
  6031. GiveBonus gb(GiveBonus::ETarget::HERO);
  6032. gb.bonus.type = BonusType::FREE_SHIP_BOARDING;
  6033. gb.bonus.duration = BonusDuration::ONE_DAY;
  6034. gb.bonus.source = BonusSource::OTHER;
  6035. gb.id = hero->id.getNum();
  6036. giveHeroBonus(&gb);
  6037. }
  6038. else if (cheat == "vcmiformenos" || cheat == "vcmiresources")
  6039. {
  6040. cheated = true;
  6041. ///Give resources to player
  6042. TResources resources;
  6043. resources[EGameResID::GOLD] = 100000;
  6044. for (GameResID i = EGameResID::WOOD; i < EGameResID::GOLD; ++i)
  6045. resources[i] = 100;
  6046. giveResources(player, resources);
  6047. }
  6048. else if (cheat == "vcmisilmaril" || cheat == "vcmiwin")
  6049. {
  6050. cheated = true;
  6051. ///Player wins
  6052. PlayerCheated pc;
  6053. pc.player = player;
  6054. pc.winningCheatCode = true;
  6055. sendAndApply(&pc);
  6056. }
  6057. else if (cheat == "vcmimelkor" || cheat == "vcmilose")
  6058. {
  6059. cheated = true;
  6060. ///Player looses
  6061. PlayerCheated pc;
  6062. pc.player = player;
  6063. pc.losingCheatCode = true;
  6064. sendAndApply(&pc);
  6065. }
  6066. else if (cheat == "vcmieagles" || cheat == "vcmiungoliant" || cheat == "vcmimap" || cheat == "vcmihidemap")
  6067. {
  6068. cheated = true;
  6069. ///Reveal or conceal FoW
  6070. FoWChange fc;
  6071. fc.mode = ((cheat == "vcmieagles" || cheat == "vcmimap") ? 1 : 0);
  6072. fc.player = player;
  6073. const auto & fowMap = gs->getPlayerTeam(player)->fogOfWarMap;
  6074. auto hlp_tab = new int3[gs->map->width * gs->map->height * (gs->map->levels())];
  6075. int lastUnc = 0;
  6076. for(int z = 0; z < gs->map->levels(); z++)
  6077. for(int x = 0; x < gs->map->width; x++)
  6078. for(int y = 0; y < gs->map->height; y++)
  6079. if(!(*fowMap)[z][x][y] || !fc.mode)
  6080. hlp_tab[lastUnc++] = int3(x, y, z);
  6081. fc.tiles.insert(hlp_tab, hlp_tab + lastUnc);
  6082. delete [] hlp_tab;
  6083. sendAndApply(&fc);
  6084. }
  6085. }
  6086. void CGameHandler::removeObstacle(const CObstacleInstance & obstacle)
  6087. {
  6088. BattleObstaclesChanged obsRem;
  6089. obsRem.changes.emplace_back(obstacle.uniqueID, ObstacleChanges::EOperation::REMOVE);
  6090. sendAndApply(&obsRem);
  6091. }
  6092. void CGameHandler::synchronizeArtifactHandlerLists()
  6093. {
  6094. UpdateArtHandlerLists uahl;
  6095. uahl.treasures = VLC->arth->treasures;
  6096. uahl.minors = VLC->arth->minors;
  6097. uahl.majors = VLC->arth->majors;
  6098. uahl.relics = VLC->arth->relics;
  6099. sendAndApply(&uahl);
  6100. }
  6101. bool CGameHandler::isValidObject(const CGObjectInstance *obj) const
  6102. {
  6103. return vstd::contains(gs->map->objects, obj);
  6104. }
  6105. bool CGameHandler::isBlockedByQueries(const CPack *pack, PlayerColor player)
  6106. {
  6107. if (!strcmp(typeid(*pack).name(), typeid(PlayerMessage).name()))
  6108. return false;
  6109. auto query = queries.topQuery(player);
  6110. if (query && query->blocksPack(pack))
  6111. {
  6112. complain(boost::str(boost::format(
  6113. "\r\n| Player \"%s\" has to answer queries before attempting any further actions.\r\n| Top Query: \"%s\"\r\n")
  6114. % boost::to_upper_copy<std::string>(player.getStr())
  6115. % query->toString()
  6116. ));
  6117. return true;
  6118. }
  6119. return false;
  6120. }
  6121. void CGameHandler::removeAfterVisit(const CGObjectInstance *object)
  6122. {
  6123. //If the object is being visited, there must be a matching query
  6124. for (const auto &query : queries.allQueries())
  6125. {
  6126. if (auto someVistQuery = std::dynamic_pointer_cast<CObjectVisitQuery>(query))
  6127. {
  6128. if (someVistQuery->visitedObject == object)
  6129. {
  6130. someVistQuery->removeObjectAfterVisit = true;
  6131. return;
  6132. }
  6133. }
  6134. }
  6135. //If we haven't returned so far, there is no query and no visit, call was wrong
  6136. assert("This function needs to be called during the object visit!");
  6137. }
  6138. void CGameHandler::changeFogOfWar(int3 center, ui32 radius, PlayerColor player, bool hide)
  6139. {
  6140. std::unordered_set<int3> tiles;
  6141. getTilesInRange(tiles, center, radius, player, hide? -1 : 1);
  6142. if (hide)
  6143. {
  6144. std::unordered_set<int3> observedTiles; //do not hide tiles observed by heroes. May lead to disastrous AI problems
  6145. auto p = getPlayerState(player);
  6146. for (auto h : p->heroes)
  6147. {
  6148. getTilesInRange(observedTiles, h->getSightCenter(), h->getSightRadius(), h->tempOwner, -1);
  6149. }
  6150. for (auto t : p->towns)
  6151. {
  6152. getTilesInRange(observedTiles, t->getSightCenter(), t->getSightRadius(), t->tempOwner, -1);
  6153. }
  6154. for (auto tile : observedTiles)
  6155. vstd::erase_if_present (tiles, tile);
  6156. }
  6157. changeFogOfWar(tiles, player, hide);
  6158. }
  6159. void CGameHandler::changeFogOfWar(std::unordered_set<int3> &tiles, PlayerColor player, bool hide)
  6160. {
  6161. FoWChange fow;
  6162. fow.tiles = tiles;
  6163. fow.player = player;
  6164. fow.mode = hide? 0 : 1;
  6165. sendAndApply(&fow);
  6166. }
  6167. bool CGameHandler::isVisitCoveredByAnotherQuery(const CGObjectInstance *obj, const CGHeroInstance *hero)
  6168. {
  6169. if (auto topQuery = queries.topQuery(hero->getOwner()))
  6170. if (auto visit = std::dynamic_pointer_cast<const CObjectVisitQuery>(topQuery))
  6171. return !(visit->visitedObject == obj && visit->visitingHero == hero);
  6172. return true;
  6173. }
  6174. void CGameHandler::setObjProperty(ObjectInstanceID objid, int prop, si64 val)
  6175. {
  6176. SetObjectProperty sob;
  6177. sob.id = objid;
  6178. sob.what = prop;
  6179. sob.val = static_cast<ui32>(val);
  6180. sendAndApply(&sob);
  6181. }
  6182. void CGameHandler::showInfoDialog(InfoWindow * iw)
  6183. {
  6184. sendAndApply(iw);
  6185. }
  6186. void CGameHandler::showInfoDialog(const std::string & msg, PlayerColor player)
  6187. {
  6188. InfoWindow iw;
  6189. iw.player = player;
  6190. iw.text << msg;
  6191. showInfoDialog(&iw);
  6192. }
  6193. CasualtiesAfterBattle::CasualtiesAfterBattle(const CArmedInstance * _army, const BattleInfo * bat):
  6194. army(_army)
  6195. {
  6196. heroWithDeadCommander = ObjectInstanceID();
  6197. PlayerColor color = army->tempOwner;
  6198. if(color == PlayerColor::UNFLAGGABLE)
  6199. color = PlayerColor::NEUTRAL;
  6200. for(CStack * st : bat->stacks)
  6201. {
  6202. if(st->summoned) //don't take into account temporary summoned stacks
  6203. continue;
  6204. if(st->unitOwner() != color) //remove only our stacks
  6205. continue;
  6206. logGlobal->debug("Calculating casualties for %s", st->nodeName());
  6207. st->health.takeResurrected();
  6208. if(st->unitSlot() == SlotID::ARROW_TOWERS_SLOT)
  6209. {
  6210. logGlobal->debug("Ignored arrow towers stack.");
  6211. }
  6212. else if(st->unitSlot() == SlotID::WAR_MACHINES_SLOT)
  6213. {
  6214. auto warMachine = st->unitType()->warMachine;
  6215. if(warMachine == ArtifactID::NONE)
  6216. {
  6217. logGlobal->error("Invalid creature in war machine virtual slot. Stack: %s", st->nodeName());
  6218. }
  6219. //catapult artifact remain even if "creature" killed in siege
  6220. else if(warMachine != ArtifactID::CATAPULT && st->getCount() <= 0)
  6221. {
  6222. logGlobal->debug("War machine has been destroyed");
  6223. auto hero = dynamic_ptr_cast<CGHeroInstance> (army);
  6224. if (hero)
  6225. removedWarMachines.push_back (ArtifactLocation(hero, hero->getArtPos(warMachine, true)));
  6226. else
  6227. logGlobal->error("War machine in army without hero");
  6228. }
  6229. }
  6230. else if(st->unitSlot() == SlotID::SUMMONED_SLOT_PLACEHOLDER)
  6231. {
  6232. if(st->alive() && st->getCount() > 0)
  6233. {
  6234. logGlobal->debug("Permanently summoned %d units.", st->getCount());
  6235. const CreatureID summonedType = st->creatureId();
  6236. summoned[summonedType] += st->getCount();
  6237. }
  6238. }
  6239. else if(st->unitSlot() == SlotID::COMMANDER_SLOT_PLACEHOLDER)
  6240. {
  6241. if (nullptr == st->base)
  6242. {
  6243. logGlobal->error("Stack with no base in commander slot. Stack: %s", st->nodeName());
  6244. }
  6245. else
  6246. {
  6247. auto c = dynamic_cast <const CCommanderInstance *>(st->base);
  6248. if(c)
  6249. {
  6250. auto h = dynamic_cast <const CGHeroInstance *>(army);
  6251. if(h && h->commander == c && (st->getCount() == 0 || !st->alive()))
  6252. {
  6253. logGlobal->debug("Commander is dead.");
  6254. heroWithDeadCommander = army->id; //TODO: unify commander handling
  6255. }
  6256. }
  6257. else
  6258. logGlobal->error("Stack with invalid instance in commander slot. Stack: %s", st->nodeName());
  6259. }
  6260. }
  6261. else if(st->base && !army->slotEmpty(st->unitSlot()))
  6262. {
  6263. logGlobal->debug("Count: %d; base count: %d", st->getCount(), army->getStackCount(st->unitSlot()));
  6264. if(st->getCount() == 0 || !st->alive())
  6265. {
  6266. logGlobal->debug("Stack has been destroyed.");
  6267. StackLocation sl(army, st->unitSlot());
  6268. newStackCounts.push_back(TStackAndItsNewCount(sl, 0));
  6269. }
  6270. else if(st->getCount() < army->getStackCount(st->unitSlot()))
  6271. {
  6272. logGlobal->debug("Stack lost %d units.", army->getStackCount(st->unitSlot()) - st->getCount());
  6273. StackLocation sl(army, st->unitSlot());
  6274. newStackCounts.push_back(TStackAndItsNewCount(sl, st->getCount()));
  6275. }
  6276. else if(st->getCount() > army->getStackCount(st->unitSlot()))
  6277. {
  6278. logGlobal->debug("Stack gained %d units.", st->getCount() - army->getStackCount(st->unitSlot()));
  6279. StackLocation sl(army, st->unitSlot());
  6280. newStackCounts.push_back(TStackAndItsNewCount(sl, st->getCount()));
  6281. }
  6282. }
  6283. else
  6284. {
  6285. logGlobal->warn("Unable to process stack: %s", st->nodeName());
  6286. }
  6287. }
  6288. }
  6289. void CasualtiesAfterBattle::updateArmy(CGameHandler *gh)
  6290. {
  6291. for (TStackAndItsNewCount &ncount : newStackCounts)
  6292. {
  6293. if (ncount.second > 0)
  6294. gh->changeStackCount(ncount.first, ncount.second, true);
  6295. else
  6296. gh->eraseStack(ncount.first, true);
  6297. }
  6298. for (auto summoned_iter : summoned)
  6299. {
  6300. SlotID slot = army->getSlotFor(summoned_iter.first);
  6301. if (slot.validSlot())
  6302. {
  6303. StackLocation location(army, slot);
  6304. gh->addToSlot(location, summoned_iter.first.toCreature(), summoned_iter.second);
  6305. }
  6306. else
  6307. {
  6308. //even if it will be possible to summon anything permanently it should be checked for free slot
  6309. //necromancy is handled separately
  6310. gh->complain("No free slot to put summoned creature");
  6311. }
  6312. }
  6313. for (auto al : removedWarMachines)
  6314. {
  6315. gh->removeArtifact(al);
  6316. }
  6317. if (heroWithDeadCommander != ObjectInstanceID())
  6318. {
  6319. SetCommanderProperty scp;
  6320. scp.heroid = heroWithDeadCommander;
  6321. scp.which = SetCommanderProperty::ALIVE;
  6322. scp.amount = 0;
  6323. gh->sendAndApply(&scp);
  6324. }
  6325. }
  6326. CGameHandler::FinishingBattleHelper::FinishingBattleHelper(std::shared_ptr<const CBattleQuery> Query, int RemainingBattleQueriesCount)
  6327. {
  6328. assert(Query->result);
  6329. assert(Query->bi);
  6330. auto &result = *Query->result;
  6331. auto &info = *Query->bi;
  6332. winnerHero = result.winner != 0 ? info.sides[1].hero : info.sides[0].hero;
  6333. loserHero = result.winner != 0 ? info.sides[0].hero : info.sides[1].hero;
  6334. victor = info.sides[result.winner].color;
  6335. loser = info.sides[!result.winner].color;
  6336. winnerSide = result.winner;
  6337. remainingBattleQueriesCount = RemainingBattleQueriesCount;
  6338. }
  6339. CGameHandler::FinishingBattleHelper::FinishingBattleHelper()
  6340. {
  6341. winnerHero = loserHero = nullptr;
  6342. winnerSide = 0;
  6343. remainingBattleQueriesCount = 0;
  6344. }
  6345. CRandomGenerator & CGameHandler::getRandomGenerator()
  6346. {
  6347. return CRandomGenerator::getDefault();
  6348. }
  6349. #if SCRIPTING_ENABLED
  6350. scripting::Pool * CGameHandler::getGlobalContextPool() const
  6351. {
  6352. return serverScripts.get();
  6353. }
  6354. scripting::Pool * CGameHandler::getContextPool() const
  6355. {
  6356. return serverScripts.get();
  6357. }
  6358. #endif
  6359. const ObjectInstanceID CGameHandler::putNewObject(Obj ID, int subID, int3 pos)
  6360. {
  6361. NewObject no;
  6362. no.ID = ID; //creature
  6363. no.subID= subID;
  6364. no.pos = pos;
  6365. sendAndApply(&no);
  6366. return no.id; //id field will be filled during applying on gs
  6367. }