CGameHandler.cpp 226 KB

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