CGameHandler.cpp 126 KB

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