CGameHandler.cpp 119 KB

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