CGameHandler.cpp 124 KB

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