CGameHandler.cpp 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094
  1. #include "stdafx.h"
  2. #include "../int3.h"
  3. #include "../lib/CCampaignHandler.h"
  4. #include "../StartInfo.h"
  5. #include "../lib/CArtHandler.h"
  6. #include "../lib/CBuildingHandler.h"
  7. #include "../lib/CDefObjInfoHandler.h"
  8. #include "../lib/CHeroHandler.h"
  9. #include "../lib/CObjectHandler.h"
  10. #include "../lib/CSpellHandler.h"
  11. #include "../lib/CGeneralTextHandler.h"
  12. #include "../lib/CTownHandler.h"
  13. #include "../lib/CCreatureHandler.h"
  14. #include "../lib/CGameState.h"
  15. #include "../lib/BattleState.h"
  16. #include "../lib/CondSh.h"
  17. #include "../lib/NetPacks.h"
  18. #include "../lib/VCMI_Lib.h"
  19. #include "../lib/map.h"
  20. #include "../lib/VCMIDirs.h"
  21. #include "../client/CSoundBase.h"
  22. #include "CGameHandler.h"
  23. #include <boost/random/mersenne_twister.hpp>
  24. #include <boost/random/variate_generator.hpp>
  25. #include <boost/random/poisson_distribution.hpp>
  26. #include "../lib/CCreatureSet.h"
  27. /*
  28. * CGameHandler.cpp, part of VCMI engine
  29. *
  30. * Authors: listed in file AUTHORS in main folder
  31. *
  32. * License: GNU General Public License v2.0 or later
  33. * Full text of license available in license.txt file, in main folder
  34. *
  35. */
  36. #undef DLL_EXPORT
  37. #define DLL_EXPORT
  38. #include "../lib/RegisterTypes.cpp"
  39. #ifndef _MSC_VER
  40. #include <boost/thread/xtime.hpp>
  41. #endif
  42. extern bool end2;
  43. #ifdef min
  44. #undef min
  45. #endif
  46. #ifdef max
  47. #undef max
  48. #endif
  49. #define COMPLAIN_RET_IF(cond, txt) do {if(cond){complain(txt); return;}} while(0)
  50. #define COMPLAIN_RET(txt) {complain(txt); return false;}
  51. #define NEW_ROUND BattleNextRound bnr;\
  52. bnr.round = gs->curB->round + 1;\
  53. sendAndApply(&bnr);
  54. CondSh<bool> battleMadeAction;
  55. CondSh<BattleResult *> battleResult(NULL);
  56. std::ptrdiff_t randomizer (ptrdiff_t i) {return rand();}
  57. std::ptrdiff_t (*p_myrandom)(std::ptrdiff_t) = randomizer;
  58. template <typename T> class CApplyOnGH;
  59. class CBaseForGHApply
  60. {
  61. public:
  62. virtual bool applyOnGH(CGameHandler *gh, CConnection *c, void *pack) const =0;
  63. virtual ~CBaseForGHApply(){}
  64. template<typename U> static CBaseForGHApply *getApplier(const U * t=NULL)
  65. {
  66. return new CApplyOnGH<U>;
  67. }
  68. };
  69. template <typename T> class CApplyOnGH : public CBaseForGHApply
  70. {
  71. public:
  72. bool applyOnGH(CGameHandler *gh, CConnection *c, void *pack) const
  73. {
  74. T *ptr = static_cast<T*>(pack);
  75. ptr->c = c;
  76. return ptr->applyGh(gh);
  77. }
  78. };
  79. static CApplier<CBaseForGHApply> *applier = NULL;
  80. CMP_stack cmpst ;
  81. static inline double distance(int3 a, int3 b)
  82. {
  83. return std::sqrt( (double)(a.x-b.x)*(a.x-b.x) + (a.y-b.y)*(a.y-b.y) );
  84. }
  85. static void giveExp(BattleResult &r)
  86. {
  87. r.exp[0] = 0;
  88. r.exp[1] = 0;
  89. for(std::map<ui32,si32>::iterator i = r.casualties[!r.winner].begin(); i!=r.casualties[!r.winner].end(); i++)
  90. {
  91. r.exp[r.winner] += VLC->creh->creatures[i->first]->valOfBonuses(Bonus::STACK_HEALTH) * i->second;
  92. }
  93. }
  94. PlayerStatus PlayerStatuses::operator[](ui8 player)
  95. {
  96. boost::unique_lock<boost::mutex> l(mx);
  97. if(players.find(player) != players.end())
  98. {
  99. return players[player];
  100. }
  101. else
  102. {
  103. throw std::string("No such player!");
  104. }
  105. }
  106. void PlayerStatuses::addPlayer(ui8 player)
  107. {
  108. boost::unique_lock<boost::mutex> l(mx);
  109. players[player];
  110. }
  111. bool PlayerStatuses::hasQueries(ui8 player)
  112. {
  113. boost::unique_lock<boost::mutex> l(mx);
  114. if(players.find(player) != players.end())
  115. {
  116. return players[player].queries.size();
  117. }
  118. else
  119. {
  120. throw std::string("No such player!");
  121. }
  122. }
  123. bool PlayerStatuses::checkFlag(ui8 player, bool PlayerStatus::*flag)
  124. {
  125. boost::unique_lock<boost::mutex> l(mx);
  126. if(players.find(player) != players.end())
  127. {
  128. return players[player].*flag;
  129. }
  130. else
  131. {
  132. throw std::string("No such player!");
  133. }
  134. }
  135. void PlayerStatuses::setFlag(ui8 player, bool PlayerStatus::*flag, bool val)
  136. {
  137. boost::unique_lock<boost::mutex> l(mx);
  138. if(players.find(player) != players.end())
  139. {
  140. players[player].*flag = val;
  141. }
  142. else
  143. {
  144. throw std::string("No such player!");
  145. }
  146. cv.notify_all();
  147. }
  148. void PlayerStatuses::addQuery(ui8 player, ui32 id)
  149. {
  150. boost::unique_lock<boost::mutex> l(mx);
  151. if(players.find(player) != players.end())
  152. {
  153. players[player].queries.insert(id);
  154. }
  155. else
  156. {
  157. throw std::string("No such player!");
  158. }
  159. cv.notify_all();
  160. }
  161. void PlayerStatuses::removeQuery(ui8 player, ui32 id)
  162. {
  163. boost::unique_lock<boost::mutex> l(mx);
  164. if(players.find(player) != players.end())
  165. {
  166. players[player].queries.erase(id);
  167. }
  168. else
  169. {
  170. throw std::string("No such player!");
  171. }
  172. cv.notify_all();
  173. }
  174. template <typename T>
  175. void callWith(std::vector<T> args, boost::function<void(T)> fun, ui32 which)
  176. {
  177. fun(args[which]);
  178. }
  179. void CGameHandler::levelUpHero(int ID, int skill)
  180. {
  181. changeSecSkill(ID, skill, 1, 0);
  182. levelUpHero(ID);
  183. }
  184. void CGameHandler::levelUpHero(int ID)
  185. {
  186. CGHeroInstance *hero = static_cast<CGHeroInstance *>(gs->map->objects[ID].get());
  187. if (hero->battle)
  188. tlog1<<"Battle found\n";
  189. if (hero->exp < VLC->heroh->reqExp(hero->level+1)) // no more level-ups
  190. return;
  191. //give prim skill
  192. tlog5 << hero->name <<" got level "<<hero->level<<std::endl;
  193. int r = rand()%100, pom=0, x=0;
  194. int std::pair<int,int>::*g = (hero->level>9) ? (&std::pair<int,int>::second) : (&std::pair<int,int>::first);
  195. for(;x<PRIMARY_SKILLS;x++)
  196. {
  197. pom += hero->type->heroClass->primChance[x].*g;
  198. if(r<pom)
  199. break;
  200. }
  201. tlog5 << "Bohater dostaje umiejetnosc pierwszorzedna " << x << " (wynik losowania "<<r<<")"<<std::endl;
  202. SetPrimSkill sps;
  203. sps.id = ID;
  204. sps.which = x;
  205. sps.abs = false;
  206. sps.val = 1;
  207. sendAndApply(&sps);
  208. HeroLevelUp hlu;
  209. hlu.heroid = ID;
  210. hlu.primskill = x;
  211. hlu.level = hero->level+1;
  212. //picking sec. skills for choice
  213. std::set<int> basicAndAdv, expert, none;
  214. for(int i=0;i<SKILL_QUANTITY;i++)
  215. if (isAllowed(2,i))
  216. none.insert(i);
  217. for(unsigned i=0;i<hero->secSkills.size();i++)
  218. {
  219. if(hero->secSkills[i].second < 3)
  220. basicAndAdv.insert(hero->secSkills[i].first);
  221. else
  222. expert.insert(hero->secSkills[i].first);
  223. none.erase(hero->secSkills[i].first);
  224. }
  225. //first offered skill
  226. if(basicAndAdv.size())
  227. {
  228. int s = hero->type->heroClass->chooseSecSkill(basicAndAdv);//upgrade existing
  229. hlu.skills.push_back(s);
  230. basicAndAdv.erase(s);
  231. }
  232. else if(none.size() && hero->secSkills.size() < hero->type->heroClass->skillLimit)
  233. {
  234. hlu.skills.push_back(hero->type->heroClass->chooseSecSkill(none)); //give new skill
  235. none.erase(hlu.skills.back());
  236. }
  237. //second offered skill
  238. if(none.size() && hero->secSkills.size() < hero->type->heroClass->skillLimit) //hero have free skill slot
  239. {
  240. hlu.skills.push_back(hero->type->heroClass->chooseSecSkill(none)); //new skill
  241. }
  242. else if(basicAndAdv.size())
  243. {
  244. hlu.skills.push_back(hero->type->heroClass->chooseSecSkill(basicAndAdv)); //upgrade existing
  245. }
  246. if(hlu.skills.size() > 1) //apply and ask for secondary skill
  247. {
  248. boost::function<void(ui32)> callback = boost::function<void(ui32)>(boost::bind(callWith<ui16>,hlu.skills,boost::function<void(ui16)>(boost::bind(&CGameHandler::levelUpHero,this,ID,_1)),_1));
  249. applyAndAsk(&hlu,hero->tempOwner,callback); //call levelUpHero when client responds
  250. }
  251. else if(hlu.skills.size() == 1) //apply, give only possible skill and send info
  252. {
  253. sendAndApply(&hlu);
  254. levelUpHero(ID, hlu.skills.back());
  255. }
  256. else //apply and send info
  257. {
  258. sendAndApply(&hlu);
  259. levelUpHero(ID);
  260. }
  261. }
  262. void CGameHandler::changePrimSkill(int ID, int which, si64 val, bool abs)
  263. {
  264. SetPrimSkill sps;
  265. sps.id = ID;
  266. sps.which = which;
  267. sps.abs = abs;
  268. sps.val = val;
  269. sendAndApply(&sps);
  270. if(which==4) //only for exp - hero may level up
  271. {
  272. //TODO: Stack Experience only after battle
  273. levelUpHero(ID);
  274. //TODO: Commander
  275. }
  276. }
  277. void CGameHandler::changeSecSkill( int ID, int which, int val, bool abs/*=false*/ )
  278. {
  279. SetSecSkill sss;
  280. sss.id = ID;
  281. sss.which = which;
  282. sss.val = val;
  283. sss.abs = abs;
  284. sendAndApply(&sss);
  285. if(which == 7) //Wisdom
  286. {
  287. const CGHeroInstance *h = getHero(ID);
  288. if(h && h->visitedTown)
  289. giveSpells(h->visitedTown, h);
  290. }
  291. }
  292. void CGameHandler::startBattle( const CArmedInstance *armies[2], int3 tile, const CGHeroInstance *heroes[2], bool creatureBank, boost::function<void(BattleResult*)> cb, const CGTownInstance *town /*= NULL*/ )
  293. {
  294. battleEndCallback = new boost::function<void(BattleResult*)>(cb);
  295. {
  296. setupBattle(tile, armies, heroes, creatureBank, town); //initializes stacks, places creatures on battlefield, blocks and informs player interfaces
  297. }
  298. runBattle();
  299. }
  300. void CGameHandler::endBattle(int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2)
  301. {
  302. bool duel = gs->initialOpts->mode == StartInfo::DUEL;
  303. BattleResultsApplied resultsApplied;
  304. const CArmedInstance *bEndArmy1 = gs->curB->belligerents[0];
  305. const CArmedInstance *bEndArmy2 = gs->curB->belligerents[1];
  306. resultsApplied.player1 = bEndArmy1->tempOwner;
  307. resultsApplied.player2 = bEndArmy2->tempOwner;
  308. const CGHeroInstance *victoriousHero = gs->curB->heroes[battleResult.data->winner];
  309. if(!duel)
  310. {
  311. //unblock engaged players
  312. if(bEndArmy1->tempOwner<PLAYER_LIMIT)
  313. states.setFlag(bEndArmy1->tempOwner, &PlayerStatus::engagedIntoBattle, false);
  314. if(bEndArmy2 && bEndArmy2->tempOwner<PLAYER_LIMIT)
  315. states.setFlag(bEndArmy2->tempOwner, &PlayerStatus::engagedIntoBattle, false);
  316. }
  317. //end battle, remove all info, free memory
  318. giveExp(*battleResult.data);
  319. if (hero1)
  320. battleResult.data->exp[0] = hero1->calculateXp(battleResult.data->exp[0]);//scholar skill
  321. if (hero2)
  322. battleResult.data->exp[1] = hero2->calculateXp(battleResult.data->exp[1]);
  323. ui8 sides[2];
  324. for(int i=0; i<2; ++i)
  325. {
  326. sides[i] = gs->curB->sides[i];
  327. }
  328. ui8 loser = sides[!battleResult.data->winner];
  329. CasualtiesAfterBattle cab1(bEndArmy1, gs->curB), cab2(bEndArmy2, gs->curB); //calculate casualties before deleting battle
  330. ChangeSpells cs; //for Eagle Eye
  331. if(victoriousHero)
  332. {
  333. if(int eagleEyeLevel = victoriousHero->getSecSkillLevel(CGHeroInstance::EAGLE_EYE))
  334. {
  335. int maxLevel = eagleEyeLevel + 1;
  336. double eagleEyeChance = victoriousHero->valOfBonuses(Bonus::SECONDARY_SKILL_PREMY, CGHeroInstance::EAGLE_EYE);
  337. BOOST_FOREACH(const CSpell *sp, gs->curB->usedSpellsHistory[!battleResult.data->winner])
  338. if(sp->level <= maxLevel && !vstd::contains(victoriousHero->spells, sp->id) && rand() % 100 < eagleEyeChance)
  339. cs.spells.insert(sp->id);
  340. }
  341. }
  342. sendAndApply(battleResult.data);
  343. //Eagle Eye secondary skill handling
  344. if(cs.spells.size())
  345. {
  346. cs.learn = 1;
  347. cs.hid = victoriousHero->id;
  348. InfoWindow iw;
  349. iw.player = victoriousHero->tempOwner;
  350. iw.text.addTxt(MetaString::GENERAL_TXT, 221); //Through eagle-eyed observation, %s is able to learn %s
  351. iw.text.addReplacement(victoriousHero->name);
  352. std::ostringstream names;
  353. for(int i = 0; i < cs.spells.size(); i++)
  354. {
  355. names << "%s";
  356. if(i < cs.spells.size() - 2)
  357. names << ", ";
  358. else if(i < cs.spells.size() - 1)
  359. names << "%s";
  360. }
  361. names << ".";
  362. iw.text.addReplacement(names.str());
  363. std::set<ui32>::iterator it = cs.spells.begin();
  364. for(int i = 0; i < cs.spells.size(); i++, it++)
  365. {
  366. iw.text.addReplacement(MetaString::SPELL_NAME, *it);
  367. if(i == cs.spells.size() - 2) //we just added pre-last name
  368. iw.text.addReplacement(MetaString::GENERAL_TXT, 141); // " and "
  369. iw.components.push_back(Component(Component::SPELL, *it, 0, 0));
  370. }
  371. sendAndApply(&iw);
  372. sendAndApply(&cs);
  373. }
  374. if(!duel)
  375. {
  376. cab1.takeFromArmy(this); cab2.takeFromArmy(this); //take casualties after battle is deleted
  377. //if one hero has lost we will erase him
  378. if(battleResult.data->winner!=0 && hero1)
  379. {
  380. RemoveObject ro(hero1->id);
  381. sendAndApply(&ro);
  382. }
  383. if(battleResult.data->winner!=1 && hero2)
  384. {
  385. RemoveObject ro(hero2->id);
  386. sendAndApply(&ro);
  387. }
  388. //give exp
  389. if(battleResult.data->exp[0] && hero1)
  390. changePrimSkill(hero1->id,4,battleResult.data->exp[0]);
  391. if(battleResult.data->exp[1] && hero2)
  392. changePrimSkill(hero2->id,4,battleResult.data->exp[1]);
  393. }
  394. sendAndApply(&resultsApplied);
  395. if(battleEndCallback && *battleEndCallback) //TODO: object interaction after level dialog is handled
  396. {
  397. (*battleEndCallback)(battleResult.data);
  398. delete battleEndCallback;
  399. battleEndCallback = 0;
  400. }
  401. if(duel)
  402. {
  403. CSaveFile resultFile("result.vdrst");
  404. resultFile << *battleResult.data;
  405. return;
  406. }
  407. // Necromancy if applicable.
  408. const CGHeroInstance *winnerHero = battleResult.data->winner != 0 ? hero2 : hero1;
  409. const CGHeroInstance *loserHero = battleResult.data->winner != 0 ? hero1 : hero2;
  410. if (winnerHero)
  411. {
  412. CStackBasicDescriptor raisedStack = winnerHero->calculateNecromancy(*battleResult.data);
  413. // Give raised units to winner and show dialog, if any were raised.
  414. if (raisedStack.type)
  415. {
  416. TSlot slot = winnerHero->getSlotFor(raisedStack.type);
  417. if (slot != -1)
  418. {
  419. winnerHero->showNecromancyDialog(raisedStack);
  420. addToSlot(StackLocation(winnerHero, slot), raisedStack.type, raisedStack.count);
  421. }
  422. }
  423. }
  424. if(visitObjectAfterVictory && winnerHero == hero1)
  425. {
  426. visitObjectOnTile(*getTile(winnerHero->getPosition()), winnerHero);
  427. }
  428. visitObjectAfterVictory = false;
  429. winLoseHandle(1<<sides[0] | 1<<sides[1]); //handle victory/loss of engaged players
  430. int result = battleResult.get()->result;
  431. if(result == 1 || result == 2) //loser has escaped or surrendered
  432. {
  433. SetAvailableHeroes sah;
  434. sah.player = loser;
  435. sah.hid[0] = loserHero->subID;
  436. if(result == 1) //retreat
  437. {
  438. sah.army[0].clear();
  439. sah.army[0].setCreature(0, VLC->creh->nameToID[loserHero->type->refTypeStack[0]],1);
  440. }
  441. if(const CGHeroInstance *another = getPlayer(loser)->availableHeroes[1])
  442. sah.hid[1] = another->subID;
  443. else
  444. sah.hid[1] = -1;
  445. sendAndApply(&sah);
  446. }
  447. delete battleResult.data;
  448. }
  449. void CGameHandler::prepareAttack(BattleAttack &bat, const CStack *att, const CStack *def, int distance)
  450. {
  451. bat.bsa.clear();
  452. bat.stackAttacking = att->ID;
  453. bat.bsa.push_back(BattleStackAttacked());
  454. BattleStackAttacked *bsa = &bat.bsa.back();
  455. bsa->stackAttacked = def->ID;
  456. bsa->attackerID = att->ID;
  457. int attackerLuck = att->LuckVal();
  458. const CGHeroInstance * h0 = gs->curB->heroes[0],
  459. * h1 = gs->curB->heroes[1];
  460. bool noLuck = false;
  461. if(h0 && NBonus::hasOfType(h0, Bonus::BLOCK_LUCK) ||
  462. h1 && NBonus::hasOfType(h1, Bonus::BLOCK_LUCK))
  463. {
  464. noLuck = true;
  465. }
  466. if(!noLuck && attackerLuck > 0 && rand()%24 < attackerLuck) //TODO?: negative luck option?
  467. {
  468. bat.flags |= BattleAttack::LUCKY;
  469. }
  470. if(att->getCreature()->idNumber == 146)
  471. {
  472. static const int artilleryLvlToChance[] = {0, 50, 75, 100};
  473. const CGHeroInstance * owner = gs->curB->getHero(att->owner);
  474. int chance = artilleryLvlToChance[owner->getSecSkillLevel(CGHeroInstance::ARTILLERY)];
  475. if(chance > rand() % 100)
  476. {
  477. bat.flags |= BattleAttack::BALLISTA_DOUBLE_DMG;
  478. }
  479. }
  480. bsa->damageAmount = gs->curB->calculateDmg(att, def, gs->curB->battleGetOwner(att), gs->curB->battleGetOwner(def), bat.shot(), distance, bat.lucky(), bat.ballistaDoubleDmg());//counting dealt damage
  481. int dmg = bsa->damageAmount;
  482. def->prepareAttacked(*bsa);
  483. //life drain handling
  484. if (att->hasBonusOfType(Bonus::LIFE_DRAIN))
  485. {
  486. StacksHealedOrResurrected shi;
  487. shi.lifeDrain = true;
  488. shi.drainedFrom = def->ID;
  489. StacksHealedOrResurrected::HealInfo hi;
  490. hi.stackID = att->ID;
  491. hi.healedHP = std::min<int>(dmg, att->MaxHealth() - att->firstHPleft + att->MaxHealth() * (att->baseAmount - att->count) );
  492. hi.lowLevelResurrection = false;
  493. shi.healedStacks.push_back(hi);
  494. if (hi.healedHP > 0)
  495. {
  496. bsa->healedStacks.push_back(shi);
  497. }
  498. }
  499. else
  500. {
  501. }
  502. //fire shield handling
  503. if ( !bat.shot() && def->hasBonusOfType(Bonus::FIRE_SHIELD) && !bsa->killed() )
  504. {
  505. bat.bsa.push_back(BattleStackAttacked());
  506. BattleStackAttacked *bsa = &bat.bsa.back();
  507. bsa->stackAttacked = att->ID;
  508. bsa->attackerID = def->ID;
  509. bsa->flags |= BattleStackAttacked::EFFECT;
  510. bsa->effect = 11;
  511. bsa->damageAmount = (dmg * def->valOfBonuses(Bonus::FIRE_SHIELD)) / 100;
  512. att->prepareAttacked(*bsa);
  513. }
  514. }
  515. void CGameHandler::handleConnection(std::set<int> players, CConnection &c)
  516. {
  517. setThreadName(-1, "CGameHandler::handleConnection");
  518. srand(time(NULL));
  519. CPack *pack = NULL;
  520. try
  521. {
  522. while(1)//server should never shut connection first //was: while(!end2)
  523. {
  524. {
  525. boost::unique_lock<boost::mutex> lock(*c.rmx);
  526. c >> pack; //get the package
  527. tlog5 << "Received client message of type " << typeid(*pack).name() << std::endl;
  528. }
  529. int packType = typeList.getTypeID(pack); //get the id of type
  530. CBaseForGHApply *apply = applier->apps[packType]; //and appropriae applier object
  531. if(apply)
  532. {
  533. bool result = apply->applyOnGH(this,&c,pack);
  534. tlog5 << "Message successfully applied (result=" << result << ")!\n";
  535. //send confirmation that we've applied the package
  536. if(pack->type != 6000) //WORKAROUND - not confirm query replies TODO: reconsider
  537. {
  538. PackageApplied applied;
  539. applied.result = result;
  540. applied.packType = packType;
  541. {
  542. boost::unique_lock<boost::mutex> lock(*c.wmx);
  543. c << &applied;
  544. }
  545. }
  546. }
  547. else
  548. {
  549. tlog1 << "Message cannot be applied, cannot find applier (unregistered type)!\n";
  550. }
  551. delete pack;
  552. pack = NULL;
  553. }
  554. }
  555. catch(boost::system::system_error &e) //for boost errors just log, not crash - probably client shut down connection
  556. {
  557. assert(!c.connected); //make sure that connection has been marked as broken
  558. tlog1 << e.what() << std::endl;
  559. end2 = true;
  560. }
  561. HANDLE_EXCEPTION(end2 = true);
  562. tlog1 << "Ended handling connection\n";
  563. }
  564. int CGameHandler::moveStack(int stack, THex dest)
  565. {
  566. int ret = 0;
  567. CStack *curStack = gs->curB->getStack(stack),
  568. *stackAtEnd = gs->curB->getStackT(dest);
  569. assert(curStack);
  570. assert(dest < BFIELD_SIZE);
  571. if (gs->curB->tacticDistance)
  572. {
  573. assert(gs->curB->isInTacticRange(dest));
  574. }
  575. //initing necessary tables
  576. bool accessibility[BFIELD_SIZE];
  577. std::vector<THex> accessible = gs->curB->getAccessibility(curStack, false);
  578. for(int b=0; b<BFIELD_SIZE; ++b)
  579. {
  580. accessibility[b] = false;
  581. }
  582. for(int g=0; g<accessible.size(); ++g)
  583. {
  584. accessibility[accessible[g]] = true;
  585. }
  586. //shifting destination (if we have double wide stack and we can occupy dest but not be exactly there)
  587. if(!stackAtEnd && curStack->doubleWide() && !accessibility[dest])
  588. {
  589. if(curStack->attackerOwned)
  590. {
  591. if(accessibility[dest+1])
  592. dest += THex::RIGHT;
  593. }
  594. else
  595. {
  596. if(accessibility[dest-1])
  597. dest += THex::LEFT;
  598. }
  599. }
  600. if((stackAtEnd && stackAtEnd!=curStack && stackAtEnd->alive()) || !accessibility[dest])
  601. return 0;
  602. bool accessibilityWithOccupyable[BFIELD_SIZE];
  603. std::vector<THex> accOc = gs->curB->getAccessibility(curStack, true);
  604. for(int b=0; b<BFIELD_SIZE; ++b)
  605. {
  606. accessibilityWithOccupyable[b] = false;
  607. }
  608. for(int g=0; g<accOc.size(); ++g)
  609. {
  610. accessibilityWithOccupyable[accOc[g]] = true;
  611. }
  612. //if(dists[dest] > curStack->creature->speed && !(stackAtEnd && dists[dest] == curStack->creature->speed+1)) //we can attack a stack if we can go to adjacent hex
  613. // return false;
  614. std::pair< std::vector<THex>, int > path = gs->curB->getPath(curStack->position, dest, accessibilityWithOccupyable, curStack->hasBonusOfType(Bonus::FLYING), curStack->doubleWide(), curStack->attackerOwned);
  615. ret = path.second;
  616. int creSpeed = gs->curB->tacticDistance ? BFIELD_SIZE : curStack->Speed();
  617. if(curStack->hasBonusOfType(Bonus::FLYING))
  618. {
  619. if(path.second <= creSpeed && path.first.size() > 0)
  620. {
  621. //inform clients about move
  622. BattleStackMoved sm;
  623. sm.stack = curStack->ID;
  624. sm.tile = path.first[0];
  625. sm.distance = path.second;
  626. sm.ending = true;
  627. sm.teleporting = false;
  628. sendAndApply(&sm);
  629. }
  630. }
  631. else //for non-flying creatures
  632. {
  633. int tilesToMove = std::max((int)(path.first.size() - creSpeed), 0);
  634. for(int v=path.first.size()-1; v>=tilesToMove; --v)
  635. {
  636. //inform clients about move
  637. BattleStackMoved sm;
  638. sm.stack = curStack->ID;
  639. sm.tile = path.first[v];
  640. sm.distance = path.second;
  641. sm.ending = v==tilesToMove;
  642. sm.teleporting = false;
  643. sendAndApply(&sm);
  644. }
  645. }
  646. return ret;
  647. }
  648. CGameHandler::CGameHandler(void)
  649. {
  650. QID = 1;
  651. //gs = NULL;
  652. IObjectInterface::cb = this;
  653. applier = new CApplier<CBaseForGHApply>;
  654. registerTypes3(*applier);
  655. visitObjectAfterVictory = false;
  656. battleEndCallback = NULL;
  657. }
  658. CGameHandler::~CGameHandler(void)
  659. {
  660. delete applier;
  661. applier = NULL;
  662. delete gs;
  663. }
  664. void CGameHandler::init(StartInfo *si, int Seed)
  665. {
  666. gs = new CGameState();
  667. tlog0 << "Gamestate created!" << std::endl;
  668. gs->init(si, 0, Seed);
  669. tlog0 << "Gamestate initialized!" << std::endl;
  670. for(std::map<ui8,PlayerState>::iterator i = gs->players.begin(); i != gs->players.end(); i++)
  671. states.addPlayer(i->first);
  672. }
  673. static bool evntCmp(const CMapEvent *a, const CMapEvent *b)
  674. {
  675. return *a < *b;
  676. }
  677. void CGameHandler::setPortalDwelling(const CGTownInstance * town, bool forced=false, bool clear = false)
  678. {// bool forced = true - if creature should be replaced, if false - only if no creature was set
  679. if (forced || town->creatures[CREATURES_PER_TOWN].second.empty())//we need to change creature
  680. {
  681. SetAvailableCreatures ssi;
  682. ssi.tid = town->id;
  683. ssi.creatures = town->creatures;
  684. ssi.creatures[CREATURES_PER_TOWN].second.clear();//remove old one
  685. const std::vector<ConstTransitivePtr<CGDwelling> > &dwellings = gs->getPlayer(town->tempOwner)->dwellings;
  686. if (dwellings.empty())//no dwellings - just remove
  687. {
  688. sendAndApply(&ssi);
  689. return;
  690. }
  691. ui32 dwellpos = rand()%dwellings.size();//take random dwelling
  692. ui32 creapos = rand()%dwellings[dwellpos]->creatures.size();//for multi-creature dwellings like Golem Factory
  693. ui32 creature = dwellings[dwellpos]->creatures[creapos].second[0];
  694. if (clear)
  695. ssi.creatures[CREATURES_PER_TOWN].first = std::max((ui32)1, (VLC->creh->creatures[creature]->growth)/2);
  696. else
  697. ssi.creatures[CREATURES_PER_TOWN].first = VLC->creh->creatures[creature]->growth;
  698. ssi.creatures[CREATURES_PER_TOWN].second.push_back(creature);
  699. sendAndApply(&ssi);
  700. }
  701. }
  702. void CGameHandler::newTurn()
  703. {
  704. tlog5 << "Turn " << gs->day+1 << std::endl;
  705. NewTurn n;
  706. n.creatureid = -1;
  707. n.day = gs->day + 1;
  708. n.resetBuilded = true;
  709. bool newmonth = false;
  710. std::map<ui8, si32> hadGold;//starting gold - for buildings like dwarven treasury
  711. srand(time(NULL));
  712. if (getDate(1) == 7 && getDate(0)>1) //new week (day numbers are confusing, as day was not yet switched)
  713. {
  714. int monsterid;
  715. int monthType = rand()%100;
  716. if(getDate(4) == 28) //new month
  717. {
  718. newmonth = true;
  719. if (monthType < 40) //double growth
  720. {
  721. n.specialWeek = NewTurn::DOUBLE_GROWTH;
  722. if (ALLCREATURESGETDOUBLEMONTHS)
  723. {
  724. std::pair<int,int> newMonster(54, VLC->creh->pickRandomMonster(boost::ref(rand)));
  725. n.creatureid = newMonster.second;
  726. }
  727. else
  728. {
  729. std::set<TCreature>::const_iterator it = VLC->creh->doubledCreatures.begin();
  730. std::advance (it, rand() % VLC->creh->doubledCreatures.size()); //picking random elelemnt of set is tiring
  731. n.creatureid = *it;
  732. }
  733. }
  734. else if (monthType < 90)
  735. n.specialWeek = NewTurn::NORMAL;
  736. else
  737. n.specialWeek = NewTurn::PLAGUE;
  738. }
  739. else //it's a week, but not full month
  740. {
  741. newmonth = false;
  742. if (monthType < 25)
  743. {
  744. n.specialWeek = NewTurn::BONUS_GROWTH; //+5
  745. std::pair<int,int> newMonster (54, VLC->creh->pickRandomMonster(boost::ref(rand)));
  746. monsterid = newMonster.second;
  747. }
  748. else
  749. n.specialWeek = NewTurn::NORMAL;
  750. }
  751. }
  752. else
  753. n.specialWeek = NewTurn::NO_ACTION; //don't remove bonuses
  754. bmap<ui32, ConstTransitivePtr<CGHeroInstance> > pool = gs->hpool.heroesPool;
  755. for ( std::map<ui8, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end();i++)
  756. {
  757. if(i->first == 255)
  758. continue;
  759. else if(i->first >= PLAYER_LIMIT)
  760. assert(0); //illegal player number!
  761. std::pair<ui8,si32> playerGold(i->first,i->second.resources[6]);
  762. hadGold.insert(playerGold);
  763. if(gs->getDate(1)==7) //first day of week - new heroes in tavern
  764. {
  765. SetAvailableHeroes sah;
  766. sah.player = i->first;
  767. //pick heroes and their armies
  768. CHeroClass *banned = NULL;
  769. for (int j = 0; j < AVAILABLE_HEROES_PER_PLAYER; j++)
  770. {
  771. if(CGHeroInstance *h = gs->hpool.pickHeroFor(j == 0, i->first, getNativeTown(i->first), pool, banned)) //first hero - native if possible, second hero -> any other class
  772. {
  773. sah.hid[j] = h->subID;
  774. h->initArmy(&sah.army[j]);
  775. banned = h->type->heroClass;
  776. }
  777. else
  778. sah.hid[j] = -1;
  779. }
  780. sendAndApply(&sah);
  781. }
  782. n.res[i->first] = i->second.resources;
  783. // SetResources r;
  784. // r.player = i->first;
  785. // for(int j=0;j<RESOURCE_QUANTITY;j++)
  786. // r.res[j] = i->second.resources[j];
  787. BOOST_FOREACH(CGHeroInstance *h, (*i).second.heroes)
  788. {
  789. if(h->visitedTown)
  790. giveSpells(h->visitedTown, h);
  791. NewTurn::Hero hth;
  792. hth.id = h->id;
  793. hth.move = h->maxMovePoints(gs->map->getTile(h->getPosition(false)).tertype != TerrainTile::water);
  794. if(h->visitedTown && vstd::contains(h->visitedTown->builtBuildings,0)) //if hero starts turn in town with mage guild
  795. hth.mana = std::max(h->mana, h->manaLimit()); //restore all mana
  796. else
  797. hth.mana = std::max(si32(0), std::max(h->mana, std::min(h->mana + h->manaRegain(), h->manaLimit())) );
  798. n.heroes.insert(hth);
  799. if(gs->day) //not first day
  800. {
  801. n.res[i->first][6] += h->valOfBonuses(Selector::typeSybtype(Bonus::SECONDARY_SKILL, 13)); //estates
  802. for (int k = 0; k < RESOURCE_QUANTITY; k++)
  803. {
  804. n.res[i->first][k] += h->valOfBonuses(Bonus::GENERATE_RESOURCE, k);
  805. }
  806. }
  807. }
  808. //n.res.push_back(r);
  809. }
  810. // townID, creatureID, amount
  811. std::map<si32, std::map<si32, si32> > newCreas;//creatures that needs to be added by town events
  812. for(std::vector<ConstTransitivePtr<CGTownInstance> >::iterator j = gs->map->towns.begin(); j!=gs->map->towns.end(); j++)//handle towns
  813. {
  814. ui8 player = (*j)->tempOwner;
  815. if(gs->getDate(1)==7) //first day of week
  816. {
  817. if ((*j)->subID == 5 && vstd::contains((*j)->builtBuildings, 22))
  818. setPortalDwelling(*j, true, (n.specialWeek == NewTurn::PLAGUE ? true : false)); //set creatures for Portal of Summoning
  819. if ((**j).subID == 1 && gs->getDate(0) && player < PLAYER_LIMIT && vstd::contains((**j).builtBuildings, 22))//dwarven treasury
  820. n.res[player][6] += hadGold[player]/10; //give 10% of starting gold
  821. }
  822. if(gs->day && player < PLAYER_LIMIT)//not the first day and town not neutral
  823. {
  824. ////SetResources r;
  825. //r.player = (**j).tempOwner;
  826. if(vstd::contains((**j).builtBuildings,15)) //there is resource silo
  827. {
  828. if((**j).town->primaryRes == 127) //we'll give wood and ore
  829. {
  830. n.res[player][0] += 1;
  831. n.res[player][2] += 1;
  832. }
  833. else
  834. {
  835. n.res[player][(**j).town->primaryRes] += 1;
  836. }
  837. }
  838. n.res[player][6] += (**j).dailyIncome();
  839. }
  840. handleTownEvents(*j, n, newCreas);
  841. if (vstd::contains((**j).builtBuildings, 26))
  842. {
  843. switch ((**j).subID)
  844. {
  845. case 2: // Skyship, probably easier to handle same as Veil of darkness
  846. { //do it every new day after veils apply
  847. FoWChange fw;
  848. fw.mode = 1;
  849. fw.player = player;
  850. getAllTiles(fw.tiles, player, -1, 0);
  851. sendAndApply (&fw);
  852. }
  853. break;
  854. case 3: //Deity of Fire
  855. {
  856. if (getDate(0) > 1)
  857. {
  858. n.specialWeek = NewTurn::DEITYOFFIRE; //spawn familiars on new month
  859. n.creatureid = 42; //familiar
  860. }
  861. }
  862. break;
  863. }
  864. }
  865. if ((**j).hasBonusOfType (Bonus::DARKNESS))
  866. {
  867. (**j).hideTiles((**j).getOwner(), (**j).getBonus(Selector::type(Bonus::DARKNESS))->val);
  868. }
  869. //unhiding what shouldn't be hidden? //that's handled in netpacks client
  870. }
  871. if(getDate(2) == 1) //first week
  872. {
  873. SetAvailableArtifacts saa;
  874. saa.id = -1;
  875. pickAllowedArtsSet(saa.arts);
  876. sendAndApply(&saa);
  877. }
  878. sendAndApply(&n);
  879. if (gs->getDate(1)==1) //first day of week, day has already been changed
  880. {
  881. if (getDate(4) == 1 && (n.specialWeek == NewTurn::DOUBLE_GROWTH || n.specialWeek == NewTurn::DEITYOFFIRE))
  882. { //spawn wandering monsters
  883. std::vector<int3>::iterator tile;
  884. std::vector<int3> tiles;
  885. getFreeTiles(tiles);
  886. ui32 amount = (tiles.size()) >> 6;
  887. std::random_shuffle(tiles.begin(), tiles.end(), p_myrandom);
  888. for (int i = 0; i < amount; ++i)
  889. {
  890. tile = tiles.begin();
  891. NewObject no;
  892. no.ID = 54; //creature
  893. no.subID= n.creatureid;
  894. no.pos = *tile;
  895. sendAndApply(&no);
  896. tiles.erase(tile); //not use it again
  897. }
  898. }
  899. NewTurn n2; //just to handle creature growths after bonuses are applied
  900. n2.specialWeek = NewTurn::NO_ACTION;
  901. n2.day = gs->day;
  902. n2.resetBuilded = true;
  903. for(std::vector<ConstTransitivePtr<CGTownInstance> >::iterator j = gs->map->towns.begin(); j!=gs->map->towns.end(); j++)//handle towns
  904. {
  905. SetAvailableCreatures sac;
  906. sac.tid = (**j).id;
  907. sac.creatures = (**j).creatures;
  908. for (int k=0; k < CREATURES_PER_TOWN; k++) //creature growths
  909. {
  910. if((**j).creatureDwelling(k))//there is dwelling (k-level)
  911. {
  912. if (n.specialWeek == NewTurn::PLAGUE)
  913. sac.creatures[k].first = (**j).creatures[k].first / 2; //halve their number, no growth
  914. else
  915. {
  916. sac.creatures[k].first += (**j).creatureGrowth(k);
  917. if(gs->getDate(0) == 1) //first day of game: use only basic growths
  918. amin(sac.creatures[k].first, VLC->creh->creatures[(*j)->town->basicCreatures[k]]->growth);
  919. }
  920. }
  921. }
  922. //creatures from town events
  923. if (vstd::contains(newCreas, (**j).id))
  924. for(std::map<si32, si32>::iterator i=newCreas[(**j).id].begin() ; i!=newCreas[(**j).id].end(); i++)
  925. sac.creatures[i->first].first += i->second;
  926. n2.cres.push_back(sac);
  927. }
  928. if (gs->getDate(0) > 1)
  929. {
  930. InfoWindow iw; //new week info
  931. switch (n.specialWeek)
  932. {
  933. case NewTurn::DOUBLE_GROWTH:
  934. iw.text.addTxt(MetaString::ARRAY_TXT, 131);
  935. iw.text.addReplacement(MetaString::CRE_SING_NAMES, n.creatureid);
  936. iw.text.addReplacement(MetaString::CRE_SING_NAMES, n.creatureid);
  937. break;
  938. case NewTurn::PLAGUE:
  939. iw.text.addTxt(MetaString::ARRAY_TXT, 132);
  940. break;
  941. case NewTurn::BONUS_GROWTH:
  942. iw.text.addTxt(MetaString::ARRAY_TXT, 134);
  943. iw.text.addReplacement(MetaString::CRE_SING_NAMES, n.creatureid);
  944. iw.text.addReplacement(MetaString::CRE_SING_NAMES, n.creatureid);
  945. break;
  946. case NewTurn::DEITYOFFIRE:
  947. iw.text.addTxt(MetaString::ARRAY_TXT, 135);
  948. iw.text.addReplacement(MetaString::CRE_SING_NAMES, 42); //%s imp
  949. iw.text.addReplacement(MetaString::CRE_SING_NAMES, 42); //%s imp
  950. iw.text.addReplacement2(15); //%+d 15
  951. iw.text.addReplacement(MetaString::CRE_SING_NAMES, 43); //%s familiar
  952. iw.text.addReplacement2(15); //%+d 15
  953. break;
  954. default:
  955. iw.text.addTxt(MetaString::ARRAY_TXT, (newmonth ? 130 : 133));
  956. iw.text.addReplacement(MetaString::ARRAY_TXT, 43 + rand()%15);
  957. }
  958. for (std::map<ui8, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end(); i++)
  959. {
  960. iw.player = i->first;
  961. sendAndApply(&iw);
  962. }
  963. }
  964. sendAndApply(&n2);
  965. }
  966. tlog5 << "Info about turn " << n.day << "has been sent!" << std::endl;
  967. handleTimeEvents();
  968. //call objects
  969. for(size_t i = 0; i<gs->map->objects.size(); i++)
  970. {
  971. if(gs->map->objects[i])
  972. gs->map->objects[i]->newTurn();
  973. }
  974. winLoseHandle(0xff);
  975. //warn players without town
  976. if(gs->day)
  977. {
  978. for (std::map<ui8, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end();i++)
  979. {
  980. if(i->second.status || i->second.towns.size() || i->second.color >= PLAYER_LIMIT)
  981. continue;
  982. InfoWindow iw;
  983. iw.player = i->first;
  984. iw.components.push_back(Component(Component::FLAG,i->first,0,0));
  985. if(!i->second.daysWithoutCastle)
  986. {
  987. iw.text.addTxt(MetaString::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.
  988. iw.text.addReplacement(MetaString::COLOR, i->first);
  989. }
  990. else if(i->second.daysWithoutCastle == 6)
  991. {
  992. iw.text.addTxt(MetaString::ARRAY_TXT,129); //%s, this is your last day to capture a town or you will be banished from this land.
  993. iw.text.addReplacement(MetaString::COLOR, i->first);
  994. }
  995. else
  996. {
  997. iw.text.addTxt(MetaString::ARRAY_TXT,128); //%s, you only have %d days left to capture a town or you will be banished from this land.
  998. iw.text.addReplacement(MetaString::COLOR, i->first);
  999. iw.text.addReplacement(7 - i->second.daysWithoutCastle);
  1000. }
  1001. sendAndApply(&iw);
  1002. }
  1003. }
  1004. }
  1005. void CGameHandler::run(bool resume)
  1006. {
  1007. using namespace boost::posix_time;
  1008. BOOST_FOREACH(CConnection *cc, conns)
  1009. {//init conn.
  1010. ui32 quantity;
  1011. ui8 pom;
  1012. //ui32 seed;
  1013. if(!resume)
  1014. {
  1015. ui32 sum = gs->map ? gs->map->checksum : 612;
  1016. (*cc) << gs->initialOpts << sum << gs->seed; // gs->scenarioOps
  1017. }
  1018. (*cc) >> quantity; //how many players will be handled at that client
  1019. tlog0 << "Connection " << cc->connectionID << " will handle " << quantity << " player: ";
  1020. for(int i=0;i<quantity;i++)
  1021. {
  1022. (*cc) >> pom; //read player color
  1023. tlog0 << (int)pom << " ";
  1024. {
  1025. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  1026. connections[pom] = cc;
  1027. }
  1028. }
  1029. tlog0 << std::endl;
  1030. }
  1031. for(std::set<CConnection*>::iterator i = conns.begin(); i!=conns.end();i++)
  1032. {
  1033. std::set<int> pom;
  1034. for(std::map<int,CConnection*>::iterator j = connections.begin(); j!=connections.end();j++)
  1035. if(j->second == *i)
  1036. pom.insert(j->first);
  1037. boost::thread(boost::bind(&CGameHandler::handleConnection,this,pom,boost::ref(**i)));
  1038. }
  1039. if(gs->scenarioOps->mode == StartInfo::DUEL)
  1040. {
  1041. runBattle();
  1042. return;
  1043. }
  1044. while (!end2)
  1045. {
  1046. if(!resume)
  1047. newTurn();
  1048. std::map<ui8,PlayerState>::iterator i;
  1049. if(!resume)
  1050. i = gs->players.begin();
  1051. else
  1052. i = gs->players.find(gs->currentPlayer);
  1053. resume = false;
  1054. for(; i != gs->players.end(); i++)
  1055. {
  1056. if(i->second.towns.size()==0 && i->second.heroes.size()==0
  1057. || i->second.color<0
  1058. || i->first>=PLAYER_LIMIT
  1059. || i->second.status)
  1060. {
  1061. continue;
  1062. }
  1063. states.setFlag(i->first,&PlayerStatus::makingTurn,true);
  1064. {
  1065. YourTurn yt;
  1066. yt.player = i->first;
  1067. sendAndApply(&yt);
  1068. }
  1069. //wait till turn is done
  1070. boost::unique_lock<boost::mutex> lock(states.mx);
  1071. while(states.players[i->first].makingTurn && !end2)
  1072. {
  1073. static time_duration p = milliseconds(200);
  1074. states.cv.timed_wait(lock,p);
  1075. }
  1076. }
  1077. }
  1078. while(conns.size() && (*conns.begin())->isOpen())
  1079. boost::this_thread::sleep(boost::posix_time::milliseconds(5)); //give time client to close socket
  1080. }
  1081. //namespace CGH
  1082. //{
  1083. // using namespace std;
  1084. // static void readItTo(ifstream & input, vector< vector<int> > & dest) //reads 7 lines, i-th one containing i integers, and puts it to dest
  1085. // {
  1086. // for(int j=0; j<7; ++j)
  1087. // {
  1088. // std::vector<int> pom;
  1089. // for(int g=0; g<j+1; ++g)
  1090. // {
  1091. // int hlp; input>>hlp;
  1092. // pom.push_back(hlp);
  1093. // }
  1094. // dest.push_back(pom);
  1095. // }
  1096. // }
  1097. //}
  1098. void CGameHandler::setupBattle( int3 tile, const CArmedInstance *armies[2], const CGHeroInstance *heroes[2], bool creatureBank, const CGTownInstance *town )
  1099. {
  1100. battleResult.set(NULL);
  1101. //send info about battles
  1102. BattleStart bs;
  1103. bs.info = gs->setupBattle(tile, armies, heroes, creatureBank, town);
  1104. sendAndApply(&bs);
  1105. }
  1106. void CGameHandler::checkForBattleEnd( std::vector<CStack*> &stacks )
  1107. {
  1108. //checking winning condition
  1109. bool hasStack[2]; //hasStack[0] - true if attacker has a living stack; defender similarily
  1110. hasStack[0] = hasStack[1] = false;
  1111. for(int b = 0; b<stacks.size(); ++b)
  1112. {
  1113. if(stacks[b]->alive() && !stacks[b]->hasBonusOfType(Bonus::SIEGE_WEAPON))
  1114. {
  1115. hasStack[1-stacks[b]->attackerOwned] = true;
  1116. }
  1117. }
  1118. if(!hasStack[0] || !hasStack[1]) //somebody has won
  1119. {
  1120. setBattleResult(0, hasStack[1]);
  1121. }
  1122. }
  1123. void CGameHandler::giveSpells( const CGTownInstance *t, const CGHeroInstance *h )
  1124. {
  1125. if(!h->hasSpellbook())
  1126. return; //hero hasn't spellbok
  1127. ChangeSpells cs;
  1128. cs.hid = h->id;
  1129. cs.learn = true;
  1130. for(int i=0; i<std::min(t->mageGuildLevel(),h->getSecSkillLevel(CGHeroInstance::WISDOM)+2);i++)
  1131. {
  1132. if (t->subID == 8 && vstd::contains(t->builtBuildings, 26)) //Aurora Borealis
  1133. {
  1134. std::vector<ui16> spells;
  1135. getAllowedSpells(spells, i);
  1136. for (int j = 0; j < spells.size(); ++j)
  1137. cs.spells.insert(spells[j]);
  1138. }
  1139. else
  1140. {
  1141. for(int j=0; j<t->spellsAtLevel(i+1,true) && j<t->spells[i].size(); j++)
  1142. {
  1143. if(!vstd::contains(h->spells,t->spells[i][j]))
  1144. cs.spells.insert(t->spells[i][j]);
  1145. }
  1146. }
  1147. }
  1148. if(cs.spells.size())
  1149. sendAndApply(&cs);
  1150. }
  1151. void CGameHandler::setBlockVis(int objid, bool bv)
  1152. {
  1153. SetObjectProperty sop(objid,2,bv);
  1154. sendAndApply(&sop);
  1155. }
  1156. bool CGameHandler::removeObject( int objid )
  1157. {
  1158. if(!getObj(objid))
  1159. {
  1160. tlog1 << "Something wrong, that object already has been removed or hasn't existed!\n";
  1161. return false;
  1162. }
  1163. RemoveObject ro;
  1164. ro.id = objid;
  1165. sendAndApply(&ro);
  1166. winLoseHandle(255); //eg if monster escaped (removing objs after battle is done dircetly by endBattle, not this function)
  1167. return true;
  1168. }
  1169. void CGameHandler::setAmount(int objid, ui32 val)
  1170. {
  1171. SetObjectProperty sop(objid,3,val);
  1172. sendAndApply(&sop);
  1173. }
  1174. bool CGameHandler::moveHero( si32 hid, int3 dst, ui8 instant, ui8 asker /*= 255*/ )
  1175. {
  1176. bool blockvis = false;
  1177. const CGHeroInstance *h = getHero(hid);
  1178. if(!h || asker != 255 && (instant || h->getOwner() != gs->currentPlayer) //not turn of that hero or player can't simply teleport hero (at least not with this function)
  1179. )
  1180. {
  1181. tlog1 << "Illegal call to move hero!\n";
  1182. return false;
  1183. }
  1184. tlog5 << "Player " <<int(asker) << " wants to move hero "<< hid << " from "<< h->pos << " to " << dst << std::endl;
  1185. int3 hmpos = dst + int3(-1,0,0);
  1186. if(!gs->map->isInTheMap(hmpos))
  1187. {
  1188. tlog1 << "Destination tile is outside the map!\n";
  1189. return false;
  1190. }
  1191. TerrainTile t = gs->map->terrain[hmpos.x][hmpos.y][hmpos.z];
  1192. int cost = gs->getMovementCost(h, h->getPosition(false), CGHeroInstance::convertPosition(dst,false),h->movement);
  1193. int3 guardPos = gs->guardingCreaturePosition(hmpos);
  1194. //result structure for start - movement failed, no move points used
  1195. TryMoveHero tmh;
  1196. tmh.id = hid;
  1197. tmh.start = h->pos;
  1198. tmh.end = dst;
  1199. tmh.result = TryMoveHero::FAILED;
  1200. tmh.movePoints = h->movement;
  1201. //check if destination tile is available
  1202. //it's a rock or blocked and not visitable tile
  1203. //OR hero is on land and dest is water and (there is not present only one object - boat)
  1204. if((t.tertype == TerrainTile::rock || (t.blocked && !t.visitable && !h->hasBonusOfType(Bonus::FLYING_MOVEMENT) ))
  1205. && complain("Cannot move hero, destination tile is blocked!")
  1206. || (!h->boat && !h->canWalkOnSea() && t.tertype == TerrainTile::water && (t.visitableObjects.size() < 1 || (t.visitableObjects.back()->ID != 8 && t.visitableObjects.back()->ID != HEROI_TYPE))) //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)
  1207. && complain("Cannot move hero, destination tile is on water!")
  1208. || (h->boat && t.tertype != TerrainTile::water && t.blocked)
  1209. && complain("Cannot disembark hero, tile is blocked!")
  1210. || (h->movement < cost && dst != h->pos && !instant)
  1211. && complain("Hero doesn't have any movement points left!")
  1212. || states.checkFlag(h->tempOwner, &PlayerStatus::engagedIntoBattle)
  1213. && complain("Cannot move hero during the battle"))
  1214. {
  1215. //send info about movement failure
  1216. sendAndApply(&tmh);
  1217. return false;
  1218. }
  1219. //hero enters the boat
  1220. if(!h->boat && t.visitableObjects.size() && t.visitableObjects.back()->ID == 8)
  1221. {
  1222. tmh.result = TryMoveHero::EMBARK;
  1223. tmh.movePoints = 0; //embarking takes all move points
  1224. //TODO: check for bonus that removes that penalty
  1225. getTilesInRange(tmh.fowRevealed,h->getSightCenter()+(tmh.end-tmh.start),h->getSightRadious(),h->tempOwner,1);
  1226. sendAndApply(&tmh);
  1227. return true;
  1228. }
  1229. //hero leaves the boat
  1230. else if(h->boat && t.tertype != TerrainTile::water && !t.blocked)
  1231. {
  1232. tmh.result = TryMoveHero::DISEMBARK;
  1233. tmh.movePoints = 0; //disembarking takes all move points
  1234. //TODO: check for bonus that removes that penalty
  1235. getTilesInRange(tmh.fowRevealed,h->getSightCenter()+(tmh.end-tmh.start),h->getSightRadious(),h->tempOwner,1);
  1236. sendAndApply(&tmh);
  1237. tryAttackingGuard(guardPos, h);
  1238. return true;
  1239. }
  1240. //checks for standard movement
  1241. if(!instant)
  1242. {
  1243. if( distance(h->pos,dst) >= 1.5 && complain("Tiles are not neighboring!")
  1244. || h->movement < cost && h->movement < 100 && complain("Not enough move points!"))
  1245. {
  1246. sendAndApply(&tmh);
  1247. return false;
  1248. }
  1249. //check if there is blocking visitable object
  1250. blockvis = false;
  1251. tmh.movePoints = std::max(si32(0),h->movement-cost); //take move points
  1252. BOOST_FOREACH(CGObjectInstance *obj, t.visitableObjects)
  1253. {
  1254. if(obj != h && obj->blockVisit && !(obj->getPassableness() & 1<<h->tempOwner))
  1255. {
  1256. blockvis = true;
  1257. break;
  1258. }
  1259. }
  1260. //we start moving
  1261. if(blockvis)//interaction with blocking object (like resources)
  1262. {
  1263. tmh.result = TryMoveHero::BLOCKING_VISIT;
  1264. sendAndApply(&tmh);
  1265. //failed to move to that tile but we visit object
  1266. if(t.visitableObjects.size())
  1267. objectVisited(t.visitableObjects.back(), h);
  1268. tlog5 << "Blocking visit at " << hmpos << std::endl;
  1269. return true;
  1270. }
  1271. else //normal move
  1272. {
  1273. BOOST_FOREACH(CGObjectInstance *obj, gs->map->terrain[h->pos.x-1][h->pos.y][h->pos.z].visitableObjects)
  1274. {
  1275. obj->onHeroLeave(h);
  1276. }
  1277. getTilesInRange(tmh.fowRevealed,h->getSightCenter()+(tmh.end-tmh.start),h->getSightRadious(),h->tempOwner,1);
  1278. tmh.result = TryMoveHero::SUCCESS;
  1279. tmh.attackedFrom = guardPos;
  1280. sendAndApply(&tmh);
  1281. tlog5 << "Moved to " <<tmh.end<<std::endl;
  1282. // If a creature guards the tile, block visit.
  1283. const bool fightingGuard = tryAttackingGuard(guardPos, h);
  1284. if(!fightingGuard && t.visitableObjects.size()) //call objects if they are visited
  1285. {
  1286. visitObjectOnTile(t, h);
  1287. }
  1288. tlog5 << "Movement end!\n";
  1289. return true;
  1290. }
  1291. }
  1292. else //instant move - teleportation
  1293. {
  1294. BOOST_FOREACH(CGObjectInstance* obj, t.blockingObjects)
  1295. {
  1296. if(obj->ID==HEROI_TYPE)
  1297. {
  1298. CGHeroInstance *dh = static_cast<CGHeroInstance *>(obj);
  1299. if( gameState()->getPlayerRelations(dh->tempOwner, h->tempOwner))
  1300. {
  1301. heroExchange(h->id, dh->id);
  1302. return true;
  1303. }
  1304. startBattleI(h, dh);
  1305. return true;
  1306. }
  1307. }
  1308. tmh.result = TryMoveHero::TELEPORTATION;
  1309. getTilesInRange(tmh.fowRevealed,h->getSightCenter()+(tmh.end-tmh.start),h->getSightRadious(),h->tempOwner,1);
  1310. sendAndApply(&tmh);
  1311. return true;
  1312. }
  1313. }
  1314. bool CGameHandler::teleportHero(si32 hid, si32 dstid, ui8 source, ui8 asker/* = 255*/)
  1315. {
  1316. const CGHeroInstance *h = getHero(hid);
  1317. const CGTownInstance *t = getTown(dstid);
  1318. if ( !h || !t || h->getOwner() != gs->currentPlayer )
  1319. tlog1<<"Invalid call to teleportHero!";
  1320. const CGTownInstance *from = h->visitedTown;
  1321. if((h->getOwner() != t->getOwner())
  1322. && complain("Cannot teleport hero to another player")
  1323. || (!from || from->subID!=3 || !vstd::contains(from->builtBuildings, 22))
  1324. && complain("Hero must be in town with Castle gate for teleporting")
  1325. || (t->subID!=3 || !vstd::contains(t->builtBuildings, 22))
  1326. && complain("Cannot teleport hero to town without Castle gate in it"))
  1327. return false;
  1328. int3 pos = t->visitablePos();
  1329. pos += h->getVisitableOffset();
  1330. stopHeroVisitCastle(from->id, hid);
  1331. moveHero(hid,pos,1);
  1332. heroVisitCastle(dstid, hid);
  1333. return true;
  1334. }
  1335. void CGameHandler::setOwner(int objid, ui8 owner)
  1336. {
  1337. ui8 oldOwner = getOwner(objid);
  1338. SetObjectProperty sop(objid,1,owner);
  1339. sendAndApply(&sop);
  1340. winLoseHandle(1<<owner | 1<<oldOwner);
  1341. if(owner < PLAYER_LIMIT && getTown(objid)) //town captured
  1342. {
  1343. const CGTownInstance * town = getTown(objid);
  1344. if (town->subID == 5 && vstd::contains(town->builtBuildings, 22))
  1345. setPortalDwelling(town, true, false);
  1346. if (!gs->getPlayer(owner)->towns.size())//player lost last town
  1347. {
  1348. InfoWindow iw;
  1349. iw.player = oldOwner;
  1350. iw.text.addTxt(MetaString::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.
  1351. sendAndApply(&iw);
  1352. }
  1353. }
  1354. const CGObjectInstance * obj = getObj(objid);
  1355. const PlayerState * p = gs->getPlayer(owner);
  1356. if((obj->ID == 17 || obj->ID == 20 ) && p && p->dwellings.size()==1)//first dwelling captured
  1357. BOOST_FOREACH(const CGTownInstance *t, gs->getPlayer(owner)->towns)
  1358. if (t->subID == 5 && vstd::contains(t->builtBuildings, 22))
  1359. setPortalDwelling(t);//set initial creatures for all portals of summoning
  1360. }
  1361. void CGameHandler::setHoverName(int objid, MetaString* name)
  1362. {
  1363. SetHoverName shn(objid, *name);
  1364. sendAndApply(&shn);
  1365. }
  1366. void CGameHandler::showInfoDialog(InfoWindow *iw)
  1367. {
  1368. sendToAllClients(iw);
  1369. }
  1370. void CGameHandler::showBlockingDialog( BlockingDialog *iw, const CFunctionList<void(ui32)> &callback )
  1371. {
  1372. ask(iw,iw->player,callback);
  1373. }
  1374. ui32 CGameHandler::showBlockingDialog( BlockingDialog *iw )
  1375. {
  1376. //TODO
  1377. //gsm.lock();
  1378. //int query = QID++;
  1379. //states.addQuery(player,query);
  1380. //sendToAllClients(iw);
  1381. //gsm.unlock();
  1382. //ui32 ret = getQueryResult(iw->player, query);
  1383. //gsm.lock();
  1384. //states.removeQuery(player, query);
  1385. //gsm.unlock();
  1386. return 0;
  1387. }
  1388. void CGameHandler::giveResource(int player, int which, int val)
  1389. {
  1390. if(!val) return; //don't waste time on empty call
  1391. SetResource sr;
  1392. sr.player = player;
  1393. sr.resid = which;
  1394. sr.val = gs->players.find(player)->second.resources[which] + val;
  1395. sendAndApply(&sr);
  1396. }
  1397. void CGameHandler::giveCreatures(const CArmedInstance *obj, const CGHeroInstance * h, const CCreatureSet &creatures, bool remove)
  1398. {
  1399. boost::function<void()> removeOrNot = 0;
  1400. if(remove)
  1401. removeOrNot = boost::bind(&CGameHandler::removeObject, this, obj->id);
  1402. COMPLAIN_RET_IF(!creatures.stacksCount(), "Strange, giveCreatures called without args!");
  1403. COMPLAIN_RET_IF(obj->stacksCount(), "Cannot give creatures from not-cleared object!");
  1404. COMPLAIN_RET_IF(creatures.stacksCount() > ARMY_SIZE, "Too many stacks to give!");
  1405. //first we move creatures to give to make them army of object-source
  1406. for (TSlots::const_iterator stack = creatures.Slots().begin(); stack != creatures.Slots().end(); stack++)
  1407. {
  1408. addToSlot(StackLocation(obj, obj->getSlotFor(stack->second->type)), stack->second->type, stack->second->count);
  1409. }
  1410. tryJoiningArmy(obj, h, remove, true);
  1411. }
  1412. void CGameHandler::takeCreatures(int objid, const std::vector<CStackBasicDescriptor> &creatures)
  1413. {
  1414. std::vector<CStackBasicDescriptor> cres = creatures;
  1415. if (cres.size() <= 0)
  1416. return;
  1417. const CArmedInstance* obj = static_cast<const CArmedInstance*>(getObj(objid));
  1418. BOOST_FOREACH(CStackBasicDescriptor &sbd, cres)
  1419. {
  1420. TQuantity collected = 0;
  1421. while(collected < sbd.count)
  1422. {
  1423. TSlots::const_iterator i = obj->Slots().begin();
  1424. for(; i != obj->Slots().end(); i++)
  1425. {
  1426. if(i->second->type == sbd.type)
  1427. {
  1428. TQuantity take = std::min(sbd.count - collected, i->second->count); //collect as much cres as we can
  1429. changeStackCount(StackLocation(obj, i->first), take, false);
  1430. collected += take;
  1431. break;
  1432. }
  1433. }
  1434. if(i == obj->Slots().end()) //we went through the whole loop and haven't found appropriate cres
  1435. {
  1436. complain("Unexpected failure during taking creatures!");
  1437. return;
  1438. }
  1439. }
  1440. }
  1441. }
  1442. void CGameHandler::showCompInfo(ShowInInfobox * comp)
  1443. {
  1444. sendToAllClients(comp);
  1445. }
  1446. void CGameHandler::heroVisitCastle(int obj, int heroID)
  1447. {
  1448. HeroVisitCastle vc;
  1449. vc.hid = heroID;
  1450. vc.tid = obj;
  1451. vc.flags |= 1;
  1452. sendAndApply(&vc);
  1453. const CGHeroInstance *h = getHero(heroID);
  1454. vistiCastleObjects (getTown(obj), h);
  1455. giveSpells (getTown(obj), getHero(heroID));
  1456. if(gs->map->victoryCondition.condition == transportItem)
  1457. checkLossVictory(h->tempOwner); //transported artifact?
  1458. }
  1459. void CGameHandler::vistiCastleObjects (const CGTownInstance *t, const CGHeroInstance *h)
  1460. {
  1461. std::vector<CGTownBuilding*>::const_iterator i;
  1462. for (i = t->bonusingBuildings.begin(); i != t->bonusingBuildings.end(); i++)
  1463. (*i)->onHeroVisit (h);
  1464. }
  1465. void CGameHandler::stopHeroVisitCastle(int obj, int heroID)
  1466. {
  1467. HeroVisitCastle vc;
  1468. vc.hid = heroID;
  1469. vc.tid = obj;
  1470. sendAndApply(&vc);
  1471. }
  1472. void CGameHandler::removeArtifact(const ArtifactLocation &al)
  1473. {
  1474. assert(al.getArt());
  1475. EraseArtifact ea;
  1476. ea.al = al;
  1477. sendAndApply(&ea);
  1478. }
  1479. void CGameHandler::startBattleI(const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool creatureBank, boost::function<void(BattleResult*)> cb, const CGTownInstance *town) //use hero=NULL for no hero
  1480. {
  1481. engageIntoBattle(army1->tempOwner);
  1482. engageIntoBattle(army2->tempOwner);
  1483. //block engaged players
  1484. if(army2->tempOwner < PLAYER_LIMIT)
  1485. states.setFlag(army2->tempOwner,&PlayerStatus::engagedIntoBattle,true);
  1486. static const CArmedInstance *armies[2];
  1487. armies[0] = army1;
  1488. armies[1] = army2;
  1489. static const CGHeroInstance*heroes[2];
  1490. heroes[0] = hero1;
  1491. heroes[1] = hero2;
  1492. boost::thread(boost::bind(&CGameHandler::startBattle, this, armies, tile, heroes, creatureBank, cb, town));
  1493. }
  1494. void CGameHandler::startBattleI( const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, boost::function<void(BattleResult*)> cb, bool creatureBank )
  1495. {
  1496. startBattleI(army1, army2, tile,
  1497. army1->ID == HEROI_TYPE ? static_cast<const CGHeroInstance*>(army1) : NULL,
  1498. army2->ID == HEROI_TYPE ? static_cast<const CGHeroInstance*>(army2) : NULL,
  1499. creatureBank, cb);
  1500. }
  1501. void CGameHandler::startBattleI( const CArmedInstance *army1, const CArmedInstance *army2, boost::function<void(BattleResult*)> cb, bool creatureBank)
  1502. {
  1503. startBattleI(army1, army2, army2->visitablePos(), cb, creatureBank);
  1504. }
  1505. void CGameHandler::changeSpells( int hid, bool give, const std::set<ui32> &spells )
  1506. {
  1507. ChangeSpells cs;
  1508. cs.hid = hid;
  1509. cs.spells = spells;
  1510. cs.learn = give;
  1511. sendAndApply(&cs);
  1512. }
  1513. void CGameHandler::setObjProperty( int objid, int prop, si64 val )
  1514. {
  1515. SetObjectProperty sob;
  1516. sob.id = objid;
  1517. sob.what = prop;
  1518. sob.val = val;
  1519. sendAndApply(&sob);
  1520. }
  1521. void CGameHandler::sendMessageTo( CConnection &c, const std::string &message )
  1522. {
  1523. SystemMessage sm;
  1524. sm.text = message;
  1525. c << &sm;
  1526. }
  1527. void CGameHandler::giveHeroBonus( GiveBonus * bonus )
  1528. {
  1529. sendAndApply(bonus);
  1530. }
  1531. void CGameHandler::setMovePoints( SetMovePoints * smp )
  1532. {
  1533. sendAndApply(smp);
  1534. }
  1535. void CGameHandler::setManaPoints( int hid, int val )
  1536. {
  1537. SetMana sm;
  1538. sm.hid = hid;
  1539. sm.val = val;
  1540. sendAndApply(&sm);
  1541. }
  1542. void CGameHandler::giveHero( int id, int player )
  1543. {
  1544. GiveHero gh;
  1545. gh.id = id;
  1546. gh.player = player;
  1547. sendAndApply(&gh);
  1548. }
  1549. void CGameHandler::changeObjPos( int objid, int3 newPos, ui8 flags )
  1550. {
  1551. ChangeObjPos cop;
  1552. cop.objid = objid;
  1553. cop.nPos = newPos;
  1554. cop.flags = flags;
  1555. sendAndApply(&cop);
  1556. }
  1557. void CGameHandler::useScholarSkill(si32 fromHero, si32 toHero)
  1558. {
  1559. const CGHeroInstance * h1 = getHero(fromHero);
  1560. const CGHeroInstance * h2 = getHero(toHero);
  1561. if ( h1->getSecSkillLevel(CGHeroInstance::SCHOLAR) < h2->getSecSkillLevel(CGHeroInstance::SCHOLAR) )
  1562. {
  1563. std::swap (h1,h2);//1st hero need to have higher scholar level for correct message
  1564. std::swap(fromHero, toHero);
  1565. }
  1566. int ScholarLevel = h1->getSecSkillLevel(CGHeroInstance::SCHOLAR);//heroes can trade up to this level
  1567. if (!ScholarLevel || !h1->hasSpellbook() || !h2->hasSpellbook() )
  1568. return;//no scholar skill or no spellbook
  1569. int h1Lvl = std::min(ScholarLevel+1, h1->getSecSkillLevel(CGHeroInstance::WISDOM)+2),
  1570. h2Lvl = std::min(ScholarLevel+1, h2->getSecSkillLevel(CGHeroInstance::WISDOM)+2);//heroes can receive this levels
  1571. ChangeSpells cs1;
  1572. cs1.learn = true;
  1573. cs1.hid = toHero;//giving spells to first hero
  1574. for(std::set<ui32>::const_iterator it=h1->spells.begin(); it!=h1->spells.end();it++)
  1575. if ( h2Lvl >= VLC->spellh->spells[*it]->level && !vstd::contains(h2->spells, *it))//hero can learn it and don't have it yet
  1576. cs1.spells.insert(*it);//spell to learn
  1577. ChangeSpells cs2;
  1578. cs2.learn = true;
  1579. cs2.hid = fromHero;
  1580. for(std::set<ui32>::const_iterator it=h2->spells.begin(); it!=h2->spells.end();it++)
  1581. if ( h1Lvl >= VLC->spellh->spells[*it]->level && !vstd::contains(h1->spells, *it))
  1582. cs2.spells.insert(*it);
  1583. if (cs1.spells.size() || cs2.spells.size())//create a message
  1584. {
  1585. InfoWindow iw;
  1586. iw.player = h1->tempOwner;
  1587. iw.components.push_back(Component(Component::SEC_SKILL, 18, ScholarLevel, 0));
  1588. iw.text.addTxt(MetaString::GENERAL_TXT, 139);//"%s, who has studied magic extensively,
  1589. iw.text.addReplacement(h1->name);
  1590. if (cs2.spells.size())//if found new spell - apply
  1591. {
  1592. iw.text.addTxt(MetaString::GENERAL_TXT, 140);//learns
  1593. int size = cs2.spells.size();
  1594. for(std::set<ui32>::const_iterator it=cs2.spells.begin(); it!=cs2.spells.end();it++)
  1595. {
  1596. iw.components.push_back(Component(Component::SPELL, (*it), 1, 0));
  1597. iw.text.addTxt(MetaString::SPELL_NAME, (*it));
  1598. switch (size--)
  1599. {
  1600. case 2: iw.text.addTxt(MetaString::GENERAL_TXT, 141);
  1601. case 1: break;
  1602. default: iw.text << ", ";
  1603. }
  1604. }
  1605. iw.text.addTxt(MetaString::GENERAL_TXT, 142);//from %s
  1606. iw.text.addReplacement(h2->name);
  1607. sendAndApply(&cs2);
  1608. }
  1609. if (cs1.spells.size() && cs2.spells.size() )
  1610. {
  1611. iw.text.addTxt(MetaString::GENERAL_TXT, 141);//and
  1612. }
  1613. if (cs1.spells.size())
  1614. {
  1615. iw.text.addTxt(MetaString::GENERAL_TXT, 147);//teaches
  1616. int size = cs1.spells.size();
  1617. for(std::set<ui32>::const_iterator it=cs1.spells.begin(); it!=cs1.spells.end();it++)
  1618. {
  1619. iw.components.push_back(Component(Component::SPELL, (*it), 1, 0));
  1620. iw.text.addTxt(MetaString::SPELL_NAME, (*it));
  1621. switch (size--)
  1622. {
  1623. case 2: iw.text.addTxt(MetaString::GENERAL_TXT, 141);
  1624. case 1: break;
  1625. default: iw.text << ", ";
  1626. } }
  1627. iw.text.addTxt(MetaString::GENERAL_TXT, 148);//from %s
  1628. iw.text.addReplacement(h2->name);
  1629. sendAndApply(&cs1);
  1630. }
  1631. sendAndApply(&iw);
  1632. }
  1633. }
  1634. void CGameHandler::heroExchange(si32 hero1, si32 hero2)
  1635. {
  1636. ui8 player1 = getHero(hero1)->tempOwner;
  1637. ui8 player2 = getHero(hero2)->tempOwner;
  1638. if( gameState()->getPlayerRelations( player1, player2))
  1639. {
  1640. OpenWindow hex;
  1641. hex.window = OpenWindow::EXCHANGE_WINDOW;
  1642. hex.id1 = hero1;
  1643. hex.id2 = hero2;
  1644. sendAndApply(&hex);
  1645. useScholarSkill(hero1,hero2);
  1646. }
  1647. }
  1648. void CGameHandler::applyAndAsk( Query * sel, ui8 player, boost::function<void(ui32)> &callback )
  1649. {
  1650. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  1651. sel->id = QID;
  1652. callbacks[QID] = callback;
  1653. states.addQuery(player,QID);
  1654. QID++;
  1655. sendAndApply(sel);
  1656. }
  1657. void CGameHandler::ask( Query * sel, ui8 player, const CFunctionList<void(ui32)> &callback )
  1658. {
  1659. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  1660. sel->id = QID;
  1661. callbacks[QID] = callback;
  1662. states.addQuery(player,QID);
  1663. sendToAllClients(sel);
  1664. QID++;
  1665. }
  1666. void CGameHandler::sendToAllClients( CPackForClient * info )
  1667. {
  1668. tlog5 << "Sending to all clients a package of type " << typeid(*info).name() << std::endl;
  1669. for(std::set<CConnection*>::iterator i=conns.begin(); i!=conns.end();i++)
  1670. {
  1671. (*i)->wmx->lock();
  1672. **i << info;
  1673. (*i)->wmx->unlock();
  1674. }
  1675. }
  1676. void CGameHandler::sendAndApply( CPackForClient * info )
  1677. {
  1678. //TODO? mutex
  1679. sendToAllClients(info);
  1680. gs->apply(info);
  1681. }
  1682. void CGameHandler::sendAndApply(CGarrisonOperationPack * info)
  1683. {
  1684. sendAndApply((CPackForClient*)info);
  1685. if(gs->map->victoryCondition.condition == gatherTroop)
  1686. winLoseHandle();
  1687. }
  1688. // void CGameHandler::sendAndApply( SetGarrisons * info )
  1689. // {
  1690. // sendAndApply((CPackForClient*)info);
  1691. // if(gs->map->victoryCondition.condition == gatherTroop)
  1692. // for(std::map<ui32,CCreatureSet>::const_iterator i = info->garrs.begin(); i != info->garrs.end(); i++)
  1693. // checkLossVictory(getObj(i->first)->tempOwner);
  1694. // }
  1695. void CGameHandler::sendAndApply( SetResource * info )
  1696. {
  1697. sendAndApply((CPackForClient*)info);
  1698. if(gs->map->victoryCondition.condition == gatherResource)
  1699. checkLossVictory(info->player);
  1700. }
  1701. void CGameHandler::sendAndApply( SetResources * info )
  1702. {
  1703. sendAndApply((CPackForClient*)info);
  1704. if(gs->map->victoryCondition.condition == gatherResource)
  1705. checkLossVictory(info->player);
  1706. }
  1707. void CGameHandler::sendAndApply( NewStructures * info )
  1708. {
  1709. sendAndApply((CPackForClient*)info);
  1710. if(gs->map->victoryCondition.condition == buildCity)
  1711. checkLossVictory(getTown(info->tid)->tempOwner);
  1712. }
  1713. void CGameHandler::save( const std::string &fname )
  1714. {
  1715. {
  1716. tlog0 << "Ordering clients to serialize...\n";
  1717. SaveGame sg(fname);
  1718. sendToAllClients(&sg);
  1719. }
  1720. {
  1721. tlog0 << "Serializing game info...\n";
  1722. CSaveFile save(GVCMIDirs.UserPath + "/Games/" + fname + ".vlgm1");
  1723. char hlp[8] = "VCMISVG";
  1724. save << hlp << static_cast<CMapHeader&>(*gs->map) << gs->scenarioOps << *VLC << gs;
  1725. }
  1726. {
  1727. tlog0 << "Serializing server info...\n";
  1728. CSaveFile save(GVCMIDirs.UserPath + "/Games/" + fname + ".vsgm1");
  1729. save << *this;
  1730. }
  1731. tlog0 << "Game has been successfully saved!\n";
  1732. }
  1733. void CGameHandler::close()
  1734. {
  1735. tlog0 << "We have been requested to close.\n";
  1736. if(gs->initialOpts->mode == StartInfo::DUEL)
  1737. {
  1738. exit(0);
  1739. }
  1740. //BOOST_FOREACH(CConnection *cc, conns)
  1741. // if(cc && cc->socket && cc->socket->is_open())
  1742. // cc->socket->close();
  1743. //exit(0);
  1744. }
  1745. bool CGameHandler::arrangeStacks( si32 id1, si32 id2, ui8 what, ui8 p1, ui8 p2, si32 val, ui8 player )
  1746. {
  1747. CArmedInstance *s1 = static_cast<CArmedInstance*>(gs->map->objects[id1].get()),
  1748. *s2 = static_cast<CArmedInstance*>(gs->map->objects[id2].get());
  1749. CCreatureSet &S1 = *s1, &S2 = *s2;
  1750. StackLocation sl1(s1, p1), sl2(s2, p2);
  1751. if(!isAllowedExchange(id1,id2))
  1752. {
  1753. complain("Cannot exchange stacks between these two objects!\n");
  1754. return false;
  1755. }
  1756. if(what==1) //swap
  1757. {
  1758. if ( ((s1->tempOwner != player && s1->tempOwner != 254) && S1.stacks[p1]->count) //why 254??
  1759. || ((s2->tempOwner != player && s2->tempOwner != 254) && S2.stacks[p2]->count))
  1760. {
  1761. complain("Can't take troops from another player!");
  1762. return false;
  1763. }
  1764. swapStacks(sl1, sl2);
  1765. }
  1766. else if(what==2)//merge
  1767. {
  1768. if (( S1.stacks[p1]->type != S2.stacks[p2]->type && complain("Cannot merge different creatures stacks!"))
  1769. || ((s1->tempOwner != player && s1->tempOwner != 254) && S2.stacks[p2]->count) && complain("Can't take troops from another player!"))
  1770. return false;
  1771. moveStack(sl1, sl2);
  1772. }
  1773. else if(what==3) //split
  1774. {
  1775. if ( (s1->tempOwner != player && S1.stacks[p1]->count < s1->getStackCount(p1) )
  1776. || (s2->tempOwner != player && S2.stacks[p2]->count < s2->getStackCount(p2) ) )
  1777. {
  1778. complain("Can't move troops of another player!");
  1779. return false;
  1780. }
  1781. //general conditions checking
  1782. if((!vstd::contains(S1.stacks,p1) && complain("no creatures to split"))
  1783. || (val<1 && complain("no creatures to split")) )
  1784. {
  1785. return false;
  1786. }
  1787. if(vstd::contains(S2.stacks,p2)) //dest. slot not free - it must be "rebalancing"...
  1788. {
  1789. int total = S1.stacks[p1]->count + S2.stacks[p2]->count;
  1790. if( (total < val && complain("Cannot split that stack, not enough creatures!"))
  1791. || (S2.stacks[p2]->type != S1.stacks[p1]->type && complain("Cannot rebalance different creatures stacks!"))
  1792. )
  1793. {
  1794. return false;
  1795. }
  1796. moveStack(sl1, sl2, val - S2.stacks[p2]->count);
  1797. //S2.slots[p2]->count = val;
  1798. //S1.slots[p1]->count = total - val;
  1799. }
  1800. else //split one stack to the two
  1801. {
  1802. if(S1.stacks[p1]->count < val)//not enough creatures
  1803. {
  1804. complain("Cannot split that stack, not enough creatures!");
  1805. return false;
  1806. }
  1807. moveStack(sl1, sl2, val);
  1808. }
  1809. }
  1810. return true;
  1811. }
  1812. int CGameHandler::getPlayerAt( CConnection *c ) const
  1813. {
  1814. std::set<int> all;
  1815. for(std::map<int,CConnection*>::const_iterator i=connections.begin(); i!=connections.end(); i++)
  1816. if(i->second == c)
  1817. all.insert(i->first);
  1818. switch(all.size())
  1819. {
  1820. case 0:
  1821. return 255;
  1822. case 1:
  1823. return *all.begin();
  1824. default:
  1825. {
  1826. //if we have more than one player at this connection, try to pick active one
  1827. if(vstd::contains(all,int(gs->currentPlayer)))
  1828. return gs->currentPlayer;
  1829. else
  1830. return 253; //cannot say which player is it
  1831. }
  1832. }
  1833. }
  1834. bool CGameHandler::disbandCreature( si32 id, ui8 pos )
  1835. {
  1836. CArmedInstance *s1 = static_cast<CArmedInstance*>(gs->map->objects[id].get());
  1837. if(!vstd::contains(s1->stacks,pos))
  1838. {
  1839. complain("Illegal call to disbandCreature - no such stack in army!");
  1840. return false;
  1841. }
  1842. eraseStack(StackLocation(s1, pos));
  1843. return true;
  1844. }
  1845. bool CGameHandler::buildStructure( si32 tid, si32 bid, bool force /*=false*/ )
  1846. {
  1847. CGTownInstance * t = static_cast<CGTownInstance*>(gs->map->objects[tid].get());
  1848. CBuilding * b = VLC->buildh->buildings[t->subID][bid];
  1849. if( !force && gs->canBuildStructure(t,bid) != 7)
  1850. {
  1851. complain("Cannot build that building!");
  1852. return false;
  1853. }
  1854. if( !force && bid == 26) //grail
  1855. {
  1856. if(!t->visitingHero || !t->visitingHero->hasArt(2))
  1857. {
  1858. complain("Cannot build grail - hero doesn't have it");
  1859. return false;
  1860. }
  1861. //remove grail
  1862. removeArtifact(ArtifactLocation(t->visitingHero, t->visitingHero->getArtPos(2, false)));
  1863. }
  1864. NewStructures ns;
  1865. ns.tid = tid;
  1866. if ( (bid == 18) && (vstd::contains(t->builtBuildings,(t->town->hordeLvl[0]+37))) )
  1867. ns.bid.insert(19);//we have upgr. dwelling, upgr. horde will be builded as well
  1868. else if ( (bid == 24) && (vstd::contains(t->builtBuildings,(t->town->hordeLvl[1]+37))) )
  1869. ns.bid.insert(25);
  1870. else if(bid>36) //upg dwelling
  1871. {
  1872. if ( (bid-37 == t->town->hordeLvl[0]) && (vstd::contains(t->builtBuildings,18)) )
  1873. ns.bid.insert(19);//we have horde, will be upgraded as well as dwelling
  1874. if ( (bid-37 == t->town->hordeLvl[1]) && (vstd::contains(t->builtBuildings,24)) )
  1875. ns.bid.insert(25);
  1876. SetAvailableCreatures ssi;
  1877. ssi.tid = tid;
  1878. ssi.creatures = t->creatures;
  1879. ssi.creatures[bid-37].second.push_back(t->town->upgradedCreatures[bid-37]);
  1880. sendAndApply(&ssi);
  1881. }
  1882. else if(bid >= 30) //bas. dwelling
  1883. {
  1884. int crid = t->town->basicCreatures[bid-30];
  1885. SetAvailableCreatures ssi;
  1886. ssi.tid = tid;
  1887. ssi.creatures = t->creatures;
  1888. ssi.creatures[bid-30].first = VLC->creh->creatures[crid]->growth;
  1889. ssi.creatures[bid-30].second.push_back(crid);
  1890. sendAndApply(&ssi);
  1891. }
  1892. else if(bid == 11)
  1893. ns.bid.insert(27);
  1894. else if(bid == 12)
  1895. ns.bid.insert(28);
  1896. else if(bid == 13)
  1897. ns.bid.insert(29);
  1898. else if (t->subID == 4 && bid == 17) //veil of darkness
  1899. {
  1900. //handled via town->reacreateBonuses in apply
  1901. // GiveBonus gb(GiveBonus::TOWN);
  1902. // gb.bonus.type = Bonus::DARKNESS;
  1903. // gb.bonus.val = 20;
  1904. // gb.id = t->id;
  1905. // gb.bonus.duration = Bonus::PERMANENT;
  1906. // gb.bonus.source = Bonus::TOWN_STRUCTURE;
  1907. // gb.bonus.id = 17;
  1908. // sendAndApply(&gb);
  1909. }
  1910. else if ( t->subID == 5 && bid == 22 )
  1911. {
  1912. setPortalDwelling(t);
  1913. }
  1914. ns.bid.insert(bid);
  1915. ns.builded = force?t->builded:(t->builded+1);
  1916. sendAndApply(&ns);
  1917. //reveal ground for lookout tower
  1918. FoWChange fw;
  1919. fw.player = t->tempOwner;
  1920. fw.mode = 1;
  1921. getTilesInRange(fw.tiles,t->pos,t->getSightRadious(),t->tempOwner,1);
  1922. sendAndApply(&fw);
  1923. if (!force)
  1924. {
  1925. SetResources sr;
  1926. sr.player = t->tempOwner;
  1927. sr.res = gs->getPlayer(t->tempOwner)->resources;
  1928. for(int i=0;i<b->resources.size();i++)
  1929. sr.res[i]-=b->resources[i];
  1930. sendAndApply(&sr);
  1931. }
  1932. if(bid<5) //it's mage guild
  1933. {
  1934. if(t->visitingHero)
  1935. giveSpells(t,t->visitingHero);
  1936. if(t->garrisonHero)
  1937. giveSpells(t,t->garrisonHero);
  1938. }
  1939. if(t->visitingHero)
  1940. vistiCastleObjects (t, t->visitingHero);
  1941. if(t->garrisonHero)
  1942. vistiCastleObjects (t, t->garrisonHero);
  1943. checkLossVictory(t->tempOwner);
  1944. return true;
  1945. }
  1946. bool CGameHandler::razeStructure (si32 tid, si32 bid)
  1947. {
  1948. ///incomplete, simply erases target building
  1949. CGTownInstance * t = static_cast<CGTownInstance*>(gs->map->objects[tid].get());
  1950. if (t->builtBuildings.find(bid) == t->builtBuildings.end())
  1951. return false;
  1952. RazeStructures rs;
  1953. rs.tid = tid;
  1954. rs.bid.insert(bid);
  1955. rs.destroyed = t->destroyed + 1;
  1956. sendAndApply(&rs);
  1957. //TODO: Remove dwellers
  1958. // if (t->subID == 4 && bid == 17) //Veil of Darkness
  1959. // {
  1960. // RemoveBonus rb(RemoveBonus::TOWN);
  1961. // rb.whoID = t->id;
  1962. // rb.source = Bonus::TOWN_STRUCTURE;
  1963. // rb.id = 17;
  1964. // sendAndApply(&rb);
  1965. // }
  1966. return true;
  1967. }
  1968. void CGameHandler::sendMessageToAll( const std::string &message )
  1969. {
  1970. SystemMessage sm;
  1971. sm.text = message;
  1972. sendToAllClients(&sm);
  1973. }
  1974. bool CGameHandler::recruitCreatures( si32 objid, ui32 crid, ui32 cram, si32 fromLvl )
  1975. {
  1976. const CGDwelling *dw = static_cast<CGDwelling*>(gs->map->objects[objid].get());
  1977. const CArmedInstance *dst = NULL;
  1978. const CCreature *c = VLC->creh->creatures[crid];
  1979. bool warMachine = c->hasBonusOfType(Bonus::SIEGE_WEAPON);
  1980. //TODO: test for owning
  1981. if(dw->ID == TOWNI_TYPE)
  1982. dst = (static_cast<const CGTownInstance *>(dw))->getUpperArmy();
  1983. else if(dw->ID == 17 || dw->ID == 20 || dw->ID == 78) //advmap dwelling
  1984. dst = getHero(gs->getPlayer(dw->tempOwner)->currentSelection); //TODO: check if current hero is really visiting dwelling
  1985. else if(dw->ID == 106)
  1986. dst = dynamic_cast<const CGHeroInstance *>(getTile(dw->visitablePos())->visitableObjects.back());
  1987. assert(dw && dst);
  1988. //verify
  1989. bool found = false;
  1990. int level = 0;
  1991. typedef std::pair<const int,int> Parka;
  1992. for(; level < dw->creatures.size(); level++) //iterate through all levels
  1993. {
  1994. if ( (fromLvl != -1) && ( level !=fromLvl ) )
  1995. continue;
  1996. const std::pair<ui32, std::vector<ui32> > &cur = dw->creatures[level]; //current level info <amount, list of cr. ids>
  1997. int i = 0;
  1998. for(; i < cur.second.size(); i++) //look for crid among available creatures list on current level
  1999. if(cur.second[i] == crid)
  2000. break;
  2001. if(i < cur.second.size())
  2002. {
  2003. found = true;
  2004. cram = std::min(cram, cur.first); //reduce recruited amount up to available amount
  2005. break;
  2006. }
  2007. }
  2008. int slot = dst->getSlotFor(crid);
  2009. if(!found && complain("Cannot recruit: no such creatures!")
  2010. || cram > VLC->creh->creatures[crid]->maxAmount(gs->getPlayer(dst->tempOwner)->resources) && complain("Cannot recruit: lack of resources!")
  2011. || cram<=0 && complain("Cannot recruit: cram <= 0!")
  2012. || slot<0 && !warMachine && complain("Cannot recruit: no available slot!"))
  2013. {
  2014. return false;
  2015. }
  2016. //recruit
  2017. SetResources sr;
  2018. sr.player = dst->tempOwner;
  2019. for(int i=0;i<RESOURCE_QUANTITY;i++)
  2020. sr.res[i] = gs->getPlayer(dst->tempOwner)->resources[i] - (c->cost[i] * cram);
  2021. SetAvailableCreatures sac;
  2022. sac.tid = objid;
  2023. sac.creatures = dw->creatures;
  2024. sac.creatures[level].first -= cram;
  2025. sendAndApply(&sr);
  2026. sendAndApply(&sac);
  2027. if(warMachine)
  2028. {
  2029. const CGHeroInstance *h = dynamic_cast<const CGHeroInstance*>(dst);
  2030. if(!h)
  2031. COMPLAIN_RET("Only hero can buy war machines");
  2032. switch(crid)
  2033. {
  2034. case 146:
  2035. giveHeroNewArtifact(h, VLC->arth->artifacts[4], Arts::MACH1);
  2036. break;
  2037. case 147:
  2038. giveHeroNewArtifact(h, VLC->arth->artifacts[6], Arts::MACH3);
  2039. break;
  2040. case 148:
  2041. giveHeroNewArtifact(h, VLC->arth->artifacts[5], Arts::MACH2);
  2042. break;
  2043. default:
  2044. complain("This war machine cannot be recruited!");
  2045. return false;
  2046. }
  2047. }
  2048. else
  2049. {
  2050. addToSlot(StackLocation(dst, slot), c, cram);
  2051. }
  2052. return true;
  2053. }
  2054. bool CGameHandler::upgradeCreature( ui32 objid, ui8 pos, ui32 upgID )
  2055. {
  2056. CArmedInstance *obj = static_cast<CArmedInstance*>(gs->map->objects[objid].get());
  2057. assert(obj->hasStackAtSlot(pos));
  2058. UpgradeInfo ui = gs->getUpgradeInfo(obj->getStack(pos));
  2059. int player = obj->tempOwner;
  2060. int crQuantity = obj->stacks[pos]->count;
  2061. int newIDpos= vstd::findPos(ui.newID, upgID);//get position of new id in UpgradeInfo
  2062. //check if upgrade is possible
  2063. if( (ui.oldID<0 || newIDpos == -1 ) && complain("That upgrade is not possible!"))
  2064. {
  2065. return false;
  2066. }
  2067. //check if player has enough resources
  2068. for (std::set<std::pair<int,int> >::iterator j=ui.cost[newIDpos].begin(); j!=ui.cost[newIDpos].end(); j++)
  2069. {
  2070. if(gs->getPlayer(player)->resources[j->first] < j->second*crQuantity)
  2071. {
  2072. complain("Cannot upgrade, not enough resources!");
  2073. return false;
  2074. }
  2075. }
  2076. //take resources
  2077. for (std::set<std::pair<int,int> >::iterator j=ui.cost[newIDpos].begin(); j!=ui.cost[newIDpos].end(); j++)
  2078. {
  2079. SetResource sr;
  2080. sr.player = player;
  2081. sr.resid = j->first;
  2082. sr.val = gs->getPlayer(player)->resources[j->first] - j->second*crQuantity;
  2083. sendAndApply(&sr);
  2084. }
  2085. //upgrade creature
  2086. changeStackType(StackLocation(obj, pos), VLC->creh->creatures[upgID]);
  2087. return true;
  2088. }
  2089. bool CGameHandler::changeStackType(const StackLocation &sl, CCreature *c)
  2090. {
  2091. if(!sl.army->hasStackAtSlot(sl.slot))
  2092. COMPLAIN_RET("Cannot find a stack to change type");
  2093. SetStackType sst;
  2094. sst.sl = sl;
  2095. sst.type = c;
  2096. sendAndApply(&sst);
  2097. return true;
  2098. }
  2099. void CGameHandler::moveArmy(const CArmedInstance *src, const CArmedInstance *dst, bool allowMerging)
  2100. {
  2101. assert(src->canBeMergedWith(*dst, allowMerging));
  2102. while(src->stacksCount())//while there are unmoved creatures
  2103. {
  2104. TSlots::const_iterator i = src->Slots().begin(); //iterator to stack to move
  2105. StackLocation sl(src, i->first); //location of stack to move
  2106. TSlot pos = dst->getSlotFor(i->second->type);
  2107. if(pos < 0)
  2108. {
  2109. //try to merge two other stacks to make place
  2110. std::pair<TSlot, TSlot> toMerge;
  2111. if(dst->mergableStacks(toMerge, i->first) && allowMerging)
  2112. {
  2113. moveStack(StackLocation(dst, toMerge.first), StackLocation(dst, toMerge.second)); //merge toMerge.first into toMerge.second
  2114. assert(!dst->hasStackAtSlot(toMerge.first)); //we have now a new free slot
  2115. moveStack(sl, StackLocation(dst, toMerge.first)); //move stack to freed slot
  2116. }
  2117. else
  2118. {
  2119. complain("Unexpected failure during an attempt to move army from " + src->nodeName() + " to " + dst->nodeName() + "!");
  2120. return;
  2121. }
  2122. }
  2123. else
  2124. {
  2125. moveStack(sl, StackLocation(dst, pos));
  2126. }
  2127. }
  2128. }
  2129. bool CGameHandler::garrisonSwap( si32 tid )
  2130. {
  2131. CGTownInstance *town = gs->getTown(tid);
  2132. if(!town->garrisonHero && town->visitingHero) //visiting => garrison, merge armies: town army => hero army
  2133. {
  2134. if(!town->visitingHero->canBeMergedWith(*town))
  2135. {
  2136. complain("Cannot make garrison swap, not enough free slots!");
  2137. return false;
  2138. }
  2139. moveArmy(town, town->visitingHero, true);
  2140. SetHeroesInTown intown;
  2141. intown.tid = tid;
  2142. intown.visiting = -1;
  2143. intown.garrison = town->visitingHero->id;
  2144. sendAndApply(&intown);
  2145. return true;
  2146. }
  2147. else if (town->garrisonHero && !town->visitingHero) //move hero out of the garrison
  2148. {
  2149. //check if moving hero out of town will break 8 wandering heroes limit
  2150. if(getHeroCount(town->garrisonHero->tempOwner,false) >= 8)
  2151. {
  2152. complain("Cannot move hero out of the garrison, there are already 8 wandering heroes!");
  2153. return false;
  2154. }
  2155. SetHeroesInTown intown;
  2156. intown.tid = tid;
  2157. intown.garrison = -1;
  2158. intown.visiting = town->garrisonHero->id;
  2159. sendAndApply(&intown);
  2160. return true;
  2161. }
  2162. else if(!!town->garrisonHero && town->visitingHero) //swap visiting and garrison hero
  2163. {
  2164. SetHeroesInTown intown;
  2165. intown.tid = tid;
  2166. intown.garrison = town->visitingHero->id;
  2167. intown.visiting = town->garrisonHero->id;
  2168. sendAndApply(&intown);
  2169. return true;
  2170. }
  2171. else
  2172. {
  2173. complain("Cannot swap garrison hero!");
  2174. return false;
  2175. }
  2176. }
  2177. // With the amount of changes done to the function, it's more like transferArtifacts.
  2178. // 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.
  2179. bool CGameHandler::moveArtifact(si32 srcHeroID, si32 destHeroID, ui16 srcSlot, ui16 destSlot)
  2180. {
  2181. const CGHeroInstance *srcHero = getHero(srcHeroID);
  2182. const CGHeroInstance *destHero = getHero(destHeroID);
  2183. ArtifactLocation src(srcHero, srcSlot), dst(destHero, destSlot);
  2184. // Make sure exchange is even possible between the two heroes.
  2185. if(!isAllowedExchange(srcHeroID, destHeroID))
  2186. COMPLAIN_RET("That heroes cannot make any exchange!");
  2187. const CArtifactInstance *srcArtifact = src.getArt();
  2188. const CArtifactInstance *destArtifact = dst.getArt();
  2189. if (srcArtifact == NULL)
  2190. COMPLAIN_RET("No artifact to move!");
  2191. if (destArtifact && srcHero->tempOwner != destHero->tempOwner)
  2192. COMPLAIN_RET("Can't touch artifact on hero of another player!");
  2193. // Check if src/dest slots are appropriate for the artifacts exchanged.
  2194. // Moving to the backpack is always allowed.
  2195. if ((!srcArtifact || destSlot < Arts::BACKPACK_START)
  2196. && srcArtifact && !srcArtifact->canBePutAt(dst, true))
  2197. COMPLAIN_RET("Cannot move artifact!");
  2198. if ((srcArtifact && srcArtifact->artType->id == Arts::ID_LOCK) || (destArtifact && destArtifact->artType->id == Arts::ID_LOCK))
  2199. COMPLAIN_RET("Cannot move artifact locks.");
  2200. if (destSlot >= Arts::BACKPACK_START && srcArtifact->artType->isBig())
  2201. COMPLAIN_RET("Cannot put big artifacts in backpack!");
  2202. if (srcSlot == Arts::MACH4 || destSlot == Arts::MACH4)
  2203. COMPLAIN_RET("Cannot move catapult!");
  2204. if(dst.slot >= Arts::BACKPACK_START)
  2205. amin(dst.slot, Arts::BACKPACK_START + dst.hero->artifactsInBackpack.size());
  2206. if (src.slot == dst.slot && src.hero == dst.hero)
  2207. COMPLAIN_RET("Won't move artifact: Dest same as source!");
  2208. //moving art to backpack is always allowed (we've ruled out exceptions)
  2209. if(destSlot >= Arts::BACKPACK_START)
  2210. {
  2211. moveArtifact(src, dst);
  2212. }
  2213. else //moving art to another slot
  2214. {
  2215. if(destArtifact) //old artifact must be removed first
  2216. {
  2217. moveArtifact(dst, ArtifactLocation(destHero, destHero->artifactsInBackpack.size() + Arts::BACKPACK_START));
  2218. }
  2219. moveArtifact(src, dst);
  2220. }
  2221. return true;
  2222. }
  2223. /**
  2224. * Assembles or disassembles a combination artifact.
  2225. * @param heroID ID of hero holding the artifact(s).
  2226. * @param artifactSlot The worn slot ID of the combination- or constituent artifact.
  2227. * @param assemble True for assembly operation, false for disassembly.
  2228. * @param assembleTo If assemble is true, this represents the artifact ID of the combination
  2229. * artifact to assemble to. Otherwise it's not used.
  2230. */
  2231. bool CGameHandler::assembleArtifacts (si32 heroID, ui16 artifactSlot, bool assemble, ui32 assembleTo)
  2232. {
  2233. CGHeroInstance *hero = gs->getHero(heroID);
  2234. const CArtifactInstance *destArtifact = hero->getArt(artifactSlot);
  2235. if(!destArtifact)
  2236. COMPLAIN_RET("assembleArtifacts: there is no such artifact instance!");
  2237. if(assemble)
  2238. {
  2239. CArtifact *combinedArt = VLC->arth->artifacts[assembleTo];
  2240. if(!combinedArt->constituents)
  2241. COMPLAIN_RET("assembleArtifacts: Artifact being attempted to assemble is not a combined artifacts!");
  2242. if(!vstd::contains(destArtifact->assemblyPossibilities(hero), combinedArt))
  2243. COMPLAIN_RET("assembleArtifacts: It's impossible to assemble requested artifact!");
  2244. AssembledArtifact aa;
  2245. aa.al = ArtifactLocation(hero, artifactSlot);
  2246. aa.builtArt = combinedArt;
  2247. sendAndApply(&aa);
  2248. }
  2249. else
  2250. {
  2251. if(!destArtifact->artType->constituents)
  2252. COMPLAIN_RET("assembleArtifacts: Artifact being attempted to disassemble is not a combined artifact!");
  2253. DisassembledArtifact da;
  2254. da.al = ArtifactLocation(hero, artifactSlot);
  2255. sendAndApply(&da);
  2256. }
  2257. return false;
  2258. }
  2259. bool CGameHandler::buyArtifact( ui32 hid, si32 aid )
  2260. {
  2261. CGHeroInstance *hero = gs->getHero(hid);
  2262. CGTownInstance *town = hero->visitedTown;
  2263. if(aid==0) //spellbook
  2264. {
  2265. if(!vstd::contains(town->builtBuildings,si32(0)) && complain("Cannot buy a spellbook, no mage guild in the town!")
  2266. || getResource(hero->getOwner(), Res::GOLD) < SPELLBOOK_GOLD_COST && complain("Cannot buy a spellbook, not enough gold!")
  2267. || hero->getArt(Arts::SPELLBOOK) && complain("Cannot buy a spellbook, hero already has a one!")
  2268. )
  2269. return false;
  2270. giveResource(hero->getOwner(),Res::GOLD,-SPELLBOOK_GOLD_COST);
  2271. giveHeroNewArtifact(hero, VLC->arth->artifacts[0], Arts::SPELLBOOK);
  2272. assert(hero->getArt(Arts::SPELLBOOK));
  2273. giveSpells(town,hero);
  2274. return true;
  2275. }
  2276. else if(aid < 7 && aid > 3) //war machine
  2277. {
  2278. int price = VLC->arth->artifacts[aid]->price;
  2279. if(hero->getArt(9+aid) && complain("Hero already has this machine!")
  2280. || !vstd::contains(town->builtBuildings,si32(16)) && complain("No blackismith!")
  2281. || gs->getPlayer(hero->getOwner())->resources[Res::GOLD] < price && complain("Not enough gold!") //no gold
  2282. || (!(town->subID == 6 && vstd::contains(town->builtBuildings,si32(22) ) )
  2283. && town->town->warMachine!= aid ) && complain("This machine is unavailable here!") )
  2284. {
  2285. return false;
  2286. }
  2287. giveResource(hero->getOwner(),Res::GOLD,-price);
  2288. giveHeroNewArtifact(hero, VLC->arth->artifacts[aid], 9+aid);
  2289. return true;
  2290. }
  2291. return false;
  2292. }
  2293. bool CGameHandler::buyArtifact(const IMarket *m, const CGHeroInstance *h, int rid, int aid)
  2294. {
  2295. if(!vstd::contains(m->availableItemsIds(RESOURCE_ARTIFACT), aid))
  2296. COMPLAIN_RET("That artifact is unavailable!");
  2297. int b1, b2;
  2298. m->getOffer(rid, aid, b1, b2, RESOURCE_ARTIFACT);
  2299. if(getResource(h->tempOwner, rid) < b1)
  2300. COMPLAIN_RET("You can't afford to buy this artifact!");
  2301. SetResource sr;
  2302. sr.player = h->tempOwner;
  2303. sr.resid = rid;
  2304. sr.val = getResource(h->tempOwner, rid) - b1;
  2305. sendAndApply(&sr);
  2306. SetAvailableArtifacts saa;
  2307. if(m->o->ID == TOWNI_TYPE)
  2308. {
  2309. saa.id = -1;
  2310. saa.arts = CGTownInstance::merchantArtifacts;
  2311. }
  2312. else if(const CGBlackMarket *bm = dynamic_cast<const CGBlackMarket *>(m->o)) //black market
  2313. {
  2314. saa.id = bm->id;
  2315. saa.arts = bm->artifacts;
  2316. }
  2317. else
  2318. COMPLAIN_RET("Wrong marktet...");
  2319. bool found = false;
  2320. BOOST_FOREACH(const CArtifact *&art, saa.arts)
  2321. {
  2322. if(art && art->id == aid)
  2323. {
  2324. art = NULL;
  2325. found = true;
  2326. break;
  2327. }
  2328. }
  2329. if(!found)
  2330. COMPLAIN_RET("Cannot find selected artifact on the list");
  2331. sendAndApply(&saa);
  2332. giveHeroNewArtifact(h, VLC->arth->artifacts[aid], -2);
  2333. return true;
  2334. }
  2335. bool CGameHandler::sellArtifact(const IMarket *m, const CGHeroInstance *h, int aid, int rid)
  2336. {
  2337. const CArtifactInstance *art = h->getArtByInstanceId(aid);
  2338. if(!art)
  2339. COMPLAIN_RET("There is no artifact to sell!");
  2340. if(art->artType->id < 7)
  2341. COMPLAIN_RET("Cannot sell a war machine or spellbook!");
  2342. int resVal = 0, dump = 1;
  2343. m->getOffer(art->artType->id, rid, dump, resVal, ARTIFACT_RESOURCE);
  2344. removeArtifact(ArtifactLocation(h, h->getArtPos(art)));
  2345. giveResource(h->tempOwner, rid, resVal);
  2346. return true;
  2347. }
  2348. bool CGameHandler::buySecSkill( const IMarket *m, const CGHeroInstance *h, int skill)
  2349. {
  2350. if (!h)
  2351. COMPLAIN_RET("You need hero to buy a skill!");
  2352. if (h->getSecSkillLevel(static_cast<CGHeroInstance::SecondarySkill>(skill)))
  2353. COMPLAIN_RET("Hero already know this skill");
  2354. if (h->secSkills.size() >= SKILL_PER_HERO)//can't learn more skills
  2355. COMPLAIN_RET("Hero can't learn any more skills");
  2356. if (h->type->heroClass->proSec[skill]==0)//can't learn this skill (like necromancy for most of non-necros)
  2357. COMPLAIN_RET("The hero can't learn this skill!");
  2358. if(!vstd::contains(m->availableItemsIds(RESOURCE_SKILL), skill))
  2359. COMPLAIN_RET("That skill is unavailable!");
  2360. if(getResource(h->tempOwner, 6) < 2000)//TODO: remove hardcoded resource\summ?
  2361. COMPLAIN_RET("You can't afford to buy this skill");
  2362. SetResource sr;
  2363. sr.player = h->tempOwner;
  2364. sr.resid = 6;
  2365. sr.val = getResource(h->tempOwner, 6) - 2000;
  2366. sendAndApply(&sr);
  2367. changeSecSkill(h->id, skill, 1, true);
  2368. return true;
  2369. }
  2370. bool CGameHandler::tradeResources(const IMarket *market, ui32 val, ui8 player, ui32 id1, ui32 id2)
  2371. {
  2372. int r1 = gs->getPlayer(player)->resources[id1],
  2373. r2 = gs->getPlayer(player)->resources[id2];
  2374. amin(val, r1); //can't trade more resources than have
  2375. int b1, b2; //base quantities for trade
  2376. market->getOffer(id1, id2, b1, b2, RESOURCE_RESOURCE);
  2377. int units = val / b1; //how many base quantities we trade
  2378. if(val%b1) //all offered units of resource should be used, if not -> somewhere in calculations must be an error
  2379. {
  2380. //TODO: complain?
  2381. assert(0);
  2382. }
  2383. SetResource sr;
  2384. sr.player = player;
  2385. sr.resid = id1;
  2386. sr.val = r1 - b1 * units;
  2387. sendAndApply(&sr);
  2388. sr.resid = id2;
  2389. sr.val = r2 + b2 * units;
  2390. sendAndApply(&sr);
  2391. return true;
  2392. }
  2393. bool CGameHandler::sellCreatures(ui32 count, const IMarket *market, const CGHeroInstance * hero, ui32 slot, ui32 resourceID)
  2394. {
  2395. if(!vstd::contains(hero->Slots(), slot))
  2396. COMPLAIN_RET("Hero doesn't have any creature in that slot!");
  2397. const CStackInstance &s = hero->getStack(slot);
  2398. if(s.count < count //can't sell more creatures than have
  2399. || hero->Slots().size() == 1 && hero->needsLastStack() && s.count == count) //can't sell last stack
  2400. {
  2401. COMPLAIN_RET("Not enough creatures in army!");
  2402. }
  2403. int b1, b2; //base quantities for trade
  2404. market->getOffer(s.type->idNumber, resourceID, b1, b2, CREATURE_RESOURCE);
  2405. int units = count / b1; //how many base quantities we trade
  2406. if(count%b1) //all offered units of resource should be used, if not -> somewhere in calculations must be an error
  2407. {
  2408. //TODO: complain?
  2409. assert(0);
  2410. }
  2411. changeStackCount(StackLocation(hero, slot), -count);
  2412. SetResource sr;
  2413. sr.player = hero->tempOwner;
  2414. sr.resid = resourceID;
  2415. sr.val = getResource(hero->tempOwner, resourceID) + b2 * units;
  2416. sendAndApply(&sr);
  2417. return true;
  2418. }
  2419. bool CGameHandler::transformInUndead(const IMarket *market, const CGHeroInstance * hero, ui32 slot)
  2420. {
  2421. const CArmedInstance *army = NULL;
  2422. if (hero)
  2423. army = hero;
  2424. else
  2425. army = dynamic_cast<const CGTownInstance *>(market->o);
  2426. if (!army)
  2427. COMPLAIN_RET("Incorrect call to transform in undead!");
  2428. if(!army->hasStackAtSlot(slot))
  2429. COMPLAIN_RET("Army doesn't have any creature in that slot!");
  2430. const CStackInstance &s = army->getStack(slot);
  2431. int resCreature;//resulting creature - bone dragons or skeletons
  2432. if (s.hasBonusOfType(Bonus::DRAGON_NATURE))
  2433. resCreature = 68;
  2434. else
  2435. resCreature = 56;
  2436. changeStackType(StackLocation(army, slot), VLC->creh->creatures[resCreature]);
  2437. return true;
  2438. }
  2439. bool CGameHandler::sendResources(ui32 val, ui8 player, ui32 r1, ui32 r2)
  2440. {
  2441. const PlayerState *p2 = gs->getPlayer(r2, false);
  2442. if(!p2 || p2->status != PlayerState::INGAME)
  2443. {
  2444. complain("Dest player must be in game!");
  2445. return false;
  2446. }
  2447. si32 curRes1 = gs->getPlayer(player)->resources[r1], curRes2 = gs->getPlayer(r2)->resources[r1];
  2448. val = std::min(si32(val),curRes1);
  2449. SetResource sr;
  2450. sr.player = player;
  2451. sr.resid = r1;
  2452. sr.val = curRes1 - val;
  2453. sendAndApply(&sr);
  2454. sr.player = r2;
  2455. sr.val = curRes2 + val;
  2456. sendAndApply(&sr);
  2457. return true;
  2458. }
  2459. bool CGameHandler::setFormation( si32 hid, ui8 formation )
  2460. {
  2461. gs->getHero(hid)-> formation = formation;
  2462. return true;
  2463. }
  2464. bool CGameHandler::hireHero(const CGObjectInstance *obj, ui8 hid, ui8 player)
  2465. {
  2466. const PlayerState *p = gs->getPlayer(player);
  2467. const CGTownInstance *t = gs->getTown(obj->id);
  2468. //common prconditions
  2469. if( p->resources[6]<2500 && complain("Not enough gold for buying hero!")
  2470. || getHeroCount(player, false) >= 8 && complain("Cannot hire hero, only 8 wandering heroes are allowed!"))
  2471. return false;
  2472. if(t) //tavern in town
  2473. {
  2474. if(!vstd::contains(t->builtBuildings,5) && complain("No tavern!")
  2475. || t->visitingHero && complain("There is visiting hero - no place!"))
  2476. return false;
  2477. }
  2478. else if(obj->ID == 95) //Tavern on adv map
  2479. {
  2480. if(getTile(obj->visitablePos())->visitableObjects.back() != obj && complain("Tavern entry must be unoccupied!"))
  2481. return false;
  2482. }
  2483. const CGHeroInstance *nh = p->availableHeroes[hid];
  2484. assert(nh);
  2485. HeroRecruited hr;
  2486. hr.tid = obj->id;
  2487. hr.hid = nh->subID;
  2488. hr.player = player;
  2489. hr.tile = obj->visitablePos() + nh->getVisitableOffset();
  2490. sendAndApply(&hr);
  2491. bmap<ui32, ConstTransitivePtr<CGHeroInstance> > pool = gs->unusedHeroesFromPool();
  2492. const CGHeroInstance *theOtherHero = p->availableHeroes[!hid];
  2493. const CGHeroInstance *newHero = gs->hpool.pickHeroFor(false, player, getNativeTown(player), pool, theOtherHero->type->heroClass);
  2494. SetAvailableHeroes sah;
  2495. sah.player = player;
  2496. if(newHero)
  2497. {
  2498. sah.hid[hid] = newHero->subID;
  2499. sah.army[hid].clear();
  2500. sah.army[hid].setCreature(0, VLC->creh->nameToID[newHero->type->refTypeStack[0]],1);
  2501. }
  2502. else
  2503. sah.hid[hid] = -1;
  2504. sah.hid[!hid] = theOtherHero ? theOtherHero->subID : -1;
  2505. sendAndApply(&sah);
  2506. SetResource sr;
  2507. sr.player = player;
  2508. sr.resid = 6;
  2509. sr.val = p->resources[6] - 2500;
  2510. sendAndApply(&sr);
  2511. if(t)
  2512. {
  2513. vistiCastleObjects (t, nh);
  2514. giveSpells (t,nh);
  2515. }
  2516. return true;
  2517. }
  2518. bool CGameHandler::queryReply( ui32 qid, ui32 answer )
  2519. {
  2520. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  2521. if(vstd::contains(callbacks,qid))
  2522. {
  2523. CFunctionList<void(ui32)> callb = callbacks[qid];
  2524. callbacks.erase(qid);
  2525. if(callb)
  2526. callb(answer);
  2527. }
  2528. else if(vstd::contains(garrisonCallbacks,qid))
  2529. {
  2530. if(garrisonCallbacks[qid])
  2531. garrisonCallbacks[qid]();
  2532. garrisonCallbacks.erase(qid);
  2533. allowedExchanges.erase(qid);
  2534. }
  2535. else
  2536. {
  2537. tlog1 << "Unknown query reply...\n";
  2538. return false;
  2539. }
  2540. return true;
  2541. }
  2542. bool CGameHandler::makeBattleAction( BattleAction &ba )
  2543. {
  2544. tlog1 << "\tMaking action of type " << ba.actionType << std::endl;
  2545. bool ok = true;
  2546. switch(ba.actionType)
  2547. {
  2548. case BattleAction::END_TACTIC_PHASE: //wait
  2549. {
  2550. sendAndApply(&StartAction(ba));
  2551. sendAndApply(&EndAction());
  2552. break;
  2553. }
  2554. case BattleAction::WALK: //walk
  2555. {
  2556. sendAndApply(&StartAction(ba)); //start movement
  2557. moveStack(ba.stackNumber,ba.destinationTile); //move
  2558. sendAndApply(&EndAction());
  2559. break;
  2560. }
  2561. case BattleAction::DEFEND: //defend
  2562. {
  2563. //defensive stance
  2564. SetStackEffect sse;
  2565. sse.effect.push_back( Bonus(Bonus::STACK_GETS_TURN, Bonus::PRIMARY_SKILL, Bonus::OTHER, 20, -1, PrimarySkill::DEFENSE, Bonus::PERCENT_TO_ALL) );
  2566. sse.stacks.push_back(ba.stackNumber);
  2567. sendAndApply(&sse);
  2568. //don't break - we share code with next case
  2569. }
  2570. case BattleAction::WAIT: //wait
  2571. {
  2572. sendAndApply(&StartAction(ba));
  2573. sendAndApply(&EndAction());
  2574. break;
  2575. }
  2576. case BattleAction::RETREAT: //retreat/flee
  2577. {
  2578. if(!gs->curB->battleCanFlee(gs->curB->sides[ba.side]))
  2579. complain("Cannot retreat!");
  2580. else
  2581. setBattleResult(1, !ba.side); //surrendering side loses
  2582. break;
  2583. }
  2584. case BattleAction::SURRENDER:
  2585. {
  2586. int player = gs->curB->sides[ba.side];
  2587. int cost = gs->curB->getSurrenderingCost(player);
  2588. if(cost < 0)
  2589. complain("Cannot surrender!");
  2590. else if(getResource(player, Res::GOLD) < cost)
  2591. complain("Not enough gold to surrender!");
  2592. else
  2593. {
  2594. giveResource(player, Res::GOLD, -cost);
  2595. setBattleResult(2, !ba.side); //surrendering side loses
  2596. }
  2597. break;
  2598. }
  2599. break;
  2600. case BattleAction::WALK_AND_ATTACK: //walk or attack
  2601. {
  2602. sendAndApply(&StartAction(ba)); //start movement and attack
  2603. int startingPos = gs->curB->getStack(ba.stackNumber)->position;
  2604. int distance = moveStack(ba.stackNumber, ba.destinationTile);
  2605. CStack *curStack = gs->curB->getStack(ba.stackNumber),
  2606. *stackAtEnd = gs->curB->getStackT(ba.additionalInfo);
  2607. if(curStack->position != ba.destinationTile //we wasn't able to reach destination tile
  2608. && !(curStack->doubleWide()
  2609. && ( curStack->position == ba.destinationTile + (curStack->attackerOwned ? +1 : -1 ) )
  2610. ) //nor occupy specified hex
  2611. )
  2612. {
  2613. std::string problem = "We cannot move this stack to its destination " + curStack->getCreature()->namePl;
  2614. tlog3 << problem << std::endl;
  2615. complain(problem);
  2616. ok = false;
  2617. sendAndApply(&EndAction());
  2618. break;
  2619. }
  2620. if(stackAtEnd && curStack->ID == stackAtEnd->ID) //we should just move, it will be handled by following check
  2621. {
  2622. stackAtEnd = NULL;
  2623. }
  2624. if(!stackAtEnd)
  2625. {
  2626. complain(boost::str(boost::format("walk and attack error: no stack at additionalInfo tile (%d)!\n") % ba.additionalInfo));
  2627. ok = false;
  2628. sendAndApply(&EndAction());
  2629. break;
  2630. }
  2631. if( !CStack::isMeleeAttackPossible(curStack, stackAtEnd) )
  2632. {
  2633. complain("Attack cannot be performed!");
  2634. sendAndApply(&EndAction());
  2635. ok = false;
  2636. break;
  2637. }
  2638. //attack
  2639. BattleAttack bat;
  2640. prepareAttack(bat, curStack, stackAtEnd, distance);
  2641. sendAndApply(&bat);
  2642. handleAfterAttackCasting(bat);
  2643. //counterattack
  2644. if(!curStack->hasBonusOfType(Bonus::BLOCKS_RETALIATION)
  2645. && stackAtEnd->alive()
  2646. && ( stackAtEnd->counterAttacks > 0 || stackAtEnd->hasBonusOfType(Bonus::UNLIMITED_RETALIATIONS) )
  2647. && !stackAtEnd->hasBonusOfType(Bonus::SIEGE_WEAPON)
  2648. && !stackAtEnd->hasBonusOfType(Bonus::HYPNOTIZED))
  2649. {
  2650. prepareAttack(bat, stackAtEnd, curStack, 0);
  2651. bat.flags |= BattleAttack::COUNTER;
  2652. sendAndApply(&bat);
  2653. handleAfterAttackCasting(bat);
  2654. }
  2655. //second attack
  2656. if(curStack->valOfBonuses(Bonus::ADDITIONAL_ATTACK) > 0
  2657. && !curStack->hasBonusOfType(Bonus::SHOOTER)
  2658. && curStack->alive()
  2659. && stackAtEnd->alive() )
  2660. {
  2661. bat.flags = 0;
  2662. prepareAttack(bat, curStack, stackAtEnd, 0);
  2663. sendAndApply(&bat);
  2664. handleAfterAttackCasting(bat);
  2665. }
  2666. //return
  2667. if(curStack->hasBonusOfType(Bonus::RETURN_AFTER_STRIKE) && startingPos != curStack->position && curStack->alive())
  2668. {
  2669. moveStack(ba.stackNumber, startingPos);
  2670. //NOTE: curStack->ID == ba.stackNumber (rev 1431)
  2671. }
  2672. sendAndApply(&EndAction());
  2673. break;
  2674. }
  2675. case BattleAction::SHOOT: //shoot
  2676. {
  2677. CStack *curStack = gs->curB->getStack(ba.stackNumber),
  2678. *destStack= gs->curB->getStackT(ba.destinationTile);
  2679. if( !gs->curB->battleCanShoot(curStack, ba.destinationTile) )
  2680. break;
  2681. sendAndApply(&StartAction(ba)); //start shooting
  2682. BattleAttack bat;
  2683. bat.flags |= BattleAttack::SHOT;
  2684. prepareAttack(bat, curStack, destStack, 0);
  2685. sendAndApply(&bat);
  2686. handleAfterAttackCasting(bat);
  2687. //ballista & artillery handling
  2688. if(destStack->alive() && curStack->getCreature()->idNumber == 146)
  2689. {
  2690. BattleAttack bat2;
  2691. bat2.flags |= BattleAttack::SHOT;
  2692. prepareAttack(bat2, curStack, destStack, 0);
  2693. sendAndApply(&bat2);
  2694. }
  2695. if(curStack->valOfBonuses(Bonus::ADDITIONAL_ATTACK) > 0 //if unit shots twice let's make another shot
  2696. && curStack->alive()
  2697. && destStack->alive()
  2698. && curStack->shots
  2699. )
  2700. {
  2701. prepareAttack(bat, curStack, destStack, 0);
  2702. sendAndApply(&bat);
  2703. handleAfterAttackCasting(bat);
  2704. }
  2705. sendAndApply(&EndAction());
  2706. break;
  2707. }
  2708. case BattleAction::CATAPULT: //catapult
  2709. {
  2710. sendAndApply(&StartAction(ba));
  2711. const CGHeroInstance * attackingHero = gs->curB->heroes[ba.side];
  2712. CHeroHandler::SBallisticsLevelInfo sbi = VLC->heroh->ballistics[attackingHero->getSecSkillLevel(CGHeroInstance::BALLISTICS)];
  2713. int attackedPart = gs->curB->hexToWallPart(ba.destinationTile);
  2714. if(attackedPart == -1)
  2715. {
  2716. complain("catapult tried to attack non-catapultable hex!");
  2717. break;
  2718. }
  2719. int wallInitHP = gs->curB->si.wallState[attackedPart];
  2720. int dmgAlreadyDealt = 0; //in successive iterations damage is dealt but not yet substracted from wall's HPs
  2721. for(int g=0; g<sbi.shots; ++g)
  2722. {
  2723. if(wallInitHP + dmgAlreadyDealt == 3) //it's not destroyed
  2724. continue;
  2725. CatapultAttack ca; //package for clients
  2726. std::pair< std::pair< ui8, si16 >, ui8> attack; //<< attackedPart , destination tile >, damageDealt >
  2727. attack.first.first = attackedPart;
  2728. attack.first.second = ba.destinationTile;
  2729. attack.second = 0;
  2730. int chanceForHit = 0;
  2731. int dmgChance[3] = {sbi.noDmg, sbi.oneDmg, sbi.twoDmg}; //dmgChance[i] - chance for doing i dmg when hit is successful
  2732. switch(attackedPart)
  2733. {
  2734. case 0: //keep
  2735. chanceForHit = sbi.keep;
  2736. break;
  2737. case 1: //bottom tower
  2738. case 6: //upper tower
  2739. chanceForHit = sbi.tower;
  2740. break;
  2741. case 2: //bottom wall
  2742. case 3: //below gate
  2743. case 4: //over gate
  2744. case 5: //upper wall
  2745. chanceForHit = sbi.wall;
  2746. break;
  2747. case 7: //gate
  2748. chanceForHit = sbi.gate;
  2749. break;
  2750. }
  2751. if(rand()%100 <= chanceForHit) //hit is successful
  2752. {
  2753. int dmgRand = rand()%100;
  2754. //accumulating dmgChance
  2755. dmgChance[1] += dmgChance[0];
  2756. dmgChance[2] += dmgChance[1];
  2757. //calculating dealt damage
  2758. for(int v = 0; v < ARRAY_COUNT(dmgChance); ++v)
  2759. {
  2760. if(dmgRand <= dmgChance[v])
  2761. {
  2762. attack.second = std::min(3 - dmgAlreadyDealt - wallInitHP, v);
  2763. dmgAlreadyDealt += attack.second;
  2764. break;
  2765. }
  2766. }
  2767. //removing creatures in turrets / keep if one is destroyed
  2768. if(attack.second > 0 && (attackedPart == 0 || attackedPart == 1 || attackedPart == 6))
  2769. {
  2770. int posRemove = -1;
  2771. switch(attackedPart)
  2772. {
  2773. case 0: //keep
  2774. posRemove = -2;
  2775. break;
  2776. case 1: //bottom tower
  2777. posRemove = -3;
  2778. break;
  2779. case 6: //upper tower
  2780. posRemove = -4;
  2781. break;
  2782. }
  2783. BattleStacksRemoved bsr;
  2784. for(int g=0; g<gs->curB->stacks.size(); ++g)
  2785. {
  2786. if(gs->curB->stacks[g]->position == posRemove)
  2787. {
  2788. bsr.stackIDs.insert( gs->curB->stacks[g]->ID );
  2789. break;
  2790. }
  2791. }
  2792. sendAndApply(&bsr);
  2793. }
  2794. }
  2795. ca.attacker = ba.stackNumber;
  2796. ca.attackedParts.insert(attack);
  2797. sendAndApply(&ca);
  2798. }
  2799. sendAndApply(&EndAction());
  2800. break;
  2801. }
  2802. case BattleAction::STACK_HEAL: //healing with First Aid Tent
  2803. {
  2804. sendAndApply(&StartAction(ba));
  2805. const CGHeroInstance * attackingHero = gs->curB->heroes[ba.side];
  2806. CStack *healer = gs->curB->getStack(ba.stackNumber),
  2807. *destStack = gs->curB->getStackT(ba.destinationTile);
  2808. if(healer == NULL || destStack == NULL || !healer->hasBonusOfType(Bonus::HEALER))
  2809. {
  2810. complain("There is either no healer, no destination, or healer cannot heal :P");
  2811. }
  2812. int maxHealable = destStack->MaxHealth() - destStack->firstHPleft;
  2813. int maxiumHeal = healer->count * std::max(10, attackingHero->valOfBonuses(Bonus::SECONDARY_SKILL_PREMY, 27));
  2814. int healed = std::min(maxHealable, maxiumHeal);
  2815. if(healed == 0)
  2816. {
  2817. //nothing to heal.. should we complain?
  2818. }
  2819. else
  2820. {
  2821. StacksHealedOrResurrected shr;
  2822. shr.lifeDrain = false;
  2823. StacksHealedOrResurrected::HealInfo hi;
  2824. hi.healedHP = healed;
  2825. hi.lowLevelResurrection = 0;
  2826. hi.stackID = destStack->ID;
  2827. shr.healedStacks.push_back(hi);
  2828. sendAndApply(&shr);
  2829. }
  2830. sendAndApply(&EndAction());
  2831. break;
  2832. }
  2833. }
  2834. if(ba.stackNumber == gs->curB->activeStack || battleResult.get()) //active stack has moved or battle has finished
  2835. battleMadeAction.setn(true);
  2836. return ok;
  2837. }
  2838. void CGameHandler::playerMessage( ui8 player, const std::string &message )
  2839. {
  2840. bool cheated=true;
  2841. sendAndApply(&PlayerMessage(player,message));
  2842. if(message == "vcmiistari") //give all spells and 999 mana
  2843. {
  2844. SetMana sm;
  2845. ChangeSpells cs;
  2846. CGHeroInstance *h = gs->getHero(gs->getPlayer(player)->currentSelection);
  2847. if(!h && complain("Cannot realize cheat, no hero selected!")) return;
  2848. sm.hid = cs.hid = h->id;
  2849. //give all spells
  2850. cs.learn = 1;
  2851. for(int i=0;i<VLC->spellh->spells.size();i++)
  2852. {
  2853. if(!VLC->spellh->spells[i]->creatureAbility)
  2854. cs.spells.insert(i);
  2855. }
  2856. //give mana
  2857. sm.val = 999;
  2858. if(!h->hasSpellbook()) //hero doesn't have spellbook
  2859. giveHeroNewArtifact(h, VLC->arth->artifacts[0], Arts::SPELLBOOK); //give spellbook
  2860. sendAndApply(&cs);
  2861. sendAndApply(&sm);
  2862. }
  2863. else if(message == "vcmiainur") //gives 5 archangels into each slot
  2864. {
  2865. CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
  2866. const CCreature *archangel = VLC->creh->creatures[13];
  2867. if(!hero) return;
  2868. for(int i = 0; i < ARMY_SIZE; i++)
  2869. if(!hero->hasStackAtSlot(i))
  2870. insertNewStack(StackLocation(hero, i), archangel, 10);
  2871. }
  2872. else if(message == "vcmiangband") //gives 10 black knight into each slot
  2873. {
  2874. CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
  2875. const CCreature *blackKnight = VLC->creh->creatures[66];
  2876. if(!hero) return;
  2877. for(int i = 0; i < ARMY_SIZE; i++)
  2878. if(!hero->hasStackAtSlot(i))
  2879. insertNewStack(StackLocation(hero, i), blackKnight, 10);
  2880. }
  2881. else if(message == "vcminoldor") //all war machines
  2882. {
  2883. CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
  2884. if(!hero) return;
  2885. if(!hero->getArt(Arts::MACH1))
  2886. giveHeroNewArtifact(hero, VLC->arth->artifacts[4], Arts::MACH1);
  2887. if(!hero->getArt(Arts::MACH2))
  2888. giveHeroNewArtifact(hero, VLC->arth->artifacts[5], Arts::MACH2);
  2889. if(!hero->getArt(Arts::MACH3))
  2890. giveHeroNewArtifact(hero, VLC->arth->artifacts[6], Arts::MACH3);
  2891. }
  2892. else if(message == "vcminahar") //1000000 movement points
  2893. {
  2894. CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
  2895. if(!hero) return;
  2896. SetMovePoints smp;
  2897. smp.hid = hero->id;
  2898. smp.val = 1000000;
  2899. sendAndApply(&smp);
  2900. }
  2901. else if(message == "vcmiformenos") //give resources
  2902. {
  2903. SetResources sr;
  2904. sr.player = player;
  2905. sr.res = gs->getPlayer(player)->resources;
  2906. for(int i=0;i<7;i++)
  2907. sr.res[i] += 100;
  2908. sr.res[6] += 19900;
  2909. sendAndApply(&sr);
  2910. }
  2911. else if(message == "vcmieagles") //reveal FoW
  2912. {
  2913. FoWChange fc;
  2914. fc.mode = 1;
  2915. fc.player = player;
  2916. int3 * hlp_tab = new int3[gs->map->width * gs->map->height * (gs->map->twoLevel + 1)];
  2917. int lastUnc = 0;
  2918. for(int i=0;i<gs->map->width;i++)
  2919. for(int j=0;j<gs->map->height;j++)
  2920. for(int k=0;k<gs->map->twoLevel+1;k++)
  2921. if(!gs->getPlayerTeam(fc.player)->fogOfWarMap[i][j][k])
  2922. hlp_tab[lastUnc++] = int3(i,j,k);
  2923. fc.tiles.insert(hlp_tab, hlp_tab + lastUnc);
  2924. delete [] hlp_tab;
  2925. sendAndApply(&fc);
  2926. }
  2927. else if(message == "vcmiglorfindel") //selected hero gains a new level
  2928. {
  2929. CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
  2930. changePrimSkill(hero->id,4,VLC->heroh->reqExp(hero->level+1) - VLC->heroh->reqExp(hero->level));
  2931. }
  2932. else if(message == "vcmisilmaril") //player wins
  2933. {
  2934. gs->getPlayer(player)->enteredWinningCheatCode = 1;
  2935. checkLossVictory(player);
  2936. }
  2937. else if(message == "vcmimelkor") //player looses
  2938. {
  2939. gs->getPlayer(player)->enteredLosingCheatCode = 1;
  2940. checkLossVictory(player);
  2941. }
  2942. else if (message == "vcmiforgeofnoldorking") //hero gets all artifacts except war machines, spell scrolls and spell book
  2943. {
  2944. CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
  2945. if(!hero) return;
  2946. for (int g=7; g<=140; ++g)
  2947. giveHeroNewArtifact(hero, VLC->arth->artifacts[g], -1);
  2948. }
  2949. else
  2950. cheated = false;
  2951. if(cheated)
  2952. {
  2953. sendAndApply(&SystemMessage(VLC->generaltexth->allTexts[260]));
  2954. }
  2955. }
  2956. void CGameHandler::handleSpellCasting( int spellID, int spellLvl, int destination, ui8 casterSide, ui8 casterColor, const CGHeroInstance * caster, const CGHeroInstance * secHero, int usedSpellPower, SpellCasting::ECastingMode mode, const CStack * stack)
  2957. {
  2958. const CSpell *spell = VLC->spellh->spells[spellID];
  2959. BattleSpellCast sc;
  2960. sc.side = casterSide;
  2961. sc.id = spellID;
  2962. sc.skill = spellLvl;
  2963. sc.tile = destination;
  2964. sc.dmgToDisplay = 0;
  2965. sc.castedByHero = (bool)caster;
  2966. sc.attackerType = (stack ? stack->type->idNumber : -1);
  2967. //calculating affected creatures for all spells
  2968. std::set<CStack*> attackedCres = gs->curB->getAttackedCreatures(spell, spellLvl, casterColor, destination);
  2969. for(std::set<CStack*>::const_iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
  2970. {
  2971. sc.affectedCres.insert((*it)->ID);
  2972. }
  2973. //checking if creatures resist
  2974. sc.resisted = gs->curB->calculateResistedStacks(spell, caster, secHero, attackedCres, casterColor, mode);
  2975. //calculating dmg to display
  2976. for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
  2977. {
  2978. if(vstd::contains(sc.resisted, (*it)->ID)) //this creature resisted the spell
  2979. continue;
  2980. sc.dmgToDisplay += gs->curB->calculateSpellDmg(spell, caster, *it, spellLvl, usedSpellPower);
  2981. }
  2982. if (spellID == 79 || spellID == 81) // Death stare or Acid Breath
  2983. {
  2984. sc.dmgToDisplay = usedSpellPower;
  2985. if (spellID == 79)
  2986. amin(sc.dmgToDisplay, (*attackedCres.begin())->count); //stack is already reduced after attack
  2987. }
  2988. //applying effects
  2989. switch(spellID)
  2990. {
  2991. case 15: //magic arrow
  2992. case 16: //ice bolt
  2993. case 17: //lightning bolt
  2994. case 18: //implosion
  2995. case 20: //frost ring
  2996. case 21: //fireball
  2997. case 22: //inferno
  2998. case 23: //meteor shower
  2999. case 24: //death ripple
  3000. case 25: //destroy undead
  3001. case 26: //armageddon
  3002. case 77: //Thunderbolt (thunderbirds)
  3003. {
  3004. StacksInjured si;
  3005. for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
  3006. {
  3007. if(vstd::contains(sc.resisted, (*it)->ID)) //this creature resisted the spell
  3008. continue;
  3009. BattleStackAttacked bsa;
  3010. bsa.flags |= BattleStackAttacked::EFFECT;
  3011. bsa.effect = spell->mainEffectAnim;
  3012. bsa.damageAmount = gs->curB->calculateSpellDmg(spell, caster, *it, spellLvl, usedSpellPower);
  3013. bsa.stackAttacked = (*it)->ID;
  3014. bsa.attackerID = -1;
  3015. (*it)->prepareAttacked(bsa);
  3016. si.stacks.push_back(bsa);
  3017. }
  3018. if(!si.stacks.empty())
  3019. sendAndApply(&si);
  3020. break;
  3021. }
  3022. // permanent effects
  3023. case 27: //shield
  3024. case 28: //air shield
  3025. case 29: //fire shield
  3026. case 30: //protection from air
  3027. case 31: //protection from fire
  3028. case 32: //protection from water
  3029. case 33: //protection from earth
  3030. case 34: //anti-magic
  3031. case 41: //bless
  3032. case 42: //curse
  3033. case 43: //bloodlust
  3034. case 44: //precision
  3035. case 45: //weakness
  3036. case 46: //stone skin
  3037. case 47: //disrupting ray
  3038. case 48: //prayer
  3039. case 49: //mirth
  3040. case 50: //sorrow
  3041. case 51: //fortune
  3042. case 52: //misfortune
  3043. case 53: //haste
  3044. case 54: //slow
  3045. case 55: //slayer
  3046. case 56: //frenzy
  3047. case 58: //counterstrike
  3048. case 59: //berserk
  3049. case 60: //hypnotize
  3050. case 61: //forgetfulness
  3051. case 62: //blind
  3052. case 70: //Stone Gaze
  3053. case 71: //Poison
  3054. case 72: //Bind
  3055. case 73: //Disease
  3056. case 74: //Paralyze
  3057. case 75: //Aging
  3058. case 80: //Acid Breath defense reduction
  3059. {
  3060. SetStackEffect sse;
  3061. Bonus pseudoBonus;
  3062. pseudoBonus.sid = spellID;
  3063. pseudoBonus.val = spellLvl;
  3064. pseudoBonus.turnsRemain = gs->curB->calculateSpellDuration(spell, caster, usedSpellPower);
  3065. CStack::stackEffectToFeature(sse.effect, pseudoBonus);
  3066. const Bonus * bonus = NULL;
  3067. if (caster)
  3068. bonus = caster->getBonus(Selector::typeSybtype(Bonus::SPECIAL_PECULIAR_ENCHANT, spellID));
  3069. si32 power;
  3070. for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
  3071. {
  3072. if(vstd::contains(sc.resisted, (*it)->ID)) //this creature resisted the spell
  3073. continue;
  3074. sse.stacks.push_back((*it)->ID);
  3075. //Apply hero specials - peculiar enchants
  3076. ui8 tier = (*it)->base->type->level;
  3077. if (bonus)
  3078. {
  3079. switch(bonus->additionalInfo)
  3080. {
  3081. case 0: //normal
  3082. {
  3083. switch(tier)
  3084. {
  3085. case 1: case 2:
  3086. power = 3;
  3087. break;
  3088. case 3: case 4:
  3089. power = 2;
  3090. break;
  3091. case 5: case 6:
  3092. power = 1;
  3093. break;
  3094. }
  3095. Bonus specialBonus(sse.effect.back());
  3096. specialBonus.val = power; //it doesn't necessarily make sense for some spells, use it wisely
  3097. sse.uniqueBonuses.push_back (std::pair<ui32,Bonus> ((*it)->ID, specialBonus)); //additional premy to given effect
  3098. }
  3099. break;
  3100. case 1: //only Coronius as yet
  3101. {
  3102. power = std::max(5 - tier, 0);
  3103. Bonus specialBonus = CStack::featureGenerator(Bonus::PRIMARY_SKILL, PrimarySkill::ATTACK, power, pseudoBonus.turnsRemain);
  3104. specialBonus.sid = spellID;
  3105. sse.uniqueBonuses.push_back (std::pair<ui32,Bonus> ((*it)->ID, specialBonus)); //additional attack to Slayer effect
  3106. }
  3107. break;
  3108. }
  3109. }
  3110. if (caster && caster->hasBonusOfType(Bonus::SPECIAL_BLESS_DAMAGE, spellID)) //TODO: better handling of bonus percentages
  3111. {
  3112. int damagePercent = caster->level * caster->valOfBonuses(Bonus::SPECIAL_BLESS_DAMAGE, spellID) / tier;
  3113. Bonus specialBonus = CStack::featureGenerator(Bonus::CREATURE_DAMAGE, 0, damagePercent, pseudoBonus.turnsRemain);
  3114. specialBonus.valType = Bonus::PERCENT_TO_ALL;
  3115. specialBonus.sid = spellID;
  3116. sse.uniqueBonuses.push_back (std::pair<ui32,Bonus> ((*it)->ID, specialBonus));
  3117. }
  3118. }
  3119. if(!sse.stacks.empty())
  3120. sendAndApply(&sse);
  3121. break;
  3122. }
  3123. case 63: //teleport
  3124. {
  3125. BattleStackMoved bsm;
  3126. bsm.distance = -1;
  3127. bsm.stack = gs->curB->activeStack;
  3128. bsm.ending = true;
  3129. bsm.tile = destination;
  3130. bsm.teleporting = true;
  3131. sendAndApply(&bsm);
  3132. break;
  3133. }
  3134. case 37: //cure
  3135. case 38: //resurrection
  3136. case 39: //animate dead
  3137. {
  3138. StacksHealedOrResurrected shr;
  3139. shr.lifeDrain = false;
  3140. for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
  3141. {
  3142. if(vstd::contains(sc.resisted, (*it)->ID) //this creature resisted the spell
  3143. || (spellID == 39 && !(*it)->hasBonusOfType(Bonus::UNDEAD)) //we try to cast animate dead on living stack
  3144. )
  3145. continue;
  3146. StacksHealedOrResurrected::HealInfo hi;
  3147. hi.stackID = (*it)->ID;
  3148. hi.healedHP = gs->curB->calculateHealedHP(caster, spell, *it);
  3149. hi.lowLevelResurrection = spellLvl <= 1;
  3150. shr.healedStacks.push_back(hi);
  3151. }
  3152. if(!shr.healedStacks.empty())
  3153. sendAndApply(&shr);
  3154. break;
  3155. }
  3156. case 64: //remove obstacle
  3157. {
  3158. ObstaclesRemoved obr;
  3159. for(int g=0; g<gs->curB->obstacles.size(); ++g)
  3160. {
  3161. std::vector<THex> blockedHexes = VLC->heroh->obstacles[gs->curB->obstacles[g].ID].getBlocked(gs->curB->obstacles[g].pos);
  3162. if(vstd::contains(blockedHexes, destination)) //this obstacle covers given hex
  3163. {
  3164. obr.obstacles.insert(gs->curB->obstacles[g].uniqueID);
  3165. }
  3166. }
  3167. if(!obr.obstacles.empty())
  3168. sendAndApply(&obr);
  3169. break;
  3170. }
  3171. break;
  3172. case 79: //Death stare - handled in a bit different way
  3173. {
  3174. StacksInjured si;
  3175. for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
  3176. {
  3177. if((*it)->hasBonusOfType(Bonus::UNDEAD) || (*it)->hasBonusOfType(Bonus::NON_LIVING)) //this creature is immune
  3178. {
  3179. sc.dmgToDisplay = 0; //TODO: handle Death Stare for multiple targets (?)
  3180. continue;
  3181. }
  3182. BattleStackAttacked bsa;
  3183. bsa.flags |= BattleStackAttacked::EFFECT;
  3184. bsa.effect = spell->mainEffectAnim; //from config\spell-Info.txt
  3185. bsa.damageAmount = usedSpellPower * (*it)->valOfBonuses(Bonus::STACK_HEALTH);
  3186. bsa.stackAttacked = (*it)->ID;
  3187. bsa.attackerID = -1;
  3188. (*it)->prepareAttacked(bsa);
  3189. si.stacks.push_back(bsa);
  3190. }
  3191. if(!si.stacks.empty())
  3192. sendAndApply(&si);
  3193. }
  3194. break;
  3195. case 81: //Acid breath damage - new effect, separate from acid breath defense reduction
  3196. {
  3197. StacksInjured si;
  3198. for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it) //no immunities
  3199. {
  3200. BattleStackAttacked bsa;
  3201. bsa.flags |= BattleStackAttacked::EFFECT;
  3202. bsa.effect = VLC->spellh->spells[80]->mainEffectAnim; //use acid breath
  3203. bsa.damageAmount = usedSpellPower; //damage times the number of attackers
  3204. bsa.stackAttacked = (*it)->ID;
  3205. bsa.attackerID = -1;
  3206. (*it)->prepareAttacked(bsa);
  3207. si.stacks.push_back(bsa);
  3208. }
  3209. if(!si.stacks.empty())
  3210. sendAndApply(&si);
  3211. }
  3212. break;
  3213. }
  3214. sendAndApply(&sc);
  3215. }
  3216. bool CGameHandler::makeCustomAction( BattleAction &ba )
  3217. {
  3218. switch(ba.actionType)
  3219. {
  3220. case BattleAction::HERO_SPELL: //hero casts spell
  3221. {
  3222. const CGHeroInstance *h = gs->curB->heroes[ba.side];
  3223. const CGHeroInstance *secondHero = gs->curB->heroes[!ba.side];
  3224. if(!h)
  3225. {
  3226. tlog2 << "Wrong caster!\n";
  3227. return false;
  3228. }
  3229. if(ba.additionalInfo >= VLC->spellh->spells.size())
  3230. {
  3231. tlog2 << "Wrong spell id (" << ba.additionalInfo << ")!\n";
  3232. return false;
  3233. }
  3234. const CSpell *s = VLC->spellh->spells[ba.additionalInfo];
  3235. ui8 skill = h->getSpellSchoolLevel(s); //skill level
  3236. SpellCasting::ESpellCastProblem escp = gs->curB->battleCanCastThisSpell(h->tempOwner, s, SpellCasting::HERO_CASTING);
  3237. if(escp != SpellCasting::OK)
  3238. {
  3239. tlog2 << "Spell cannot be cast!\n";
  3240. tlog2 << "Problem : " << escp << std::endl;
  3241. return false;
  3242. }
  3243. sendAndApply(&StartAction(ba)); //start spell casting
  3244. handleSpellCasting (ba.additionalInfo, skill, ba.destinationTile, ba.side, h->tempOwner, h, secondHero, h->getPrimSkillLevel(2), SpellCasting::HERO_CASTING, NULL);
  3245. sendAndApply(&EndAction());
  3246. if( !gs->curB->getStack(gs->curB->activeStack, false)->alive() )
  3247. {
  3248. battleMadeAction.setn(true);
  3249. }
  3250. checkForBattleEnd(gs->curB->stacks);
  3251. if(battleResult.get())
  3252. {
  3253. battleMadeAction.setn(true);
  3254. //battle will be ended by startBattle function
  3255. //endBattle(gs->curB->tile, gs->curB->heroes[0], gs->curB->heroes[1]);
  3256. }
  3257. return true;
  3258. }
  3259. }
  3260. return false;
  3261. }
  3262. void CGameHandler::handleTimeEvents()
  3263. {
  3264. gs->map->events.sort(evntCmp);
  3265. while(gs->map->events.size() && gs->map->events.front()->firstOccurence+1 == gs->day)
  3266. {
  3267. CMapEvent *ev = gs->map->events.front();
  3268. for(int player = 0; player < PLAYER_LIMIT; player++)
  3269. {
  3270. PlayerState *pinfo = gs->getPlayer(player);
  3271. if( pinfo //player exists
  3272. && (ev->players & 1<<player) //event is enabled to this player
  3273. && ((ev->computerAffected && !pinfo->human)
  3274. || (ev->humanAffected && pinfo->human)
  3275. )
  3276. )
  3277. {
  3278. //give resources
  3279. SetResources sr;
  3280. sr.player = player;
  3281. sr.res = pinfo->resources;
  3282. //prepare dialog
  3283. InfoWindow iw;
  3284. iw.player = player;
  3285. iw.text << ev->message;
  3286. for (int i=0; i<ev->resources.size(); i++)
  3287. {
  3288. if(ev->resources[i]) //if resource is changed, we add it to the dialog
  3289. {
  3290. // If removing too much resources, adjust the
  3291. // amount so the total doesn't become negative.
  3292. if (sr.res[i] + ev->resources[i] < 0)
  3293. ev->resources[i] = -sr.res[i];
  3294. if(ev->resources[i]) //if non-zero res change
  3295. {
  3296. iw.components.push_back(Component(Component::RESOURCE,i,ev->resources[i],0));
  3297. sr.res[i] += ev->resources[i];
  3298. }
  3299. }
  3300. }
  3301. if (iw.components.size())
  3302. {
  3303. sendAndApply(&sr); //update player resources if changed
  3304. }
  3305. sendAndApply(&iw); //show dialog
  3306. }
  3307. } //PLAYERS LOOP
  3308. if(ev->nextOccurence)
  3309. {
  3310. gs->map->events.pop_front();
  3311. ev->firstOccurence += ev->nextOccurence;
  3312. std::list<ConstTransitivePtr<CMapEvent> >::iterator it = gs->map->events.begin();
  3313. while ( it !=gs->map->events.end() && **it <= *ev )
  3314. it++;
  3315. gs->map->events.insert(it, ev);
  3316. }
  3317. else
  3318. {
  3319. delete ev;
  3320. gs->map->events.pop_front();
  3321. }
  3322. }
  3323. }
  3324. void CGameHandler::handleTownEvents(CGTownInstance * town, NewTurn &n, std::map<si32, std::map<si32, si32> > &newCreas)
  3325. {
  3326. town->events.sort(evntCmp);
  3327. while(town->events.size() && town->events.front()->firstOccurence == gs->day)
  3328. {
  3329. ui8 player = town->tempOwner;
  3330. CCastleEvent *ev = town->events.front();
  3331. PlayerState *pinfo = gs->getPlayer(player);
  3332. if( pinfo //player exists
  3333. && (ev->players & 1<<player) //event is enabled to this player
  3334. && ((ev->computerAffected && !pinfo->human)
  3335. || (ev->humanAffected && pinfo->human) ) )
  3336. {
  3337. // dialog
  3338. InfoWindow iw;
  3339. iw.player = player;
  3340. iw.text << ev->message;
  3341. for (int i=0; i<ev->resources.size(); i++)
  3342. if(ev->resources[i]) //if resource had changed, we add it to the dialog
  3343. {
  3344. int was = n.res[player][i];
  3345. n.res[player][i] += ev->resources[i];
  3346. n.res[player][i] = std::max<si32>(n.res[player][i], 0);
  3347. if(pinfo->resources[i] != n.res[player][i]) //if non-zero res change
  3348. iw.components.push_back(Component(Component::RESOURCE,i,n.res[player][i]-was,0));
  3349. }
  3350. for(std::set<si32>::iterator i = ev->buildings.begin(); i!=ev->buildings.end();i++)
  3351. if ( !vstd::contains(town->builtBuildings, *i))
  3352. {
  3353. buildStructure(town->id, *i, true);
  3354. iw.components.push_back(Component(Component::BUILDING, town->subID, *i, 0));
  3355. }
  3356. for(si32 i=0;i<ev->creatures.size();i++) //creature growths
  3357. {
  3358. if(town->creatureDwelling(i) && ev->creatures[i])//there is dwelling
  3359. {
  3360. newCreas[town->id][i] += ev->creatures[i];
  3361. iw.components.push_back(Component(Component::CREATURE,
  3362. town->creatures[i].second.back(), ev->creatures[i], 0));
  3363. }
  3364. }
  3365. sendAndApply(&iw); //show dialog
  3366. }
  3367. if(ev->nextOccurence)
  3368. {
  3369. town->events.pop_front();
  3370. ev->firstOccurence += ev->nextOccurence;
  3371. std::list<CCastleEvent*>::iterator it = town->events.begin();
  3372. while ( it !=town->events.end() && **it <= *ev )
  3373. it++;
  3374. town->events.insert(it, ev);
  3375. }
  3376. else
  3377. {
  3378. delete ev;
  3379. town->events.pop_front();
  3380. }
  3381. }
  3382. }
  3383. bool CGameHandler::complain( const std::string &problem )
  3384. {
  3385. sendMessageToAll("Server encountered a problem: " + problem);
  3386. tlog1 << problem << std::endl;
  3387. return true;
  3388. }
  3389. ui32 CGameHandler::getQueryResult( ui8 player, int queryID )
  3390. {
  3391. //TODO: write
  3392. return 0;
  3393. }
  3394. void CGameHandler::showGarrisonDialog( int upobj, int hid, bool removableUnits, const boost::function<void()> &cb )
  3395. {
  3396. ui8 player = getOwner(hid);
  3397. GarrisonDialog gd;
  3398. gd.hid = hid;
  3399. gd.objid = upobj;
  3400. {
  3401. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  3402. gd.id = QID;
  3403. garrisonCallbacks[QID] = cb;
  3404. allowedExchanges[QID] = std::pair<si32,si32>(upobj,hid);
  3405. states.addQuery(player,QID);
  3406. QID++;
  3407. gd.removableUnits = removableUnits;
  3408. sendAndApply(&gd);
  3409. }
  3410. }
  3411. void CGameHandler::showThievesGuildWindow(int requestingObjId)
  3412. {
  3413. OpenWindow ow;
  3414. ow.window = OpenWindow::THIEVES_GUILD;
  3415. ow.id1 = requestingObjId;
  3416. sendAndApply(&ow);
  3417. }
  3418. bool CGameHandler::isAllowedExchange( int id1, int id2 )
  3419. {
  3420. if(id1 == id2)
  3421. return true;
  3422. {
  3423. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  3424. for(std::map<ui32, std::pair<si32,si32> >::const_iterator i = allowedExchanges.begin(); i!=allowedExchanges.end(); i++)
  3425. if(id1 == i->second.first && id2 == i->second.second || id2 == i->second.first && id1 == i->second.second)
  3426. return true;
  3427. }
  3428. const CGObjectInstance *o1 = getObj(id1), *o2 = getObj(id2);
  3429. if(o1->ID == TOWNI_TYPE)
  3430. {
  3431. const CGTownInstance *t = static_cast<const CGTownInstance*>(o1);
  3432. if(t->visitingHero == o2 || t->garrisonHero == o2)
  3433. return true;
  3434. }
  3435. if(o2->ID == TOWNI_TYPE)
  3436. {
  3437. const CGTownInstance *t = static_cast<const CGTownInstance*>(o2);
  3438. if(t->visitingHero == o1 || t->garrisonHero == o1)
  3439. return true;
  3440. }
  3441. if(o1->ID == HEROI_TYPE && o2->ID == HEROI_TYPE
  3442. && distance(o1->pos, o2->pos) < 2) //hero stands on the same tile or on the neighbouring tiles
  3443. {
  3444. //TODO: it's workaround, we should check if first hero visited second and player hasn't closed exchange window
  3445. //(to block moving stacks for free [without visiting] between heroes)
  3446. return true;
  3447. }
  3448. return false;
  3449. }
  3450. void CGameHandler::objectVisited( const CGObjectInstance * obj, const CGHeroInstance * h )
  3451. {
  3452. HeroVisit hv;
  3453. hv.obj = obj;
  3454. hv.hero = h;
  3455. hv.starting = true;
  3456. sendAndApply(&hv);
  3457. obj->onHeroVisit(h);
  3458. hv.obj = NULL; //not necessary, moreover may have been deleted in the meantime
  3459. hv.starting = false;
  3460. sendAndApply(&hv);
  3461. }
  3462. bool CGameHandler::buildBoat( ui32 objid )
  3463. {
  3464. const IShipyard *obj = IShipyard::castFrom(getObj(objid));
  3465. if(obj->state())
  3466. {
  3467. complain("Cannot build boat in this shipyard!");
  3468. return false;
  3469. }
  3470. else if(obj->o->ID == TOWNI_TYPE
  3471. && !vstd::contains((static_cast<const CGTownInstance*>(obj))->builtBuildings,6))
  3472. {
  3473. complain("Cannot build boat in the town - no shipyard!");
  3474. return false;
  3475. }
  3476. //TODO use "real" cost via obj->getBoatCost
  3477. if(getResource(obj->o->tempOwner, 6) < 1000 || getResource(obj->o->tempOwner, 0) < 10)
  3478. {
  3479. complain("Not enough resources to build a boat!");
  3480. return false;
  3481. }
  3482. int3 tile = obj->bestLocation();
  3483. if(!gs->map->isInTheMap(tile))
  3484. {
  3485. complain("Cannot find appropriate tile for a boat!");
  3486. return false;
  3487. }
  3488. //take boat cost
  3489. SetResources sr;
  3490. sr.player = obj->o->tempOwner;
  3491. sr.res = gs->getPlayer(obj->o->tempOwner)->resources;
  3492. sr.res[0] -= 10;
  3493. sr.res[6] -= 1000;
  3494. sendAndApply(&sr);
  3495. //create boat
  3496. NewObject no;
  3497. no.ID = 8;
  3498. no.subID = obj->getBoatType();
  3499. no.pos = tile + int3(1,0,0);
  3500. sendAndApply(&no);
  3501. return true;
  3502. }
  3503. void CGameHandler::engageIntoBattle( ui8 player )
  3504. {
  3505. if(vstd::contains(states.players, player))
  3506. states.setFlag(player,&PlayerStatus::engagedIntoBattle,true);
  3507. //notify interfaces
  3508. PlayerBlocked pb;
  3509. pb.player = player;
  3510. pb.reason = PlayerBlocked::UPCOMING_BATTLE;
  3511. sendAndApply(&pb);
  3512. }
  3513. void CGameHandler::winLoseHandle(ui8 players )
  3514. {
  3515. for(size_t i = 0; i < PLAYER_LIMIT; i++)
  3516. {
  3517. if(players & 1<<i && gs->getPlayer(i))
  3518. {
  3519. checkLossVictory(i);
  3520. }
  3521. }
  3522. }
  3523. void CGameHandler::checkLossVictory( ui8 player )
  3524. {
  3525. const PlayerState *p = gs->getPlayer(player);
  3526. if(p->status) //player already won / lost
  3527. return;
  3528. int loss = gs->lossCheck(player);
  3529. int vic = gs->victoryCheck(player);
  3530. if(!loss && !vic)
  3531. return;
  3532. InfoWindow iw;
  3533. getLossVicMessage(player, vic ? vic : loss , vic, iw);
  3534. sendAndApply(&iw);
  3535. PlayerEndsGame peg;
  3536. peg.player = player;
  3537. peg.victory = vic;
  3538. sendAndApply(&peg);
  3539. if(vic > 0) //one player won -> all enemies lost
  3540. {
  3541. iw.text.localStrings.front().second++; //message about losing because enemy won first is just after victory message
  3542. for (bmap<ui8,PlayerState>::const_iterator i = gs->players.begin(); i!=gs->players.end(); i++)
  3543. {
  3544. if(i->first < PLAYER_LIMIT && i->first != player)//FIXME: skip already eliminated players?
  3545. {
  3546. iw.player = i->first;
  3547. sendAndApply(&iw);
  3548. peg.player = i->first;
  3549. peg.victory = gameState()->getPlayerRelations(player, i->first) == 1; // ally of winner
  3550. sendAndApply(&peg);
  3551. }
  3552. }
  3553. }
  3554. else //player lost -> all his objects become unflagged (neutral)
  3555. {
  3556. std::vector<ConstTransitivePtr<CGHeroInstance> > hlp = p->heroes;
  3557. for (std::vector<ConstTransitivePtr<CGHeroInstance> >::const_iterator i = hlp.begin(); i != hlp.end(); i++) //eliminate heroes
  3558. removeObject((*i)->id);
  3559. for (std::vector<ConstTransitivePtr<CGObjectInstance> >::const_iterator i = gs->map->objects.begin(); i != gs->map->objects.end(); i++) //unflag objs
  3560. {
  3561. if(*i && (*i)->tempOwner == player)
  3562. setOwner((**i).id,NEUTRAL_PLAYER);
  3563. }
  3564. //eliminating one player may cause victory of another:
  3565. winLoseHandle(ALL_PLAYERS & ~(1<<player));
  3566. }
  3567. if(vic)
  3568. {
  3569. end2 = true;
  3570. if(gs->campaign)
  3571. {
  3572. std::vector<CGHeroInstance *> hes;
  3573. BOOST_FOREACH(CGHeroInstance * ghi, gs->map->heroes)
  3574. {
  3575. if (ghi->tempOwner == 0 /*TODO: insert human player's color*/)
  3576. {
  3577. hes.push_back(ghi);
  3578. }
  3579. }
  3580. gs->campaign->mapConquered(hes);
  3581. UpdateCampaignState ucs;
  3582. ucs.camp = gs->campaign;
  3583. sendAndApply(&ucs);
  3584. }
  3585. }
  3586. }
  3587. void CGameHandler::getLossVicMessage( ui8 player, ui8 standard, bool victory, InfoWindow &out ) const
  3588. {
  3589. // const PlayerState *p = gs->getPlayer(player);
  3590. // if(!p->human)
  3591. // return; //AI doesn't need text info of loss
  3592. out.player = player;
  3593. if(victory)
  3594. {
  3595. if(standard < 0) //not std loss
  3596. {
  3597. switch(gs->map->victoryCondition.condition)
  3598. {
  3599. case artifact:
  3600. out.text.addTxt(MetaString::GENERAL_TXT, 280); //Congratulations! You have found the %s, and can claim victory!
  3601. out.text.addReplacement(MetaString::ART_NAMES,gs->map->victoryCondition.ID); //artifact name
  3602. break;
  3603. case gatherTroop:
  3604. out.text.addTxt(MetaString::GENERAL_TXT, 276); //Congratulations! You have over %d %s in your armies. Your enemies have no choice but to bow down before your power!
  3605. out.text.addReplacement(gs->map->victoryCondition.count);
  3606. out.text.addReplacement(MetaString::CRE_PL_NAMES, gs->map->victoryCondition.ID);
  3607. break;
  3608. case gatherResource:
  3609. out.text.addTxt(MetaString::GENERAL_TXT, 278); //Congratulations! You have collected over %d %s in your treasury. Victory is yours!
  3610. out.text.addReplacement(gs->map->victoryCondition.count);
  3611. out.text.addReplacement(MetaString::RES_NAMES, gs->map->victoryCondition.ID);
  3612. break;
  3613. case buildCity:
  3614. out.text.addTxt(MetaString::GENERAL_TXT, 282); //Congratulations! You have successfully upgraded your town, and can claim victory!
  3615. break;
  3616. case buildGrail:
  3617. out.text.addTxt(MetaString::GENERAL_TXT, 284); //Congratulations! You have constructed a permanent home for the Grail, and can claim victory!
  3618. break;
  3619. case beatHero:
  3620. {
  3621. out.text.addTxt(MetaString::GENERAL_TXT, 252); //Congratulations! You have completed your quest to defeat the enemy hero %s. Victory is yours!
  3622. const CGHeroInstance *h = dynamic_cast<const CGHeroInstance*>(gs->map->victoryCondition.obj);
  3623. assert(h);
  3624. out.text.addReplacement(h->name);
  3625. }
  3626. break;
  3627. case captureCity:
  3628. {
  3629. out.text.addTxt(MetaString::GENERAL_TXT, 249); //Congratulations! You captured %s, and are victorious!
  3630. const CGTownInstance *t = dynamic_cast<const CGTownInstance*>(gs->map->victoryCondition.obj);
  3631. assert(t);
  3632. out.text.addReplacement(t->name);
  3633. }
  3634. break;
  3635. case beatMonster:
  3636. out.text.addTxt(MetaString::GENERAL_TXT, 286); //Congratulations! You have completed your quest to kill the fearsome beast, and can claim victory!
  3637. break;
  3638. case takeDwellings:
  3639. out.text.addTxt(MetaString::GENERAL_TXT, 288); //Congratulations! Your flag flies on the dwelling of every creature. Victory is yours!
  3640. break;
  3641. case takeMines:
  3642. out.text.addTxt(MetaString::GENERAL_TXT, 290); //Congratulations! Your flag flies on every mine. Victory is yours!
  3643. break;
  3644. case transportItem:
  3645. out.text.addTxt(MetaString::GENERAL_TXT, 292); //Congratulations! You have reached your destination, precious cargo intact, and can claim victory!
  3646. break;
  3647. }
  3648. }
  3649. else
  3650. {
  3651. out.text.addTxt(MetaString::GENERAL_TXT, 659); //Congratulations! You have reached your destination, precious cargo intact, and can claim victory!
  3652. }
  3653. }
  3654. else
  3655. {
  3656. if(standard < 0) //not std loss
  3657. {
  3658. switch(gs->map->lossCondition.typeOfLossCon)
  3659. {
  3660. case lossCastle:
  3661. {
  3662. out.text.addTxt(MetaString::GENERAL_TXT, 251); //The town of %s has fallen - all is lost!
  3663. const CGTownInstance *t = dynamic_cast<const CGTownInstance*>(gs->map->lossCondition.obj);
  3664. assert(t);
  3665. out.text.addReplacement(t->name);
  3666. }
  3667. break;
  3668. case lossHero:
  3669. {
  3670. out.text.addTxt(MetaString::GENERAL_TXT, 253); //The hero, %s, has suffered defeat - your quest is over!
  3671. const CGHeroInstance *h = dynamic_cast<const CGHeroInstance*>(gs->map->lossCondition.obj);
  3672. assert(h);
  3673. out.text.addReplacement(h->name);
  3674. }
  3675. break;
  3676. case timeExpires:
  3677. out.text.addTxt(MetaString::GENERAL_TXT, 254); //Alas, time has run out on your quest. All is lost.
  3678. break;
  3679. }
  3680. }
  3681. else if(standard == 2)
  3682. {
  3683. out.text.addTxt(MetaString::GENERAL_TXT, 7);//%s, your heroes abandon you, and you are banished from this land.
  3684. out.text.addReplacement(MetaString::COLOR, player);
  3685. out.components.push_back(Component(Component::FLAG,player,0,0));
  3686. }
  3687. else //lost all towns and heroes
  3688. {
  3689. out.text.addTxt(MetaString::GENERAL_TXT, 660); //All your forces have been defeated, and you are banished from this land!
  3690. }
  3691. }
  3692. }
  3693. bool CGameHandler::dig( const CGHeroInstance *h )
  3694. {
  3695. for (std::vector<ConstTransitivePtr<CGObjectInstance> >::const_iterator i = gs->map->objects.begin(); i != gs->map->objects.end(); i++) //unflag objs
  3696. {
  3697. if(*i && (*i)->ID == 124 && (*i)->pos == h->getPosition())
  3698. {
  3699. complain("Cannot dig - there is already a hole under the hero!");
  3700. return false;
  3701. }
  3702. }
  3703. NewObject no;
  3704. no.ID = 124;
  3705. no.pos = h->getPosition();
  3706. no.subID = getTile(no.pos)->tertype;
  3707. if(no.subID >= 8) //no digging on water / rock
  3708. {
  3709. complain("Cannot dig - wrong terrain type!");
  3710. return false;
  3711. }
  3712. sendAndApply(&no);
  3713. SetMovePoints smp;
  3714. smp.hid = h->id;
  3715. smp.val = 0;
  3716. sendAndApply(&smp);
  3717. InfoWindow iw;
  3718. iw.player = h->tempOwner;
  3719. if(gs->map->grailPos == h->getPosition())
  3720. {
  3721. iw.text.addTxt(MetaString::GENERAL_TXT, 58); //"Congratulations! After spending many hours digging here, your hero has uncovered the "
  3722. iw.text.addTxt(MetaString::ART_NAMES, 2);
  3723. iw.soundID = soundBase::ULTIMATEARTIFACT;
  3724. giveHeroNewArtifact(h, VLC->arth->artifacts[2], -1); //give grail
  3725. sendAndApply(&iw);
  3726. iw.text.clear();
  3727. iw.text.addTxt(MetaString::ART_DESCR, 2);
  3728. sendAndApply(&iw);
  3729. }
  3730. else
  3731. {
  3732. iw.text.addTxt(MetaString::GENERAL_TXT, 59); //"Nothing here. \n Where could it be?"
  3733. iw.soundID = soundBase::Dig;
  3734. sendAndApply(&iw);
  3735. }
  3736. return true;
  3737. }
  3738. void CGameHandler::handleAfterAttackCasting( const BattleAttack & bat )
  3739. {
  3740. const CStack * attacker = gs->curB->getStack(bat.stackAttacking);
  3741. if( attacker->hasBonusOfType(Bonus::SPELL_AFTER_ATTACK) )
  3742. {
  3743. std::set<ui32> spellsToCast;
  3744. BOOST_FOREACH(const Bonus *sf, attacker->getBonuses(Selector::type(Bonus::SPELL_AFTER_ATTACK)))
  3745. {
  3746. spellsToCast.insert (sf->subtype);
  3747. }
  3748. BOOST_FOREACH(ui32 spellID, spellsToCast)
  3749. {
  3750. const CStack * oneOfAttacked = NULL;
  3751. for(int g=0; g<bat.bsa.size(); ++g)
  3752. {
  3753. if (bat.bsa[g].newAmount > 0)
  3754. {
  3755. oneOfAttacked = gs->curB->getStack(bat.bsa[g].stackAttacked);
  3756. break;
  3757. }
  3758. }
  3759. bool castMe = false;
  3760. int meleeRanged;
  3761. if(oneOfAttacked == NULL) //all attacked creatures have been killed
  3762. return;
  3763. int spellLevel = 0;
  3764. BOOST_FOREACH(const Bonus *sf, attacker->getBonuses(Selector::typeSybtype(Bonus::SPELL_AFTER_ATTACK, spellID)))
  3765. {
  3766. amax(spellLevel, sf->additionalInfo % 1000); //pick highest level
  3767. meleeRanged = sf->additionalInfo / 1000;
  3768. if (meleeRanged == 0 || (meleeRanged == 1 && bat.shot()) || (meleeRanged == 2 && !bat.shot()))
  3769. castMe = true;
  3770. }
  3771. int chance = attacker->valOfBonuses((Selector::typeSybtype(Bonus::SPELL_AFTER_ATTACK, spellID)));
  3772. amin (chance, 100);
  3773. int destination = oneOfAttacked->position;
  3774. const CSpell * spell = VLC->spellh->spells[spellID];
  3775. if(gs->curB->battleCanCastThisSpellHere(attacker->owner, spell, SpellCasting::AFTER_ATTACK_CASTING, oneOfAttacked->position)
  3776. != SpellCasting::OK)
  3777. continue;
  3778. //check if spell should be casted (probability handling)
  3779. if(rand()%100 >= chance)
  3780. continue;
  3781. //casting
  3782. if (castMe)
  3783. handleSpellCasting(spellID, spellLevel, destination, !attacker->attackerOwned, attacker->owner, NULL, NULL, attacker->count, SpellCasting::AFTER_ATTACK_CASTING, attacker);
  3784. }
  3785. }
  3786. if (attacker->hasBonusOfType(Bonus::DEATH_STARE)) // spell id 79
  3787. {
  3788. int staredCreatures = 0;
  3789. double mean = attacker->count * attacker->valOfBonuses(Bonus::DEATH_STARE, 0) / 100;
  3790. if (mean >= 1)
  3791. {
  3792. boost::poisson_distribution<int, double> p((int)mean);
  3793. boost::mt19937 rng;
  3794. boost::variate_generator<boost::mt19937&, boost::poisson_distribution<int, double> > dice (rng, p);
  3795. staredCreatures += dice();
  3796. }
  3797. if (((int)(mean * 100)) < rand() % 100) //fractional chance for one last kill
  3798. ++staredCreatures;
  3799. staredCreatures += attacker->type->level * attacker->valOfBonuses(Bonus::DEATH_STARE, 1);
  3800. if (staredCreatures)
  3801. {
  3802. if (bat.bsa.size() && bat.bsa[0].newAmount > 0) //TODO: death stare was not originally avaliable for multiple-hex attacks, but...
  3803. handleSpellCasting(79, 0, gs->curB->getStack(bat.bsa[0].stackAttacked)->position,
  3804. !attacker->attackerOwned, attacker->owner, NULL, NULL, staredCreatures, SpellCasting::AFTER_ATTACK_CASTING, attacker);
  3805. }
  3806. }
  3807. int acidDamage = 0;
  3808. BOOST_FOREACH(const Bonus *b, attacker->getBonuses(Selector::type(Bonus::ACID_BREATH)))
  3809. {
  3810. if (b->additionalInfo > rand()%100)
  3811. acidDamage += b->val;
  3812. }
  3813. if (acidDamage)
  3814. {
  3815. handleSpellCasting(81, 0, gs->curB->getStack(bat.bsa[0].stackAttacked)->position,
  3816. !attacker->attackerOwned, attacker->owner, NULL, NULL,
  3817. acidDamage * attacker->count, SpellCasting::AFTER_ATTACK_CASTING, attacker);
  3818. }
  3819. }
  3820. bool CGameHandler::castSpell(const CGHeroInstance *h, int spellID, const int3 &pos)
  3821. {
  3822. const CSpell *s = VLC->spellh->spells[spellID];
  3823. int cost = h->getSpellCost(s);
  3824. int schoolLevel = h->getSpellSchoolLevel(s);
  3825. if(!h->canCastThisSpell(s))
  3826. COMPLAIN_RET("Hero cannot cast this spell!");
  3827. if(h->mana < cost)
  3828. COMPLAIN_RET("Hero doesn't have enough spell points to cast this spell!");
  3829. if(s->combatSpell)
  3830. COMPLAIN_RET("This function can be used only for adventure map spells!");
  3831. AdvmapSpellCast asc;
  3832. asc.caster = h;
  3833. asc.spellID = spellID;
  3834. sendAndApply(&asc);
  3835. using namespace Spells;
  3836. switch(spellID)
  3837. {
  3838. case SUMMON_BOAT: //Summon Boat
  3839. {
  3840. //check if spell works at all
  3841. if(rand() % 100 >= s->powers[schoolLevel]) //power is % chance of success
  3842. {
  3843. InfoWindow iw;
  3844. iw.player = h->tempOwner;
  3845. iw.text.addTxt(MetaString::GENERAL_TXT, 336); //%s tried to summon a boat, but failed.
  3846. iw.text.addReplacement(h->name);
  3847. sendAndApply(&iw);
  3848. return true; //TODO? or should it be false? request was correct and realized, but spell failed...
  3849. }
  3850. //try to find unoccupied boat to summon
  3851. const CGBoat *nearest = NULL;
  3852. double dist = 0;
  3853. int3 summonPos = h->bestLocation();
  3854. if(summonPos.x < 0)
  3855. COMPLAIN_RET("There is no water tile available!");
  3856. BOOST_FOREACH(const CGObjectInstance *obj, gs->map->objects)
  3857. {
  3858. if(obj && obj->ID == 8)
  3859. {
  3860. const CGBoat *b = static_cast<const CGBoat*>(obj);
  3861. if(b->hero) continue; //we're looking for unoccupied boat
  3862. double nDist = distance(b->pos, h->getPosition());
  3863. if(!nearest || nDist < dist) //it's first boat or closer than previous
  3864. {
  3865. nearest = b;
  3866. dist = nDist;
  3867. }
  3868. }
  3869. }
  3870. if(nearest) //we found boat to summon
  3871. {
  3872. ChangeObjPos cop;
  3873. cop.objid = nearest->id;
  3874. cop.nPos = summonPos + int3(1,0,0);;
  3875. cop.flags = 1;
  3876. sendAndApply(&cop);
  3877. }
  3878. else if(schoolLevel < 2) //none or basic level -> cannot create boat :(
  3879. {
  3880. InfoWindow iw;
  3881. iw.player = h->tempOwner;
  3882. iw.text.addTxt(MetaString::GENERAL_TXT, 335); //There are no boats to summon.
  3883. sendAndApply(&iw);
  3884. }
  3885. else //create boat
  3886. {
  3887. NewObject no;
  3888. no.ID = 8;
  3889. no.subID = h->getBoatType();
  3890. no.pos = summonPos + int3(1,0,0);;
  3891. sendAndApply(&no);
  3892. }
  3893. break;
  3894. }
  3895. case SCUTTLE_BOAT: //Scuttle Boat
  3896. {
  3897. //check if spell works at all
  3898. if(rand() % 100 >= s->powers[schoolLevel]) //power is % chance of success
  3899. {
  3900. InfoWindow iw;
  3901. iw.player = h->tempOwner;
  3902. iw.text.addTxt(MetaString::GENERAL_TXT, 337); //%s tried to scuttle the boat, but failed
  3903. iw.text.addReplacement(h->name);
  3904. sendAndApply(&iw);
  3905. return true; //TODO? or should it be false? request was correct and realized, but spell failed...
  3906. }
  3907. if(!gs->map->isInTheMap(pos))
  3908. COMPLAIN_RET("Invalid dst tile for scuttle!");
  3909. //TODO: test range, visibility
  3910. const TerrainTile *t = &gs->map->getTile(pos);
  3911. if(!t->visitableObjects.size() || t->visitableObjects.back()->ID != 8)
  3912. COMPLAIN_RET("There is no boat to scuttle!");
  3913. RemoveObject ro;
  3914. ro.id = t->visitableObjects.back()->id;
  3915. sendAndApply(&ro);
  3916. break;
  3917. }
  3918. case DIMENSION_DOOR: //Dimension Door
  3919. {
  3920. const TerrainTile *dest = getTile(pos);
  3921. const TerrainTile *curr = getTile(h->getSightCenter());
  3922. if(!dest)
  3923. COMPLAIN_RET("Destination tile doesn't exist!");
  3924. if(!h->movement)
  3925. COMPLAIN_RET("Hero needs movement points to cast Dimension Door!");
  3926. if(h->getBonusesCount(Bonus::SPELL_EFFECT, Spells::DIMENSION_DOOR) >= s->powers[schoolLevel]) //limit casts per turn
  3927. {
  3928. InfoWindow iw;
  3929. iw.player = h->tempOwner;
  3930. iw.text.addTxt(MetaString::GENERAL_TXT, 338); //%s is not skilled enough to cast this spell again today.
  3931. iw.text.addReplacement(h->name);
  3932. sendAndApply(&iw);
  3933. break;
  3934. }
  3935. GiveBonus gb;
  3936. gb.id = h->id;
  3937. gb.bonus = Bonus(Bonus::ONE_DAY, Bonus::NONE, Bonus::SPELL_EFFECT, 0, Spells::DIMENSION_DOOR);
  3938. sendAndApply(&gb);
  3939. if(!dest->isClear(curr)) //wrong dest tile
  3940. {
  3941. InfoWindow iw;
  3942. iw.player = h->tempOwner;
  3943. iw.text.addTxt(MetaString::GENERAL_TXT, 70); //Dimension Door failed!
  3944. sendAndApply(&iw);
  3945. break;
  3946. }
  3947. //we need obtain guard pos before moving hero, otherwise we get nothing, because tile will be "unguarded" by hero
  3948. int3 guardPos = gs->guardingCreaturePosition(pos);
  3949. TryMoveHero tmh;
  3950. tmh.id = h->id;
  3951. tmh.movePoints = std::max<int>(0, h->movement - 300);
  3952. tmh.result = TryMoveHero::TELEPORTATION;
  3953. tmh.start = h->pos;
  3954. tmh.end = pos + h->getVisitableOffset();
  3955. getTilesInRange(tmh.fowRevealed, pos, h->getSightRadious(), h->tempOwner,1);
  3956. sendAndApply(&tmh);
  3957. tryAttackingGuard(guardPos, h);
  3958. }
  3959. break;
  3960. case FLY: //Fly
  3961. {
  3962. int subtype = schoolLevel >= 2 ? 1 : 2; //adv or expert
  3963. GiveBonus gb;
  3964. gb.id = h->id;
  3965. gb.bonus = Bonus(Bonus::ONE_DAY, Bonus::FLYING_MOVEMENT, Bonus::SPELL_EFFECT, 0, Spells::FLY, subtype);
  3966. sendAndApply(&gb);
  3967. }
  3968. break;
  3969. case WATER_WALK: //Water Walk
  3970. {
  3971. int subtype = schoolLevel >= 2 ? 1 : 2; //adv or expert
  3972. GiveBonus gb;
  3973. gb.id = h->id;
  3974. gb.bonus = Bonus(Bonus::ONE_DAY, Bonus::WATER_WALKING, Bonus::SPELL_EFFECT, 0, Spells::FLY, subtype);
  3975. sendAndApply(&gb);
  3976. }
  3977. break;
  3978. case TOWN_PORTAL: //Town Portal
  3979. {
  3980. if (!gs->map->isInTheMap(pos))
  3981. COMPLAIN_RET("Destination tile not present!")
  3982. TerrainTile tile = gs->map->getTile(pos);
  3983. if (tile.visitableObjects.empty() || tile.visitableObjects.back()->ID != TOWNI_TYPE )
  3984. COMPLAIN_RET("Town not found for Town Portal!");
  3985. CGTownInstance * town = static_cast<CGTownInstance*>(tile.visitableObjects.back());
  3986. if (town->tempOwner != h->tempOwner)
  3987. COMPLAIN_RET("Can't teleport to another player!");
  3988. if (town->visitingHero)
  3989. COMPLAIN_RET("Can't teleport to occupied town!");
  3990. if (h->getSpellSchoolLevel(s) < 2)
  3991. {
  3992. double dist = town->pos.dist2d(h->pos);
  3993. int nearest = town->id; //nearest town's ID
  3994. BOOST_FOREACH(const CGTownInstance * currTown, gs->getPlayer(h->tempOwner)->towns)
  3995. {
  3996. double curDist = currTown->pos.dist2d(h->pos);
  3997. if (nearest == -1 || curDist < dist)
  3998. {
  3999. nearest = town->id;
  4000. dist = curDist;
  4001. }
  4002. }
  4003. if (town->id != nearest)
  4004. COMPLAIN_RET("This hero can only teleport to nearest town!")
  4005. }
  4006. if (h->visitedTown)
  4007. stopHeroVisitCastle(town->id, h->id);
  4008. if (moveHero(h->id, town->visitablePos() + h->getVisitableOffset() ,1));
  4009. heroVisitCastle(town->id, h->id);
  4010. }
  4011. break;
  4012. case VISIONS: //Visions
  4013. case VIEW_EARTH: //View Earth
  4014. case DISGUISE: //Disguise
  4015. case VIEW_AIR: //View Air
  4016. default:
  4017. COMPLAIN_RET("This spell is not implemented yet!");
  4018. break;
  4019. }
  4020. SetMana sm;
  4021. sm.hid = h->id;
  4022. sm.val = h->mana - cost;
  4023. sendAndApply(&sm);
  4024. return true;
  4025. }
  4026. void CGameHandler::visitObjectOnTile(const TerrainTile &t, const CGHeroInstance * h)
  4027. {
  4028. //to prevent self-visiting heroes on space press
  4029. if(t.visitableObjects.back() != h)
  4030. objectVisited(t.visitableObjects.back(), h);
  4031. else if(t.visitableObjects.size() > 1)
  4032. objectVisited(*(t.visitableObjects.end()-2),h);
  4033. }
  4034. bool CGameHandler::tryAttackingGuard(const int3 &guardPos, const CGHeroInstance * h)
  4035. {
  4036. if(!gs->map->isInTheMap(guardPos))
  4037. return false;
  4038. const TerrainTile &guardTile = gs->map->terrain[guardPos.x][guardPos.y][guardPos.z];
  4039. objectVisited(guardTile.visitableObjects.back(), h);
  4040. visitObjectAfterVictory = true;
  4041. return true;
  4042. }
  4043. bool CGameHandler::sacrificeCreatures(const IMarket *market, const CGHeroInstance *hero, TSlot slot, ui32 count)
  4044. {
  4045. int oldCount = hero->getStackCount(slot);
  4046. if(oldCount < count)
  4047. COMPLAIN_RET("Not enough creatures to sacrifice!")
  4048. else if(oldCount == count && hero->Slots().size() == 1 && hero->needsLastStack())
  4049. COMPLAIN_RET("Cannot sacrifice last creature!");
  4050. int crid = hero->getStack(slot).type->idNumber;
  4051. changeStackCount(StackLocation(hero, slot), -count);
  4052. int dump, exp;
  4053. market->getOffer(crid, 0, dump, exp, CREATURE_EXP);
  4054. exp *= count;
  4055. changePrimSkill(hero->id, 4, hero->calculateXp(exp));
  4056. return true;
  4057. }
  4058. bool CGameHandler::sacrificeArtifact(const IMarket * m, const CGHeroInstance * hero, int slot)
  4059. {
  4060. ArtifactLocation al(hero, slot);
  4061. const CArtifactInstance *a = al.getArt();
  4062. if(!a)
  4063. COMPLAIN_RET("Cannot find artifact to sacrifice!");
  4064. int dmp, expToGive;
  4065. m->getOffer(hero->getArtTypeId(slot), 0, dmp, expToGive, ARTIFACT_EXP);
  4066. removeArtifact(al);
  4067. changePrimSkill(hero->id, 4, expToGive);
  4068. return true;
  4069. }
  4070. void CGameHandler::makeStackDoNothing(const CStack * next)
  4071. {
  4072. BattleAction doNothing;
  4073. doNothing.actionType = 0;
  4074. doNothing.additionalInfo = 0;
  4075. doNothing.destinationTile = -1;
  4076. doNothing.side = !next->attackerOwned;
  4077. doNothing.stackNumber = next->ID;
  4078. sendAndApply(&StartAction(doNothing));
  4079. sendAndApply(&EndAction());
  4080. }
  4081. bool CGameHandler::insertNewStack(const StackLocation &sl, const CCreature *c, TQuantity count)
  4082. {
  4083. if(sl.army->hasStackAtSlot(sl.slot))
  4084. COMPLAIN_RET("Slot is already taken!");
  4085. InsertNewStack ins;
  4086. ins.sl = sl;
  4087. ins.stack = CStackBasicDescriptor(c, count);
  4088. sendAndApply(&ins);
  4089. return true;
  4090. }
  4091. bool CGameHandler::eraseStack(const StackLocation &sl, bool forceRemoval/* = false*/)
  4092. {
  4093. if(!sl.army->hasStackAtSlot(sl.slot))
  4094. COMPLAIN_RET("Cannot find a stack to erase");
  4095. if(sl.army->Slots().size() == 1 //from the last stack
  4096. && sl.army->needsLastStack() //that must be left
  4097. && !forceRemoval) //ignore above conditions if we are forcing removal
  4098. {
  4099. COMPLAIN_RET("Cannot erase the last stack!");
  4100. }
  4101. EraseStack es;
  4102. es.sl = sl;
  4103. sendAndApply(&es);
  4104. return true;
  4105. }
  4106. bool CGameHandler::changeStackCount(const StackLocation &sl, TQuantity count, bool absoluteValue /*= false*/)
  4107. {
  4108. TQuantity currentCount = sl.army->getStackCount(sl.slot);
  4109. if(absoluteValue && count < 0
  4110. || !absoluteValue && -count > currentCount)
  4111. {
  4112. COMPLAIN_RET("Cannot take more stacks than present!");
  4113. }
  4114. if(currentCount == -count && !absoluteValue
  4115. || !count && absoluteValue)
  4116. {
  4117. eraseStack(sl);
  4118. }
  4119. else
  4120. {
  4121. ChangeStackCount csc;
  4122. csc.sl = sl;
  4123. csc.count = count;
  4124. csc.absoluteValue = absoluteValue;
  4125. sendAndApply(&csc);
  4126. }
  4127. return true;
  4128. }
  4129. bool CGameHandler::addToSlot(const StackLocation &sl, const CCreature *c, TQuantity count)
  4130. {
  4131. const CCreature *slotC = sl.army->getCreature(sl.slot);
  4132. if(!slotC) //slot is empty
  4133. insertNewStack(sl, c, count);
  4134. else if(c == slotC)
  4135. changeStackCount(sl, count);
  4136. else
  4137. {
  4138. COMPLAIN_RET("Cannot add " + c->namePl + " to slot " + boost::lexical_cast<std::string>(sl.slot) + "!");
  4139. }
  4140. return true;
  4141. }
  4142. void CGameHandler::tryJoiningArmy(const CArmedInstance *src, const CArmedInstance *dst, bool removeObjWhenFinished, bool allowMerging)
  4143. {
  4144. if(!dst->canBeMergedWith(*src, allowMerging))
  4145. {
  4146. if (allowMerging) //do that, add all matching creatures.
  4147. {
  4148. bool cont = true;
  4149. while (cont)
  4150. {
  4151. for(TSlots::const_iterator i = src->stacks.begin(); i != src->stacks.end(); i++)//while there are unmoved creatures
  4152. {
  4153. TSlot pos = dst->getSlotFor(i->second->type);
  4154. if(pos > -1)
  4155. {
  4156. moveStack(StackLocation(src, i->first), StackLocation(dst, pos));
  4157. cont = true;
  4158. break; //or iterator crashes
  4159. }
  4160. cont = false;
  4161. }
  4162. }
  4163. }
  4164. boost::function<void()> removeOrNot = 0;
  4165. if(removeObjWhenFinished)
  4166. removeOrNot = boost::bind(&IGameCallback::removeObject,this,src->id);
  4167. showGarrisonDialog(src->id, dst->id, true, removeOrNot); //show garrison window and optionally remove ourselves from map when player ends
  4168. }
  4169. else //merge
  4170. {
  4171. moveArmy(src, dst, allowMerging);
  4172. if(removeObjWhenFinished)
  4173. removeObject(src->id);
  4174. }
  4175. }
  4176. bool CGameHandler::moveStack(const StackLocation &src, const StackLocation &dst, TQuantity count)
  4177. {
  4178. if(!src.army->hasStackAtSlot(src.slot))
  4179. COMPLAIN_RET("No stack to move!");
  4180. if(dst.army->hasStackAtSlot(dst.slot) && dst.army->getCreature(dst.slot) != src.army->getCreature(src.slot))
  4181. COMPLAIN_RET("Cannot move: stack of different type at destination pos!");
  4182. if(count == -1)
  4183. {
  4184. count = src.army->getStackCount(src.slot);
  4185. }
  4186. if(src.army != dst.army //moving away
  4187. && count == src.army->getStackCount(src.slot) //all creatures
  4188. && src.army->Slots().size() == 1 //from the last stack
  4189. && src.army->needsLastStack()) //that must be left
  4190. {
  4191. COMPLAIN_RET("Cannot move away the alst creature!");
  4192. }
  4193. RebalanceStacks rs;
  4194. rs.src = src;
  4195. rs.dst = dst;
  4196. rs.count = count;
  4197. sendAndApply(&rs);
  4198. return true;
  4199. }
  4200. bool CGameHandler::swapStacks(const StackLocation &sl1, const StackLocation &sl2)
  4201. {
  4202. if(!sl1.army->hasStackAtSlot(sl1.slot))
  4203. return moveStack(sl2, sl1);
  4204. else if(!sl2.army->hasStackAtSlot(sl2.slot))
  4205. return moveStack(sl1, sl2);
  4206. else
  4207. {
  4208. SwapStacks ss;
  4209. ss.sl1 = sl1;
  4210. ss.sl2 = sl2;
  4211. sendAndApply(&ss);
  4212. return true;
  4213. }
  4214. }
  4215. void CGameHandler::runBattle()
  4216. {
  4217. assert(gs->curB);
  4218. //TODO: pre-tactic stuff, call scripts etc.
  4219. //tactic round
  4220. {
  4221. while(gs->curB->tacticDistance)
  4222. boost::this_thread::sleep(boost::posix_time::milliseconds(50));
  4223. }
  4224. //spells opening battle
  4225. for(int i=0; i<ARRAY_COUNT(gs->curB->heroes); ++i)
  4226. {
  4227. if(gs->curB->heroes[i] && gs->curB->heroes[i]->hasBonusOfType(Bonus::OPENING_BATTLE_SPELL))
  4228. {
  4229. BonusList bl;
  4230. gs->curB->heroes[i]->getBonuses(bl, Selector::type(Bonus::OPENING_BATTLE_SPELL));
  4231. BOOST_FOREACH (Bonus *b, bl)
  4232. {
  4233. handleSpellCasting(b->subtype, 3, -1, 0, gs->curB->heroes[i]->tempOwner, NULL, gs->curB->heroes[1-i], b->val, SpellCasting::HERO_CASTING, NULL);
  4234. }
  4235. }
  4236. }
  4237. //main loop
  4238. while(!battleResult.get()) //till the end of the battle ;]
  4239. {
  4240. NEW_ROUND;
  4241. std::vector<CStack*> & stacks = (gs->curB->stacks);
  4242. const BattleInfo & curB = *gs->curB;
  4243. //stack loop
  4244. const CStack *next;
  4245. while(!battleResult.get() && (next = curB.getNextStack()) && next->willMove())
  4246. {
  4247. //check for bad morale => freeze
  4248. int nextStackMorale = next->MoraleVal();
  4249. if( nextStackMorale < 0 &&
  4250. !(NBonus::hasOfType(gs->curB->heroes[0], Bonus::BLOCK_MORALE) || NBonus::hasOfType(gs->curB->heroes[1], Bonus::BLOCK_MORALE)) //checking if gs->curB->heroes have (or don't have) morale blocking bonuses)
  4251. )
  4252. {
  4253. if( rand()%24 < -2 * nextStackMorale)
  4254. {
  4255. //unit loses its turn - empty freeze action
  4256. BattleAction ba;
  4257. ba.actionType = BattleAction::BAD_MORALE;
  4258. ba.additionalInfo = 1;
  4259. ba.side = !next->attackerOwned;
  4260. ba.stackNumber = next->ID;
  4261. sendAndApply(&StartAction(ba));
  4262. sendAndApply(&EndAction());
  4263. checkForBattleEnd(stacks); //check if this "action" ended the battle (not likely but who knows...)
  4264. continue;
  4265. }
  4266. }
  4267. if(next->hasBonusOfType(Bonus::ATTACKS_NEAREST_CREATURE)) //while in berserk
  4268. {
  4269. std::pair<const CStack *, int> attackInfo = curB.getNearestStack(next, boost::logic::indeterminate);
  4270. if(attackInfo.first != NULL)
  4271. {
  4272. BattleAction attack;
  4273. attack.actionType = BattleAction::WALK_AND_ATTACK;
  4274. attack.side = !next->attackerOwned;
  4275. attack.stackNumber = next->ID;
  4276. attack.additionalInfo = attackInfo.first->position;
  4277. attack.destinationTile = attackInfo.second;
  4278. makeBattleAction(attack);
  4279. checkForBattleEnd(stacks);
  4280. }
  4281. else
  4282. {
  4283. makeStackDoNothing(next);
  4284. }
  4285. continue;
  4286. }
  4287. const CGHeroInstance * curOwner = gs->curB->battleGetOwner(next);
  4288. if( (next->position < 0 && (!curOwner || curOwner->getSecSkillLevel(CGHeroInstance::BALLISTICS) == 0)) //arrow turret, hero has no ballistics
  4289. || (next->getCreature()->idNumber == 146 && (!curOwner || curOwner->getSecSkillLevel(CGHeroInstance::ARTILLERY) == 0))) //ballista, hero has no artillery
  4290. {
  4291. BattleAction attack;
  4292. attack.actionType = BattleAction::SHOOT;
  4293. attack.side = !next->attackerOwned;
  4294. attack.stackNumber = next->ID;
  4295. for(int g=0; g<gs->curB->stacks.size(); ++g)
  4296. {
  4297. if(gs->curB->stacks[g]->owner != next->owner && gs->curB->stacks[g]->alive())
  4298. {
  4299. attack.destinationTile = gs->curB->stacks[g]->position;
  4300. break;
  4301. }
  4302. }
  4303. makeBattleAction(attack);
  4304. checkForBattleEnd(stacks);
  4305. continue;
  4306. }
  4307. if(next->getCreature()->idNumber == 145 && (!curOwner || curOwner->getSecSkillLevel(CGHeroInstance::BALLISTICS) == 0)) //catapult, hero has no ballistics
  4308. {
  4309. BattleAction attack;
  4310. static const int wallHexes[] = {50, 183, 182, 130, 62, 29, 12, 95};
  4311. attack.destinationTile = wallHexes[ rand()%ARRAY_COUNT(wallHexes) ];
  4312. attack.actionType = BattleAction::CATAPULT;
  4313. attack.additionalInfo = 0;
  4314. attack.side = !next->attackerOwned;
  4315. attack.stackNumber = next->ID;
  4316. makeBattleAction(attack);
  4317. continue;
  4318. }
  4319. if(next->getCreature()->idNumber == 147 && (!curOwner || curOwner->getSecSkillLevel(CGHeroInstance::FIRST_AID) == 0)) //first aid tent, hero has no first aid
  4320. {
  4321. BattleAction heal;
  4322. std::vector< const CStack * > possibleStacks, secondPriority;
  4323. for (int v=0; v<gs->curB->stacks.size(); ++v)
  4324. {
  4325. const CStack * cstack = gs->curB->stacks[v];
  4326. if (cstack->owner == next->owner && cstack->firstHPleft < cstack->MaxHealth() && cstack->alive()) //it's friendly and not fully healthy
  4327. {
  4328. if (cstack->hasBonusOfType(Bonus::SIEGE_WEAPON))
  4329. secondPriority.push_back(cstack);
  4330. else
  4331. possibleStacks.push_back(cstack);
  4332. }
  4333. }
  4334. if(possibleStacks.size() == 0 && secondPriority.size() == 0)
  4335. {
  4336. //nothing to heal
  4337. makeStackDoNothing(next);
  4338. continue;
  4339. }
  4340. else
  4341. {
  4342. //heal random creature
  4343. const CStack * toBeHealed = NULL;
  4344. if (possibleStacks.size() > 0)
  4345. toBeHealed = possibleStacks[ rand()%possibleStacks.size() ];
  4346. else
  4347. toBeHealed = secondPriority[ rand()%secondPriority.size() ];
  4348. heal.actionType = BattleAction::STACK_HEAL;
  4349. heal.additionalInfo = 0;
  4350. heal.destinationTile = toBeHealed->position;
  4351. heal.side = !next->attackerOwned;
  4352. heal.stackNumber = next->ID;
  4353. makeBattleAction(heal);
  4354. }
  4355. continue;
  4356. }
  4357. int numberOfAsks = 1;
  4358. bool breakOuter = false;
  4359. do
  4360. {//ask interface and wait for answer
  4361. if(!battleResult.get())
  4362. {
  4363. BattleSetActiveStack sas;
  4364. sas.stack = next->ID;
  4365. sendAndApply(&sas);
  4366. boost::unique_lock<boost::mutex> lock(battleMadeAction.mx);
  4367. while(next->alive() && (!battleMadeAction.data && !battleResult.get())) //active stack hasn't made its action and battle is still going
  4368. battleMadeAction.cond.wait(lock);
  4369. battleMadeAction.data = false;
  4370. }
  4371. if(battleResult.get()) //don't touch it, battle could be finished while waiting got action
  4372. {
  4373. breakOuter = true;
  4374. break;
  4375. }
  4376. //we're after action, all results applied
  4377. checkForBattleEnd(stacks); //check if this action ended the battle
  4378. //check for good morale
  4379. nextStackMorale = next->MoraleVal();
  4380. if(!vstd::contains(next->state,HAD_MORALE) //only one extra move per turn possible
  4381. && !vstd::contains(next->state,DEFENDING)
  4382. && !vstd::contains(next->state,WAITING)
  4383. && next->alive()
  4384. && nextStackMorale > 0
  4385. && !(NBonus::hasOfType(gs->curB->heroes[0], Bonus::BLOCK_MORALE) || NBonus::hasOfType(gs->curB->heroes[1], Bonus::BLOCK_MORALE)) //checking if gs->curB->heroes have (or don't have) morale blocking bonuses
  4386. )
  4387. {
  4388. if(rand()%24 < nextStackMorale) //this stack hasn't got morale this turn
  4389. ++numberOfAsks; //move this stack once more
  4390. }
  4391. --numberOfAsks;
  4392. } while (numberOfAsks > 0);
  4393. if (breakOuter)
  4394. {
  4395. break;
  4396. }
  4397. }
  4398. }
  4399. endBattle(gs->curB->tile, gs->curB->heroes[0], gs->curB->heroes[1]);
  4400. }
  4401. void CGameHandler::giveHeroArtifact(const CGHeroInstance *h, const CArtifactInstance *a, int pos)
  4402. {
  4403. assert(a->artType);
  4404. ArtifactLocation al;
  4405. al.hero = h;
  4406. int slot = -1;
  4407. if(pos < 0)
  4408. {
  4409. if(pos == -2)
  4410. slot = a->firstAvailableSlot(h);
  4411. else
  4412. slot = a->firstBackpackSlot(h);
  4413. }
  4414. else
  4415. {
  4416. slot = pos;
  4417. }
  4418. al.slot = slot;
  4419. if(slot < 0 || !a->canBePutAt(al))
  4420. {
  4421. complain("Cannot put artifact in that slot!");
  4422. return;
  4423. }
  4424. putArtifact(al, a);
  4425. }
  4426. void CGameHandler::putArtifact(const ArtifactLocation &al, const CArtifactInstance *a)
  4427. {
  4428. PutArtifact pa;
  4429. pa.art = a;
  4430. pa.al = al;
  4431. sendAndApply(&pa);
  4432. }
  4433. void CGameHandler::moveArtifact(const ArtifactLocation &al1, const ArtifactLocation &al2)
  4434. {
  4435. MoveArtifact ma;
  4436. ma.src = al1;
  4437. ma.dst = al2;
  4438. sendAndApply(&ma);
  4439. }
  4440. void CGameHandler::giveHeroNewArtifact(const CGHeroInstance *h, const CArtifact *artType, int pos)
  4441. {
  4442. CArtifactInstance *a = NULL;
  4443. if(!artType->constituents)
  4444. a = new CArtifactInstance();
  4445. else
  4446. a = new CCombinedArtifactInstance();
  4447. a->artType = artType; //*NOT* via settype -> all bonus-related stuff must be done by NewArtifact apply
  4448. NewArtifact na;
  4449. na.art = a;
  4450. sendAndApply(&na); // -> updates a!!!, will create a on other machines
  4451. giveHeroArtifact(h, a, pos);
  4452. }
  4453. void CGameHandler::setBattleResult(int resultType, int victoriusSide)
  4454. {
  4455. BattleResult *br = new BattleResult;
  4456. br->result = resultType;
  4457. br->winner = victoriusSide; //surrendering side loses
  4458. gs->curB->calculateCasualties(br->casualties);
  4459. battleResult.set(br);
  4460. }
  4461. CasualtiesAfterBattle::CasualtiesAfterBattle(const CArmedInstance *army, BattleInfo *bat)
  4462. {
  4463. int color = army->tempOwner;
  4464. if(color == 254)
  4465. color = NEUTRAL_PLAYER;
  4466. BOOST_FOREACH(CStack *st, bat->stacks)
  4467. {
  4468. if(vstd::contains(st->state, SUMMONED)) //don't take into account summoned stacks
  4469. continue;
  4470. if(st->owner==color && !army->slotEmpty(st->slot) && st->count < army->getStackCount(st->slot))
  4471. {
  4472. StackLocation sl(army, st->slot);
  4473. if(st->alive())
  4474. newStackCounts.push_back(std::pair<StackLocation, int>(sl, st->count));
  4475. else
  4476. newStackCounts.push_back(std::pair<StackLocation, int>(sl, 0));
  4477. }
  4478. }
  4479. }
  4480. void CasualtiesAfterBattle::takeFromArmy(CGameHandler *gh)
  4481. {
  4482. BOOST_FOREACH(TStackAndItsNewCount &ncount, newStackCounts)
  4483. {
  4484. if(ncount.second > 0)
  4485. gh->changeStackCount(ncount.first, ncount.second, true);
  4486. else
  4487. gh->eraseStack(ncount.first, true);
  4488. }
  4489. }