CGameHandler.cpp 157 KB

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