CGameHandler.cpp 206 KB

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