CGameHandler.cpp 130 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419
  1. /*
  2. * CGameHandler.cpp, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #include "StdInc.h"
  11. #include "CGameHandler.h"
  12. #include "CVCMIServer.h"
  13. #include "TurnTimerHandler.h"
  14. #include "ServerNetPackVisitors.h"
  15. #include "ServerSpellCastEnvironment.h"
  16. #include "battles/BattleProcessor.h"
  17. #include "processors/HeroPoolProcessor.h"
  18. #include "processors/PlayerMessageProcessor.h"
  19. #include "processors/TurnOrderProcessor.h"
  20. #include "queries/QueriesProcessor.h"
  21. #include "queries/MapQueries.h"
  22. #include "../lib/ArtifactUtils.h"
  23. #include "../lib/CArtHandler.h"
  24. #include "../lib/CBuildingHandler.h"
  25. #include "../lib/CCreatureHandler.h"
  26. #include "../lib/CCreatureSet.h"
  27. #include "../lib/CGeneralTextHandler.h"
  28. #include "../lib/CHeroHandler.h"
  29. #include "../lib/CPlayerState.h"
  30. #include "../lib/CRandomGenerator.h"
  31. #include "../lib/CSoundBase.h"
  32. #include "../lib/CThreadHelper.h"
  33. #include "../lib/CTownHandler.h"
  34. #include "../lib/GameConstants.h"
  35. #include "../lib/UnlockGuard.h"
  36. #include "../lib/GameSettings.h"
  37. #include "../lib/ScriptHandler.h"
  38. #include "../lib/StartInfo.h"
  39. #include "../lib/TerrainHandler.h"
  40. #include "../lib/VCMIDirs.h"
  41. #include "../lib/VCMI_Lib.h"
  42. #include "../lib/int3.h"
  43. #include "../lib/battle/BattleInfo.h"
  44. #include "../lib/filesystem/FileInfo.h"
  45. #include "../lib/filesystem/Filesystem.h"
  46. #include "../lib/gameState/CGameState.h"
  47. #include "../lib/mapping/CMap.h"
  48. #include "../lib/mapping/CMapService.h"
  49. #include "../lib/mapObjects/CGMarket.h"
  50. #include "../lib/mapObjects/CGTownInstance.h"
  51. #include "../lib/mapObjects/MiscObjects.h"
  52. #include "../lib/modding/ModIncompatibility.h"
  53. #include "../lib/networkPacks/StackLocation.h"
  54. #include "../lib/pathfinder/CPathfinder.h"
  55. #include "../lib/pathfinder/PathfinderOptions.h"
  56. #include "../lib/pathfinder/TurnInfo.h"
  57. #include "../lib/registerTypes/RegisterTypesServerPacks.h"
  58. #include "../lib/rmg/CMapGenOptions.h"
  59. #include "../lib/serializer/CSaveFile.h"
  60. #include "../lib/serializer/CLoadFile.h"
  61. #include "../lib/serializer/Connection.h"
  62. #include "../lib/spells/CSpellHandler.h"
  63. #include <vstd/RNG.h>
  64. #include <vstd/CLoggerBase.h>
  65. #include <vcmi/events/EventBus.h>
  66. #include <vcmi/events/GenericEvents.h>
  67. #include <vcmi/events/AdventureEvents.h>
  68. #define COMPLAIN_RET_IF(cond, txt) do {if (cond){complain(txt); return;}} while(0)
  69. #define COMPLAIN_RET_FALSE_IF(cond, txt) do {if (cond){complain(txt); return false;}} while(0)
  70. #define COMPLAIN_RET(txt) {complain(txt); return false;}
  71. #define COMPLAIN_RETF(txt, FORMAT) {complain(boost::str(boost::format(txt) % FORMAT)); return false;}
  72. template <typename T> class CApplyOnGH;
  73. class CBaseForGHApply
  74. {
  75. public:
  76. virtual bool applyOnGH(CGameHandler * gh, CGameState * gs, CPack * pack) const =0;
  77. virtual ~CBaseForGHApply(){}
  78. template<typename U> static CBaseForGHApply *getApplier(const U * t=nullptr)
  79. {
  80. return new CApplyOnGH<U>();
  81. }
  82. };
  83. template <typename T> class CApplyOnGH : public CBaseForGHApply
  84. {
  85. public:
  86. bool applyOnGH(CGameHandler * gh, CGameState * gs, CPack * pack) const override
  87. {
  88. T *ptr = static_cast<T*>(pack);
  89. try
  90. {
  91. ApplyGhNetPackVisitor applier(*gh);
  92. ptr->visit(applier);
  93. return applier.getResult();
  94. }
  95. catch(ExceptionNotAllowedAction & e)
  96. {
  97. (void)e;
  98. return false;
  99. }
  100. }
  101. };
  102. template <>
  103. class CApplyOnGH<CPack> : public CBaseForGHApply
  104. {
  105. public:
  106. bool applyOnGH(CGameHandler * gh, CGameState * gs, CPack * pack) const override
  107. {
  108. logGlobal->error("Cannot apply on GH plain CPack!");
  109. assert(0);
  110. return false;
  111. }
  112. };
  113. static inline double distance(int3 a, int3 b)
  114. {
  115. return std::sqrt((double)(a.x-b.x)*(a.x-b.x) + (a.y-b.y)*(a.y-b.y));
  116. }
  117. template <typename T>
  118. void callWith(std::vector<T> args, std::function<void(T)> fun, ui32 which)
  119. {
  120. fun(args[which]);
  121. }
  122. const Services * CGameHandler::services() const
  123. {
  124. return VLC;
  125. }
  126. const CGameHandler::BattleCb * CGameHandler::battle(const BattleID & battleID) const
  127. {
  128. return gs->getBattle(battleID);
  129. }
  130. const CGameHandler::GameCb * CGameHandler::game() const
  131. {
  132. return this;
  133. }
  134. vstd::CLoggerBase * CGameHandler::logger() const
  135. {
  136. return logGlobal;
  137. }
  138. events::EventBus * CGameHandler::eventBus() const
  139. {
  140. return serverEventBus.get();
  141. }
  142. CVCMIServer * CGameHandler::gameLobby() const
  143. {
  144. return lobby;
  145. }
  146. void CGameHandler::levelUpHero(const CGHeroInstance * hero, SecondarySkill skill)
  147. {
  148. changeSecSkill(hero, skill, 1, 0);
  149. expGiven(hero);
  150. }
  151. void CGameHandler::levelUpHero(const CGHeroInstance * hero)
  152. {
  153. // required exp for at least 1 lvl-up hasn't been reached
  154. if (!hero->gainsLevel())
  155. {
  156. return;
  157. }
  158. // give primary skill
  159. logGlobal->trace("%s got level %d", hero->getNameTranslated(), hero->level);
  160. auto primarySkill = hero->nextPrimarySkill(getRandomGenerator());
  161. SetPrimSkill sps;
  162. sps.id = hero->id;
  163. sps.which = primarySkill;
  164. sps.abs = false;
  165. sps.val = 1;
  166. sendAndApply(&sps);
  167. HeroLevelUp hlu;
  168. hlu.player = hero->tempOwner;
  169. hlu.heroId = hero->id;
  170. hlu.primskill = primarySkill;
  171. hlu.skills = hero->getLevelUpProposedSecondarySkills(heroPool->getHeroSkillsRandomGenerator(hero->getHeroType()));
  172. if (hlu.skills.size() == 0)
  173. {
  174. sendAndApply(&hlu);
  175. levelUpHero(hero);
  176. }
  177. else if (hlu.skills.size() == 1 || !hero->getOwner().isValidPlayer())
  178. {
  179. sendAndApply(&hlu);
  180. levelUpHero(hero, hlu.skills.front());
  181. }
  182. else if (hlu.skills.size() > 1)
  183. {
  184. auto levelUpQuery = std::make_shared<CHeroLevelUpDialogQuery>(this, hlu, hero);
  185. hlu.queryID = levelUpQuery->queryID;
  186. queries->addQuery(levelUpQuery);
  187. sendAndApply(&hlu);
  188. //level up will be called on query reply
  189. }
  190. }
  191. void CGameHandler::levelUpCommander (const CCommanderInstance * c, int skill)
  192. {
  193. SetCommanderProperty scp;
  194. auto hero = dynamic_cast<const CGHeroInstance *>(c->armyObj);
  195. if (hero)
  196. scp.heroid = hero->id;
  197. else
  198. {
  199. complain ("Commander is not led by hero!");
  200. return;
  201. }
  202. scp.accumulatedBonus.additionalInfo = 0;
  203. scp.accumulatedBonus.duration = BonusDuration::PERMANENT;
  204. scp.accumulatedBonus.turnsRemain = 0;
  205. scp.accumulatedBonus.source = BonusSource::COMMANDER;
  206. scp.accumulatedBonus.valType = BonusValueType::BASE_NUMBER;
  207. if (skill <= ECommander::SPELL_POWER)
  208. {
  209. scp.which = SetCommanderProperty::BONUS;
  210. auto difference = [](std::vector< std::vector <ui8> > skillLevels, std::vector <ui8> secondarySkills, int skill)->int
  211. {
  212. int s = std::min (skill, (int)ECommander::SPELL_POWER); //spell power level controls also casts and resistance
  213. return skillLevels.at(skill).at(secondarySkills.at(s)) - (secondarySkills.at(s) ? skillLevels.at(skill).at(secondarySkills.at(s)-1) : 0);
  214. };
  215. switch (skill)
  216. {
  217. case ECommander::ATTACK:
  218. scp.accumulatedBonus.type = BonusType::PRIMARY_SKILL;
  219. scp.accumulatedBonus.subtype = BonusSubtypeID(PrimarySkill::ATTACK);
  220. break;
  221. case ECommander::DEFENSE:
  222. scp.accumulatedBonus.type = BonusType::PRIMARY_SKILL;
  223. scp.accumulatedBonus.subtype = BonusSubtypeID(PrimarySkill::DEFENSE);
  224. break;
  225. case ECommander::HEALTH:
  226. scp.accumulatedBonus.type = BonusType::STACK_HEALTH;
  227. scp.accumulatedBonus.valType = BonusValueType::PERCENT_TO_ALL; //TODO: check how it accumulates in original WoG with artifacts such as vial of life blood, elixir of life etc.
  228. break;
  229. case ECommander::DAMAGE:
  230. scp.accumulatedBonus.type = BonusType::CREATURE_DAMAGE;
  231. scp.accumulatedBonus.subtype = BonusCustomSubtype::creatureDamageBoth;
  232. scp.accumulatedBonus.valType = BonusValueType::PERCENT_TO_ALL;
  233. break;
  234. case ECommander::SPEED:
  235. scp.accumulatedBonus.type = BonusType::STACKS_SPEED;
  236. break;
  237. case ECommander::SPELL_POWER:
  238. scp.accumulatedBonus.type = BonusType::MAGIC_RESISTANCE;
  239. scp.accumulatedBonus.val = difference (VLC->creh->skillLevels, c->secondarySkills, ECommander::RESISTANCE);
  240. sendAndApply (&scp); //additional pack
  241. scp.accumulatedBonus.type = BonusType::CREATURE_SPELL_POWER;
  242. scp.accumulatedBonus.val = difference (VLC->creh->skillLevels, c->secondarySkills, ECommander::SPELL_POWER) * 100; //like hero with spellpower = ability level
  243. sendAndApply (&scp); //additional pack
  244. scp.accumulatedBonus.type = BonusType::CASTS;
  245. scp.accumulatedBonus.val = difference (VLC->creh->skillLevels, c->secondarySkills, ECommander::CASTS);
  246. sendAndApply (&scp); //additional pack
  247. scp.accumulatedBonus.type = BonusType::CREATURE_ENCHANT_POWER; //send normally
  248. break;
  249. }
  250. scp.accumulatedBonus.val = difference (VLC->creh->skillLevels, c->secondarySkills, skill);
  251. sendAndApply (&scp);
  252. scp.which = SetCommanderProperty::SECONDARY_SKILL;
  253. scp.additionalInfo = skill;
  254. scp.amount = c->secondarySkills.at(skill) + 1;
  255. sendAndApply (&scp);
  256. }
  257. else if (skill >= 100)
  258. {
  259. scp.which = SetCommanderProperty::SPECIAL_SKILL;
  260. scp.accumulatedBonus = *VLC->creh->skillRequirements.at(skill-100).first;
  261. scp.additionalInfo = skill; //unnormalized
  262. sendAndApply (&scp);
  263. }
  264. expGiven(hero);
  265. }
  266. void CGameHandler::levelUpCommander(const CCommanderInstance * c)
  267. {
  268. if (!c->gainsLevel())
  269. {
  270. return;
  271. }
  272. CommanderLevelUp clu;
  273. auto hero = dynamic_cast<const CGHeroInstance *>(c->armyObj);
  274. if(hero)
  275. {
  276. clu.heroId = hero->id;
  277. clu.player = hero->tempOwner;
  278. }
  279. else
  280. {
  281. complain ("Commander is not led by hero!");
  282. return;
  283. }
  284. //picking sec. skills for choice
  285. for (int i = 0; i <= ECommander::SPELL_POWER; ++i)
  286. {
  287. if (c->secondarySkills.at(i) < ECommander::MAX_SKILL_LEVEL)
  288. clu.skills.push_back(i);
  289. }
  290. int i = 100;
  291. for (auto specialSkill : VLC->creh->skillRequirements)
  292. {
  293. if (c->secondarySkills.at(specialSkill.second.first) >= ECommander::MAX_SKILL_LEVEL - 1
  294. && c->secondarySkills.at(specialSkill.second.second) >= ECommander::MAX_SKILL_LEVEL - 1
  295. && !vstd::contains (c->specialSkills, i))
  296. clu.skills.push_back (i);
  297. ++i;
  298. }
  299. int skillAmount = static_cast<int>(clu.skills.size());
  300. if (!skillAmount)
  301. {
  302. sendAndApply(&clu);
  303. levelUpCommander(c);
  304. }
  305. else if (skillAmount == 1 || hero->tempOwner == PlayerColor::NEUTRAL) //choose skill automatically
  306. {
  307. sendAndApply(&clu);
  308. levelUpCommander(c, *RandomGeneratorUtil::nextItem(clu.skills, getRandomGenerator()));
  309. }
  310. else if (skillAmount > 1) //apply and ask for secondary skill
  311. {
  312. auto commanderLevelUp = std::make_shared<CCommanderLevelUpDialogQuery>(this, clu, hero);
  313. clu.queryID = commanderLevelUp->queryID;
  314. queries->addQuery(commanderLevelUp);
  315. sendAndApply(&clu);
  316. }
  317. }
  318. void CGameHandler::expGiven(const CGHeroInstance *hero)
  319. {
  320. if (hero->gainsLevel())
  321. levelUpHero(hero);
  322. else if (hero->commander && hero->commander->gainsLevel())
  323. levelUpCommander(hero->commander);
  324. //if (hero->commander && hero->level > hero->commander->level && hero->commander->gainsLevel())
  325. // levelUpCommander(hero->commander);
  326. // else
  327. // levelUpHero(hero);
  328. }
  329. void CGameHandler::giveExperience(const CGHeroInstance * hero, TExpType amountToGain)
  330. {
  331. TExpType maxExp = VLC->heroh->reqExp(VLC->heroh->maxSupportedLevel());
  332. TExpType currExp = hero->exp;
  333. if (gs->map->levelLimit != 0)
  334. maxExp = VLC->heroh->reqExp(gs->map->levelLimit);
  335. TExpType canGainExp = 0;
  336. if (maxExp > currExp)
  337. canGainExp = maxExp - currExp;
  338. if (amountToGain > canGainExp)
  339. {
  340. // set given experience to max possible, but don't decrease if hero already over top
  341. amountToGain = canGainExp;
  342. InfoWindow iw;
  343. iw.player = hero->tempOwner;
  344. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 1); //can gain no more XP
  345. iw.text.replaceTextID(hero->getNameTextID());
  346. sendAndApply(&iw);
  347. }
  348. SetPrimSkill sps;
  349. sps.id = hero->id;
  350. sps.which = PrimarySkill::EXPERIENCE;
  351. sps.abs = false;
  352. sps.val = amountToGain;
  353. sendAndApply(&sps);
  354. //hero may level up
  355. if (hero->commander && hero->commander->alive)
  356. {
  357. //FIXME: trim experience according to map limit?
  358. SetCommanderProperty scp;
  359. scp.heroid = hero->id;
  360. scp.which = SetCommanderProperty::EXPERIENCE;
  361. scp.amount = amountToGain;
  362. sendAndApply (&scp);
  363. CBonusSystemNode::treeHasChanged();
  364. }
  365. expGiven(hero);
  366. }
  367. void CGameHandler::changePrimSkill(const CGHeroInstance * hero, PrimarySkill which, si64 val, bool abs)
  368. {
  369. SetPrimSkill sps;
  370. sps.id = hero->id;
  371. sps.which = which;
  372. sps.abs = abs;
  373. sps.val = val;
  374. sendAndApply(&sps);
  375. }
  376. void CGameHandler::changeSecSkill(const CGHeroInstance * hero, SecondarySkill which, int val, bool abs)
  377. {
  378. if(!hero)
  379. {
  380. logGlobal->error("changeSecSkill provided no hero");
  381. return;
  382. }
  383. SetSecSkill sss;
  384. sss.id = hero->id;
  385. sss.which = which;
  386. sss.val = val;
  387. sss.abs = abs;
  388. sendAndApply(&sss);
  389. if (hero->visitedTown)
  390. giveSpells(hero->visitedTown, hero);
  391. // Our scouting range may have changed - update it
  392. if (hero->getOwner().isValidPlayer())
  393. changeFogOfWar(hero->getSightCenter(), hero->getSightRadius(), hero->getOwner(), ETileVisibility::REVEALED);
  394. }
  395. void CGameHandler::handleClientDisconnection(std::shared_ptr<CConnection> c)
  396. {
  397. if(lobby->getState() == EServerState::SHUTDOWN || !gs || !gs->scenarioOps)
  398. {
  399. assert(0); // game should have shut down before reaching this point!
  400. return;
  401. }
  402. for(auto & playerConnections : connections)
  403. {
  404. PlayerColor playerId = playerConnections.first;
  405. auto * playerSettings = gs->scenarioOps->getPlayersSettings(playerId.getNum());
  406. if(!playerSettings)
  407. continue;
  408. auto playerConnection = vstd::find(playerConnections.second, c);
  409. if(playerConnection != playerConnections.second.end())
  410. {
  411. std::string messageText = boost::str(boost::format("%s (cid %d) was disconnected") % playerSettings->name % c->connectionID);
  412. playerMessages->broadcastMessage(playerId, messageText);
  413. }
  414. }
  415. }
  416. void CGameHandler::handleReceivedPack(CPackForServer * pack)
  417. {
  418. //prepare struct informing that action was applied
  419. auto sendPackageResponse = [&](bool successfullyApplied)
  420. {
  421. PackageApplied applied;
  422. applied.player = pack->player;
  423. applied.result = successfullyApplied;
  424. applied.packType = CTypeList::getInstance().getTypeID(pack);
  425. applied.requestID = pack->requestID;
  426. pack->c->sendPack(&applied);
  427. };
  428. CBaseForGHApply * apply = applier->getApplier(CTypeList::getInstance().getTypeID(pack)); //and appropriate applier object
  429. if(isBlockedByQueries(pack, pack->player))
  430. {
  431. sendPackageResponse(false);
  432. }
  433. else if(apply)
  434. {
  435. const bool result = apply->applyOnGH(this, this->gs, pack);
  436. if(result)
  437. logGlobal->trace("Message %s successfully applied!", typeid(*pack).name());
  438. else
  439. complain((boost::format("Got false in applying %s... that request must have been fishy!")
  440. % typeid(*pack).name()).str());
  441. sendPackageResponse(true);
  442. }
  443. else
  444. {
  445. logGlobal->error("Message cannot be applied, cannot find applier (unregistered type)!");
  446. sendPackageResponse(false);
  447. }
  448. vstd::clear_pointer(pack);
  449. }
  450. CGameHandler::CGameHandler(CVCMIServer * lobby)
  451. : lobby(lobby)
  452. , heroPool(std::make_unique<HeroPoolProcessor>(this))
  453. , battles(std::make_unique<BattleProcessor>(this))
  454. , turnOrder(std::make_unique<TurnOrderProcessor>(this))
  455. , queries(std::make_unique<QueriesProcessor>())
  456. , playerMessages(std::make_unique<PlayerMessageProcessor>(this))
  457. , complainNoCreatures("No creatures to split")
  458. , complainNotEnoughCreatures("Cannot split that stack, not enough creatures!")
  459. , complainInvalidSlot("Invalid slot accessed!")
  460. , turnTimerHandler(std::make_unique<TurnTimerHandler>(*this))
  461. {
  462. QID = 1;
  463. applier = std::make_shared<CApplier<CBaseForGHApply>>();
  464. registerTypesServerPacks(*applier);
  465. spellEnv = new ServerSpellCastEnvironment(this);
  466. }
  467. CGameHandler::~CGameHandler()
  468. {
  469. delete spellEnv;
  470. delete gs;
  471. gs = nullptr;
  472. }
  473. void CGameHandler::reinitScripting()
  474. {
  475. serverEventBus = std::make_unique<events::EventBus>();
  476. #if SCRIPTING_ENABLED
  477. serverScripts.reset(new scripting::PoolImpl(this, spellEnv));
  478. #endif
  479. }
  480. void CGameHandler::init(StartInfo *si, Load::ProgressAccumulator & progressTracking)
  481. {
  482. randomNumberGenerator = std::make_unique<CRandomGenerator>();
  483. logGlobal->info("Using random seed: %d", randomNumberGenerator->nextInt());
  484. CMapService mapService;
  485. gs = new CGameState();
  486. gs->preInit(VLC, this);
  487. logGlobal->info("Gamestate created!");
  488. gs->init(&mapService, si, progressTracking);
  489. logGlobal->info("Gamestate initialized!");
  490. for (auto & elem : gs->players)
  491. turnOrder->addPlayer(elem.first);
  492. for (auto & elem : gs->map->allHeroes)
  493. {
  494. if(elem)
  495. heroPool->getHeroSkillsRandomGenerator(elem->getHeroType()); // init RMG seed
  496. }
  497. reinitScripting();
  498. }
  499. static bool evntCmp(const CMapEvent &a, const CMapEvent &b)
  500. {
  501. return a.earlierThan(b);
  502. }
  503. void CGameHandler::setPortalDwelling(const CGTownInstance * town, bool forced=false, bool clear = false)
  504. {// bool forced = true - if creature should be replaced, if false - only if no creature was set
  505. const PlayerState * p = getPlayerState(town->tempOwner);
  506. if (!p)
  507. {
  508. assert(town->tempOwner == PlayerColor::NEUTRAL);
  509. return;
  510. }
  511. if (forced || town->creatures.at(GameConstants::CREATURES_PER_TOWN).second.empty())//we need to change creature
  512. {
  513. SetAvailableCreatures ssi;
  514. ssi.tid = town->id;
  515. ssi.creatures = town->creatures;
  516. ssi.creatures[GameConstants::CREATURES_PER_TOWN].second.clear();//remove old one
  517. const std::vector<ConstTransitivePtr<CGDwelling> > &dwellings = p->dwellings;
  518. if (dwellings.empty())//no dwellings - just remove
  519. {
  520. sendAndApply(&ssi);
  521. return;
  522. }
  523. auto dwelling = *RandomGeneratorUtil::nextItem(dwellings, getRandomGenerator());
  524. // for multi-creature dwellings like Golem Factory
  525. auto creatureId = RandomGeneratorUtil::nextItem(dwelling->creatures, getRandomGenerator())->second[0];
  526. if (clear)
  527. {
  528. ssi.creatures[GameConstants::CREATURES_PER_TOWN].first = std::max(1, (VLC->creh->objects.at(creatureId)->getGrowth())/2);
  529. }
  530. else
  531. {
  532. ssi.creatures[GameConstants::CREATURES_PER_TOWN].first = VLC->creh->objects.at(creatureId)->getGrowth();
  533. }
  534. ssi.creatures[GameConstants::CREATURES_PER_TOWN].second.push_back(creatureId);
  535. sendAndApply(&ssi);
  536. }
  537. }
  538. void CGameHandler::onPlayerTurnStarted(PlayerColor which)
  539. {
  540. events::PlayerGotTurn::defaultExecute(serverEventBus.get(), which);
  541. turnTimerHandler->onPlayerGetTurn(which);
  542. }
  543. void CGameHandler::onPlayerTurnEnded(PlayerColor which)
  544. {
  545. const auto * playerState = gs->getPlayerState(which);
  546. assert(playerState->status == EPlayerStatus::INGAME);
  547. if (playerState->towns.empty())
  548. {
  549. DaysWithoutTown pack;
  550. pack.player = which;
  551. pack.daysWithoutCastle = playerState->daysWithoutCastle.value_or(0) + 1;
  552. sendAndApply(&pack);
  553. }
  554. else
  555. {
  556. if (playerState->daysWithoutCastle.has_value())
  557. {
  558. DaysWithoutTown pack;
  559. pack.player = which;
  560. pack.daysWithoutCastle = std::nullopt;
  561. sendAndApply(&pack);
  562. }
  563. }
  564. // check for 7 days without castle
  565. checkVictoryLossConditionsForPlayer(which);
  566. bool newWeek = getDate(Date::DAY_OF_WEEK) == 7; // end of 7th day
  567. if (newWeek) //new heroes in tavern
  568. heroPool->onNewWeek(which);
  569. }
  570. void CGameHandler::onNewTurn()
  571. {
  572. logGlobal->trace("Turn %d", gs->day+1);
  573. NewTurn n;
  574. n.specialWeek = NewTurn::NO_ACTION;
  575. n.creatureid = CreatureID::NONE;
  576. n.day = gs->day + 1;
  577. bool firstTurn = !getDate(Date::DAY);
  578. bool newWeek = getDate(Date::DAY_OF_WEEK) == 7; //day numbers are confusing, as day was not yet switched
  579. bool newMonth = getDate(Date::DAY_OF_MONTH) == 28;
  580. std::map<PlayerColor, si32> hadGold;//starting gold - for buildings like dwarven treasury
  581. if (firstTurn)
  582. {
  583. for (auto obj : gs->map->objects)
  584. {
  585. if (obj && obj->ID == Obj::PRISON) //give imprisoned hero 0 exp to level him up. easiest to do at this point
  586. {
  587. giveExperience(getHero(obj->id), 0);
  588. }
  589. }
  590. }
  591. if (newWeek && !firstTurn)
  592. {
  593. n.specialWeek = NewTurn::NORMAL;
  594. bool deityOfFireBuilt = false;
  595. for (const CGTownInstance *t : gs->map->towns)
  596. {
  597. if (t->hasBuilt(BuildingID::GRAIL, ETownType::INFERNO))
  598. {
  599. deityOfFireBuilt = true;
  600. break;
  601. }
  602. }
  603. if (deityOfFireBuilt)
  604. {
  605. n.specialWeek = NewTurn::DEITYOFFIRE;
  606. n.creatureid = CreatureID::IMP;
  607. }
  608. else if(VLC->settings()->getBoolean(EGameSettings::CREATURES_ALLOW_RANDOM_SPECIAL_WEEKS))
  609. {
  610. int monthType = getRandomGenerator().nextInt(99);
  611. if (newMonth) //new month
  612. {
  613. if (monthType < 40) //double growth
  614. {
  615. n.specialWeek = NewTurn::DOUBLE_GROWTH;
  616. if (VLC->settings()->getBoolean(EGameSettings::CREATURES_ALLOW_ALL_FOR_DOUBLE_MONTH))
  617. {
  618. n.creatureid = VLC->creh->pickRandomMonster(getRandomGenerator());
  619. }
  620. else if (VLC->creh->doubledCreatures.size())
  621. {
  622. n.creatureid = *RandomGeneratorUtil::nextItem(VLC->creh->doubledCreatures, getRandomGenerator());
  623. }
  624. else
  625. {
  626. complain("Cannot find creature that can be spawned!");
  627. n.specialWeek = NewTurn::NORMAL;
  628. }
  629. }
  630. else if (monthType < 50)
  631. n.specialWeek = NewTurn::PLAGUE;
  632. }
  633. else //it's a week, but not full month
  634. {
  635. if (monthType < 25)
  636. {
  637. n.specialWeek = NewTurn::BONUS_GROWTH; //+5
  638. std::pair<int, CreatureID> newMonster(54, CreatureID());
  639. do
  640. {
  641. newMonster.second = VLC->creh->pickRandomMonster(getRandomGenerator());
  642. } while (VLC->creh->objects[newMonster.second] &&
  643. (*VLC->townh)[VLC->creatures()->getById(newMonster.second)->getFaction()]->town == nullptr); // find first non neutral creature
  644. n.creatureid = newMonster.second;
  645. }
  646. }
  647. }
  648. }
  649. for (auto & elem : gs->players)
  650. {
  651. if (elem.first == PlayerColor::NEUTRAL)
  652. continue;
  653. assert(elem.first.isValidPlayer());//illegal player number!
  654. std::pair<PlayerColor, si32> playerGold(elem.first, elem.second.resources[EGameResID::GOLD]);
  655. hadGold.insert(playerGold);
  656. if (firstTurn)
  657. heroPool->onNewWeek(elem.first);
  658. n.res[elem.first] = elem.second.resources;
  659. if(!firstTurn)
  660. {
  661. for (GameResID k = GameResID::WOOD; k < GameResID::COUNT; k++)
  662. {
  663. n.res[elem.first][k] += elem.second.valOfBonuses(BonusType::RESOURCES_CONSTANT_BOOST, BonusSubtypeID(k));
  664. n.res[elem.first][k] += elem.second.valOfBonuses(BonusType::RESOURCES_TOWN_MULTIPLYING_BOOST, BonusSubtypeID(k)) * elem.second.towns.size();
  665. }
  666. if(newWeek) //weekly crystal generation if 1 or more crystal dragons in any hero army or town garrison
  667. {
  668. bool hasCrystalGenCreature = false;
  669. for(CGHeroInstance * hero : elem.second.heroes)
  670. {
  671. for(auto stack : hero->stacks)
  672. {
  673. if(stack.second->hasBonusOfType(BonusType::SPECIAL_CRYSTAL_GENERATION))
  674. {
  675. hasCrystalGenCreature = true;
  676. break;
  677. }
  678. }
  679. }
  680. if(!hasCrystalGenCreature) //not found in armies, check towns
  681. {
  682. for(CGTownInstance * town : elem.second.towns)
  683. {
  684. for(auto stack : town->stacks)
  685. {
  686. if(stack.second->hasBonusOfType(BonusType::SPECIAL_CRYSTAL_GENERATION))
  687. {
  688. hasCrystalGenCreature = true;
  689. break;
  690. }
  691. }
  692. }
  693. }
  694. if(hasCrystalGenCreature)
  695. n.res[elem.first][EGameResID::CRYSTAL] += 3;
  696. }
  697. }
  698. for (CGHeroInstance *h : (elem).second.heroes)
  699. {
  700. if (h->visitedTown)
  701. giveSpells(h->visitedTown, h);
  702. NewTurn::Hero hth;
  703. hth.id = h->id;
  704. auto ti = std::make_unique<TurnInfo>(h, 1);
  705. // TODO: this code executed when bonuses of previous day not yet updated (this happen in NewTurn::applyGs). See issue 2356
  706. hth.move = h->movementPointsLimitCached(gs->map->getTile(h->visitablePos()).terType->isLand(), ti.get());
  707. hth.mana = h->getManaNewTurn();
  708. n.heroes.insert(hth);
  709. if (!firstTurn) //not first day
  710. {
  711. for (GameResID k = GameResID::WOOD; k < GameResID::COUNT; k++)
  712. {
  713. n.res[elem.first][k] += h->valOfBonuses(BonusType::GENERATE_RESOURCE, BonusSubtypeID(k));
  714. }
  715. }
  716. }
  717. }
  718. for (CGTownInstance *t : gs->map->towns)
  719. {
  720. PlayerColor player = t->tempOwner;
  721. handleTownEvents(t, n);
  722. if (newWeek) //first day of week
  723. {
  724. if (t->hasBuilt(BuildingSubID::PORTAL_OF_SUMMONING))
  725. setPortalDwelling(t, true, (n.specialWeek == NewTurn::PLAGUE ? true : false)); //set creatures for Portal of Summoning
  726. if (!firstTurn)
  727. if (t->hasBuilt(BuildingSubID::TREASURY) && player.isValidPlayer())
  728. n.res[player][EGameResID::GOLD] += hadGold.at(player)/10; //give 10% of starting gold
  729. if (!vstd::contains(n.cres, t->id))
  730. {
  731. n.cres[t->id].tid = t->id;
  732. n.cres[t->id].creatures = t->creatures;
  733. }
  734. auto & sac = n.cres.at(t->id);
  735. for (int k=0; k < GameConstants::CREATURES_PER_TOWN; k++) //creature growths
  736. {
  737. if (!t->creatures.at(k).second.empty()) // there are creatures at this level
  738. {
  739. ui32 &availableCount = sac.creatures.at(k).first;
  740. const CCreature *cre = t->creatures.at(k).second.back().toCreature();
  741. if (n.specialWeek == NewTurn::PLAGUE)
  742. availableCount = t->creatures.at(k).first / 2; //halve their number, no growth
  743. else
  744. {
  745. if (firstTurn) //first day of game: use only basic growths
  746. availableCount = cre->getGrowth();
  747. else
  748. availableCount += t->creatureGrowth(k);
  749. //Deity of fire week - upgrade both imps and upgrades
  750. if (n.specialWeek == NewTurn::DEITYOFFIRE && vstd::contains(t->creatures.at(k).second, n.creatureid))
  751. availableCount += 15;
  752. if (cre->getId() == n.creatureid) //bonus week, effect applies only to identical creatures
  753. {
  754. if (n.specialWeek == NewTurn::DOUBLE_GROWTH)
  755. availableCount *= 2;
  756. else if (n.specialWeek == NewTurn::BONUS_GROWTH)
  757. availableCount += 5;
  758. }
  759. }
  760. }
  761. }
  762. }
  763. if (!firstTurn && player.isValidPlayer())//not the first day and town not neutral
  764. {
  765. n.res[player] = n.res[player] + t->dailyIncome();
  766. }
  767. if(t->hasBuilt(BuildingID::GRAIL)
  768. && t->town->buildings.at(BuildingID::GRAIL)->height == CBuilding::HEIGHT_SKYSHIP)
  769. {
  770. // Skyship, probably easier to handle same as Veil of darkness
  771. //do it every new day after veils apply
  772. if (player != PlayerColor::NEUTRAL) //do not reveal fow for neutral player
  773. {
  774. FoWChange fw;
  775. fw.mode = ETileVisibility::REVEALED;
  776. fw.player = player;
  777. // find all hidden tiles
  778. const auto & fow = getPlayerTeam(player)->fogOfWarMap;
  779. auto shape = fow.shape();
  780. for(size_t z = 0; z < shape[0]; z++)
  781. for(size_t x = 0; x < shape[1]; x++)
  782. for(size_t y = 0; y < shape[2]; y++)
  783. if (!fow[z][x][y])
  784. fw.tiles.insert(int3(x, y, z));
  785. sendAndApply (&fw);
  786. }
  787. }
  788. if (t->hasBonusOfType (BonusType::DARKNESS))
  789. {
  790. for (auto & player : gs->players)
  791. {
  792. if (getPlayerStatus(player.first) == EPlayerStatus::INGAME &&
  793. getPlayerRelations(player.first, t->tempOwner) == PlayerRelations::ENEMIES)
  794. changeFogOfWar(t->getSightCenter(), t->getFirstBonus(Selector::type()(BonusType::DARKNESS))->val, player.first, ETileVisibility::HIDDEN);
  795. }
  796. }
  797. }
  798. if (newMonth)
  799. {
  800. SetAvailableArtifacts saa;
  801. saa.id = ObjectInstanceID::NONE;
  802. pickAllowedArtsSet(saa.arts, getRandomGenerator());
  803. sendAndApply(&saa);
  804. }
  805. sendAndApply(&n);
  806. if (newWeek)
  807. {
  808. //spawn wandering monsters
  809. if (newMonth && (n.specialWeek == NewTurn::DOUBLE_GROWTH || n.specialWeek == NewTurn::DEITYOFFIRE))
  810. {
  811. spawnWanderingMonsters(n.creatureid);
  812. }
  813. //new week info popup
  814. if (!firstTurn)
  815. {
  816. InfoWindow iw;
  817. switch (n.specialWeek)
  818. {
  819. case NewTurn::DOUBLE_GROWTH:
  820. iw.text.appendLocalString(EMetaText::ARRAY_TXT, 131);
  821. iw.text.replaceNameSingular(n.creatureid);
  822. iw.text.replaceNameSingular(n.creatureid);
  823. break;
  824. case NewTurn::PLAGUE:
  825. iw.text.appendLocalString(EMetaText::ARRAY_TXT, 132);
  826. break;
  827. case NewTurn::BONUS_GROWTH:
  828. iw.text.appendLocalString(EMetaText::ARRAY_TXT, 134);
  829. iw.text.replaceNameSingular(n.creatureid);
  830. iw.text.replaceNameSingular(n.creatureid);
  831. break;
  832. case NewTurn::DEITYOFFIRE:
  833. iw.text.appendLocalString(EMetaText::ARRAY_TXT, 135);
  834. iw.text.replaceNameSingular(CreatureID::IMP); //%s imp
  835. iw.text.replaceNameSingular(CreatureID::IMP); //%s imp
  836. iw.text.replacePositiveNumber(15);//%+d 15
  837. iw.text.replaceNameSingular(CreatureID::FAMILIAR); //%s familiar
  838. iw.text.replacePositiveNumber(15);//%+d 15
  839. break;
  840. default:
  841. if (newMonth)
  842. {
  843. iw.text.appendLocalString(EMetaText::ARRAY_TXT, (130));
  844. iw.text.replaceLocalString(EMetaText::ARRAY_TXT, getRandomGenerator().nextInt(32, 41));
  845. }
  846. else
  847. {
  848. iw.text.appendLocalString(EMetaText::ARRAY_TXT, (133));
  849. iw.text.replaceLocalString(EMetaText::ARRAY_TXT, getRandomGenerator().nextInt(43, 57));
  850. }
  851. }
  852. for (auto & elem : gs->players)
  853. {
  854. iw.player = elem.first;
  855. sendAndApply(&iw);
  856. }
  857. }
  858. }
  859. if (!firstTurn)
  860. checkVictoryLossConditionsForAll(); // check for map turn limit
  861. logGlobal->trace("Info about turn %d has been sent!", n.day);
  862. handleTimeEvents();
  863. //call objects
  864. for (auto & elem : gs->map->objects)
  865. {
  866. if (elem)
  867. elem->newTurn(getRandomGenerator());
  868. }
  869. synchronizeArtifactHandlerLists(); //new day events may have changed them. TODO better of managing that
  870. }
  871. void CGameHandler::start(bool resume)
  872. {
  873. LOG_TRACE_PARAMS(logGlobal, "resume=%d", resume);
  874. for (auto cc : lobby->activeConnections)
  875. {
  876. auto players = lobby->getAllClientPlayers(cc->connectionID);
  877. std::stringstream sbuffer;
  878. sbuffer << "Connection " << cc->connectionID << " will handle " << players.size() << " player: ";
  879. for (PlayerColor color : players)
  880. {
  881. sbuffer << color << " ";
  882. connections[color].insert(cc);
  883. }
  884. logGlobal->info(sbuffer.str());
  885. }
  886. #if SCRIPTING_ENABLED
  887. services()->scripts()->run(serverScripts);
  888. #endif
  889. if (!resume)
  890. {
  891. onNewTurn();
  892. events::TurnStarted::defaultExecute(serverEventBus.get());
  893. for(auto & player : gs->players)
  894. turnTimerHandler->onGameplayStart(player.first);
  895. }
  896. else
  897. events::GameResumed::defaultExecute(serverEventBus.get());
  898. turnOrder->onGameStarted();
  899. }
  900. void CGameHandler::tick(int millisecondsPassed)
  901. {
  902. turnTimerHandler->update(millisecondsPassed);
  903. }
  904. void CGameHandler::giveSpells(const CGTownInstance *t, const CGHeroInstance *h)
  905. {
  906. if (!h->hasSpellbook())
  907. return; //hero hasn't spellbook
  908. ChangeSpells cs;
  909. cs.hid = h->id;
  910. cs.learn = true;
  911. if (t->hasBuilt(BuildingID::GRAIL, ETownType::CONFLUX) && t->hasBuilt(BuildingID::MAGES_GUILD_1))
  912. {
  913. // Aurora Borealis give spells of all levels even if only level 1 mages guild built
  914. for (int i = 0; i < h->maxSpellLevel(); i++)
  915. {
  916. std::vector<SpellID> spells;
  917. getAllowedSpells(spells, i+1);
  918. for (auto & spell : spells)
  919. cs.spells.insert(spell);
  920. }
  921. }
  922. else
  923. {
  924. for (int i = 0; i < std::min(t->mageGuildLevel(), h->maxSpellLevel()); i++)
  925. {
  926. for (int j = 0; j < t->spellsAtLevel(i+1, true) && j < t->spells.at(i).size(); j++)
  927. {
  928. if (!h->spellbookContainsSpell(t->spells.at(i).at(j)))
  929. cs.spells.insert(t->spells.at(i).at(j));
  930. }
  931. }
  932. }
  933. if (!cs.spells.empty())
  934. sendAndApply(&cs);
  935. }
  936. bool CGameHandler::removeObject(const CGObjectInstance * obj, const PlayerColor & initiator)
  937. {
  938. if (!obj || !getObj(obj->id))
  939. {
  940. logGlobal->error("Something wrong, that object already has been removed or hasn't existed!");
  941. return false;
  942. }
  943. RemoveObject ro;
  944. ro.objectID = obj->id;
  945. ro.initiator = initiator;
  946. sendAndApply(&ro);
  947. checkVictoryLossConditionsForAll(); //eg if monster escaped (removing objs after battle is done dircetly by endBattle, not this function)
  948. return true;
  949. }
  950. bool CGameHandler::moveHero(ObjectInstanceID hid, int3 dst, EMovementMode movementMode, bool transit, PlayerColor asker)
  951. {
  952. const CGHeroInstance *h = getHero(hid);
  953. // not turn of that hero or player can't simply teleport hero (at least not with this function)
  954. if(!h || (asker != PlayerColor::NEUTRAL && movementMode != EMovementMode::STANDARD))
  955. {
  956. if(h && getStartInfo()->turnTimerInfo.isEnabled() && gs->players[h->getOwner()].turnTimer.turnTimer == 0)
  957. return true; //timer expired, no error
  958. logGlobal->error("Illegal call to move hero!");
  959. return false;
  960. }
  961. logGlobal->trace("Player %d (%s) wants to move hero %d from %s to %s", asker, asker.toString(), hid.getNum(), h->pos.toString(), dst.toString());
  962. const int3 hmpos = h->convertToVisitablePos(dst);
  963. if (!gs->map->isInTheMap(hmpos))
  964. {
  965. logGlobal->error("Destination tile is outside the map!");
  966. return false;
  967. }
  968. const TerrainTile t = *getTile(hmpos);
  969. const int3 guardPos = gs->guardingCreaturePosition(hmpos);
  970. CGObjectInstance * objectToVisit = nullptr;
  971. CGObjectInstance * guardian = nullptr;
  972. if (!t.visitableObjects.empty())
  973. objectToVisit = t.visitableObjects.back();
  974. if (isInTheMap(guardPos))
  975. {
  976. for (auto const & object : getTile(guardPos)->visitableObjects)
  977. if (object->ID == MapObjectID::MONSTER) // exclude other objects, such as hero flying above monster
  978. guardian = object;
  979. }
  980. const bool embarking = !h->boat && objectToVisit && objectToVisit->ID == Obj::BOAT;
  981. const bool disembarking = h->boat
  982. && t.terType->isLand()
  983. && (dst == h->pos
  984. || (h->boat->layer == EPathfindingLayer::SAIL && !t.blocked));
  985. //result structure for start - movement failed, no move points used
  986. TryMoveHero tmh;
  987. tmh.id = hid;
  988. tmh.start = h->pos;
  989. tmh.end = dst;
  990. tmh.result = TryMoveHero::FAILED;
  991. tmh.movePoints = h->movementPointsRemaining();
  992. //check if destination tile is available
  993. auto pathfinderHelper = std::make_unique<CPathfinderHelper>(gs, h, PathfinderOptions());
  994. auto ti = pathfinderHelper->getTurnInfo();
  995. const bool canFly = pathfinderHelper->hasBonusOfType(BonusType::FLYING_MOVEMENT) || (h->boat && h->boat->layer == EPathfindingLayer::AIR);
  996. const bool canWalkOnSea = pathfinderHelper->hasBonusOfType(BonusType::WATER_WALKING) || (h->boat && h->boat->layer == EPathfindingLayer::WATER);
  997. const int cost = pathfinderHelper->getMovementCost(h->visitablePos(), hmpos, nullptr, nullptr, h->movementPointsRemaining());
  998. const bool movingOntoObstacle = t.blocked && !t.visitable;
  999. const bool objectCoastVisitable = objectToVisit && objectToVisit->isCoastVisitable();
  1000. const bool movingOntoWater = !h->boat && t.terType->isWater() && !objectCoastVisitable;
  1001. const auto complainRet = [&](const std::string & message)
  1002. {
  1003. //send info about movement failure
  1004. complain(message);
  1005. sendAndApply(&tmh);
  1006. return false;
  1007. };
  1008. if (guardian && getVisitingHero(guardian) != nullptr)
  1009. return complainRet("You cannot move your hero there. Simultaneous turns are active and another player is interacting with this wandering monster!");
  1010. if (objectToVisit && getVisitingHero(objectToVisit) != nullptr && getVisitingHero(objectToVisit) != h)
  1011. return complainRet("You cannot move your hero there. Simultaneous turns are active and another player is interacting with this map object!");
  1012. if (objectToVisit &&
  1013. objectToVisit->getOwner().isValidPlayer() &&
  1014. getPlayerRelations(objectToVisit->getOwner(), h->getOwner()) == PlayerRelations::ENEMIES &&
  1015. !turnOrder->isContactAllowed(objectToVisit->getOwner(), h->getOwner()))
  1016. return complainRet("You cannot move your hero there. This object belongs to another player and simultaneous turns are still active!");
  1017. //it's a rock or blocked and not visitable tile
  1018. //OR hero is on land and dest is water and (there is not present only one object - boat)
  1019. if (!t.terType->isPassable() || (movingOntoObstacle && !canFly))
  1020. return complainRet("Cannot move hero, destination tile is blocked!");
  1021. //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)
  1022. if(movingOntoWater && !canFly && !canWalkOnSea)
  1023. return complainRet("Cannot move hero, destination tile is on water!");
  1024. if(h->boat && h->boat->layer == EPathfindingLayer::SAIL && t.terType->isLand() && t.blocked)
  1025. return complainRet("Cannot disembark hero, tile is blocked!");
  1026. if(distance(h->pos, dst) >= 1.5 && movementMode == EMovementMode::STANDARD)
  1027. return complainRet("Tiles are not neighboring!");
  1028. if(h->inTownGarrison)
  1029. return complainRet("Can not move garrisoned hero!");
  1030. if(h->movementPointsRemaining() < cost && dst != h->pos && movementMode == EMovementMode::STANDARD)
  1031. return complainRet("Hero doesn't have any movement points left!");
  1032. if (transit && !canFly && !(canWalkOnSea && t.terType->isWater()) && !CGTeleport::isTeleport(objectToVisit))
  1033. return complainRet("Hero cannot transit over this tile!");
  1034. //several generic blocks of code
  1035. // should be called if hero changes tile but before applying TryMoveHero package
  1036. auto leaveTile = [&]()
  1037. {
  1038. for (CGObjectInstance *obj : gs->map->getTile(int3(h->pos.x-1, h->pos.y, h->pos.z)).visitableObjects)
  1039. {
  1040. obj->onHeroLeave(h);
  1041. }
  1042. this->getTilesInRange(tmh.fowRevealed, h->getSightCenter()+(tmh.end-tmh.start), h->getSightRadius(), ETileVisibility::HIDDEN, h->tempOwner);
  1043. };
  1044. auto doMove = [&](TryMoveHero::EResult result, EGuardLook lookForGuards,
  1045. EVisitDest visitDest, ELEaveTile leavingTile) -> bool
  1046. {
  1047. LOG_TRACE_PARAMS(logGlobal, "Hero %s starts movement from %s to %s", h->getNameTranslated() % tmh.start.toString() % tmh.end.toString());
  1048. auto moveQuery = std::make_shared<CHeroMovementQuery>(this, tmh, h);
  1049. queries->addQuery(moveQuery);
  1050. if (leavingTile == LEAVING_TILE)
  1051. leaveTile();
  1052. if (lookForGuards == CHECK_FOR_GUARDS && isInTheMap(guardPos))
  1053. tmh.attackedFrom = std::make_optional(guardPos);
  1054. tmh.result = result;
  1055. sendAndApply(&tmh);
  1056. if (visitDest == VISIT_DEST && objectToVisit && objectToVisit->id == h->id)
  1057. { // Hero should be always able to visit any object he is staying on even if there are guards around
  1058. visitObjectOnTile(t, h);
  1059. }
  1060. else if (lookForGuards == CHECK_FOR_GUARDS && isInTheMap(guardPos))
  1061. {
  1062. objectVisited(guardian, h);
  1063. moveQuery->visitDestAfterVictory = visitDest==VISIT_DEST;
  1064. }
  1065. else if (visitDest == VISIT_DEST)
  1066. {
  1067. visitObjectOnTile(t, h);
  1068. }
  1069. queries->popIfTop(moveQuery);
  1070. logGlobal->trace("Hero %s ends movement", h->getNameTranslated());
  1071. return result != TryMoveHero::FAILED;
  1072. };
  1073. //interaction with blocking object (like resources)
  1074. auto blockingVisit = [&]() -> bool
  1075. {
  1076. for (CGObjectInstance *obj : t.visitableObjects)
  1077. {
  1078. if(h->boat && !obj->isBlockedVisitable() && !h->boat->onboardVisitAllowed)
  1079. return doMove(TryMoveHero::SUCCESS, this->IGNORE_GUARDS, DONT_VISIT_DEST, REMAINING_ON_TILE);
  1080. if (obj != h && obj->isBlockedVisitable() && !obj->passableFor(h->tempOwner))
  1081. {
  1082. EVisitDest visitDest = VISIT_DEST;
  1083. if(h->boat && !h->boat->onboardVisitAllowed)
  1084. visitDest = DONT_VISIT_DEST;
  1085. return doMove(TryMoveHero::BLOCKING_VISIT, this->IGNORE_GUARDS, visitDest, REMAINING_ON_TILE);
  1086. }
  1087. }
  1088. return false;
  1089. };
  1090. if (!transit && embarking)
  1091. {
  1092. tmh.movePoints = h->movementPointsAfterEmbark(h->movementPointsRemaining(), cost, false, ti);
  1093. return doMove(TryMoveHero::EMBARK, IGNORE_GUARDS, DONT_VISIT_DEST, LEAVING_TILE);
  1094. // In H3 embark ignore guards
  1095. }
  1096. if (disembarking)
  1097. {
  1098. tmh.movePoints = h->movementPointsAfterEmbark(h->movementPointsRemaining(), cost, true, ti);
  1099. return doMove(TryMoveHero::DISEMBARK, CHECK_FOR_GUARDS, VISIT_DEST, LEAVING_TILE);
  1100. }
  1101. if (movementMode != EMovementMode::STANDARD)
  1102. {
  1103. if (blockingVisit()) // e.g. hero on the other side of teleporter
  1104. return true;
  1105. EGuardLook guardsCheck = (VLC->settings()->getBoolean(EGameSettings::DIMENSION_DOOR_TRIGGERS_GUARDS) && movementMode == EMovementMode::DIMENSION_DOOR)
  1106. ? CHECK_FOR_GUARDS
  1107. : IGNORE_GUARDS;
  1108. doMove(TryMoveHero::TELEPORTATION, guardsCheck, DONT_VISIT_DEST, LEAVING_TILE);
  1109. // visit town for town portal \ castle gates
  1110. // do not use generic visitObjectOnTile to avoid double-teleporting
  1111. // if this moveHero call was triggered by teleporter
  1112. if (objectToVisit)
  1113. {
  1114. if (CGTownInstance * town = dynamic_cast<CGTownInstance *>(objectToVisit))
  1115. town->onHeroVisit(h);
  1116. }
  1117. return true;
  1118. }
  1119. //still here? it is standard movement!
  1120. {
  1121. tmh.movePoints = (int)h->movementPointsRemaining() >= cost
  1122. ? h->movementPointsRemaining() - cost
  1123. : 0;
  1124. EGuardLook lookForGuards = CHECK_FOR_GUARDS;
  1125. EVisitDest visitDest = VISIT_DEST;
  1126. if (transit)
  1127. {
  1128. if (CGTeleport::isTeleport(objectToVisit))
  1129. visitDest = DONT_VISIT_DEST;
  1130. if (canFly || (canWalkOnSea && t.terType->isWater()))
  1131. {
  1132. lookForGuards = IGNORE_GUARDS;
  1133. visitDest = DONT_VISIT_DEST;
  1134. }
  1135. }
  1136. else if (blockingVisit())
  1137. return true;
  1138. if(h->boat && !h->boat->onboardAssaultAllowed)
  1139. lookForGuards = IGNORE_GUARDS;
  1140. turnTimerHandler->setEndTurnAllowed(h->getOwner(), !movingOntoWater && !movingOntoObstacle);
  1141. doMove(TryMoveHero::SUCCESS, lookForGuards, visitDest, LEAVING_TILE);
  1142. return true;
  1143. }
  1144. }
  1145. bool CGameHandler::teleportHero(ObjectInstanceID hid, ObjectInstanceID dstid, ui8 source, PlayerColor asker)
  1146. {
  1147. const CGHeroInstance *h = getHero(hid);
  1148. const CGTownInstance *t = getTown(dstid);
  1149. if (!h || !t)
  1150. COMPLAIN_RET("Invalid call to teleportHero!");
  1151. const CGTownInstance *from = h->visitedTown;
  1152. if (((h->getOwner() != t->getOwner())
  1153. && complain("Cannot teleport hero to another player"))
  1154. || (from->town->faction->getId() != t->town->faction->getId()
  1155. && complain("Source town and destination town should belong to the same faction"))
  1156. || ((!from || !from->hasBuilt(BuildingSubID::CASTLE_GATE))
  1157. && complain("Hero must be in town with Castle gate for teleporting"))
  1158. || (!t->hasBuilt(BuildingSubID::CASTLE_GATE)
  1159. && complain("Cannot teleport hero to town without Castle gate in it")))
  1160. return false;
  1161. int3 pos = h->convertFromVisitablePos(t->visitablePos());
  1162. moveHero(hid,pos,EMovementMode::CASTLE_GATE);
  1163. return true;
  1164. }
  1165. void CGameHandler::setOwner(const CGObjectInstance * obj, const PlayerColor owner)
  1166. {
  1167. PlayerColor oldOwner = getOwner(obj->id);
  1168. setObjPropertyID(obj->id, ObjProperty::OWNER, owner);
  1169. std::set<PlayerColor> playerColors = {owner, oldOwner};
  1170. checkVictoryLossConditions(playerColors);
  1171. const CGTownInstance * town = dynamic_cast<const CGTownInstance *>(obj);
  1172. if (town) //town captured
  1173. {
  1174. if (owner.isValidPlayer()) //new owner is real player
  1175. {
  1176. if (town->hasBuilt(BuildingSubID::PORTAL_OF_SUMMONING))
  1177. setPortalDwelling(town, true, false);
  1178. }
  1179. if (oldOwner.isValidPlayer()) //old owner is real player
  1180. {
  1181. if (getPlayerState(oldOwner)->towns.empty() && getPlayerState(oldOwner)->status != EPlayerStatus::LOSER) //previous player lost last town
  1182. {
  1183. InfoWindow iw;
  1184. iw.player = oldOwner;
  1185. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 6); //%s, you have lost your last town. If you do not conquer another town in the next week, you will be eliminated.
  1186. iw.text.replaceName(oldOwner);
  1187. sendAndApply(&iw);
  1188. }
  1189. }
  1190. }
  1191. const PlayerState * p = getPlayerState(owner);
  1192. if ((obj->ID == Obj::CREATURE_GENERATOR1 || obj->ID == Obj::CREATURE_GENERATOR4) && p && p->dwellings.size()==1)//first dwelling captured
  1193. {
  1194. for (const CGTownInstance * t : getPlayerState(owner)->towns)
  1195. {
  1196. if (t->hasBuilt(BuildingSubID::PORTAL_OF_SUMMONING))
  1197. setPortalDwelling(t);//set initial creatures for all portals of summoning
  1198. }
  1199. }
  1200. }
  1201. void CGameHandler::showBlockingDialog(BlockingDialog *iw)
  1202. {
  1203. auto dialogQuery = std::make_shared<CBlockingDialogQuery>(this, *iw);
  1204. queries->addQuery(dialogQuery);
  1205. iw->queryID = dialogQuery->queryID;
  1206. sendToAllClients(iw);
  1207. }
  1208. void CGameHandler::showTeleportDialog(TeleportDialog *iw)
  1209. {
  1210. auto dialogQuery = std::make_shared<CTeleportDialogQuery>(this, *iw);
  1211. queries->addQuery(dialogQuery);
  1212. iw->queryID = dialogQuery->queryID;
  1213. sendToAllClients(iw);
  1214. }
  1215. void CGameHandler::giveResource(PlayerColor player, GameResID which, int val) //TODO: cap according to Bersy's suggestion
  1216. {
  1217. if (!val) return; //don't waste time on empty call
  1218. TResources resources;
  1219. resources[which] = val;
  1220. giveResources(player, resources);
  1221. }
  1222. void CGameHandler::giveResources(PlayerColor player, TResources resources)
  1223. {
  1224. SetResources sr;
  1225. sr.abs = false;
  1226. sr.player = player;
  1227. sr.res = resources;
  1228. sendAndApply(&sr);
  1229. }
  1230. void CGameHandler::giveCreatures(const CArmedInstance *obj, const CGHeroInstance * h, const CCreatureSet &creatures, bool remove)
  1231. {
  1232. COMPLAIN_RET_IF(!creatures.stacksCount(), "Strange, giveCreatures called without args!");
  1233. COMPLAIN_RET_IF(obj->stacksCount(), "Cannot give creatures from not-cleared object!");
  1234. COMPLAIN_RET_IF(creatures.stacksCount() > GameConstants::ARMY_SIZE, "Too many stacks to give!");
  1235. //first we move creatures to give to make them army of object-source
  1236. for (auto & elem : creatures.Slots())
  1237. {
  1238. addToSlot(StackLocation(obj, obj->getSlotFor(elem.second->type)), elem.second->type, elem.second->count);
  1239. }
  1240. tryJoiningArmy(obj, h, remove, true);
  1241. }
  1242. void CGameHandler::takeCreatures(ObjectInstanceID objid, const std::vector<CStackBasicDescriptor> &creatures)
  1243. {
  1244. std::vector<CStackBasicDescriptor> cres = creatures;
  1245. if (cres.size() <= 0)
  1246. return;
  1247. const CArmedInstance* obj = static_cast<const CArmedInstance*>(getObj(objid));
  1248. for (CStackBasicDescriptor &sbd : cres)
  1249. {
  1250. TQuantity collected = 0;
  1251. while(collected < sbd.count)
  1252. {
  1253. bool foundSth = false;
  1254. for (auto i = obj->Slots().begin(); i != obj->Slots().end(); i++)
  1255. {
  1256. if (i->second->type == sbd.type)
  1257. {
  1258. TQuantity take = std::min(sbd.count - collected, i->second->count); //collect as much cres as we can
  1259. changeStackCount(StackLocation(obj, i->first), -take, false);
  1260. collected += take;
  1261. foundSth = true;
  1262. break;
  1263. }
  1264. }
  1265. if (!foundSth) //we went through the whole loop and haven't found appropriate cres
  1266. {
  1267. complain("Unexpected failure during taking creatures!");
  1268. return;
  1269. }
  1270. }
  1271. }
  1272. }
  1273. void CGameHandler::heroVisitCastle(const CGTownInstance * obj, const CGHeroInstance * hero)
  1274. {
  1275. HeroVisitCastle vc;
  1276. vc.hid = hero->id;
  1277. vc.tid = obj->id;
  1278. vc.flags |= 1;
  1279. sendAndApply(&vc);
  1280. visitCastleObjects(obj, hero);
  1281. giveSpells (obj, hero);
  1282. if (obj->visitingHero && obj->garrisonHero)
  1283. useScholarSkill(obj->visitingHero->id, obj->garrisonHero->id);
  1284. checkVictoryLossConditionsForPlayer(hero->tempOwner); //transported artifact?
  1285. }
  1286. void CGameHandler::visitCastleObjects(const CGTownInstance * t, const CGHeroInstance * h)
  1287. {
  1288. for (auto building : t->bonusingBuildings)
  1289. building->onHeroVisit(h);
  1290. }
  1291. void CGameHandler::stopHeroVisitCastle(const CGTownInstance * obj, const CGHeroInstance * hero)
  1292. {
  1293. HeroVisitCastle vc;
  1294. vc.hid = hero->id;
  1295. vc.tid = obj->id;
  1296. sendAndApply(&vc);
  1297. }
  1298. void CGameHandler::removeArtifact(const ArtifactLocation &al)
  1299. {
  1300. EraseArtifact ea;
  1301. ea.al = al;
  1302. sendAndApply(&ea);
  1303. }
  1304. void CGameHandler::changeSpells(const CGHeroInstance * hero, bool give, const std::set<SpellID> &spells)
  1305. {
  1306. ChangeSpells cs;
  1307. cs.hid = hero->id;
  1308. cs.spells = spells;
  1309. cs.learn = give;
  1310. sendAndApply(&cs);
  1311. }
  1312. void CGameHandler::giveHeroBonus(GiveBonus * bonus)
  1313. {
  1314. sendAndApply(bonus);
  1315. }
  1316. void CGameHandler::setMovePoints(SetMovePoints * smp)
  1317. {
  1318. sendAndApply(smp);
  1319. }
  1320. void CGameHandler::setMovePoints(ObjectInstanceID hid, int val, bool absolute)
  1321. {
  1322. SetMovePoints smp;
  1323. smp.hid = hid;
  1324. smp.val = val;
  1325. smp.absolute = absolute;
  1326. sendAndApply(&smp);
  1327. }
  1328. void CGameHandler::setManaPoints(ObjectInstanceID hid, int val)
  1329. {
  1330. SetMana sm;
  1331. sm.hid = hid;
  1332. sm.val = val;
  1333. sm.absolute = true;
  1334. sendAndApply(&sm);
  1335. }
  1336. void CGameHandler::giveHero(ObjectInstanceID id, PlayerColor player, ObjectInstanceID boatId)
  1337. {
  1338. GiveHero gh;
  1339. gh.id = id;
  1340. gh.player = player;
  1341. gh.boatId = boatId;
  1342. sendAndApply(&gh);
  1343. //Reveal fow around new hero, especially released from Prison
  1344. auto h = getHero(id);
  1345. changeFogOfWar(h->getSightCenter(), h->getSightRadius(), player, ETileVisibility::REVEALED);
  1346. }
  1347. void CGameHandler::changeObjPos(ObjectInstanceID objid, int3 newPos, const PlayerColor & initiator)
  1348. {
  1349. ChangeObjPos cop;
  1350. cop.objid = objid;
  1351. cop.nPos = newPos;
  1352. cop.initiator = initiator;
  1353. sendAndApply(&cop);
  1354. }
  1355. void CGameHandler::useScholarSkill(ObjectInstanceID fromHero, ObjectInstanceID toHero)
  1356. {
  1357. const CGHeroInstance * h1 = getHero(fromHero);
  1358. const CGHeroInstance * h2 = getHero(toHero);
  1359. int h1_scholarSpellLevel = h1->valOfBonuses(BonusType::LEARN_MEETING_SPELL_LIMIT);
  1360. int h2_scholarSpellLevel = h2->valOfBonuses(BonusType::LEARN_MEETING_SPELL_LIMIT);
  1361. if (h1_scholarSpellLevel < h2_scholarSpellLevel)
  1362. {
  1363. std::swap (h1,h2);//1st hero need to have higher scholar level for correct message
  1364. std::swap(fromHero, toHero);
  1365. }
  1366. int ScholarSpellLevel = std::max(h1_scholarSpellLevel, h2_scholarSpellLevel);//heroes can trade up to this level
  1367. if (!ScholarSpellLevel || !h1->hasSpellbook() || !h2->hasSpellbook())
  1368. return;//no scholar skill or no spellbook
  1369. int h1Lvl = std::min(ScholarSpellLevel, h1->maxSpellLevel());//heroes can receive these levels
  1370. int h2Lvl = std::min(ScholarSpellLevel, h2->maxSpellLevel());
  1371. ChangeSpells cs1;
  1372. cs1.learn = true;
  1373. cs1.hid = toHero;//giving spells to first hero
  1374. for (auto it : h1->getSpellsInSpellbook())
  1375. if (h2Lvl >= it.toSpell()->getLevel() && !h2->spellbookContainsSpell(it))//hero can learn it and don't have it yet
  1376. cs1.spells.insert(it);//spell to learn
  1377. ChangeSpells cs2;
  1378. cs2.learn = true;
  1379. cs2.hid = fromHero;
  1380. for (auto it : h2->getSpellsInSpellbook())
  1381. if (h1Lvl >= it.toSpell()->getLevel() && !h1->spellbookContainsSpell(it))
  1382. cs2.spells.insert(it);
  1383. if (!cs1.spells.empty() || !cs2.spells.empty())//create a message
  1384. {
  1385. SecondarySkill scholarSkill = SecondarySkill::SCHOLAR;
  1386. int scholarSkillLevel = std::max(h1->getSecSkillLevel(scholarSkill), h2->getSecSkillLevel(scholarSkill));
  1387. InfoWindow iw;
  1388. iw.player = h1->tempOwner;
  1389. iw.components.emplace_back(ComponentType::SEC_SKILL, scholarSkill, scholarSkillLevel);
  1390. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 139);//"%s, who has studied magic extensively,
  1391. iw.text.replaceTextID(h1->getNameTextID());
  1392. if (!cs2.spells.empty())//if found new spell - apply
  1393. {
  1394. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 140);//learns
  1395. int size = static_cast<int>(cs2.spells.size());
  1396. for (auto it : cs2.spells)
  1397. {
  1398. iw.components.emplace_back(ComponentType::SPELL, it);
  1399. iw.text.appendName(it);
  1400. switch (size--)
  1401. {
  1402. case 2:
  1403. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 141);
  1404. case 1:
  1405. break;
  1406. default:
  1407. iw.text.appendRawString(", ");
  1408. }
  1409. }
  1410. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 142);//from %s
  1411. iw.text.replaceTextID(h2->getNameTextID());
  1412. sendAndApply(&cs2);
  1413. }
  1414. if (!cs1.spells.empty() && !cs2.spells.empty())
  1415. {
  1416. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 141);//and
  1417. }
  1418. if (!cs1.spells.empty())
  1419. {
  1420. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 147);//teaches
  1421. int size = static_cast<int>(cs1.spells.size());
  1422. for (auto it : cs1.spells)
  1423. {
  1424. iw.components.emplace_back(ComponentType::SPELL, it);
  1425. iw.text.appendName(it);
  1426. switch (size--)
  1427. {
  1428. case 2:
  1429. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 141);
  1430. case 1:
  1431. break;
  1432. default:
  1433. iw.text.appendRawString(", ");
  1434. }
  1435. }
  1436. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 148);//from %s
  1437. iw.text.replaceTextID(h2->getNameTextID());
  1438. sendAndApply(&cs1);
  1439. }
  1440. sendAndApply(&iw);
  1441. }
  1442. }
  1443. void CGameHandler::heroExchange(ObjectInstanceID hero1, ObjectInstanceID hero2)
  1444. {
  1445. auto h1 = getHero(hero1);
  1446. auto h2 = getHero(hero2);
  1447. if (getPlayerRelations(h1->getOwner(), h2->getOwner()) != PlayerRelations::ENEMIES)
  1448. {
  1449. auto exchange = std::make_shared<CGarrisonDialogQuery>(this, h1, h2);
  1450. ExchangeDialog hex;
  1451. hex.queryID = exchange->queryID;
  1452. hex.player = h1->getOwner();
  1453. hex.hero1 = hero1;
  1454. hex.hero2 = hero2;
  1455. sendAndApply(&hex);
  1456. useScholarSkill(hero1,hero2);
  1457. queries->addQuery(exchange);
  1458. }
  1459. }
  1460. void CGameHandler::sendToAllClients(CPackForClient * pack)
  1461. {
  1462. logNetwork->trace("\tSending to all clients: %s", typeid(*pack).name());
  1463. for (auto c : lobby->activeConnections)
  1464. c->sendPack(pack);
  1465. }
  1466. void CGameHandler::sendAndApply(CPackForClient * pack)
  1467. {
  1468. sendToAllClients(pack);
  1469. gs->apply(pack);
  1470. logNetwork->trace("\tApplied on gs: %s", typeid(*pack).name());
  1471. }
  1472. void CGameHandler::sendAndApply(CGarrisonOperationPack * pack)
  1473. {
  1474. sendAndApply(static_cast<CPackForClient *>(pack));
  1475. checkVictoryLossConditionsForAll();
  1476. }
  1477. void CGameHandler::sendAndApply(SetResources * pack)
  1478. {
  1479. sendAndApply(static_cast<CPackForClient *>(pack));
  1480. checkVictoryLossConditionsForPlayer(pack->player);
  1481. }
  1482. void CGameHandler::sendAndApply(NewStructures * pack)
  1483. {
  1484. sendAndApply(static_cast<CPackForClient *>(pack));
  1485. checkVictoryLossConditionsForPlayer(getTown(pack->tid)->tempOwner);
  1486. }
  1487. bool CGameHandler::isPlayerOwns(CPackForServer * pack, ObjectInstanceID id)
  1488. {
  1489. return pack->player == getOwner(id) && hasPlayerAt(getOwner(id), pack->c);
  1490. }
  1491. void CGameHandler::throwNotAllowedAction(CPackForServer * pack)
  1492. {
  1493. if(pack->c)
  1494. playerMessages->sendSystemMessage(pack->c, "You are not allowed to perform this action!");
  1495. logNetwork->error("Player is not allowed to perform this action!");
  1496. throw ExceptionNotAllowedAction();
  1497. }
  1498. void CGameHandler::wrongPlayerMessage(CPackForServer * pack, PlayerColor expectedplayer)
  1499. {
  1500. std::ostringstream oss;
  1501. oss << "You were identified as player " << pack->player << " while expecting " << expectedplayer;
  1502. logNetwork->error(oss.str());
  1503. if(pack->c)
  1504. playerMessages->sendSystemMessage(pack->c, oss.str());
  1505. }
  1506. void CGameHandler::throwIfWrongOwner(CPackForServer * pack, ObjectInstanceID id)
  1507. {
  1508. if(!isPlayerOwns(pack, id))
  1509. {
  1510. wrongPlayerMessage(pack, getOwner(id));
  1511. throwNotAllowedAction(pack);
  1512. }
  1513. }
  1514. void CGameHandler::throwIfPlayerNotActive(CPackForServer * pack)
  1515. {
  1516. if (!turnOrder->isPlayerMakingTurn(pack->player))
  1517. throwNotAllowedAction(pack);
  1518. }
  1519. void CGameHandler::throwIfWrongPlayer(CPackForServer * pack)
  1520. {
  1521. throwIfWrongPlayer(pack, pack->player);
  1522. }
  1523. void CGameHandler::throwIfWrongPlayer(CPackForServer * pack, PlayerColor player)
  1524. {
  1525. if(!hasPlayerAt(player, pack->c) || pack->player != player)
  1526. {
  1527. wrongPlayerMessage(pack, player);
  1528. throwNotAllowedAction(pack);
  1529. }
  1530. }
  1531. void CGameHandler::throwAndComplain(CPackForServer * pack, std::string txt)
  1532. {
  1533. complain(txt);
  1534. throwNotAllowedAction(pack);
  1535. }
  1536. void CGameHandler::save(const std::string & filename)
  1537. {
  1538. logGlobal->info("Saving to %s", filename);
  1539. const auto stem = FileInfo::GetPathStem(filename);
  1540. const auto savefname = stem.to_string() + ".vsgm1";
  1541. ResourcePath savePath(stem.to_string(), EResType::SAVEGAME);
  1542. CResourceHandler::get("local")->createResource(savefname);
  1543. try
  1544. {
  1545. {
  1546. CSaveFile save(*CResourceHandler::get("local")->getResourceName(savePath));
  1547. saveCommonState(save);
  1548. logGlobal->info("Saving server state");
  1549. save << *this;
  1550. }
  1551. logGlobal->info("Game has been successfully saved!");
  1552. }
  1553. catch(std::exception &e)
  1554. {
  1555. logGlobal->error("Failed to save game: %s", e.what());
  1556. }
  1557. }
  1558. bool CGameHandler::load(const std::string & filename)
  1559. {
  1560. logGlobal->info("Loading from %s", filename);
  1561. const auto stem = FileInfo::GetPathStem(filename);
  1562. reinitScripting();
  1563. try
  1564. {
  1565. {
  1566. CLoadFile lf(*CResourceHandler::get()->getResourceName(ResourcePath(stem.to_string(), EResType::SAVEGAME)), ESerializationVersion::MINIMAL);
  1567. lf.serializer.cb = this;
  1568. loadCommonState(lf);
  1569. logGlobal->info("Loading server state");
  1570. lf >> *this;
  1571. }
  1572. logGlobal->info("Game has been successfully loaded!");
  1573. }
  1574. catch(const ModIncompatibility & e)
  1575. {
  1576. logGlobal->error("Failed to load game: %s", e.what());
  1577. std::string errorMsg;
  1578. if(!e.whatMissing().empty())
  1579. {
  1580. errorMsg += VLC->generaltexth->translate("vcmi.server.errors.modsToEnable") + '\n';
  1581. errorMsg += e.whatMissing();
  1582. }
  1583. if(!e.whatExcessive().empty())
  1584. {
  1585. errorMsg += VLC->generaltexth->translate("vcmi.server.errors.modsToDisable") + '\n';
  1586. errorMsg += e.whatExcessive();
  1587. }
  1588. lobby->announceMessage(errorMsg);
  1589. return false;
  1590. }
  1591. catch(const IdentifierResolutionException & e)
  1592. {
  1593. logGlobal->error("Failed to load game: %s", e.what());
  1594. MetaString errorMsg;
  1595. errorMsg.appendTextID("vcmi.server.errors.unknownEntity");
  1596. errorMsg.replaceRawString(e.identifierName);
  1597. lobby->announceMessage(errorMsg.toString());//FIXME: should be localized on client side
  1598. return false;
  1599. }
  1600. catch(const std::exception & e)
  1601. {
  1602. logGlobal->error("Failed to load game: %s", e.what());
  1603. lobby->announceMessage(std::string("Failed to load game: ") + e.what());
  1604. return false;
  1605. }
  1606. gs->preInit(VLC, this);
  1607. gs->updateOnLoad(lobby->si.get());
  1608. return true;
  1609. }
  1610. bool CGameHandler::bulkSplitStack(SlotID slotSrc, ObjectInstanceID srcOwner, si32 howMany)
  1611. {
  1612. if(!slotSrc.validSlot() && complain(complainInvalidSlot))
  1613. return false;
  1614. const CArmedInstance * army = static_cast<const CArmedInstance*>(getObjInstance(srcOwner));
  1615. const CCreatureSet & creatureSet = *army;
  1616. if((!vstd::contains(creatureSet.stacks, slotSrc) && complain(complainNoCreatures))
  1617. || (howMany < 1 && complain("Invalid split parameter!")))
  1618. {
  1619. return false;
  1620. }
  1621. auto actualAmount = army->getStackCount(slotSrc);
  1622. if(actualAmount <= howMany && complain(complainNotEnoughCreatures)) // '<=' because it's not intended just for moving a stack
  1623. return false;
  1624. auto freeSlots = creatureSet.getFreeSlots();
  1625. if(freeSlots.empty() && complain("No empty stacks"))
  1626. return false;
  1627. BulkRebalanceStacks bulkRS;
  1628. for(auto slot : freeSlots)
  1629. {
  1630. RebalanceStacks rs;
  1631. rs.srcArmy = army->id;
  1632. rs.dstArmy = army->id;
  1633. rs.srcSlot = slotSrc;
  1634. rs.dstSlot = slot;
  1635. rs.count = howMany;
  1636. bulkRS.moves.push_back(rs);
  1637. actualAmount -= howMany;
  1638. if(actualAmount <= howMany)
  1639. break;
  1640. }
  1641. sendAndApply(&bulkRS);
  1642. return true;
  1643. }
  1644. bool CGameHandler::bulkMergeStacks(SlotID slotSrc, ObjectInstanceID srcOwner)
  1645. {
  1646. if(!slotSrc.validSlot() && complain(complainInvalidSlot))
  1647. return false;
  1648. const CArmedInstance * army = static_cast<const CArmedInstance*>(getObjInstance(srcOwner));
  1649. const CCreatureSet & creatureSet = *army;
  1650. if(!vstd::contains(creatureSet.stacks, slotSrc) && complain(complainNoCreatures))
  1651. return false;
  1652. auto actualAmount = creatureSet.getStackCount(slotSrc);
  1653. if(actualAmount < 1 && complain(complainNoCreatures))
  1654. return false;
  1655. auto currentCreature = creatureSet.getCreature(slotSrc);
  1656. if(!currentCreature && complain(complainNoCreatures))
  1657. return false;
  1658. auto creatureSlots = creatureSet.getCreatureSlots(currentCreature, slotSrc);
  1659. if(!creatureSlots.size())
  1660. return false;
  1661. BulkRebalanceStacks bulkRS;
  1662. for(auto slot : creatureSlots)
  1663. {
  1664. RebalanceStacks rs;
  1665. rs.srcArmy = army->id;
  1666. rs.dstArmy = army->id;
  1667. rs.srcSlot = slot;
  1668. rs.dstSlot = slotSrc;
  1669. rs.count = creatureSet.getStackCount(slot);
  1670. bulkRS.moves.push_back(rs);
  1671. }
  1672. sendAndApply(&bulkRS);
  1673. return true;
  1674. }
  1675. bool CGameHandler::bulkMoveArmy(ObjectInstanceID srcArmy, ObjectInstanceID destArmy, SlotID srcSlot)
  1676. {
  1677. if(!srcSlot.validSlot() && complain(complainInvalidSlot))
  1678. return false;
  1679. const CArmedInstance * armySrc = static_cast<const CArmedInstance*>(getObjInstance(srcArmy));
  1680. const CCreatureSet & setSrc = *armySrc;
  1681. if(!vstd::contains(setSrc.stacks, srcSlot) && complain(complainNoCreatures))
  1682. return false;
  1683. const CArmedInstance * armyDest = static_cast<const CArmedInstance*>(getObjInstance(destArmy));
  1684. const CCreatureSet & setDest = *armyDest;
  1685. auto freeSlots = setDest.getFreeSlotsQueue();
  1686. typedef std::map<SlotID, std::pair<SlotID, TQuantity>> TRebalanceMap;
  1687. TRebalanceMap moves;
  1688. auto srcQueue = setSrc.getCreatureQueue(srcSlot); // Exclude srcSlot, it should be moved last
  1689. auto slotsLeft = setSrc.stacksCount();
  1690. auto destMap = setDest.getCreatureMap();
  1691. TMapCreatureSlot::key_compare keyComp = destMap.key_comp();
  1692. while(!srcQueue.empty())
  1693. {
  1694. auto pair = srcQueue.top();
  1695. srcQueue.pop();
  1696. auto currCreature = pair.first;
  1697. auto currSlot = pair.second;
  1698. const auto quantity = setSrc.getStackCount(currSlot);
  1699. TMapCreatureSlot::iterator lb = destMap.lower_bound(currCreature);
  1700. const bool alreadyExists = (lb != destMap.end() && !(keyComp(currCreature, lb->first)));
  1701. if(!alreadyExists)
  1702. {
  1703. if(freeSlots.empty())
  1704. continue;
  1705. auto currFreeSlot = freeSlots.front();
  1706. freeSlots.pop();
  1707. destMap.insert(lb, TMapCreatureSlot::value_type(currCreature, currFreeSlot));
  1708. }
  1709. moves.insert(std::make_pair(currSlot, std::make_pair(destMap[currCreature], quantity)));
  1710. slotsLeft--;
  1711. }
  1712. if(slotsLeft == 1)
  1713. {
  1714. auto lastCreature = setSrc.getCreature(srcSlot);
  1715. auto slotToMove = SlotID();
  1716. // Try to find a slot for last creature
  1717. if(destMap.find(lastCreature) == destMap.end())
  1718. {
  1719. if(!freeSlots.empty())
  1720. slotToMove = freeSlots.front();
  1721. }
  1722. else
  1723. {
  1724. slotToMove = destMap[lastCreature];
  1725. }
  1726. if(slotToMove != SlotID())
  1727. {
  1728. const bool needsLastStack = armySrc->needsLastStack();
  1729. const auto quantity = setSrc.getStackCount(srcSlot) - (needsLastStack ? 1 : 0);
  1730. if(quantity > 0) //0 may happen when we need last creature and we have exactly 1 amount of that creature - amount of "rest we can transfer" becomes 0
  1731. moves.insert(std::make_pair(srcSlot, std::make_pair(slotToMove, quantity)));
  1732. }
  1733. }
  1734. BulkRebalanceStacks bulkRS;
  1735. for(auto & move : moves)
  1736. {
  1737. RebalanceStacks rs;
  1738. rs.srcArmy = armySrc->id;
  1739. rs.dstArmy = armyDest->id;
  1740. rs.srcSlot = move.first;
  1741. rs.dstSlot = move.second.first;
  1742. rs.count = move.second.second;
  1743. bulkRS.moves.push_back(rs);
  1744. }
  1745. sendAndApply(&bulkRS);
  1746. return true;
  1747. }
  1748. bool CGameHandler::bulkSmartSplitStack(SlotID slotSrc, ObjectInstanceID srcOwner)
  1749. {
  1750. if(!slotSrc.validSlot() && complain(complainInvalidSlot))
  1751. return false;
  1752. const CArmedInstance * army = static_cast<const CArmedInstance*>(getObjInstance(srcOwner));
  1753. const CCreatureSet & creatureSet = *army;
  1754. if(!vstd::contains(creatureSet.stacks, slotSrc) && complain(complainNoCreatures))
  1755. return false;
  1756. auto actualAmount = creatureSet.getStackCount(slotSrc);
  1757. if(actualAmount <= 1 && complain(complainNoCreatures))
  1758. return false;
  1759. auto freeSlot = creatureSet.getFreeSlot();
  1760. auto currentCreature = creatureSet.getCreature(slotSrc);
  1761. if(freeSlot == SlotID() && creatureSet.isCreatureBalanced(currentCreature))
  1762. return true;
  1763. auto creatureSlots = creatureSet.getCreatureSlots(currentCreature, SlotID(-1), 1); // Ignore slots where's only 1 creature, don't ignore slotSrc
  1764. TQuantity totalCreatures = 0;
  1765. for(auto slot : creatureSlots)
  1766. totalCreatures += creatureSet.getStackCount(slot);
  1767. if(totalCreatures <= 1 && complain("Total creatures number is invalid"))
  1768. return false;
  1769. if(freeSlot != SlotID())
  1770. creatureSlots.push_back(freeSlot);
  1771. if(creatureSlots.empty() && complain("No available slots for smart rebalancing"))
  1772. return false;
  1773. const auto totalCreatureSlots = creatureSlots.size();
  1774. const auto rem = totalCreatures % totalCreatureSlots;
  1775. const auto quotient = totalCreatures / totalCreatureSlots;
  1776. // totalCreatures == rem * (quotient + 1) + (totalCreatureSlots - rem) * quotient;
  1777. // Proof: r(q+1)+(s-r)q = rq+r+qs-rq = r+qs = total, where total/s = q+r/s
  1778. BulkSmartRebalanceStacks bulkSRS;
  1779. if(freeSlot != SlotID())
  1780. {
  1781. RebalanceStacks rs;
  1782. rs.srcArmy = rs.dstArmy = army->id;
  1783. rs.srcSlot = slotSrc;
  1784. rs.dstSlot = freeSlot;
  1785. rs.count = 1;
  1786. bulkSRS.moves.push_back(rs);
  1787. }
  1788. auto currSlot = 0;
  1789. auto check = 0;
  1790. for(auto slot : creatureSlots)
  1791. {
  1792. ChangeStackCount csc;
  1793. csc.army = army->id;
  1794. csc.slot = slot;
  1795. csc.count = (currSlot < rem)
  1796. ? quotient + 1
  1797. : quotient;
  1798. csc.absoluteValue = true;
  1799. bulkSRS.changes.push_back(csc);
  1800. currSlot++;
  1801. check += csc.count;
  1802. }
  1803. if(check != totalCreatures)
  1804. {
  1805. complain((boost::format("Failure: totalCreatures=%d but check=%d") % totalCreatures % check).str());
  1806. return false;
  1807. }
  1808. sendAndApply(&bulkSRS);
  1809. return true;
  1810. }
  1811. bool CGameHandler::arrangeStacks(ObjectInstanceID id1, ObjectInstanceID id2, ui8 what, SlotID p1, SlotID p2, si32 val, PlayerColor player)
  1812. {
  1813. const CArmedInstance * s1 = static_cast<const CArmedInstance *>(getObjInstance(id1));
  1814. const CArmedInstance * s2 = static_cast<const CArmedInstance *>(getObjInstance(id2));
  1815. const CCreatureSet & S1 = *s1;
  1816. const CCreatureSet & S2 = *s2;
  1817. StackLocation sl1(s1, p1);
  1818. StackLocation sl2(s2, p2);
  1819. if (s1 == nullptr || s2 == nullptr)
  1820. {
  1821. complain("Cannot exchange stacks between non-existing objects!!\n");
  1822. return false;
  1823. }
  1824. if (!sl1.slot.validSlot() || !sl2.slot.validSlot())
  1825. {
  1826. complain(complainInvalidSlot);
  1827. return false;
  1828. }
  1829. if (!isAllowedExchange(id1,id2))
  1830. {
  1831. complain("Cannot exchange stacks between these two objects!\n");
  1832. return false;
  1833. }
  1834. // We can always put stacks into locked garrison, but not take them out of it
  1835. auto notRemovable = [&](const CArmedInstance * army)
  1836. {
  1837. if (id1 != id2) // Stack arrangement inside locked garrison is allowed
  1838. {
  1839. auto g = dynamic_cast<const CGGarrison *>(army);
  1840. if (g && !g->removableUnits)
  1841. {
  1842. complain("Stacks in this garrison are not removable!\n");
  1843. return true;
  1844. }
  1845. }
  1846. return false;
  1847. };
  1848. if (what==1) //swap
  1849. {
  1850. if (((s1->tempOwner != player && s1->tempOwner != PlayerColor::UNFLAGGABLE) && s1->getStackCount(p1))
  1851. || ((s2->tempOwner != player && s2->tempOwner != PlayerColor::UNFLAGGABLE) && s2->getStackCount(p2)))
  1852. {
  1853. complain("Can't take troops from another player!");
  1854. return false;
  1855. }
  1856. if (sl1.army == sl2.army && sl1.slot == sl2.slot)
  1857. {
  1858. complain("Cannot swap stacks - slots are the same!");
  1859. return false;
  1860. }
  1861. if (!s1->slotEmpty(p1) && !s2->slotEmpty(p2))
  1862. {
  1863. if (notRemovable(sl1.army) || notRemovable(sl2.army))
  1864. return false;
  1865. }
  1866. if (s1->slotEmpty(p1) && notRemovable(sl2.army))
  1867. return false;
  1868. else if (s2->slotEmpty(p2) && notRemovable(sl1.army))
  1869. return false;
  1870. swapStacks(sl1, sl2);
  1871. }
  1872. else if (what==2)//merge
  1873. {
  1874. if ((s1->getCreature(p1) != s2->getCreature(p2) && complain("Cannot merge different creatures stacks!"))
  1875. || (((s1->tempOwner != player && s1->tempOwner != PlayerColor::UNFLAGGABLE) && s2->getStackCount(p2)) && complain("Can't take troops from another player!")))
  1876. return false;
  1877. if (s1->slotEmpty(p1) || s2->slotEmpty(p2))
  1878. {
  1879. complain("Cannot merge empty stack!");
  1880. return false;
  1881. }
  1882. else if (notRemovable(sl1.army))
  1883. return false;
  1884. moveStack(sl1, sl2);
  1885. }
  1886. else if (what==3) //split
  1887. {
  1888. const int countToMove = val - s2->getStackCount(p2);
  1889. const int countLeftOnSrc = s1->getStackCount(p1) - countToMove;
  1890. if ( (s1->tempOwner != player && countLeftOnSrc < s1->getStackCount(p1))
  1891. || (s2->tempOwner != player && val < s2->getStackCount(p2)))
  1892. {
  1893. complain("Can't move troops of another player!");
  1894. return false;
  1895. }
  1896. //general conditions checking
  1897. if ((!vstd::contains(S1.stacks,p1) && complain(complainNoCreatures))
  1898. || (val<1 && complain(complainNoCreatures)) )
  1899. {
  1900. return false;
  1901. }
  1902. if (vstd::contains(S2.stacks,p2)) //dest. slot not free - it must be "rebalancing"...
  1903. {
  1904. int total = s1->getStackCount(p1) + s2->getStackCount(p2);
  1905. if ((total < val && complain("Cannot split that stack, not enough creatures!"))
  1906. || (s1->getCreature(p1) != s2->getCreature(p2) && complain("Cannot rebalance different creatures stacks!"))
  1907. )
  1908. {
  1909. return false;
  1910. }
  1911. if (notRemovable(sl1.army))
  1912. {
  1913. if (s1->getStackCount(p1) > countLeftOnSrc)
  1914. return false;
  1915. }
  1916. else if (notRemovable(sl2.army))
  1917. {
  1918. if (s2->getStackCount(p1) < countLeftOnSrc)
  1919. return false;
  1920. }
  1921. moveStack(sl1, sl2, countToMove);
  1922. //S2.slots[p2]->count = val;
  1923. //S1.slots[p1]->count = total - val;
  1924. }
  1925. else //split one stack to the two
  1926. {
  1927. if (s1->getStackCount(p1) < val)//not enough creatures
  1928. {
  1929. complain(complainNotEnoughCreatures);
  1930. return false;
  1931. }
  1932. if (notRemovable(sl1.army))
  1933. return false;
  1934. moveStack(sl1, sl2, val);
  1935. }
  1936. }
  1937. return true;
  1938. }
  1939. bool CGameHandler::hasPlayerAt(PlayerColor player, std::shared_ptr<CConnection> c) const
  1940. {
  1941. return connections.count(player) && connections.at(player).count(c);
  1942. }
  1943. bool CGameHandler::hasBothPlayersAtSameConnection(PlayerColor left, PlayerColor right) const
  1944. {
  1945. return connections.count(left) && connections.count(right) && connections.at(left) == connections.at(right);
  1946. }
  1947. bool CGameHandler::disbandCreature(ObjectInstanceID id, SlotID pos)
  1948. {
  1949. const CArmedInstance * s1 = static_cast<const CArmedInstance *>(getObjInstance(id));
  1950. if (!vstd::contains(s1->stacks,pos))
  1951. {
  1952. complain("Illegal call to disbandCreature - no such stack in army!");
  1953. return false;
  1954. }
  1955. eraseStack(StackLocation(s1, pos));
  1956. return true;
  1957. }
  1958. bool CGameHandler::buildStructure(ObjectInstanceID tid, BuildingID requestedID, bool force)
  1959. {
  1960. const CGTownInstance * t = getTown(tid);
  1961. if(!t)
  1962. COMPLAIN_RETF("No such town (ID=%s)!", tid);
  1963. if(!t->town->buildings.count(requestedID))
  1964. COMPLAIN_RETF("Town of faction %s does not have info about building ID=%s!", t->town->faction->getNameTranslated() % requestedID);
  1965. if(t->hasBuilt(requestedID))
  1966. COMPLAIN_RETF("Building %s is already built in %s", t->town->buildings.at(requestedID)->getNameTranslated() % t->getNameTranslated());
  1967. const CBuilding * requestedBuilding = t->town->buildings.at(requestedID);
  1968. //Vector with future list of built building and buildings in auto-mode that are not yet built.
  1969. std::vector<const CBuilding*> remainingAutoBuildings;
  1970. std::set<BuildingID> buildingsThatWillBe;
  1971. //Check validity of request
  1972. if(!force)
  1973. {
  1974. switch(requestedBuilding->mode)
  1975. {
  1976. case CBuilding::BUILD_NORMAL :
  1977. if (canBuildStructure(t, requestedID) != EBuildingState::ALLOWED)
  1978. COMPLAIN_RET("Cannot build that building!");
  1979. break;
  1980. case CBuilding::BUILD_AUTO :
  1981. case CBuilding::BUILD_SPECIAL:
  1982. COMPLAIN_RET("This building can not be constructed normally!");
  1983. case CBuilding::BUILD_GRAIL :
  1984. if(requestedBuilding->mode == CBuilding::BUILD_GRAIL) //needs grail
  1985. {
  1986. if(!t->visitingHero || !t->visitingHero->hasArt(ArtifactID::GRAIL))
  1987. COMPLAIN_RET("Cannot build this without grail!")
  1988. else
  1989. removeArtifact(ArtifactLocation(t->visitingHero->id, t->visitingHero->getArtPos(ArtifactID::GRAIL, false)));
  1990. }
  1991. break;
  1992. }
  1993. }
  1994. //Performs stuff that has to be done before new building is built
  1995. auto processBeforeBuiltStructure = [t, this](const BuildingID buildingID)
  1996. {
  1997. if(buildingID >= BuildingID::DWELL_FIRST) //dwelling
  1998. {
  1999. int level = (buildingID - BuildingID::DWELL_FIRST) % GameConstants::CREATURES_PER_TOWN;
  2000. int upgradeNumber = (buildingID - BuildingID::DWELL_FIRST) / GameConstants::CREATURES_PER_TOWN;
  2001. if(upgradeNumber >= t->town->creatures.at(level).size())
  2002. {
  2003. complain(boost::str(boost::format("Error encountered when building dwelling (bid=%s):"
  2004. "no creature found (upgrade number %d, level %d!")
  2005. % buildingID % upgradeNumber % level));
  2006. return;
  2007. }
  2008. const CCreature * crea = t->town->creatures.at(level).at(upgradeNumber).toCreature();
  2009. SetAvailableCreatures ssi;
  2010. ssi.tid = t->id;
  2011. ssi.creatures = t->creatures;
  2012. if (ssi.creatures[level].second.empty()) // first creature in a dwelling
  2013. ssi.creatures[level].first = crea->getGrowth();
  2014. ssi.creatures[level].second.push_back(crea->getId());
  2015. sendAndApply(&ssi);
  2016. }
  2017. if(t->town->buildings.at(buildingID)->subId == BuildingSubID::PORTAL_OF_SUMMONING)
  2018. {
  2019. setPortalDwelling(t);
  2020. }
  2021. };
  2022. //Performs stuff that has to be done after new building is built
  2023. auto processAfterBuiltStructure = [t, this](const BuildingID buildingID)
  2024. {
  2025. auto isMageGuild = (buildingID <= BuildingID::MAGES_GUILD_5 && buildingID >= BuildingID::MAGES_GUILD_1);
  2026. auto isLibrary = isMageGuild ? false
  2027. : t->town->buildings.at(buildingID)->subId == BuildingSubID::EBuildingSubID::LIBRARY;
  2028. if(isMageGuild || isLibrary || (t->getFaction() == ETownType::CONFLUX && buildingID == BuildingID::GRAIL))
  2029. {
  2030. if(t->visitingHero)
  2031. giveSpells(t,t->visitingHero);
  2032. if(t->garrisonHero)
  2033. giveSpells(t,t->garrisonHero);
  2034. }
  2035. };
  2036. //Checks if all requirements will be met with expected building list "buildingsThatWillBe"
  2037. auto areRequirementsFulfilled = [&](const BuildingID & buildID)
  2038. {
  2039. return buildingsThatWillBe.count(buildID);
  2040. };
  2041. //Init the vectors
  2042. for(auto & build : t->town->buildings)
  2043. {
  2044. if(t->hasBuilt(build.first))
  2045. {
  2046. buildingsThatWillBe.insert(build.first);
  2047. }
  2048. else
  2049. {
  2050. if(build.second->mode == CBuilding::BUILD_AUTO) //not built auto building
  2051. remainingAutoBuildings.push_back(build.second);
  2052. }
  2053. }
  2054. //Prepare structure (list of building ids will be filled later)
  2055. NewStructures ns;
  2056. ns.tid = tid;
  2057. ns.built = force ? t->built : (t->built+1);
  2058. std::queue<const CBuilding*> buildingsToAdd;
  2059. buildingsToAdd.push(requestedBuilding);
  2060. while(!buildingsToAdd.empty())
  2061. {
  2062. auto b = buildingsToAdd.front();
  2063. buildingsToAdd.pop();
  2064. ns.bid.insert(b->bid);
  2065. buildingsThatWillBe.insert(b->bid);
  2066. remainingAutoBuildings -= b;
  2067. for(auto autoBuilding : remainingAutoBuildings)
  2068. {
  2069. auto actualRequirements = t->genBuildingRequirements(autoBuilding->bid);
  2070. if(actualRequirements.test(areRequirementsFulfilled))
  2071. buildingsToAdd.push(autoBuilding);
  2072. }
  2073. }
  2074. // 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.
  2075. for(auto builtID : ns.bid)
  2076. processBeforeBuiltStructure(builtID);
  2077. //Take cost
  2078. if(!force)
  2079. giveResources(t->tempOwner, -requestedBuilding->resources);
  2080. //We know what has been built, apply changes. Do this as final step to properly update town window
  2081. sendAndApply(&ns);
  2082. //Other post-built events. To some logic like giving spells to work gamestate changes for new building must be already in place!
  2083. for(auto builtID : ns.bid)
  2084. processAfterBuiltStructure(builtID);
  2085. // now when everything is built - reveal tiles for lookout tower
  2086. changeFogOfWar(t->getSightCenter(), t->getSightRadius(), t->getOwner(), ETileVisibility::REVEALED);
  2087. if(t->garrisonHero) //garrison hero first - consistent with original H3 Mana Vortex and Battle Scholar Academy levelup windows order
  2088. visitCastleObjects(t, t->garrisonHero);
  2089. if(t->visitingHero)
  2090. visitCastleObjects(t, t->visitingHero);
  2091. checkVictoryLossConditionsForPlayer(t->tempOwner);
  2092. return true;
  2093. }
  2094. bool CGameHandler::razeStructure (ObjectInstanceID tid, BuildingID bid)
  2095. {
  2096. ///incomplete, simply erases target building
  2097. const CGTownInstance * t = getTown(tid);
  2098. if (!vstd::contains(t->builtBuildings, bid))
  2099. return false;
  2100. RazeStructures rs;
  2101. rs.tid = tid;
  2102. rs.bid.insert(bid);
  2103. rs.destroyed = t->destroyed + 1;
  2104. sendAndApply(&rs);
  2105. //TODO: Remove dwellers
  2106. // if (t->subID == 4 && bid == 17) //Veil of Darkness
  2107. // {
  2108. // RemoveBonus rb(RemoveBonus::TOWN);
  2109. // rb.whoID = t->id;
  2110. // rb.source = BonusSource::TOWN_STRUCTURE;
  2111. // rb.id = 17;
  2112. // sendAndApply(&rb);
  2113. // }
  2114. return true;
  2115. }
  2116. bool CGameHandler::recruitCreatures(ObjectInstanceID objid, ObjectInstanceID dstid, CreatureID crid, ui32 cram, si32 fromLvl, PlayerColor player)
  2117. {
  2118. const CGDwelling * dwelling = dynamic_cast<const CGDwelling *>(getObj(objid));
  2119. const CGTownInstance * town = dynamic_cast<const CGTownInstance *>(getObj(objid));
  2120. const CArmedInstance * army = dynamic_cast<const CArmedInstance *>(getObj(dstid));
  2121. const CGHeroInstance * hero = dynamic_cast<const CGHeroInstance *>(getObj(dstid));
  2122. const CCreature * c = crid.toCreature();
  2123. const bool warMachine = c->warMachine != ArtifactID::NONE;
  2124. //TODO: check if hero is actually visiting object
  2125. COMPLAIN_RET_FALSE_IF(!dwelling || !army, "Cannot recruit: invalid object!");
  2126. COMPLAIN_RET_FALSE_IF(dwelling->getOwner() != player && dwelling->getOwner() != PlayerColor::UNFLAGGABLE, "Cannot recruit: dwelling not owned!");
  2127. if (town)
  2128. {
  2129. COMPLAIN_RET_FALSE_IF(town != army && !hero, "Cannot recruit: invalid destination!");
  2130. COMPLAIN_RET_FALSE_IF(hero != town->garrisonHero && hero != town->visitingHero, "Cannot recruit: can only recruit to town or hero in town!!");
  2131. }
  2132. else
  2133. {
  2134. COMPLAIN_RET_FALSE_IF(getVisitingHero(dwelling) != hero, "Cannot recruit: can only recruit by visiting hero!");
  2135. COMPLAIN_RET_FALSE_IF(!hero || hero->getOwner() != player, "Cannot recruit: can only recruit to owned hero!");
  2136. }
  2137. //verify
  2138. bool found = false;
  2139. int level = 0;
  2140. for (; level < dwelling->creatures.size(); level++) //iterate through all levels
  2141. {
  2142. if ((fromLvl != -1) && (level !=fromLvl))
  2143. continue;
  2144. const auto &cur = dwelling->creatures.at(level); //current level info <amount, list of cr. ids>
  2145. int i = 0;
  2146. for (; i < cur.second.size(); i++) //look for crid among available creatures list on current level
  2147. if (cur.second.at(i) == crid)
  2148. break;
  2149. if (i < cur.second.size())
  2150. {
  2151. found = true;
  2152. cram = std::min(cram, cur.first); //reduce recruited amount up to available amount
  2153. break;
  2154. }
  2155. }
  2156. SlotID slot = army->getSlotFor(crid);
  2157. if ((!found && complain("Cannot recruit: no such creatures!"))
  2158. || ((si32)cram > VLC->creh->objects.at(crid)->maxAmount(getPlayerState(army->tempOwner)->resources) && complain("Cannot recruit: lack of resources!"))
  2159. || (cram<=0 && complain("Cannot recruit: cram <= 0!"))
  2160. || (!slot.validSlot() && !warMachine && complain("Cannot recruit: no available slot!")))
  2161. {
  2162. return false;
  2163. }
  2164. //recruit
  2165. giveResources(army->tempOwner, -(c->getFullRecruitCost() * cram));
  2166. SetAvailableCreatures sac;
  2167. sac.tid = objid;
  2168. sac.creatures = dwelling->creatures;
  2169. sac.creatures[level].first -= cram;
  2170. sendAndApply(&sac);
  2171. if (warMachine)
  2172. {
  2173. ArtifactID artId = c->warMachine;
  2174. const CArtifact * art = artId.toArtifact();
  2175. COMPLAIN_RET_FALSE_IF(!hero, "Only hero can buy war machines");
  2176. COMPLAIN_RET_FALSE_IF(artId == ArtifactID::CATAPULT, "Catapult cannot be recruited!");
  2177. COMPLAIN_RET_FALSE_IF(nullptr == art, "Invalid war machine artifact");
  2178. return giveHeroNewArtifact(hero, art);
  2179. }
  2180. else
  2181. {
  2182. addToSlot(StackLocation(army, slot), c, cram);
  2183. }
  2184. return true;
  2185. }
  2186. bool CGameHandler::upgradeCreature(ObjectInstanceID objid, SlotID pos, CreatureID upgID)
  2187. {
  2188. const CArmedInstance * obj = static_cast<const CArmedInstance *>(getObjInstance(objid));
  2189. if (!obj->hasStackAtSlot(pos))
  2190. {
  2191. COMPLAIN_RET("Cannot upgrade, no stack at slot " + std::to_string(pos));
  2192. }
  2193. UpgradeInfo ui;
  2194. fillUpgradeInfo(obj, pos, ui);
  2195. PlayerColor player = obj->tempOwner;
  2196. const PlayerState *p = getPlayerState(player);
  2197. int crQuantity = obj->stacks.at(pos)->count;
  2198. int newIDpos= vstd::find_pos(ui.newID, upgID);//get position of new id in UpgradeInfo
  2199. //check if upgrade is possible
  2200. if ((ui.oldID == CreatureID::NONE || newIDpos == -1) && complain("That upgrade is not possible!"))
  2201. {
  2202. return false;
  2203. }
  2204. TResources totalCost = ui.cost.at(newIDpos) * crQuantity;
  2205. //check if player has enough resources
  2206. if (!p->resources.canAfford(totalCost))
  2207. COMPLAIN_RET("Cannot upgrade, not enough resources!");
  2208. //take resources
  2209. giveResources(player, -totalCost);
  2210. //upgrade creature
  2211. changeStackType(StackLocation(obj, pos), upgID.toCreature());
  2212. return true;
  2213. }
  2214. bool CGameHandler::changeStackType(const StackLocation &sl, const CCreature *c)
  2215. {
  2216. if (!sl.army->hasStackAtSlot(sl.slot))
  2217. COMPLAIN_RET("Cannot find a stack to change type");
  2218. SetStackType sst;
  2219. sst.army = sl.army->id;
  2220. sst.slot = sl.slot;
  2221. sst.type = c->getId();
  2222. sendAndApply(&sst);
  2223. return true;
  2224. }
  2225. void CGameHandler::moveArmy(const CArmedInstance *src, const CArmedInstance *dst, bool allowMerging)
  2226. {
  2227. assert(src->canBeMergedWith(*dst, allowMerging));
  2228. while(src->stacksCount())//while there are unmoved creatures
  2229. {
  2230. auto i = src->Slots().begin(); //iterator to stack to move
  2231. StackLocation sl(src, i->first); //location of stack to move
  2232. SlotID pos = dst->getSlotFor(i->second->type);
  2233. if (!pos.validSlot())
  2234. {
  2235. //try to merge two other stacks to make place
  2236. std::pair<SlotID, SlotID> toMerge;
  2237. if (dst->mergeableStacks(toMerge, i->first) && allowMerging)
  2238. {
  2239. moveStack(StackLocation(dst, toMerge.first), StackLocation(dst, toMerge.second)); //merge toMerge.first into toMerge.second
  2240. assert(!dst->hasStackAtSlot(toMerge.first)); //we have now a new free slot
  2241. moveStack(sl, StackLocation(dst, toMerge.first)); //move stack to freed slot
  2242. }
  2243. else
  2244. {
  2245. complain("Unexpected failure during an attempt to move army from " + src->nodeName() + " to " + dst->nodeName() + "!");
  2246. return;
  2247. }
  2248. }
  2249. else
  2250. {
  2251. moveStack(sl, StackLocation(dst, pos));
  2252. }
  2253. }
  2254. }
  2255. bool CGameHandler::swapGarrisonOnSiege(ObjectInstanceID tid)
  2256. {
  2257. const CGTownInstance * town = getTown(tid);
  2258. if(!town->garrisonHero == !town->visitingHero)
  2259. return false;
  2260. SetHeroesInTown intown;
  2261. intown.tid = tid;
  2262. if(town->garrisonHero) //garrison -> vising
  2263. {
  2264. intown.garrison = ObjectInstanceID();
  2265. intown.visiting = town->garrisonHero->id;
  2266. }
  2267. else //visiting -> garrison
  2268. {
  2269. if(town->armedGarrison())
  2270. town->mergeGarrisonOnSiege();
  2271. intown.visiting = ObjectInstanceID();
  2272. intown.garrison = town->visitingHero->id;
  2273. }
  2274. sendAndApply(&intown);
  2275. return true;
  2276. }
  2277. bool CGameHandler::garrisonSwap(ObjectInstanceID tid)
  2278. {
  2279. const CGTownInstance * town = getTown(tid);
  2280. if (!town->garrisonHero && town->visitingHero) //visiting => garrison, merge armies: town army => hero army
  2281. {
  2282. if (!town->visitingHero->canBeMergedWith(*town))
  2283. {
  2284. complain("Cannot make garrison swap, not enough free slots!");
  2285. return false;
  2286. }
  2287. moveArmy(town, town->visitingHero, true);
  2288. SetHeroesInTown intown;
  2289. intown.tid = tid;
  2290. intown.visiting = ObjectInstanceID();
  2291. intown.garrison = town->visitingHero->id;
  2292. sendAndApply(&intown);
  2293. return true;
  2294. }
  2295. else if (town->garrisonHero && !town->visitingHero) //move hero out of the garrison
  2296. {
  2297. //check if moving hero out of town will break 8 wandering heroes limit
  2298. if (getHeroCount(town->garrisonHero->tempOwner,false) >= 8)
  2299. {
  2300. complain("Cannot move hero out of the garrison, there are already 8 wandering heroes!");
  2301. return false;
  2302. }
  2303. SetHeroesInTown intown;
  2304. intown.tid = tid;
  2305. intown.garrison = ObjectInstanceID();
  2306. intown.visiting = town->garrisonHero->id;
  2307. sendAndApply(&intown);
  2308. return true;
  2309. }
  2310. else if (!!town->garrisonHero && town->visitingHero) //swap visiting and garrison hero
  2311. {
  2312. SetHeroesInTown intown;
  2313. intown.tid = tid;
  2314. intown.garrison = town->visitingHero->id;
  2315. intown.visiting = town->garrisonHero->id;
  2316. sendAndApply(&intown);
  2317. return true;
  2318. }
  2319. else
  2320. {
  2321. complain("Cannot swap garrison hero!");
  2322. return false;
  2323. }
  2324. }
  2325. // With the amount of changes done to the function, it's more like transferArtifacts.
  2326. // 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.
  2327. bool CGameHandler::moveArtifact(const PlayerColor & player, const ArtifactLocation & src, const ArtifactLocation & dst)
  2328. {
  2329. const auto srcArtSet = getArtSet(src);
  2330. const auto dstArtSet = getArtSet(dst);
  2331. assert(srcArtSet);
  2332. assert(dstArtSet);
  2333. // Make sure exchange is even possible between the two heroes.
  2334. if(!isAllowedExchange(src.artHolder, dst.artHolder))
  2335. COMPLAIN_RET("That heroes cannot make any exchange!");
  2336. COMPLAIN_RET_FALSE_IF(!ArtifactUtils::checkIfSlotValid(*srcArtSet, src.slot), "moveArtifact: wrong artifact source slot");
  2337. const auto srcArtifact = srcArtSet->getArt(src.slot);
  2338. auto dstSlot = dst.slot;
  2339. if(dstSlot == ArtifactPosition::FIRST_AVAILABLE)
  2340. dstSlot = ArtifactUtils::getArtAnyPosition(dstArtSet, srcArtifact->getTypeId());
  2341. if(!ArtifactUtils::checkIfSlotValid(*dstArtSet, dstSlot))
  2342. return true;
  2343. const auto dstArtifact = dstArtSet->getArt(dstSlot);
  2344. const bool isDstSlotOccupied = dstArtSet->bearerType() == ArtBearer::ALTAR ? false : dstArtifact != nullptr;
  2345. const bool isDstSlotBackpack = dstArtSet->bearerType() == ArtBearer::HERO ? ArtifactUtils::isSlotBackpack(dstSlot) : false;
  2346. if(srcArtifact == nullptr)
  2347. COMPLAIN_RET("No artifact to move!");
  2348. if(isDstSlotOccupied && getOwner(src.artHolder) != getOwner(dst.artHolder) && !isDstSlotBackpack)
  2349. COMPLAIN_RET("Can't touch artifact on hero of another player!");
  2350. // Check if src/dest slots are appropriate for the artifacts exchanged.
  2351. // Moving to the backpack is always allowed.
  2352. if((!srcArtifact || !isDstSlotBackpack) && !srcArtifact->canBePutAt(dstArtSet, dstSlot, true))
  2353. COMPLAIN_RET("Cannot move artifact!");
  2354. auto srcSlotInfo = srcArtSet->getSlot(src.slot);
  2355. auto dstSlotInfo = dstArtSet->getSlot(dstSlot);
  2356. if((srcSlotInfo && srcSlotInfo->locked) || (dstSlotInfo && dstSlotInfo->locked))
  2357. COMPLAIN_RET("Cannot move artifact locks.");
  2358. if(isDstSlotBackpack && srcArtifact->artType->isBig())
  2359. COMPLAIN_RET("Cannot put big artifacts in backpack!");
  2360. if(src.slot == ArtifactPosition::MACH4 || dstSlot == ArtifactPosition::MACH4)
  2361. COMPLAIN_RET("Cannot move catapult!");
  2362. if(isDstSlotBackpack && !ArtifactUtils::isBackpackFreeSlots(dstArtSet))
  2363. COMPLAIN_RET("Backpack is full!");
  2364. dstSlot = std::min(dstSlot, ArtifactPosition(ArtifactPosition::BACKPACK_START + dstArtSet->artifactsInBackpack.size()));
  2365. if(src.slot == dstSlot && src.artHolder == dst.artHolder)
  2366. COMPLAIN_RET("Won't move artifact: Dest same as source!");
  2367. BulkMoveArtifacts ma(player, src.artHolder, dst.artHolder, false);
  2368. ma.srcCreature = src.creature;
  2369. ma.dstCreature = dst.creature;
  2370. // Check if dst slot is occupied
  2371. if(!isDstSlotBackpack && isDstSlotOccupied)
  2372. {
  2373. // Previous artifact must be swapped
  2374. COMPLAIN_RET_FALSE_IF(!dstArtifact->canBePutAt(srcArtSet, src.slot, true), "Cannot swap artifacts!");
  2375. ma.artsPack1.push_back(BulkMoveArtifacts::LinkedSlots(dstSlot, src.slot));
  2376. }
  2377. auto hero = getHero(dst.artHolder);
  2378. if(ArtifactUtils::checkSpellbookIsNeeded(hero, srcArtifact->artType->getId(), dstSlot))
  2379. giveHeroNewArtifact(hero, ArtifactID(ArtifactID::SPELLBOOK).toArtifact(), ArtifactPosition::SPELLBOOK);
  2380. ma.artsPack0.push_back(BulkMoveArtifacts::LinkedSlots(src.slot, dstSlot));
  2381. if(src.artHolder != dst.artHolder)
  2382. ma.artsPack0.back().askAssemble = true;
  2383. sendAndApply(&ma);
  2384. return true;
  2385. }
  2386. bool CGameHandler::bulkMoveArtifacts(const PlayerColor & player, ObjectInstanceID srcId, ObjectInstanceID dstId, bool swap, bool equipped, bool backpack)
  2387. {
  2388. // Make sure exchange is even possible between the two heroes.
  2389. if(!isAllowedExchange(srcId, dstId))
  2390. COMPLAIN_RET("That heroes cannot make any exchange!");
  2391. auto psrcSet = getArtSet(srcId);
  2392. auto pdstSet = getArtSet(dstId);
  2393. if((!psrcSet) || (!pdstSet))
  2394. COMPLAIN_RET("bulkMoveArtifacts: wrong hero's ID");
  2395. BulkMoveArtifacts ma(player, srcId, dstId, swap);
  2396. auto & slotsSrcDst = ma.artsPack0;
  2397. auto & slotsDstSrc = ma.artsPack1;
  2398. // Temporary fitting set for artifacts. Used to select available slots before sending data.
  2399. CArtifactFittingSet artFittingSet(pdstSet->bearerType());
  2400. auto moveArtifact = [this, &artFittingSet, dstId](const CArtifactInstance * artifact,
  2401. ArtifactPosition srcSlot, std::vector<BulkMoveArtifacts::LinkedSlots> & slots) -> void
  2402. {
  2403. assert(artifact);
  2404. auto dstSlot = ArtifactUtils::getArtAnyPosition(&artFittingSet, artifact->getTypeId());
  2405. if(dstSlot != ArtifactPosition::PRE_FIRST)
  2406. {
  2407. artFittingSet.putArtifact(dstSlot, static_cast<ConstTransitivePtr<CArtifactInstance>>(artifact));
  2408. slots.push_back(BulkMoveArtifacts::LinkedSlots(srcSlot, dstSlot));
  2409. // TODO Shouldn't be here. Possibly in callback after equipping the artifact
  2410. if(auto dstHero = getHero(dstId))
  2411. {
  2412. if(ArtifactUtils::checkSpellbookIsNeeded(dstHero, artifact->getTypeId(), dstSlot))
  2413. giveHeroNewArtifact(dstHero, ArtifactID(ArtifactID::SPELLBOOK).toArtifact(), ArtifactPosition::SPELLBOOK);
  2414. }
  2415. }
  2416. };
  2417. if(swap)
  2418. {
  2419. auto moveArtsWorn = [moveArtifact](const CArtifactSet * srcArtSet, std::vector<BulkMoveArtifacts::LinkedSlots> & slots)
  2420. {
  2421. for(auto & artifact : srcArtSet->artifactsWorn)
  2422. {
  2423. if(ArtifactUtils::isArtRemovable(artifact))
  2424. moveArtifact(artifact.second.getArt(), artifact.first, slots);
  2425. }
  2426. };
  2427. auto moveArtsInBackpack = [](const CArtifactSet * artSet,
  2428. std::vector<BulkMoveArtifacts::LinkedSlots> & slots) -> void
  2429. {
  2430. for(auto & slotInfo : artSet->artifactsInBackpack)
  2431. {
  2432. auto slot = artSet->getArtPos(slotInfo.artifact);
  2433. slots.push_back(BulkMoveArtifacts::LinkedSlots(slot, slot));
  2434. }
  2435. };
  2436. if(equipped)
  2437. {
  2438. // Move over artifacts that are worn srcHero -> dstHero
  2439. moveArtsWorn(psrcSet, slotsSrcDst);
  2440. artFittingSet.artifactsWorn.clear();
  2441. // Move over artifacts that are worn dstHero -> srcHero
  2442. moveArtsWorn(pdstSet, slotsDstSrc);
  2443. }
  2444. if(backpack)
  2445. {
  2446. // Move over artifacts that are in backpack srcHero -> dstHero
  2447. moveArtsInBackpack(psrcSet, slotsSrcDst);
  2448. // Move over artifacts that are in backpack dstHero -> srcHero
  2449. moveArtsInBackpack(pdstSet, slotsDstSrc);
  2450. }
  2451. }
  2452. else
  2453. {
  2454. artFittingSet.artifactsInBackpack = pdstSet->artifactsInBackpack;
  2455. artFittingSet.artifactsWorn = pdstSet->artifactsWorn;
  2456. if(equipped)
  2457. {
  2458. // Move over artifacts that are worn
  2459. for(auto & artInfo : psrcSet->artifactsWorn)
  2460. {
  2461. if(ArtifactUtils::isArtRemovable(artInfo))
  2462. {
  2463. moveArtifact(psrcSet->getArt(artInfo.first), artInfo.first, slotsSrcDst);
  2464. }
  2465. }
  2466. }
  2467. if(backpack)
  2468. {
  2469. // Move over artifacts that are in backpack
  2470. for(auto & slotInfo : psrcSet->artifactsInBackpack)
  2471. {
  2472. moveArtifact(psrcSet->getArt(psrcSet->getArtPos(slotInfo.artifact)),
  2473. psrcSet->getArtPos(slotInfo.artifact), slotsSrcDst);
  2474. }
  2475. }
  2476. }
  2477. sendAndApply(&ma);
  2478. return true;
  2479. }
  2480. bool CGameHandler::scrollBackpackArtifacts(const PlayerColor & player, const ObjectInstanceID heroID, bool left)
  2481. {
  2482. const auto artSet = getArtSet(heroID);
  2483. COMPLAIN_RET_FALSE_IF(artSet == nullptr, "scrollBackpackArtifacts: wrong hero's ID");
  2484. BulkMoveArtifacts bma(player, heroID, heroID, false);
  2485. const auto backpackEnd = ArtifactPosition(ArtifactPosition::BACKPACK_START + artSet->artifactsInBackpack.size() - 1);
  2486. if(backpackEnd > ArtifactPosition::BACKPACK_START)
  2487. {
  2488. if(left)
  2489. bma.artsPack0.push_back(BulkMoveArtifacts::LinkedSlots(backpackEnd, ArtifactPosition::BACKPACK_START));
  2490. else
  2491. bma.artsPack0.push_back(BulkMoveArtifacts::LinkedSlots(ArtifactPosition::BACKPACK_START, backpackEnd));
  2492. sendAndApply(&bma);
  2493. }
  2494. return true;
  2495. }
  2496. bool CGameHandler::saveArtifactsCostume(const PlayerColor & player, const ObjectInstanceID heroID, uint32_t costumeIdx)
  2497. {
  2498. auto artSet = getArtSet(heroID);
  2499. COMPLAIN_RET_FALSE_IF(artSet == nullptr, "saveArtifactsCostume: wrong hero's ID");
  2500. ChangeArtifactsCostume costume(player, costumeIdx);
  2501. for(const auto & slot : ArtifactUtils::commonWornSlots())
  2502. {
  2503. if(const auto slotInfo = artSet->getSlot(slot); slotInfo != nullptr && !slotInfo->locked)
  2504. costume.costumeSet.emplace(slot, slotInfo->getArt()->getTypeId());
  2505. }
  2506. sendAndApply(&costume);
  2507. return true;
  2508. }
  2509. bool CGameHandler::switchArtifactsCostume(const PlayerColor & player, const ObjectInstanceID heroID, uint32_t costumeIdx)
  2510. {
  2511. const auto artSet = getArtSet(heroID);
  2512. COMPLAIN_RET_FALSE_IF(artSet == nullptr, "switchArtifactsCostume: wrong hero's ID");
  2513. const auto playerState = getPlayerState(player);
  2514. COMPLAIN_RET_FALSE_IF(playerState == nullptr, "switchArtifactsCostume: wrong player");
  2515. if(auto costume = playerState->costumesArtifacts.find(costumeIdx); costume != playerState->costumesArtifacts.end())
  2516. {
  2517. CArtifactFittingSet artFittingSet(*artSet);
  2518. BulkMoveArtifacts bma(player, heroID, heroID, false);
  2519. auto costumeArtMap = costume->second;
  2520. auto estimateBackpackSize = artSet->artifactsInBackpack.size();
  2521. // First, find those artifacts that are already in place
  2522. for(const auto & slot : ArtifactUtils::commonWornSlots())
  2523. {
  2524. if(const auto * slotInfo = artFittingSet.getSlot(slot); slotInfo != nullptr && !slotInfo->locked)
  2525. if(const auto artPos = costumeArtMap.find(slot); artPos != costumeArtMap.end() && artPos->second == slotInfo->getArt()->getTypeId())
  2526. {
  2527. costumeArtMap.erase(artPos);
  2528. artFittingSet.removeArtifact(slot);
  2529. }
  2530. }
  2531. // Second, find the necessary artifacts for the costume
  2532. for(const auto & artPos : costumeArtMap)
  2533. {
  2534. if(const auto availableArts = artFittingSet.getAllArtPositions(artPos.second, false, false, false); !availableArts.empty())
  2535. {
  2536. bma.artsPack0.emplace_back(BulkMoveArtifacts::LinkedSlots
  2537. {
  2538. artSet->getArtPos(artFittingSet.getArt(availableArts.front())),
  2539. artPos.first
  2540. });
  2541. artFittingSet.removeArtifact(availableArts.front());
  2542. if(ArtifactUtils::isSlotBackpack(availableArts.front()))
  2543. estimateBackpackSize--;
  2544. }
  2545. }
  2546. // Third, put unnecessary artifacts into backpack
  2547. for(const auto & slot : ArtifactUtils::commonWornSlots())
  2548. if(artFittingSet.getArt(slot))
  2549. {
  2550. bma.artsPack0.emplace_back(BulkMoveArtifacts::LinkedSlots{slot, ArtifactPosition::BACKPACK_START});
  2551. estimateBackpackSize++;
  2552. }
  2553. const auto backpackCap = VLC->settings()->getInteger(EGameSettings::HEROES_BACKPACK_CAP);
  2554. if((backpackCap < 0 || estimateBackpackSize <= backpackCap) && !bma.artsPack0.empty())
  2555. sendAndApply(&bma);
  2556. }
  2557. return true;
  2558. }
  2559. /**
  2560. * Assembles or disassembles a combination artifact.
  2561. * @param heroID ID of hero holding the artifact(s).
  2562. * @param artifactSlot The worn slot ID of the combination- or constituent artifact.
  2563. * @param assemble True for assembly operation, false for disassembly.
  2564. * @param assembleTo If assemble is true, this represents the artifact ID of the combination
  2565. * artifact to assemble to. Otherwise it's not used.
  2566. */
  2567. bool CGameHandler::assembleArtifacts(ObjectInstanceID heroID, ArtifactPosition artifactSlot, bool assemble, ArtifactID assembleTo)
  2568. {
  2569. const CGHeroInstance * hero = getHero(heroID);
  2570. const CArtifactInstance * destArtifact = hero->getArt(artifactSlot);
  2571. if(!destArtifact)
  2572. COMPLAIN_RET("assembleArtifacts: there is no such artifact instance!");
  2573. const auto dstLoc = ArtifactLocation(hero->id, artifactSlot);
  2574. if(assemble)
  2575. {
  2576. const CArtifact * combinedArt = assembleTo.toArtifact();
  2577. if(!combinedArt->isCombined())
  2578. COMPLAIN_RET("assembleArtifacts: Artifact being attempted to assemble is not a combined artifacts!");
  2579. if(!vstd::contains(ArtifactUtils::assemblyPossibilities(hero, destArtifact->getTypeId()), combinedArt))
  2580. {
  2581. COMPLAIN_RET("assembleArtifacts: It's impossible to assemble requested artifact!");
  2582. }
  2583. if(!destArtifact->canBePutAt(hero, artifactSlot, true)
  2584. && !destArtifact->canBePutAt(hero, ArtifactPosition::BACKPACK_START, true))
  2585. {
  2586. COMPLAIN_RET("assembleArtifacts: It's impossible to give the artholder requested artifact!");
  2587. }
  2588. if(ArtifactUtils::checkSpellbookIsNeeded(hero, assembleTo, artifactSlot))
  2589. giveHeroNewArtifact(hero, ArtifactID(ArtifactID::SPELLBOOK).toArtifact(), ArtifactPosition::SPELLBOOK);
  2590. AssembledArtifact aa;
  2591. aa.al = dstLoc;
  2592. aa.builtArt = combinedArt;
  2593. sendAndApply(&aa);
  2594. }
  2595. else
  2596. {
  2597. if(!destArtifact->isCombined())
  2598. COMPLAIN_RET("assembleArtifacts: Artifact being attempted to disassemble is not a combined artifact!");
  2599. if(ArtifactUtils::isSlotBackpack(artifactSlot)
  2600. && !ArtifactUtils::isBackpackFreeSlots(hero, destArtifact->artType->getConstituents().size() - 1))
  2601. COMPLAIN_RET("assembleArtifacts: Artifact being attempted to disassemble but backpack is full!");
  2602. DisassembledArtifact da;
  2603. da.al = dstLoc;
  2604. sendAndApply(&da);
  2605. }
  2606. return true;
  2607. }
  2608. bool CGameHandler::eraseArtifactByClient(const ArtifactLocation & al)
  2609. {
  2610. const auto * hero = getHero(al.artHolder);
  2611. if(hero == nullptr)
  2612. COMPLAIN_RET("eraseArtifactByClient: wrong hero's ID");
  2613. const auto * art = hero->getArt(al.slot);
  2614. if(art == nullptr)
  2615. COMPLAIN_RET("Cannot remove artifact!");
  2616. if(art->canBePutAt(hero) || al.slot != ArtifactPosition::TRANSITION_POS)
  2617. COMPLAIN_RET("Illegal artifact removal request");
  2618. removeArtifact(al);
  2619. return true;
  2620. }
  2621. bool CGameHandler::buyArtifact(ObjectInstanceID hid, ArtifactID aid)
  2622. {
  2623. const CGHeroInstance * hero = getHero(hid);
  2624. COMPLAIN_RET_FALSE_IF(nullptr == hero, "Invalid hero index");
  2625. const CGTownInstance * town = hero->visitedTown;
  2626. COMPLAIN_RET_FALSE_IF(nullptr == town, "Hero not in town");
  2627. if (aid==ArtifactID::SPELLBOOK)
  2628. {
  2629. if ((!town->hasBuilt(BuildingID::MAGES_GUILD_1) && complain("Cannot buy a spellbook, no mage guild in the town!"))
  2630. || (getResource(hero->getOwner(), EGameResID::GOLD) < GameConstants::SPELLBOOK_GOLD_COST && complain("Cannot buy a spellbook, not enough gold!"))
  2631. || (hero->getArt(ArtifactPosition::SPELLBOOK) && complain("Cannot buy a spellbook, hero already has a one!"))
  2632. )
  2633. return false;
  2634. giveResource(hero->getOwner(),EGameResID::GOLD,-GameConstants::SPELLBOOK_GOLD_COST);
  2635. giveHeroNewArtifact(hero, ArtifactID(ArtifactID::SPELLBOOK).toArtifact(), ArtifactPosition::SPELLBOOK);
  2636. assert(hero->getArt(ArtifactPosition::SPELLBOOK));
  2637. giveSpells(town,hero);
  2638. return true;
  2639. }
  2640. else
  2641. {
  2642. const CArtifact * art = aid.toArtifact();
  2643. COMPLAIN_RET_FALSE_IF(nullptr == art, "Invalid artifact index to buy");
  2644. COMPLAIN_RET_FALSE_IF(art->getWarMachine() == CreatureID::NONE, "War machine artifact required");
  2645. COMPLAIN_RET_FALSE_IF(hero->hasArt(aid),"Hero already has this machine!");
  2646. const int price = art->getPrice();
  2647. COMPLAIN_RET_FALSE_IF(getPlayerState(hero->getOwner())->resources[EGameResID::GOLD] < price, "Not enough gold!");
  2648. if ((town->hasBuilt(BuildingID::BLACKSMITH) && town->town->warMachine == aid)
  2649. || (town->hasBuilt(BuildingSubID::BALLISTA_YARD) && aid == ArtifactID::BALLISTA))
  2650. {
  2651. giveResource(hero->getOwner(),EGameResID::GOLD,-price);
  2652. return giveHeroNewArtifact(hero, art);
  2653. }
  2654. else
  2655. COMPLAIN_RET("This machine is unavailable here!");
  2656. }
  2657. }
  2658. bool CGameHandler::buyArtifact(const IMarket *m, const CGHeroInstance *h, GameResID rid, ArtifactID aid)
  2659. {
  2660. if(!h)
  2661. COMPLAIN_RET("Only hero can buy artifacts!");
  2662. if (!vstd::contains(m->availableItemsIds(EMarketMode::RESOURCE_ARTIFACT), aid))
  2663. COMPLAIN_RET("That artifact is unavailable!");
  2664. int b1;
  2665. int b2;
  2666. m->getOffer(rid, aid, b1, b2, EMarketMode::RESOURCE_ARTIFACT);
  2667. if (getResource(h->tempOwner, rid) < b1)
  2668. COMPLAIN_RET("You can't afford to buy this artifact!");
  2669. giveResource(h->tempOwner, rid, -b1);
  2670. SetAvailableArtifacts saa;
  2671. if(dynamic_cast<const CGTownInstance *>(m))
  2672. {
  2673. saa.id = ObjectInstanceID::NONE;
  2674. saa.arts = gs->map->townMerchantArtifacts;
  2675. }
  2676. else if(const CGBlackMarket *bm = dynamic_cast<const CGBlackMarket *>(m)) //black market
  2677. {
  2678. saa.id = bm->id;
  2679. saa.arts = bm->artifacts;
  2680. }
  2681. else
  2682. COMPLAIN_RET("Wrong marktet...");
  2683. bool found = false;
  2684. for (const CArtifact *&art : saa.arts)
  2685. {
  2686. if (art && art->getId() == aid)
  2687. {
  2688. art = nullptr;
  2689. found = true;
  2690. break;
  2691. }
  2692. }
  2693. if (!found)
  2694. COMPLAIN_RET("Cannot find selected artifact on the list");
  2695. sendAndApply(&saa);
  2696. giveHeroNewArtifact(h, aid.toArtifact(), ArtifactPosition::FIRST_AVAILABLE);
  2697. return true;
  2698. }
  2699. bool CGameHandler::sellArtifact(const IMarket *m, const CGHeroInstance *h, ArtifactInstanceID aid, GameResID rid)
  2700. {
  2701. COMPLAIN_RET_FALSE_IF((!h), "Only hero can sell artifacts!");
  2702. const CArtifactInstance *art = h->getArtByInstanceId(aid);
  2703. COMPLAIN_RET_FALSE_IF((!art), "There is no artifact to sell!");
  2704. COMPLAIN_RET_FALSE_IF((!art->artType->isTradable()), "Cannot sell a war machine or spellbook!");
  2705. int resVal = 0;
  2706. int dump = 1;
  2707. m->getOffer(art->artType->getId(), rid, dump, resVal, EMarketMode::ARTIFACT_RESOURCE);
  2708. removeArtifact(ArtifactLocation(h->id, h->getArtPos(art)));
  2709. giveResource(h->tempOwner, rid, resVal);
  2710. return true;
  2711. }
  2712. bool CGameHandler::buySecSkill(const IMarket *m, const CGHeroInstance *h, SecondarySkill skill)
  2713. {
  2714. if (!h)
  2715. COMPLAIN_RET("You need hero to buy a skill!");
  2716. if (h->getSecSkillLevel(SecondarySkill(skill)))
  2717. COMPLAIN_RET("Hero already know this skill");
  2718. if (!h->canLearnSkill())
  2719. COMPLAIN_RET("Hero can't learn any more skills");
  2720. if (!h->canLearnSkill(skill))
  2721. COMPLAIN_RET("The hero can't learn this skill!");
  2722. if (!vstd::contains(m->availableItemsIds(EMarketMode::RESOURCE_SKILL), skill))
  2723. COMPLAIN_RET("That skill is unavailable!");
  2724. if (getResource(h->tempOwner, EGameResID::GOLD) < GameConstants::SKILL_GOLD_COST)//TODO: remove hardcoded resource\summ?
  2725. COMPLAIN_RET("You can't afford to buy this skill");
  2726. giveResource(h->tempOwner, EGameResID::GOLD, -GameConstants::SKILL_GOLD_COST);
  2727. changeSecSkill(h, skill, 1, true);
  2728. return true;
  2729. }
  2730. bool CGameHandler::tradeResources(const IMarket *market, ui32 amountToSell, PlayerColor player, GameResID toSell, GameResID toBuy)
  2731. {
  2732. TResourceCap haveToSell = getPlayerState(player)->resources[toSell];
  2733. vstd::amin(amountToSell, haveToSell); //can't trade more resources than have
  2734. int b1; //base quantities for trade
  2735. int b2;
  2736. market->getOffer(toSell, toBuy, b1, b2, EMarketMode::RESOURCE_RESOURCE);
  2737. int amountToBoy = amountToSell / b1; //how many base quantities we trade
  2738. if (amountToSell % b1 != 0) //all offered units of resource should be used, if not -> somewhere in calculations must be an error
  2739. {
  2740. COMPLAIN_RET("Invalid deal, not all offered units of resource were used.");
  2741. }
  2742. giveResource(player, toSell, -b1 * amountToBoy);
  2743. giveResource(player, toBuy, b2 * amountToBoy);
  2744. return true;
  2745. }
  2746. bool CGameHandler::sellCreatures(ui32 count, const IMarket *market, const CGHeroInstance * hero, SlotID slot, GameResID resourceID)
  2747. {
  2748. if(!hero)
  2749. COMPLAIN_RET("Only hero can sell creatures!");
  2750. if (!vstd::contains(hero->Slots(), slot))
  2751. COMPLAIN_RET("Hero doesn't have any creature in that slot!");
  2752. const CStackInstance &s = hero->getStack(slot);
  2753. if (s.count < (TQuantity)count //can't sell more creatures than have
  2754. || (hero->stacksCount() == 1 && hero->needsLastStack() && s.count == count)) //can't sell last stack
  2755. {
  2756. COMPLAIN_RET("Not enough creatures in army!");
  2757. }
  2758. int b1; //base quantities for trade
  2759. int b2;
  2760. market->getOffer(s.type->getId(), resourceID, b1, b2, EMarketMode::CREATURE_RESOURCE);
  2761. int units = count / b1; //how many base quantities we trade
  2762. if (count%b1) //all offered units of resource should be used, if not -> somewhere in calculations must be an error
  2763. {
  2764. //TODO: complain?
  2765. assert(0);
  2766. }
  2767. changeStackCount(StackLocation(hero, slot), -(TQuantity)count);
  2768. giveResource(hero->tempOwner, resourceID, b2 * units);
  2769. return true;
  2770. }
  2771. bool CGameHandler::transformInUndead(const IMarket *market, const CGHeroInstance * hero, SlotID slot)
  2772. {
  2773. const CArmedInstance *army = nullptr;
  2774. if (hero)
  2775. army = hero;
  2776. else
  2777. army = dynamic_cast<const CGTownInstance *>(market);
  2778. if (!army)
  2779. COMPLAIN_RET("Incorrect call to transform in undead!");
  2780. if (!army->hasStackAtSlot(slot))
  2781. COMPLAIN_RET("Army doesn't have any creature in that slot!");
  2782. const CStackInstance &s = army->getStack(slot);
  2783. //resulting creature - bone dragons or skeletons
  2784. CreatureID resCreature = CreatureID::SKELETON;
  2785. if ((s.hasBonusOfType(BonusType::DRAGON_NATURE)
  2786. && !(s.hasBonusOfType(BonusType::UNDEAD)))
  2787. || (s.getCreatureID() == CreatureID::HYDRA)
  2788. || (s.getCreatureID() == CreatureID::CHAOS_HYDRA))
  2789. resCreature = CreatureID::BONE_DRAGON;
  2790. changeStackType(StackLocation(army, slot), resCreature.toCreature());
  2791. return true;
  2792. }
  2793. bool CGameHandler::sendResources(ui32 val, PlayerColor player, GameResID r1, PlayerColor r2)
  2794. {
  2795. const PlayerState *p2 = getPlayerState(r2, false);
  2796. if (!p2 || p2->status != EPlayerStatus::INGAME)
  2797. {
  2798. complain("Dest player must be in game!");
  2799. return false;
  2800. }
  2801. TResourceCap curRes1 = getPlayerState(player)->resources[r1];
  2802. vstd::amin(val, curRes1);
  2803. giveResource(player, r1, -(int)val);
  2804. giveResource(r2, r1, val);
  2805. return true;
  2806. }
  2807. bool CGameHandler::setFormation(ObjectInstanceID hid, EArmyFormation formation)
  2808. {
  2809. const CGHeroInstance *h = getHero(hid);
  2810. if (!h)
  2811. {
  2812. logGlobal->error("Hero doesn't exist!");
  2813. return false;
  2814. }
  2815. ChangeFormation cf;
  2816. cf.hid = hid;
  2817. cf.formation = formation;
  2818. sendAndApply(&cf);
  2819. return true;
  2820. }
  2821. bool CGameHandler::queryReply(QueryID qid, std::optional<int32_t> answer, PlayerColor player)
  2822. {
  2823. logGlobal->trace("Player %s attempts answering query %d with answer:", player, qid);
  2824. if (answer)
  2825. logGlobal->trace("%d", *answer);
  2826. auto topQuery = queries->topQuery(player);
  2827. COMPLAIN_RET_FALSE_IF(!topQuery, "This player doesn't have any queries!");
  2828. if(topQuery->queryID != qid)
  2829. {
  2830. auto currentQuery = queries->getQuery(qid);
  2831. if(currentQuery != nullptr && currentQuery->endsByPlayerAnswer())
  2832. currentQuery->setReply(answer);
  2833. COMPLAIN_RET("This player top query has different ID!"); //topQuery->queryID != qid
  2834. }
  2835. COMPLAIN_RET_FALSE_IF(!topQuery->endsByPlayerAnswer(), "This query cannot be ended by player's answer!");
  2836. topQuery->setReply(answer);
  2837. queries->popQuery(topQuery);
  2838. return true;
  2839. }
  2840. void CGameHandler::handleTimeEvents()
  2841. {
  2842. gs->map->events.sort(evntCmp);
  2843. while(gs->map->events.size() && gs->map->events.front().firstOccurrence+1 == gs->day)
  2844. {
  2845. CMapEvent ev = gs->map->events.front();
  2846. for (int player = 0; player < PlayerColor::PLAYER_LIMIT_I; player++)
  2847. {
  2848. auto color = PlayerColor(player);
  2849. const PlayerState * pinfo = getPlayerState(color, false); //do not output error if player does not exist
  2850. if (pinfo //player exists
  2851. && (ev.players & 1<<player) //event is enabled to this player
  2852. && ((ev.computerAffected && !pinfo->human)
  2853. || (ev.humanAffected && pinfo->human)
  2854. )
  2855. )
  2856. {
  2857. //give resources
  2858. giveResources(color, ev.resources);
  2859. //prepare dialog
  2860. InfoWindow iw;
  2861. iw.player = color;
  2862. iw.text = ev.message;
  2863. for (GameResID i : GameResID::ALL_RESOURCES())
  2864. {
  2865. if (ev.resources[i]) //if resource is changed, we add it to the dialog
  2866. iw.components.emplace_back(ComponentType::RESOURCE, i, ev.resources[i]);
  2867. }
  2868. sendAndApply(&iw); //show dialog
  2869. }
  2870. } //PLAYERS LOOP
  2871. if (ev.nextOccurrence)
  2872. {
  2873. gs->map->events.pop_front();
  2874. ev.firstOccurrence += ev.nextOccurrence;
  2875. auto it = gs->map->events.begin();
  2876. while(it != gs->map->events.end() && it->earlierThanOrEqual(ev))
  2877. it++;
  2878. gs->map->events.insert(it, ev);
  2879. }
  2880. else
  2881. {
  2882. gs->map->events.pop_front();
  2883. }
  2884. }
  2885. //TODO send only if changed
  2886. UpdateMapEvents ume;
  2887. ume.events = gs->map->events;
  2888. sendAndApply(&ume);
  2889. }
  2890. void CGameHandler::handleTownEvents(CGTownInstance * town, NewTurn &n)
  2891. {
  2892. town->events.sort(evntCmp);
  2893. while(town->events.size() && town->events.front().firstOccurrence == gs->day)
  2894. {
  2895. PlayerColor player = town->tempOwner;
  2896. CCastleEvent ev = town->events.front();
  2897. const PlayerState * pinfo = getPlayerState(player, false);
  2898. if (pinfo //player exists
  2899. && (ev.players & 1<<player.getNum()) //event is enabled to this player
  2900. && ((ev.computerAffected && !pinfo->human)
  2901. || (ev.humanAffected && pinfo->human)))
  2902. {
  2903. // dialog
  2904. InfoWindow iw;
  2905. iw.player = player;
  2906. iw.text = ev.message;
  2907. if (ev.resources.nonZero())
  2908. {
  2909. TResources was = n.res[player];
  2910. n.res[player] += ev.resources;
  2911. n.res[player].amax(0);
  2912. for (GameResID i : GameResID::ALL_RESOURCES())
  2913. if (ev.resources[i] && pinfo->resources[i] != n.res.at(player)[i]) //if resource had changed, we add it to the dialog
  2914. iw.components.emplace_back(ComponentType::RESOURCE, i, n.res.at(player)[i] - was[i]);
  2915. }
  2916. for (auto & i : ev.buildings)
  2917. {
  2918. // Only perform action if:
  2919. // 1. Building exists in town (don't attempt to build Lvl 5 guild in Fortress
  2920. // 2. Building was not built yet
  2921. // othervice, silently ignore / skip it
  2922. if (town->town->buildings.count(i) && !town->hasBuilt(i))
  2923. {
  2924. buildStructure(town->id, i, true);
  2925. iw.components.emplace_back(ComponentType::BUILDING, BuildingTypeUniqueID(town->getFaction(), i));
  2926. }
  2927. }
  2928. if (!ev.creatures.empty() && !vstd::contains(n.cres, town->id))
  2929. {
  2930. n.cres[town->id].tid = town->id;
  2931. n.cres[town->id].creatures = town->creatures;
  2932. }
  2933. auto & sac = n.cres[town->id];
  2934. for (si32 i=0;i<ev.creatures.size();i++) //creature growths
  2935. {
  2936. if (!town->creatures.at(i).second.empty() && ev.creatures.at(i) > 0)//there is dwelling
  2937. {
  2938. sac.creatures[i].first += ev.creatures.at(i);
  2939. iw.components.emplace_back(ComponentType::CREATURE, town->creatures.at(i).second.back(), ev.creatures.at(i));
  2940. }
  2941. }
  2942. sendAndApply(&iw); //show dialog
  2943. }
  2944. if (ev.nextOccurrence)
  2945. {
  2946. town->events.pop_front();
  2947. ev.firstOccurrence += ev.nextOccurrence;
  2948. auto it = town->events.begin();
  2949. while(it != town->events.end() && it->earlierThanOrEqual(ev))
  2950. it++;
  2951. town->events.insert(it, ev);
  2952. }
  2953. else
  2954. {
  2955. town->events.pop_front();
  2956. }
  2957. }
  2958. //TODO send only if changed
  2959. UpdateCastleEvents uce;
  2960. uce.town = town->id;
  2961. uce.events = town->events;
  2962. sendAndApply(&uce);
  2963. }
  2964. bool CGameHandler::complain(const std::string &problem)
  2965. {
  2966. #ifndef ENABLE_GOLDMASTER
  2967. playerMessages->broadcastSystemMessage("Server encountered a problem: " + problem);
  2968. #endif
  2969. logGlobal->error(problem);
  2970. return true;
  2971. }
  2972. void CGameHandler::showGarrisonDialog(ObjectInstanceID upobj, ObjectInstanceID hid, bool removableUnits)
  2973. {
  2974. //PlayerColor player = getOwner(hid);
  2975. auto upperArmy = dynamic_cast<const CArmedInstance*>(getObj(upobj));
  2976. auto lowerArmy = dynamic_cast<const CArmedInstance*>(getObj(hid));
  2977. assert(lowerArmy);
  2978. assert(upperArmy);
  2979. auto garrisonQuery = std::make_shared<CGarrisonDialogQuery>(this, upperArmy, lowerArmy);
  2980. queries->addQuery(garrisonQuery);
  2981. GarrisonDialog gd;
  2982. gd.hid = hid;
  2983. gd.objid = upobj;
  2984. gd.removableUnits = removableUnits;
  2985. gd.queryID = garrisonQuery->queryID;
  2986. sendAndApply(&gd);
  2987. }
  2988. void CGameHandler::showObjectWindow(const CGObjectInstance * object, EOpenWindowMode window, const CGHeroInstance * visitor, bool addQuery)
  2989. {
  2990. OpenWindow pack;
  2991. pack.window = window;
  2992. pack.object = object->id;
  2993. pack.visitor = visitor->id;
  2994. if (addQuery)
  2995. {
  2996. auto windowQuery = std::make_shared<OpenWindowQuery>(this, visitor, window);
  2997. pack.queryID = windowQuery->queryID;
  2998. queries->addQuery(windowQuery);
  2999. }
  3000. sendAndApply(&pack);
  3001. }
  3002. bool CGameHandler::isAllowedExchange(ObjectInstanceID id1, ObjectInstanceID id2)
  3003. {
  3004. if (id1 == id2)
  3005. return true;
  3006. const CGObjectInstance *o1 = getObj(id1);
  3007. const CGObjectInstance *o2 = getObj(id2);
  3008. if (!o1 || !o2)
  3009. return true; //arranging stacks within an object should be always allowed
  3010. if (o1 && o2)
  3011. {
  3012. if (o1->ID == Obj::TOWN)
  3013. {
  3014. const CGTownInstance *t = static_cast<const CGTownInstance*>(o1);
  3015. if (t->visitingHero == o2 || t->garrisonHero == o2)
  3016. return true;
  3017. }
  3018. if (o2->ID == Obj::TOWN)
  3019. {
  3020. const CGTownInstance *t = static_cast<const CGTownInstance*>(o2);
  3021. if (t->visitingHero == o1 || t->garrisonHero == o1)
  3022. return true;
  3023. }
  3024. auto market = dynamic_cast<const IMarket*>(o1);
  3025. if(market == nullptr)
  3026. market = dynamic_cast<const IMarket*>(o2);
  3027. if(market)
  3028. return market->allowsTrade(EMarketMode::ARTIFACT_EXP);
  3029. if (o1->ID == Obj::HERO && o2->ID == Obj::HERO)
  3030. {
  3031. const CGHeroInstance *h1 = static_cast<const CGHeroInstance*>(o1);
  3032. const CGHeroInstance *h2 = static_cast<const CGHeroInstance*>(o2);
  3033. // two heroes in same town (garrisoned and visiting)
  3034. if (h1->visitedTown != nullptr && h2->visitedTown != nullptr && h1->visitedTown == h2->visitedTown)
  3035. return true;
  3036. }
  3037. //Ongoing garrison exchange - usually picking from top garison (from o1 to o2), but who knows
  3038. auto dialog = std::dynamic_pointer_cast<CGarrisonDialogQuery>(queries->topQuery(o1->tempOwner));
  3039. if (!dialog)
  3040. {
  3041. dialog = std::dynamic_pointer_cast<CGarrisonDialogQuery>(queries->topQuery(o2->tempOwner));
  3042. }
  3043. if (dialog)
  3044. {
  3045. auto topArmy = dialog->exchangingArmies.at(0);
  3046. auto bottomArmy = dialog->exchangingArmies.at(1);
  3047. if ((topArmy == o1 && bottomArmy == o2) || (bottomArmy == o1 && topArmy == o2))
  3048. return true;
  3049. }
  3050. }
  3051. return false;
  3052. }
  3053. void CGameHandler::objectVisited(const CGObjectInstance * obj, const CGHeroInstance * h)
  3054. {
  3055. using events::ObjectVisitStarted;
  3056. logGlobal->debug("%s visits %s (%d)", h->nodeName(), obj->getObjectName(), obj->ID);
  3057. if (getVisitingHero(obj) != nullptr)
  3058. {
  3059. logGlobal->error("Attempt to visit object that is being visited by another hero!");
  3060. throw std::runtime_error("Can not visit object that is being visited");
  3061. }
  3062. std::shared_ptr<CObjectVisitQuery> visitQuery;
  3063. auto startVisit = [&](ObjectVisitStarted & event)
  3064. {
  3065. auto visitedObject = obj;
  3066. if(obj->ID == Obj::HERO)
  3067. {
  3068. auto visitedHero = static_cast<const CGHeroInstance *>(obj);
  3069. const auto visitedTown = visitedHero->visitedTown;
  3070. if(visitedTown)
  3071. {
  3072. const bool isEnemy = visitedHero->getOwner() != h->getOwner();
  3073. if(isEnemy && !visitedTown->isBattleOutsideTown(visitedHero))
  3074. visitedObject = visitedTown;
  3075. }
  3076. }
  3077. visitQuery = std::make_shared<CObjectVisitQuery>(this, visitedObject, h, visitedObject->visitablePos());
  3078. queries->addQuery(visitQuery); //TODO real visit pos
  3079. HeroVisit hv;
  3080. hv.objId = obj->id;
  3081. hv.heroId = h->id;
  3082. hv.player = h->tempOwner;
  3083. hv.starting = true;
  3084. sendAndApply(&hv);
  3085. obj->onHeroVisit(h);
  3086. };
  3087. ObjectVisitStarted::defaultExecute(serverEventBus.get(), startVisit, h->tempOwner, h->id, obj->id);
  3088. if(visitQuery)
  3089. queries->popIfTop(visitQuery); //visit ends here if no queries were created
  3090. }
  3091. void CGameHandler::objectVisitEnded(const CObjectVisitQuery & query)
  3092. {
  3093. using events::ObjectVisitEnded;
  3094. logGlobal->debug("%s visit ends.\n", query.visitingHero->nodeName());
  3095. auto endVisit = [&](ObjectVisitEnded & event)
  3096. {
  3097. HeroVisit hv;
  3098. hv.player = event.getPlayer();
  3099. hv.heroId = event.getHero();
  3100. hv.starting = false;
  3101. sendAndApply(&hv);
  3102. };
  3103. //TODO: ObjectVisitEnded should also have id of visited object,
  3104. //but this requires object being deleted only by `removeAfterVisit()` but not `removeObject()`
  3105. ObjectVisitEnded::defaultExecute(serverEventBus.get(), endVisit, query.players.front(), query.visitingHero->id);
  3106. }
  3107. bool CGameHandler::buildBoat(ObjectInstanceID objid, PlayerColor playerID)
  3108. {
  3109. const auto *obj = dynamic_cast<const IShipyard *>(getObj(objid));
  3110. if (obj->shipyardStatus() != IBoatGenerator::GOOD)
  3111. {
  3112. complain("Cannot build boat in this shipyard!");
  3113. return false;
  3114. }
  3115. TResources boatCost;
  3116. obj->getBoatCost(boatCost);
  3117. TResources available = getPlayerState(playerID)->resources;
  3118. if (!available.canAfford(boatCost))
  3119. {
  3120. complain("Not enough resources to build a boat!");
  3121. return false;
  3122. }
  3123. int3 tile = obj->bestLocation();
  3124. if (!gs->map->isInTheMap(tile))
  3125. {
  3126. complain("Cannot find appropriate tile for a boat!");
  3127. return false;
  3128. }
  3129. giveResources(playerID, -boatCost);
  3130. createObject(tile, playerID, Obj::BOAT, obj->getBoatType().getNum());
  3131. return true;
  3132. }
  3133. void CGameHandler::checkVictoryLossConditions(const std::set<PlayerColor> & playerColors)
  3134. {
  3135. for (auto playerColor : playerColors)
  3136. {
  3137. if (getPlayerState(playerColor, false))
  3138. checkVictoryLossConditionsForPlayer(playerColor);
  3139. }
  3140. }
  3141. void CGameHandler::checkVictoryLossConditionsForAll()
  3142. {
  3143. std::set<PlayerColor> playerColors;
  3144. for (int i = 0; i < PlayerColor::PLAYER_LIMIT_I; ++i)
  3145. {
  3146. playerColors.insert(PlayerColor(i));
  3147. }
  3148. checkVictoryLossConditions(playerColors);
  3149. }
  3150. void CGameHandler::checkVictoryLossConditionsForPlayer(PlayerColor player)
  3151. {
  3152. const PlayerState * p = getPlayerState(player);
  3153. if(!p || p->status != EPlayerStatus::INGAME) return;
  3154. auto victoryLossCheckResult = gs->checkForVictoryAndLoss(player);
  3155. if (victoryLossCheckResult.victory() || victoryLossCheckResult.loss())
  3156. {
  3157. InfoWindow iw;
  3158. getVictoryLossMessage(player, victoryLossCheckResult, iw);
  3159. sendAndApply(&iw);
  3160. PlayerEndsGame peg;
  3161. peg.player = player;
  3162. peg.victoryLossCheckResult = victoryLossCheckResult;
  3163. sendAndApply(&peg);
  3164. turnOrder->onPlayerEndsGame(player);
  3165. if (victoryLossCheckResult.victory())
  3166. {
  3167. //one player won -> all enemies lost
  3168. for (auto i = gs->players.cbegin(); i!=gs->players.cend(); i++)
  3169. {
  3170. if (i->first != player && getPlayerState(i->first)->status == EPlayerStatus::INGAME)
  3171. {
  3172. peg.player = i->first;
  3173. peg.victoryLossCheckResult = getPlayerRelations(player, i->first) == PlayerRelations::ALLIES ?
  3174. victoryLossCheckResult : victoryLossCheckResult.invert(); // ally of winner
  3175. InfoWindow iw;
  3176. getVictoryLossMessage(player, peg.victoryLossCheckResult, iw);
  3177. iw.player = i->first;
  3178. sendAndApply(&iw);
  3179. sendAndApply(&peg);
  3180. }
  3181. }
  3182. if(p->human)
  3183. {
  3184. lobby->setState(EServerState::SHUTDOWN);
  3185. }
  3186. }
  3187. else
  3188. {
  3189. //copy heroes vector to avoid iterator invalidation as removal change PlayerState
  3190. auto hlp = p->heroes;
  3191. for (auto h : hlp) //eliminate heroes
  3192. {
  3193. if (h.get())
  3194. removeObject(h, player);
  3195. }
  3196. //player lost -> all his objects become unflagged (neutral)
  3197. for (auto obj : gs->map->objects) //unflag objs
  3198. {
  3199. if (obj.get() && obj->tempOwner == player)
  3200. setOwner(obj, PlayerColor::NEUTRAL);
  3201. }
  3202. //eliminating one player may cause victory of another:
  3203. std::set<PlayerColor> playerColors;
  3204. //do not copy player state (CBonusSystemNode) by value
  3205. for (auto &p : gs->players) //players may have different colors, iterate over players and not integers
  3206. {
  3207. if (p.first != player)
  3208. playerColors.insert(p.first);
  3209. }
  3210. //notify all players
  3211. for (auto pc : playerColors)
  3212. {
  3213. if (getPlayerState(pc)->status == EPlayerStatus::INGAME)
  3214. {
  3215. InfoWindow iw;
  3216. getVictoryLossMessage(player, victoryLossCheckResult.invert(), iw);
  3217. iw.player = pc;
  3218. sendAndApply(&iw);
  3219. }
  3220. }
  3221. checkVictoryLossConditions(playerColors);
  3222. }
  3223. }
  3224. }
  3225. void CGameHandler::getVictoryLossMessage(PlayerColor player, const EVictoryLossCheckResult & victoryLossCheckResult, InfoWindow & out) const
  3226. {
  3227. out.player = player;
  3228. out.text = victoryLossCheckResult.messageToSelf;
  3229. out.text.replaceName(player);
  3230. out.components.emplace_back(ComponentType::FLAG, player);
  3231. }
  3232. bool CGameHandler::dig(const CGHeroInstance *h)
  3233. {
  3234. if (h->diggingStatus() != EDiggingStatus::CAN_DIG) //checks for terrain and movement
  3235. COMPLAIN_RETF("Hero cannot dig (error code %d)!", static_cast<int>(h->diggingStatus()));
  3236. createObject(h->visitablePos(), h->getOwner(), Obj::HOLE, 0 );
  3237. //take MPs
  3238. SetMovePoints smp;
  3239. smp.hid = h->id;
  3240. smp.val = 0;
  3241. sendAndApply(&smp);
  3242. InfoWindow iw;
  3243. iw.type = EInfoWindowMode::AUTO;
  3244. iw.player = h->tempOwner;
  3245. if (gs->map->grailPos == h->visitablePos())
  3246. {
  3247. ArtifactID grail = ArtifactID::GRAIL;
  3248. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 58); //"Congratulations! After spending many hours digging here, your hero has uncovered the " ...
  3249. iw.text.appendName(grail); // ... " The Grail"
  3250. iw.soundID = soundBase::ULTIMATEARTIFACT;
  3251. giveHeroNewArtifact(h, grail.toArtifact(), ArtifactPosition::FIRST_AVAILABLE); //give grail
  3252. sendAndApply(&iw);
  3253. iw.soundID = soundBase::invalid;
  3254. iw.components.emplace_back(ComponentType::ARTIFACT, grail);
  3255. iw.text.clear();
  3256. iw.text.appendTextID(grail.toArtifact()->getDescriptionTextID());
  3257. sendAndApply(&iw);
  3258. }
  3259. else
  3260. {
  3261. iw.text.appendLocalString(EMetaText::GENERAL_TXT, 59); //"Nothing here. \n Where could it be?"
  3262. iw.soundID = soundBase::Dig;
  3263. sendAndApply(&iw);
  3264. }
  3265. return true;
  3266. }
  3267. void CGameHandler::visitObjectOnTile(const TerrainTile &t, const CGHeroInstance * h)
  3268. {
  3269. if (!t.visitableObjects.empty())
  3270. {
  3271. //to prevent self-visiting heroes on space press
  3272. if (t.visitableObjects.back() != h)
  3273. objectVisited(t.visitableObjects.back(), h);
  3274. else if (t.visitableObjects.size() > 1)
  3275. objectVisited(*(t.visitableObjects.end()-2),h);
  3276. }
  3277. }
  3278. bool CGameHandler::sacrificeCreatures(const IMarket * market, const CGHeroInstance * hero, const std::vector<SlotID> & slot, const std::vector<ui32> & count)
  3279. {
  3280. if (!hero)
  3281. COMPLAIN_RET("You need hero to sacrifice creature!");
  3282. int expSum = 0;
  3283. auto finish = [this, &hero, &expSum]()
  3284. {
  3285. giveExperience(hero, hero->calculateXp(expSum));
  3286. };
  3287. for(int i = 0; i < slot.size(); ++i)
  3288. {
  3289. int oldCount = hero->getStackCount(slot[i]);
  3290. if(oldCount < (int)count[i])
  3291. {
  3292. finish();
  3293. COMPLAIN_RET("Not enough creatures to sacrifice!")
  3294. }
  3295. else if(oldCount == count[i] && hero->stacksCount() == 1 && hero->needsLastStack())
  3296. {
  3297. finish();
  3298. COMPLAIN_RET("Cannot sacrifice last creature!");
  3299. }
  3300. int crid = hero->getStack(slot[i]).type->getId();
  3301. changeStackCount(StackLocation(hero, slot[i]), -(TQuantity)count[i]);
  3302. int dump;
  3303. int exp;
  3304. market->getOffer(crid, 0, dump, exp, EMarketMode::CREATURE_EXP);
  3305. exp *= count[i];
  3306. expSum += exp;
  3307. }
  3308. finish();
  3309. return true;
  3310. }
  3311. bool CGameHandler::sacrificeArtifact(const IMarket * m, const CGHeroInstance * hero, const std::vector<ArtifactInstanceID> & arts)
  3312. {
  3313. if (!hero)
  3314. COMPLAIN_RET("You need hero to sacrifice artifact!");
  3315. if(hero->getAlignment() == EAlignment::EVIL)
  3316. COMPLAIN_RET("Evil hero can't sacrifice artifact!");
  3317. assert(m);
  3318. auto altarObj = dynamic_cast<const CGArtifactsAltar*>(m);
  3319. int expSum = 0;
  3320. auto finish = [this, &hero, &expSum]()
  3321. {
  3322. giveExperience(hero, hero->calculateXp(expSum));
  3323. };
  3324. for(const auto & artInstId : arts)
  3325. {
  3326. if(auto art = altarObj->getArtByInstanceId(artInstId))
  3327. {
  3328. if(art->artType->isTradable())
  3329. {
  3330. int dmp;
  3331. int expToGive;
  3332. m->getOffer(art->getTypeId(), 0, dmp, expToGive, EMarketMode::ARTIFACT_EXP);
  3333. expSum += expToGive;
  3334. removeArtifact(ArtifactLocation(altarObj->id, altarObj->getArtPos(art)));
  3335. }
  3336. else
  3337. {
  3338. COMPLAIN_RET("Cannot sacrifice not tradable artifact!");
  3339. }
  3340. }
  3341. else
  3342. {
  3343. finish();
  3344. COMPLAIN_RET("Cannot find artifact to sacrifice!");
  3345. }
  3346. }
  3347. finish();
  3348. return true;
  3349. }
  3350. bool CGameHandler::insertNewStack(const StackLocation &sl, const CCreature *c, TQuantity count)
  3351. {
  3352. if (sl.army->hasStackAtSlot(sl.slot))
  3353. COMPLAIN_RET("Slot is already taken!");
  3354. if (!sl.slot.validSlot())
  3355. COMPLAIN_RET("Cannot insert stack to that slot!");
  3356. InsertNewStack ins;
  3357. ins.army = sl.army->id;
  3358. ins.slot = sl.slot;
  3359. ins.type = c->getId();
  3360. ins.count = count;
  3361. sendAndApply(&ins);
  3362. return true;
  3363. }
  3364. bool CGameHandler::eraseStack(const StackLocation &sl, bool forceRemoval)
  3365. {
  3366. if (!sl.army->hasStackAtSlot(sl.slot))
  3367. COMPLAIN_RET("Cannot find a stack to erase");
  3368. if (sl.army->stacksCount() == 1 //from the last stack
  3369. && sl.army->needsLastStack() //that must be left
  3370. && !forceRemoval) //ignore above conditions if we are forcing removal
  3371. {
  3372. COMPLAIN_RET("Cannot erase the last stack!");
  3373. }
  3374. EraseStack es;
  3375. es.army = sl.army->id;
  3376. es.slot = sl.slot;
  3377. sendAndApply(&es);
  3378. return true;
  3379. }
  3380. bool CGameHandler::changeStackCount(const StackLocation &sl, TQuantity count, bool absoluteValue)
  3381. {
  3382. TQuantity currentCount = sl.army->getStackCount(sl.slot);
  3383. if ((absoluteValue && count < 0)
  3384. || (!absoluteValue && -count > currentCount))
  3385. {
  3386. COMPLAIN_RET("Cannot take more stacks than present!");
  3387. }
  3388. if ((currentCount == -count && !absoluteValue)
  3389. || (!count && absoluteValue))
  3390. {
  3391. eraseStack(sl);
  3392. }
  3393. else
  3394. {
  3395. ChangeStackCount csc;
  3396. csc.army = sl.army->id;
  3397. csc.slot = sl.slot;
  3398. csc.count = count;
  3399. csc.absoluteValue = absoluteValue;
  3400. sendAndApply(&csc);
  3401. }
  3402. return true;
  3403. }
  3404. bool CGameHandler::addToSlot(const StackLocation &sl, const CCreature *c, TQuantity count)
  3405. {
  3406. const CCreature *slotC = sl.army->getCreature(sl.slot);
  3407. if (!slotC) //slot is empty
  3408. insertNewStack(sl, c, count);
  3409. else if (c == slotC)
  3410. changeStackCount(sl, count);
  3411. else
  3412. {
  3413. COMPLAIN_RET("Cannot add " + c->getNamePluralTranslated() + " to slot " + boost::lexical_cast<std::string>(sl.slot) + "!");
  3414. }
  3415. return true;
  3416. }
  3417. void CGameHandler::tryJoiningArmy(const CArmedInstance *src, const CArmedInstance *dst, bool removeObjWhenFinished, bool allowMerging)
  3418. {
  3419. if (removeObjWhenFinished)
  3420. removeAfterVisit(src);
  3421. if (!src->canBeMergedWith(*dst, allowMerging))
  3422. {
  3423. if (allowMerging) //do that, add all matching creatures.
  3424. {
  3425. bool cont = true;
  3426. while (cont)
  3427. {
  3428. for (auto i = src->stacks.begin(); i != src->stacks.end(); i++)//while there are unmoved creatures
  3429. {
  3430. SlotID pos = dst->getSlotFor(i->second->type);
  3431. if (pos.validSlot())
  3432. {
  3433. moveStack(StackLocation(src, i->first), StackLocation(dst, pos));
  3434. cont = true;
  3435. break; //or iterator crashes
  3436. }
  3437. cont = false;
  3438. }
  3439. }
  3440. }
  3441. showGarrisonDialog(src->id, dst->id, true); //show garrison window and optionally remove ourselves from map when player ends
  3442. }
  3443. else //merge
  3444. {
  3445. moveArmy(src, dst, allowMerging);
  3446. }
  3447. }
  3448. bool CGameHandler::moveStack(const StackLocation &src, const StackLocation &dst, TQuantity count)
  3449. {
  3450. if (!src.army->hasStackAtSlot(src.slot))
  3451. COMPLAIN_RET("No stack to move!");
  3452. if (dst.army->hasStackAtSlot(dst.slot) && dst.army->getCreature(dst.slot) != src.army->getCreature(src.slot))
  3453. COMPLAIN_RET("Cannot move: stack of different type at destination pos!");
  3454. if (!dst.slot.validSlot())
  3455. COMPLAIN_RET("Cannot move stack to that slot!");
  3456. if (count == -1)
  3457. {
  3458. count = src.army->getStackCount(src.slot);
  3459. }
  3460. if (src.army != dst.army //moving away
  3461. && count == src.army->getStackCount(src.slot) //all creatures
  3462. && src.army->stacksCount() == 1 //from the last stack
  3463. && src.army->needsLastStack()) //that must be left
  3464. {
  3465. COMPLAIN_RET("Cannot move away the last creature!");
  3466. }
  3467. RebalanceStacks rs;
  3468. rs.srcArmy = src.army->id;
  3469. rs.dstArmy = dst.army->id;
  3470. rs.srcSlot = src.slot;
  3471. rs.dstSlot = dst.slot;
  3472. rs.count = count;
  3473. sendAndApply(&rs);
  3474. return true;
  3475. }
  3476. void CGameHandler::castSpell(const spells::Caster * caster, SpellID spellID, const int3 &pos)
  3477. {
  3478. if (!spellID.hasValue())
  3479. return;
  3480. AdventureSpellCastParameters p;
  3481. p.caster = caster;
  3482. p.pos = pos;
  3483. const CSpell * s = spellID.toSpell();
  3484. s->adventureCast(spellEnv, p);
  3485. }
  3486. bool CGameHandler::swapStacks(const StackLocation & sl1, const StackLocation & sl2)
  3487. {
  3488. if(!sl1.army->hasStackAtSlot(sl1.slot))
  3489. {
  3490. return moveStack(sl2, sl1);
  3491. }
  3492. else if(!sl2.army->hasStackAtSlot(sl2.slot))
  3493. {
  3494. return moveStack(sl1, sl2);
  3495. }
  3496. else
  3497. {
  3498. SwapStacks ss;
  3499. ss.srcArmy = sl1.army->id;
  3500. ss.dstArmy = sl2.army->id;
  3501. ss.srcSlot = sl1.slot;
  3502. ss.dstSlot = sl2.slot;
  3503. sendAndApply(&ss);
  3504. return true;
  3505. }
  3506. }
  3507. bool CGameHandler::putArtifact(const ArtifactLocation & al, const CArtifactInstance * art, std::optional<bool> askAssemble)
  3508. {
  3509. assert(art && art->artType);
  3510. ArtifactLocation dst(al.artHolder, ArtifactPosition::PRE_FIRST);
  3511. dst.creature = al.creature;
  3512. auto putTo = getArtSet(al);
  3513. assert(putTo);
  3514. if(al.slot == ArtifactPosition::FIRST_AVAILABLE)
  3515. {
  3516. dst.slot = ArtifactUtils::getArtAnyPosition(putTo, art->getTypeId());
  3517. }
  3518. else if(ArtifactUtils::isSlotBackpack(al.slot) && !al.creature.has_value())
  3519. {
  3520. dst.slot = ArtifactUtils::getArtBackpackPosition(putTo, art->getTypeId());
  3521. }
  3522. else
  3523. {
  3524. dst.slot = al.slot;
  3525. }
  3526. if(!askAssemble.has_value())
  3527. {
  3528. if(!dst.creature.has_value() && ArtifactUtils::isSlotEquipment(dst.slot))
  3529. askAssemble = true;
  3530. else
  3531. askAssemble = false;
  3532. }
  3533. if(art->canBePutAt(putTo, dst.slot))
  3534. {
  3535. PutArtifact pa(dst, askAssemble.value());
  3536. pa.art = art;
  3537. sendAndApply(&pa);
  3538. return true;
  3539. }
  3540. else
  3541. {
  3542. return false;
  3543. }
  3544. }
  3545. bool CGameHandler::giveHeroNewArtifact(const CGHeroInstance * h, const CArtifact * artType, ArtifactPosition pos)
  3546. {
  3547. assert(artType);
  3548. if(pos == ArtifactPosition::FIRST_AVAILABLE)
  3549. {
  3550. if(!artType->canBePutAt(h, ArtifactUtils::getArtAnyPosition(h, artType->getId())))
  3551. COMPLAIN_RET("Cannot put artifact in that slot!");
  3552. }
  3553. else if(ArtifactUtils::isSlotBackpack(pos))
  3554. {
  3555. if(!artType->canBePutAt(h, ArtifactUtils::getArtBackpackPosition(h, artType->getId())))
  3556. COMPLAIN_RET("Cannot put artifact in that slot!");
  3557. }
  3558. else
  3559. {
  3560. COMPLAIN_RET_FALSE_IF(!artType->canBePutAt(h, pos, false), "Cannot put artifact in that slot!");
  3561. }
  3562. auto * newArtInst = new CArtifactInstance();
  3563. newArtInst->artType = artType; // *NOT* via settype -> all bonus-related stuff must be done by NewArtifact apply
  3564. NewArtifact na;
  3565. na.art = newArtInst;
  3566. sendAndApply(&na); // -> updates newArtInst!!!
  3567. if(putArtifact(ArtifactLocation(h->id, pos), newArtInst, false))
  3568. return true;
  3569. else
  3570. return false;
  3571. }
  3572. void CGameHandler::spawnWanderingMonsters(CreatureID creatureID)
  3573. {
  3574. std::vector<int3>::iterator tile;
  3575. std::vector<int3> tiles;
  3576. getFreeTiles(tiles);
  3577. ui32 amount = (ui32)tiles.size() / 200; //Chance is 0.5% for each tile
  3578. RandomGeneratorUtil::randomShuffle(tiles, getRandomGenerator());
  3579. logGlobal->trace("Spawning wandering monsters. Found %d free tiles. Creature type: %d", tiles.size(), creatureID.num);
  3580. const CCreature *cre = creatureID.toCreature();
  3581. for (int i = 0; i < (int)amount; ++i)
  3582. {
  3583. tile = tiles.begin();
  3584. logGlobal->trace("\tSpawning monster at %s", tile->toString());
  3585. {
  3586. auto count = cre->getRandomAmount(std::rand);
  3587. createObject(*tile, PlayerColor::NEUTRAL, Obj::MONSTER, creatureID);
  3588. auto monsterId = getTopObj(*tile)->id;
  3589. setObjPropertyValue(monsterId, ObjProperty::MONSTER_COUNT, count);
  3590. setObjPropertyValue(monsterId, ObjProperty::MONSTER_POWER, (si64)1000*count);
  3591. }
  3592. tiles.erase(tile); //not use it again
  3593. }
  3594. }
  3595. void CGameHandler::synchronizeArtifactHandlerLists()
  3596. {
  3597. UpdateArtHandlerLists uahl;
  3598. uahl.allocatedArtifacts = gs->allocatedArtifacts;
  3599. sendAndApply(&uahl);
  3600. }
  3601. bool CGameHandler::isValidObject(const CGObjectInstance *obj) const
  3602. {
  3603. return vstd::contains(gs->map->objects, obj);
  3604. }
  3605. bool CGameHandler::isBlockedByQueries(const CPack *pack, PlayerColor player)
  3606. {
  3607. if (!strcmp(typeid(*pack).name(), typeid(PlayerMessage).name()))
  3608. return false;
  3609. auto query = queries->topQuery(player);
  3610. if (query && query->blocksPack(pack))
  3611. {
  3612. complain(boost::str(boost::format(
  3613. "\r\n| Player \"%s\" has to answer queries before attempting any further actions.\r\n| Top Query: \"%s\"\r\n")
  3614. % boost::to_upper_copy<std::string>(player.toString())
  3615. % query->toString()
  3616. ));
  3617. return true;
  3618. }
  3619. return false;
  3620. }
  3621. void CGameHandler::removeAfterVisit(const CGObjectInstance *object)
  3622. {
  3623. //If the object is being visited, there must be a matching query
  3624. for (const auto &query : queries->allQueries())
  3625. {
  3626. if (auto someVistQuery = std::dynamic_pointer_cast<CObjectVisitQuery>(query))
  3627. {
  3628. if (someVistQuery->visitedObject == object)
  3629. {
  3630. someVistQuery->removeObjectAfterVisit = true;
  3631. return;
  3632. }
  3633. }
  3634. }
  3635. //If we haven't returned so far, there is no query and no visit, call was wrong
  3636. assert("This function needs to be called during the object visit!");
  3637. }
  3638. void CGameHandler::changeFogOfWar(int3 center, ui32 radius, PlayerColor player, ETileVisibility mode)
  3639. {
  3640. std::unordered_set<int3> tiles;
  3641. if (mode == ETileVisibility::HIDDEN)
  3642. {
  3643. getTilesInRange(tiles, center, radius, ETileVisibility::REVEALED, player);
  3644. std::unordered_set<int3> observedTiles; //do not hide tiles observed by heroes. May lead to disastrous AI problems
  3645. auto p = getPlayerState(player);
  3646. for (auto h : p->heroes)
  3647. {
  3648. getTilesInRange(observedTiles, h->getSightCenter(), h->getSightRadius(), ETileVisibility::REVEALED, h->tempOwner);
  3649. }
  3650. for (auto t : p->towns)
  3651. {
  3652. getTilesInRange(observedTiles, t->getSightCenter(), t->getSightRadius(), ETileVisibility::REVEALED, t->tempOwner);
  3653. }
  3654. for (auto tile : observedTiles)
  3655. vstd::erase_if_present (tiles, tile);
  3656. }
  3657. else
  3658. {
  3659. getTilesInRange(tiles, center, radius, ETileVisibility::HIDDEN, player);
  3660. }
  3661. changeFogOfWar(tiles, player, mode);
  3662. }
  3663. void CGameHandler::changeFogOfWar(std::unordered_set<int3> &tiles, PlayerColor player, ETileVisibility mode)
  3664. {
  3665. if (tiles.empty())
  3666. return;
  3667. FoWChange fow;
  3668. fow.tiles = tiles;
  3669. fow.player = player;
  3670. fow.mode = mode;
  3671. sendAndApply(&fow);
  3672. }
  3673. const CGHeroInstance * CGameHandler::getVisitingHero(const CGObjectInstance *obj)
  3674. {
  3675. assert(obj);
  3676. for(const auto & query : queries->allQueries())
  3677. {
  3678. auto visit = std::dynamic_pointer_cast<const CObjectVisitQuery>(query);
  3679. if (visit && visit->visitedObject == obj)
  3680. return visit->visitingHero;
  3681. }
  3682. return nullptr;
  3683. }
  3684. const CGObjectInstance * CGameHandler::getVisitingObject(const CGHeroInstance *hero)
  3685. {
  3686. assert(hero);
  3687. for(const auto & query : queries->allQueries())
  3688. {
  3689. auto visit = std::dynamic_pointer_cast<const CObjectVisitQuery>(query);
  3690. if (visit && visit->visitingHero == hero)
  3691. return visit->visitedObject;
  3692. }
  3693. return nullptr;
  3694. }
  3695. bool CGameHandler::isVisitCoveredByAnotherQuery(const CGObjectInstance *obj, const CGHeroInstance *hero)
  3696. {
  3697. assert(obj);
  3698. assert(hero);
  3699. assert(getVisitingHero(obj) == hero);
  3700. // Check top query of targeted player:
  3701. // If top query is NOT visit to targeted object then we assume that
  3702. // visitation query is covered by other query that must be answered first
  3703. if (auto topQuery = queries->topQuery(hero->getOwner()))
  3704. if (auto visit = std::dynamic_pointer_cast<const CObjectVisitQuery>(topQuery))
  3705. return !(visit->visitedObject == obj && visit->visitingHero == hero);
  3706. return true;
  3707. }
  3708. void CGameHandler::setObjPropertyValue(ObjectInstanceID objid, ObjProperty prop, int32_t value)
  3709. {
  3710. SetObjectProperty sob;
  3711. sob.id = objid;
  3712. sob.what = prop;
  3713. sob.identifier = NumericID(value);
  3714. sendAndApply(&sob);
  3715. }
  3716. void CGameHandler::setObjPropertyID(ObjectInstanceID objid, ObjProperty prop, ObjPropertyID identifier)
  3717. {
  3718. SetObjectProperty sob;
  3719. sob.id = objid;
  3720. sob.what = prop;
  3721. sob.identifier = identifier;
  3722. sendAndApply(&sob);
  3723. }
  3724. void CGameHandler::showInfoDialog(InfoWindow * iw)
  3725. {
  3726. sendAndApply(iw);
  3727. }
  3728. vstd::RNG & CGameHandler::getRandomGenerator()
  3729. {
  3730. return *randomNumberGenerator;
  3731. }
  3732. #if SCRIPTING_ENABLED
  3733. scripting::Pool * CGameHandler::getGlobalContextPool() const
  3734. {
  3735. return serverScripts.get();
  3736. }
  3737. //scripting::Pool * CGameHandler::getContextPool() const
  3738. //{
  3739. // return serverScripts.get();
  3740. //}
  3741. #endif
  3742. void CGameHandler::createObject(const int3 & visitablePosition, const PlayerColor & initiator, MapObjectID type, MapObjectSubID subtype)
  3743. {
  3744. NewObject no;
  3745. no.ID = type;
  3746. no.subID = subtype;
  3747. no.initiator = initiator;
  3748. no.targetPos = visitablePosition;
  3749. sendAndApply(&no);
  3750. }
  3751. void CGameHandler::startBattlePrimary(const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool creatureBank, const CGTownInstance *town)
  3752. {
  3753. battles->startBattlePrimary(army1, army2, tile, hero1, hero2, creatureBank, town);
  3754. }
  3755. void CGameHandler::startBattleI(const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, bool creatureBank )
  3756. {
  3757. battles->startBattleI(army1, army2, tile, creatureBank);
  3758. }
  3759. void CGameHandler::startBattleI(const CArmedInstance *army1, const CArmedInstance *army2, bool creatureBank )
  3760. {
  3761. battles->startBattleI(army1, army2, creatureBank);
  3762. }