CGameHandler.cpp 222 KB

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