CGameHandler.cpp 124 KB

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