123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109 |
- #include "stdafx.h"
- #include "../int3.h"
- #include "../lib/CCampaignHandler.h"
- #include "../StartInfo.h"
- #include "../lib/CArtHandler.h"
- #include "../lib/CBuildingHandler.h"
- #include "../lib/CDefObjInfoHandler.h"
- #include "../lib/CHeroHandler.h"
- #include "../lib/CObjectHandler.h"
- #include "../lib/CSpellHandler.h"
- #include "../lib/CGeneralTextHandler.h"
- #include "../lib/CTownHandler.h"
- #include "../lib/CCreatureHandler.h"
- #include "../lib/CGameState.h"
- #include "../lib/BattleState.h"
- #include "../lib/CondSh.h"
- #include "../lib/NetPacks.h"
- #include "../lib/VCMI_Lib.h"
- #include "../lib/map.h"
- #include "../lib/VCMIDirs.h"
- #include "../client/CSoundBase.h"
- #include "CGameHandler.h"
- #include <boost/random/mersenne_twister.hpp>
- #include <boost/random/variate_generator.hpp>
- #include <boost/random/poisson_distribution.hpp>
- #include "../lib/CCreatureSet.h"
- /*
- * CGameHandler.cpp, part of VCMI engine
- *
- * Authors: listed in file AUTHORS in main folder
- *
- * License: GNU General Public License v2.0 or later
- * Full text of license available in license.txt file, in main folder
- *
- */
- #undef DLL_EXPORT
- #define DLL_EXPORT
- #include "../lib/RegisterTypes.cpp"
- #ifndef _MSC_VER
- #include <boost/thread/xtime.hpp>
- #endif
- extern bool end2;
- #ifdef min
- #undef min
- #endif
- #ifdef max
- #undef max
- #endif
- #define COMPLAIN_RET_IF(cond, txt) do {if(cond){complain(txt); return;}} while(0)
- #define COMPLAIN_RET(txt) {complain(txt); return false;}
- #define NEW_ROUND BattleNextRound bnr;\
- bnr.round = gs->curB->round + 1;\
- sendAndApply(&bnr);
- CondSh<bool> battleMadeAction;
- CondSh<BattleResult *> battleResult(NULL);
- std::ptrdiff_t randomizer (ptrdiff_t i) {return rand();}
- std::ptrdiff_t (*p_myrandom)(std::ptrdiff_t) = randomizer;
- template <typename T> class CApplyOnGH;
- class CBaseForGHApply
- {
- public:
- virtual bool applyOnGH(CGameHandler *gh, CConnection *c, void *pack) const =0;
- virtual ~CBaseForGHApply(){}
- template<typename U> static CBaseForGHApply *getApplier(const U * t=NULL)
- {
- return new CApplyOnGH<U>;
- }
- };
- template <typename T> class CApplyOnGH : public CBaseForGHApply
- {
- public:
- bool applyOnGH(CGameHandler *gh, CConnection *c, void *pack) const
- {
- T *ptr = static_cast<T*>(pack);
- ptr->c = c;
- return ptr->applyGh(gh);
- }
- };
- static CApplier<CBaseForGHApply> *applier = NULL;
- CMP_stack cmpst ;
- static inline double distance(int3 a, int3 b)
- {
- return std::sqrt( (double)(a.x-b.x)*(a.x-b.x) + (a.y-b.y)*(a.y-b.y) );
- }
- static void giveExp(BattleResult &r)
- {
- r.exp[0] = 0;
- r.exp[1] = 0;
- for(std::map<ui32,si32>::iterator i = r.casualties[!r.winner].begin(); i!=r.casualties[!r.winner].end(); i++)
- {
- r.exp[r.winner] += VLC->creh->creatures[i->first]->valOfBonuses(Bonus::STACK_HEALTH) * i->second;
- }
- }
- PlayerStatus PlayerStatuses::operator[](ui8 player)
- {
- boost::unique_lock<boost::mutex> l(mx);
- if(players.find(player) != players.end())
- {
- return players[player];
- }
- else
- {
- throw std::string("No such player!");
- }
- }
- void PlayerStatuses::addPlayer(ui8 player)
- {
- boost::unique_lock<boost::mutex> l(mx);
- players[player];
- }
- bool PlayerStatuses::hasQueries(ui8 player)
- {
- boost::unique_lock<boost::mutex> l(mx);
- if(players.find(player) != players.end())
- {
- return players[player].queries.size();
- }
- else
- {
- throw std::string("No such player!");
- }
- }
- bool PlayerStatuses::checkFlag(ui8 player, bool PlayerStatus::*flag)
- {
- boost::unique_lock<boost::mutex> l(mx);
- if(players.find(player) != players.end())
- {
- return players[player].*flag;
- }
- else
- {
- throw std::string("No such player!");
- }
- }
- void PlayerStatuses::setFlag(ui8 player, bool PlayerStatus::*flag, bool val)
- {
- boost::unique_lock<boost::mutex> l(mx);
- if(players.find(player) != players.end())
- {
- players[player].*flag = val;
- }
- else
- {
- throw std::string("No such player!");
- }
- cv.notify_all();
- }
- void PlayerStatuses::addQuery(ui8 player, ui32 id)
- {
- boost::unique_lock<boost::mutex> l(mx);
- if(players.find(player) != players.end())
- {
- players[player].queries.insert(id);
- }
- else
- {
- throw std::string("No such player!");
- }
- cv.notify_all();
- }
- void PlayerStatuses::removeQuery(ui8 player, ui32 id)
- {
- boost::unique_lock<boost::mutex> l(mx);
- if(players.find(player) != players.end())
- {
- players[player].queries.erase(id);
- }
- else
- {
- throw std::string("No such player!");
- }
- cv.notify_all();
- }
- template <typename T>
- void callWith(std::vector<T> args, boost::function<void(T)> fun, ui32 which)
- {
- fun(args[which]);
- }
- void CGameHandler::levelUpHero(int ID, int skill)
- {
- changeSecSkill(ID, skill, 1, 0);
- levelUpHero(ID);
- }
- void CGameHandler::levelUpHero(int ID)
- {
- CGHeroInstance *hero = static_cast<CGHeroInstance *>(gs->map->objects[ID].get());
- if (hero->battle)
- tlog1<<"Battle found\n";
- if (hero->exp < VLC->heroh->reqExp(hero->level+1)) // no more level-ups
- return;
-
- //give prim skill
- tlog5 << hero->name <<" got level "<<hero->level<<std::endl;
- int r = rand()%100, pom=0, x=0;
- int std::pair<int,int>::*g = (hero->level>9) ? (&std::pair<int,int>::second) : (&std::pair<int,int>::first);
- for(;x<PRIMARY_SKILLS;x++)
- {
- pom += hero->type->heroClass->primChance[x].*g;
- if(r<pom)
- break;
- }
- tlog5 << "Bohater dostaje umiejetnosc pierwszorzedna " << x << " (wynik losowania "<<r<<")"<<std::endl;
- SetPrimSkill sps;
- sps.id = ID;
- sps.which = x;
- sps.abs = false;
- sps.val = 1;
- sendAndApply(&sps);
- HeroLevelUp hlu;
- hlu.heroid = ID;
- hlu.primskill = x;
- hlu.level = hero->level+1;
- //picking sec. skills for choice
- std::set<int> basicAndAdv, expert, none;
- for(int i=0;i<SKILL_QUANTITY;i++)
- if (isAllowed(2,i))
- none.insert(i);
- for(unsigned i=0;i<hero->secSkills.size();i++)
- {
- if(hero->secSkills[i].second < 3)
- basicAndAdv.insert(hero->secSkills[i].first);
- else
- expert.insert(hero->secSkills[i].first);
- none.erase(hero->secSkills[i].first);
- }
- //first offered skill
- if(basicAndAdv.size())
- {
- int s = hero->type->heroClass->chooseSecSkill(basicAndAdv);//upgrade existing
- hlu.skills.push_back(s);
- basicAndAdv.erase(s);
- }
- else if(none.size() && hero->secSkills.size() < hero->type->heroClass->skillLimit)
- {
- hlu.skills.push_back(hero->type->heroClass->chooseSecSkill(none)); //give new skill
- none.erase(hlu.skills.back());
- }
- //second offered skill
- if(none.size() && hero->secSkills.size() < hero->type->heroClass->skillLimit) //hero have free skill slot
- {
- hlu.skills.push_back(hero->type->heroClass->chooseSecSkill(none)); //new skill
- }
- else if(basicAndAdv.size())
- {
- hlu.skills.push_back(hero->type->heroClass->chooseSecSkill(basicAndAdv)); //upgrade existing
- }
- if(hlu.skills.size() > 1) //apply and ask for secondary skill
- {
- 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));
- applyAndAsk(&hlu,hero->tempOwner,callback); //call levelUpHero when client responds
- }
- else if(hlu.skills.size() == 1) //apply, give only possible skill and send info
- {
- sendAndApply(&hlu);
- levelUpHero(ID, hlu.skills.back());
- }
- else //apply and send info
- {
- sendAndApply(&hlu);
- levelUpHero(ID);
- }
- }
- void CGameHandler::changePrimSkill(int ID, int which, si64 val, bool abs)
- {
- SetPrimSkill sps;
- sps.id = ID;
- sps.which = which;
- sps.abs = abs;
- sps.val = val;
- sendAndApply(&sps);
- if(which==4) //only for exp - hero may level up
- {
- //TODO: Stack Experience only after battle
- levelUpHero(ID);
- //TODO: Commander
- }
- }
- void CGameHandler::changeSecSkill( int ID, int which, int val, bool abs/*=false*/ )
- {
- SetSecSkill sss;
- sss.id = ID;
- sss.which = which;
- sss.val = val;
- sss.abs = abs;
- sendAndApply(&sss);
- if(which == 7) //Wisdom
- {
- const CGHeroInstance *h = getHero(ID);
- if(h && h->visitedTown)
- giveSpells(h->visitedTown, h);
- }
- }
- void CGameHandler::startBattle( const CArmedInstance *armies[2], int3 tile, const CGHeroInstance *heroes[2], bool creatureBank, boost::function<void(BattleResult*)> cb, const CGTownInstance *town /*= NULL*/ )
- {
- battleEndCallback = new boost::function<void(BattleResult*)>(cb);
- {
- setupBattle(tile, armies, heroes, creatureBank, town); //initializes stacks, places creatures on battlefield, blocks and informs player interfaces
- }
- runBattle();
- }
- void CGameHandler::endBattle(int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2)
- {
- bool duel = gs->initialOpts->mode == StartInfo::DUEL;
- BattleResultsApplied resultsApplied;
- const CArmedInstance *bEndArmy1 = gs->curB->belligerents[0];
- const CArmedInstance *bEndArmy2 = gs->curB->belligerents[1];
- resultsApplied.player1 = bEndArmy1->tempOwner;
- resultsApplied.player2 = bEndArmy2->tempOwner;
- const CGHeroInstance *victoriousHero = gs->curB->heroes[battleResult.data->winner];
- if(!duel)
- {
- //unblock engaged players
- if(bEndArmy1->tempOwner<PLAYER_LIMIT)
- states.setFlag(bEndArmy1->tempOwner, &PlayerStatus::engagedIntoBattle, false);
- if(bEndArmy2 && bEndArmy2->tempOwner<PLAYER_LIMIT)
- states.setFlag(bEndArmy2->tempOwner, &PlayerStatus::engagedIntoBattle, false);
- }
- //end battle, remove all info, free memory
- giveExp(*battleResult.data);
- if (hero1)
- battleResult.data->exp[0] = hero1->calculateXp(battleResult.data->exp[0]);//scholar skill
- if (hero2)
- battleResult.data->exp[1] = hero2->calculateXp(battleResult.data->exp[1]);
- ui8 sides[2];
- for(int i=0; i<2; ++i)
- {
- sides[i] = gs->curB->sides[i];
- }
- ui8 loser = sides[!battleResult.data->winner];
- CasualtiesAfterBattle cab1(bEndArmy1, gs->curB), cab2(bEndArmy2, gs->curB); //calculate casualties before deleting battle
- ChangeSpells cs; //for Eagle Eye
- if(victoriousHero)
- {
- if(int eagleEyeLevel = victoriousHero->getSecSkillLevel(CGHeroInstance::EAGLE_EYE))
- {
- int maxLevel = eagleEyeLevel + 1;
- double eagleEyeChance = victoriousHero->valOfBonuses(Bonus::SECONDARY_SKILL_PREMY, CGHeroInstance::EAGLE_EYE);
- BOOST_FOREACH(const CSpell *sp, gs->curB->usedSpellsHistory[!battleResult.data->winner])
- if(sp->level <= maxLevel && !vstd::contains(victoriousHero->spells, sp->id) && rand() % 100 < eagleEyeChance)
- cs.spells.insert(sp->id);
- }
- }
- sendAndApply(battleResult.data);
- //Eagle Eye secondary skill handling
- if(cs.spells.size())
- {
- cs.learn = 1;
- cs.hid = victoriousHero->id;
- InfoWindow iw;
- iw.player = victoriousHero->tempOwner;
- iw.text.addTxt(MetaString::GENERAL_TXT, 221); //Through eagle-eyed observation, %s is able to learn %s
- iw.text.addReplacement(victoriousHero->name);
- std::ostringstream names;
- for(int i = 0; i < cs.spells.size(); i++)
- {
- names << "%s";
- if(i < cs.spells.size() - 2)
- names << ", ";
- else if(i < cs.spells.size() - 1)
- names << "%s";
- }
- names << ".";
- iw.text.addReplacement(names.str());
- std::set<ui32>::iterator it = cs.spells.begin();
- for(int i = 0; i < cs.spells.size(); i++, it++)
- {
- iw.text.addReplacement(MetaString::SPELL_NAME, *it);
- if(i == cs.spells.size() - 2) //we just added pre-last name
- iw.text.addReplacement(MetaString::GENERAL_TXT, 141); // " and "
- iw.components.push_back(Component(Component::SPELL, *it, 0, 0));
- }
- sendAndApply(&iw);
- sendAndApply(&cs);
- }
- if(!duel)
- {
- cab1.takeFromArmy(this); cab2.takeFromArmy(this); //take casualties after battle is deleted
- //if one hero has lost we will erase him
- if(battleResult.data->winner!=0 && hero1)
- {
- RemoveObject ro(hero1->id);
- sendAndApply(&ro);
- }
- if(battleResult.data->winner!=1 && hero2)
- {
- RemoveObject ro(hero2->id);
- sendAndApply(&ro);
- }
- //give exp
- if(battleResult.data->exp[0] && hero1)
- changePrimSkill(hero1->id,4,battleResult.data->exp[0]);
- if(battleResult.data->exp[1] && hero2)
- changePrimSkill(hero2->id,4,battleResult.data->exp[1]);
- }
- sendAndApply(&resultsApplied);
- if(battleEndCallback && *battleEndCallback) //TODO: object interaction after level dialog is handled
- {
- (*battleEndCallback)(battleResult.data);
- delete battleEndCallback;
- battleEndCallback = 0;
- }
- if(duel)
- {
- CSaveFile resultFile("result.vdrst");
- resultFile << *battleResult.data;
- return;
- }
- // Necromancy if applicable.
- const CGHeroInstance *winnerHero = battleResult.data->winner != 0 ? hero2 : hero1;
- const CGHeroInstance *loserHero = battleResult.data->winner != 0 ? hero1 : hero2;
- if (winnerHero)
- {
- CStackBasicDescriptor raisedStack = winnerHero->calculateNecromancy(*battleResult.data);
- // Give raised units to winner and show dialog, if any were raised.
- if (raisedStack.type)
- {
- TSlot slot = winnerHero->getSlotFor(raisedStack.type);
- if (slot != -1)
- {
- winnerHero->showNecromancyDialog(raisedStack);
- addToSlot(StackLocation(winnerHero, slot), raisedStack.type, raisedStack.count);
- }
- }
- }
- if(visitObjectAfterVictory && winnerHero == hero1)
- {
- visitObjectOnTile(*getTile(winnerHero->getPosition()), winnerHero);
- }
- visitObjectAfterVictory = false;
- winLoseHandle(1<<sides[0] | 1<<sides[1]); //handle victory/loss of engaged players
- int result = battleResult.get()->result;
- if(result == 1 || result == 2) //loser has escaped or surrendered
- {
- SetAvailableHeroes sah;
- sah.player = loser;
- sah.hid[0] = loserHero->subID;
- if(result == 1) //retreat
- {
- sah.army[0].clear();
- sah.army[0].setCreature(0, VLC->creh->nameToID[loserHero->type->refTypeStack[0]],1);
- }
- if(const CGHeroInstance *another = getPlayer(loser)->availableHeroes[1])
- sah.hid[1] = another->subID;
- else
- sah.hid[1] = -1;
- sendAndApply(&sah);
- }
- delete battleResult.data;
- }
- void CGameHandler::prepareAttack(BattleAttack &bat, const CStack *att, const CStack *def, int distance)
- {
- bat.bsa.clear();
- bat.stackAttacking = att->ID;
- bat.bsa.push_back(BattleStackAttacked());
- BattleStackAttacked *bsa = &bat.bsa.back();
- bsa->stackAttacked = def->ID;
- bsa->attackerID = att->ID;
- int attackerLuck = att->LuckVal();
- const CGHeroInstance * h0 = gs->curB->heroes[0],
- * h1 = gs->curB->heroes[1];
- bool noLuck = false;
- if(h0 && NBonus::hasOfType(h0, Bonus::BLOCK_LUCK) ||
- h1 && NBonus::hasOfType(h1, Bonus::BLOCK_LUCK))
- {
- noLuck = true;
- }
- if(!noLuck && attackerLuck > 0 && rand()%24 < attackerLuck) //TODO?: negative luck option?
- {
- bat.flags |= BattleAttack::LUCKY;
- }
- if(att->getCreature()->idNumber == 146)
- {
- static const int artilleryLvlToChance[] = {0, 50, 75, 100};
- const CGHeroInstance * owner = gs->curB->getHero(att->owner);
- int chance = artilleryLvlToChance[owner->getSecSkillLevel(CGHeroInstance::ARTILLERY)];
- if(chance > rand() % 100)
- {
- bat.flags |= BattleAttack::BALLISTA_DOUBLE_DMG;
- }
- }
- bsa->damageAmount = gs->curB->calculateDmg(att, def, gs->curB->battleGetOwner(att), gs->curB->battleGetOwner(def), bat.shot(), distance, bat.lucky(), bat.ballistaDoubleDmg());//counting dealt damage
-
-
- int dmg = bsa->damageAmount;
- def->prepareAttacked(*bsa);
- //life drain handling
- if (att->hasBonusOfType(Bonus::LIFE_DRAIN))
- {
- StacksHealedOrResurrected shi;
- shi.lifeDrain = true;
- shi.drainedFrom = def->ID;
- StacksHealedOrResurrected::HealInfo hi;
- hi.stackID = att->ID;
- hi.healedHP = std::min<int>(dmg, att->MaxHealth() - att->firstHPleft + att->MaxHealth() * (att->baseAmount - att->count) );
- hi.lowLevelResurrection = false;
- shi.healedStacks.push_back(hi);
- if (hi.healedHP > 0)
- {
- bsa->healedStacks.push_back(shi);
- }
- }
- else
- {
- }
- //fire shield handling
- if ( !bat.shot() && def->hasBonusOfType(Bonus::FIRE_SHIELD) && !bsa->killed() )
- {
- bat.bsa.push_back(BattleStackAttacked());
- BattleStackAttacked *bsa = &bat.bsa.back();
- bsa->stackAttacked = att->ID;
- bsa->attackerID = def->ID;
- bsa->flags |= BattleStackAttacked::EFFECT;
- bsa->effect = 11;
- bsa->damageAmount = (dmg * def->valOfBonuses(Bonus::FIRE_SHIELD)) / 100;
- att->prepareAttacked(*bsa);
- }
- }
- void CGameHandler::handleConnection(std::set<int> players, CConnection &c)
- {
- setThreadName(-1, "CGameHandler::handleConnection");
- srand(time(NULL));
- CPack *pack = NULL;
- try
- {
- while(1)//server should never shut connection first //was: while(!end2)
- {
- {
- boost::unique_lock<boost::mutex> lock(*c.rmx);
- c >> pack; //get the package
- tlog5 << "Received client message of type " << typeid(*pack).name() << std::endl;
- }
- int packType = typeList.getTypeID(pack); //get the id of type
- CBaseForGHApply *apply = applier->apps[packType]; //and appropriae applier object
- if(apply)
- {
- bool result = apply->applyOnGH(this,&c,pack);
- tlog5 << "Message successfully applied (result=" << result << ")!\n";
- //send confirmation that we've applied the package
- if(pack->type != 6000) //WORKAROUND - not confirm query replies TODO: reconsider
- {
- PackageApplied applied;
- applied.result = result;
- applied.packType = packType;
- {
- boost::unique_lock<boost::mutex> lock(*c.wmx);
- c << &applied;
- }
- }
- }
- else
- {
- tlog1 << "Message cannot be applied, cannot find applier (unregistered type)!\n";
- }
- delete pack;
- pack = NULL;
- }
- }
- catch(boost::system::system_error &e) //for boost errors just log, not crash - probably client shut down connection
- {
- assert(!c.connected); //make sure that connection has been marked as broken
- tlog1 << e.what() << std::endl;
- end2 = true;
- }
- HANDLE_EXCEPTION(end2 = true);
- tlog1 << "Ended handling connection\n";
- }
- int CGameHandler::moveStack(int stack, THex dest)
- {
- int ret = 0;
- CStack *curStack = gs->curB->getStack(stack),
- *stackAtEnd = gs->curB->getStackT(dest);
- assert(curStack);
- assert(dest < BFIELD_SIZE);
- if (gs->curB->tacticDistance)
- {
- assert(gs->curB->isInTacticRange(dest));
- }
- //initing necessary tables
- bool accessibility[BFIELD_SIZE];
- std::vector<THex> accessible = gs->curB->getAccessibility(curStack, false);
- for(int b=0; b<BFIELD_SIZE; ++b)
- {
- accessibility[b] = false;
- }
- for(int g=0; g<accessible.size(); ++g)
- {
- accessibility[accessible[g]] = true;
- }
- //shifting destination (if we have double wide stack and we can occupy dest but not be exactly there)
- if(!stackAtEnd && curStack->doubleWide() && !accessibility[dest])
- {
- if(curStack->attackerOwned)
- {
- if(accessibility[dest+1])
- dest += THex::RIGHT;
- }
- else
- {
- if(accessibility[dest-1])
- dest += THex::LEFT;
- }
- }
- if((stackAtEnd && stackAtEnd!=curStack && stackAtEnd->alive()) || !accessibility[dest])
- return 0;
- bool accessibilityWithOccupyable[BFIELD_SIZE];
- std::vector<THex> accOc = gs->curB->getAccessibility(curStack, true);
- for(int b=0; b<BFIELD_SIZE; ++b)
- {
- accessibilityWithOccupyable[b] = false;
- }
- for(int g=0; g<accOc.size(); ++g)
- {
- accessibilityWithOccupyable[accOc[g]] = true;
- }
- //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
- // return false;
- std::pair< std::vector<THex>, int > path = gs->curB->getPath(curStack->position, dest, accessibilityWithOccupyable, curStack->hasBonusOfType(Bonus::FLYING), curStack->doubleWide(), curStack->attackerOwned);
- ret = path.second;
- int creSpeed = gs->curB->tacticDistance ? BFIELD_SIZE : curStack->Speed();
- if(curStack->hasBonusOfType(Bonus::FLYING))
- {
- if(path.second <= creSpeed && path.first.size() > 0)
- {
- //inform clients about move
- BattleStackMoved sm;
- sm.stack = curStack->ID;
- sm.tile = path.first[0];
- sm.distance = path.second;
- sm.ending = true;
- sm.teleporting = false;
- sendAndApply(&sm);
- }
- }
- else //for non-flying creatures
- {
- int tilesToMove = std::max((int)(path.first.size() - creSpeed), 0);
- for(int v=path.first.size()-1; v>=tilesToMove; --v)
- {
- //inform clients about move
- BattleStackMoved sm;
- sm.stack = curStack->ID;
- sm.tile = path.first[v];
- sm.distance = path.second;
- sm.ending = v==tilesToMove;
- sm.teleporting = false;
- sendAndApply(&sm);
- }
- }
- return ret;
- }
- CGameHandler::CGameHandler(void)
- {
- QID = 1;
- //gs = NULL;
- IObjectInterface::cb = this;
- applier = new CApplier<CBaseForGHApply>;
- registerTypes3(*applier);
- visitObjectAfterVictory = false;
- battleEndCallback = NULL;
- }
- CGameHandler::~CGameHandler(void)
- {
- delete applier;
- applier = NULL;
- delete gs;
- }
- void CGameHandler::init(StartInfo *si, int Seed)
- {
- gs = new CGameState();
- tlog0 << "Gamestate created!" << std::endl;
- gs->init(si, 0, Seed);
- tlog0 << "Gamestate initialized!" << std::endl;
- for(std::map<ui8,PlayerState>::iterator i = gs->players.begin(); i != gs->players.end(); i++)
- states.addPlayer(i->first);
- }
- static bool evntCmp(const CMapEvent *a, const CMapEvent *b)
- {
- return *a < *b;
- }
- void CGameHandler::setPortalDwelling(const CGTownInstance * town, bool forced=false, bool clear = false)
- {// bool forced = true - if creature should be replaced, if false - only if no creature was set
- const PlayerState *p = gs->getPlayer(town->tempOwner);
- if(!p)
- {
- tlog3 << "There is no player owner of town " << town->name << " at " << town->pos << std::endl;
- return;
- }
- if (forced || town->creatures[CREATURES_PER_TOWN].second.empty())//we need to change creature
- {
- SetAvailableCreatures ssi;
- ssi.tid = town->id;
- ssi.creatures = town->creatures;
- ssi.creatures[CREATURES_PER_TOWN].second.clear();//remove old one
-
- const std::vector<ConstTransitivePtr<CGDwelling> > &dwellings = p->dwellings;
- if (dwellings.empty())//no dwellings - just remove
- {
- sendAndApply(&ssi);
- return;
- }
-
- ui32 dwellpos = rand()%dwellings.size();//take random dwelling
- ui32 creapos = rand()%dwellings[dwellpos]->creatures.size();//for multi-creature dwellings like Golem Factory
- ui32 creature = dwellings[dwellpos]->creatures[creapos].second[0];
-
- if (clear)
- ssi.creatures[CREATURES_PER_TOWN].first = std::max((ui32)1, (VLC->creh->creatures[creature]->growth)/2);
- else
- ssi.creatures[CREATURES_PER_TOWN].first = VLC->creh->creatures[creature]->growth;
- ssi.creatures[CREATURES_PER_TOWN].second.push_back(creature);
- sendAndApply(&ssi);
- }
- }
- void CGameHandler::newTurn()
- {
- tlog5 << "Turn " << gs->day+1 << std::endl;
- NewTurn n;
- n.creatureid = -1;
- n.day = gs->day + 1;
- n.resetBuilded = true;
- bool newmonth = false;
-
- std::map<ui8, si32> hadGold;//starting gold - for buildings like dwarven treasury
- srand(time(NULL));
- if (getDate(1) == 7 && getDate(0)>1) //new week (day numbers are confusing, as day was not yet switched)
- {
- int monthType = rand()%100;
- if(getDate(4) == 28) //new month
- {
- newmonth = true;
- if (monthType < 40) //double growth
- {
- n.specialWeek = NewTurn::DOUBLE_GROWTH;
- if (ALLCREATURESGETDOUBLEMONTHS)
- {
- std::pair<int,int> newMonster(54, VLC->creh->pickRandomMonster(boost::ref(rand)));
- n.creatureid = newMonster.second;
- }
- else
- {
- std::set<TCreature>::const_iterator it = VLC->creh->doubledCreatures.begin();
- std::advance (it, rand() % VLC->creh->doubledCreatures.size()); //picking random elelemnt of set is tiring
- n.creatureid = *it;
- }
- }
- else if (monthType < 90)
- n.specialWeek = NewTurn::NORMAL;
- else
- n.specialWeek = NewTurn::PLAGUE;
- }
- else //it's a week, but not full month
- {
- newmonth = false;
- if (monthType < 25)
- {
- n.specialWeek = NewTurn::BONUS_GROWTH; //+5
- std::pair<int,int> newMonster (54, VLC->creh->pickRandomMonster(boost::ref(rand)));
- n.creatureid = newMonster.second;
- }
- else
- n.specialWeek = NewTurn::NORMAL;
- }
- }
- else
- n.specialWeek = NewTurn::NO_ACTION; //don't remove bonuses
- bmap<ui32, ConstTransitivePtr<CGHeroInstance> > pool = gs->hpool.heroesPool;
- for ( std::map<ui8, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end();i++)
- {
- if(i->first == 255)
- continue;
- else if(i->first >= PLAYER_LIMIT)
- assert(0); //illegal player number!
- std::pair<ui8,si32> playerGold(i->first,i->second.resources[6]);
- hadGold.insert(playerGold);
- if(gs->getDate(1)==7) //first day of week - new heroes in tavern
- {
- SetAvailableHeroes sah;
- sah.player = i->first;
- //pick heroes and their armies
- CHeroClass *banned = NULL;
- for (int j = 0; j < AVAILABLE_HEROES_PER_PLAYER; j++)
- {
- 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
- {
- sah.hid[j] = h->subID;
- h->initArmy(&sah.army[j]);
- banned = h->type->heroClass;
- }
- else
- sah.hid[j] = -1;
- }
- sendAndApply(&sah);
- }
- n.res[i->first] = i->second.resources;
- // SetResources r;
- // r.player = i->first;
- // for(int j=0;j<RESOURCE_QUANTITY;j++)
- // r.res[j] = i->second.resources[j];
-
- BOOST_FOREACH(CGHeroInstance *h, (*i).second.heroes)
- {
- if(h->visitedTown)
- giveSpells(h->visitedTown, h);
- NewTurn::Hero hth;
- hth.id = h->id;
- hth.move = h->maxMovePoints(gs->map->getTile(h->getPosition(false)).tertype != TerrainTile::water);
- if(h->visitedTown && vstd::contains(h->visitedTown->builtBuildings,0)) //if hero starts turn in town with mage guild
- hth.mana = std::max(h->mana, h->manaLimit()); //restore all mana
- else
- hth.mana = std::max(si32(0), std::max(h->mana, std::min(h->mana + h->manaRegain(), h->manaLimit())) );
- n.heroes.insert(hth);
-
- if(gs->day) //not first day
- {
- n.res[i->first][6] += h->valOfBonuses(Selector::typeSybtype(Bonus::SECONDARY_SKILL, 13)); //estates
- for (int k = 0; k < RESOURCE_QUANTITY; k++)
- {
- n.res[i->first][k] += h->valOfBonuses(Bonus::GENERATE_RESOURCE, k);
- }
- }
- }
- //n.res.push_back(r);
- }
- // townID, creatureID, amount
- std::map<si32, std::map<si32, si32> > newCreas;//creatures that needs to be added by town events
-
- for(std::vector<ConstTransitivePtr<CGTownInstance> >::iterator j = gs->map->towns.begin(); j!=gs->map->towns.end(); j++)//handle towns
- {
- ui8 player = (*j)->tempOwner;
- if(gs->getDate(1)==7) //first day of week
- {
- if ((*j)->subID == 5 && vstd::contains((*j)->builtBuildings, 22))
- setPortalDwelling(*j, true, (n.specialWeek == NewTurn::PLAGUE ? true : false)); //set creatures for Portal of Summoning
- if ((**j).subID == 1 && gs->getDate(0) && player < PLAYER_LIMIT && vstd::contains((**j).builtBuildings, 22))//dwarven treasury
- n.res[player][6] += hadGold[player]/10; //give 10% of starting gold
- }
- if(gs->day && player < PLAYER_LIMIT)//not the first day and town not neutral
- {
- ////SetResources r;
- //r.player = (**j).tempOwner;
- if(vstd::contains((**j).builtBuildings,15)) //there is resource silo
- {
- if((**j).town->primaryRes == 127) //we'll give wood and ore
- {
- n.res[player][0] += 1;
- n.res[player][2] += 1;
- }
- else
- {
- n.res[player][(**j).town->primaryRes] += 1;
- }
- }
- n.res[player][6] += (**j).dailyIncome();
- }
- handleTownEvents(*j, n, newCreas);
- if (vstd::contains((**j).builtBuildings, 26))
- {
- switch ((**j).subID)
- {
- case 2: // Skyship, probably easier to handle same as Veil of darkness
- { //do it every new day after veils apply
- FoWChange fw;
- fw.mode = 1;
- fw.player = player;
- getAllTiles(fw.tiles, player, -1, 0);
- sendAndApply (&fw);
- }
- break;
- case 3: //Deity of Fire
- {
- if (getDate(0) > 1)
- {
- n.specialWeek = NewTurn::DEITYOFFIRE; //spawn familiars on new month
- n.creatureid = 42; //familiar
- }
- }
- break;
- }
- }
- if ((**j).hasBonusOfType (Bonus::DARKNESS))
- {
- (**j).hideTiles((**j).getOwner(), (**j).getBonus(Selector::type(Bonus::DARKNESS))->val);
- }
- //unhiding what shouldn't be hidden? //that's handled in netpacks client
- }
- if(getDate(2) == 1) //first week
- {
- SetAvailableArtifacts saa;
- saa.id = -1;
- pickAllowedArtsSet(saa.arts);
- sendAndApply(&saa);
- }
- sendAndApply(&n);
- if (gs->getDate(1)==1) //first day of week, day has already been changed
- {
- if (getDate(4) == 1 && (n.specialWeek == NewTurn::DOUBLE_GROWTH || n.specialWeek == NewTurn::DEITYOFFIRE))
- { //spawn wandering monsters
- std::vector<int3>::iterator tile;
- std::vector<int3> tiles;
- getFreeTiles(tiles);
- ui32 amount = (tiles.size()) >> 6;
- std::random_shuffle(tiles.begin(), tiles.end(), p_myrandom);
- for (int i = 0; i < amount; ++i)
- {
- tile = tiles.begin();
- putNewMonster(n.creatureid, VLC->creh->creatures[n.creatureid]->getRandomAmount(std::rand), *tile);
- tiles.erase(tile); //not use it again
- }
- }
- NewTurn n2; //just to handle creature growths after bonuses are applied
- n2.specialWeek = NewTurn::NO_ACTION;
- n2.day = gs->day;
- n2.resetBuilded = true;
- for(std::vector<ConstTransitivePtr<CGTownInstance> >::iterator j = gs->map->towns.begin(); j!=gs->map->towns.end(); j++)//handle towns
- {
- SetAvailableCreatures sac;
- sac.tid = (**j).id;
- sac.creatures = (**j).creatures;
- for (int k=0; k < CREATURES_PER_TOWN; k++) //creature growths
- {
- if((**j).creatureDwelling(k))//there is dwelling (k-level)
- {
- if (n.specialWeek == NewTurn::PLAGUE)
- sac.creatures[k].first = (**j).creatures[k].first / 2; //halve their number, no growth
- else
- {
- sac.creatures[k].first += (**j).creatureGrowth(k);
- if(gs->getDate(0) == 1) //first day of game: use only basic growths
- amin(sac.creatures[k].first, VLC->creh->creatures[(*j)->town->basicCreatures[k]]->growth);
- }
- }
- }
- //creatures from town events
- if (vstd::contains(newCreas, (**j).id))
- for(std::map<si32, si32>::iterator i=newCreas[(**j).id].begin() ; i!=newCreas[(**j).id].end(); i++)
- sac.creatures[i->first].first += i->second;
-
- n2.cres.push_back(sac);
- }
- if (gs->getDate(0) > 1)
- {
- InfoWindow iw; //new week info
- switch (n.specialWeek)
- {
- case NewTurn::DOUBLE_GROWTH:
- iw.text.addTxt(MetaString::ARRAY_TXT, 131);
- iw.text.addReplacement(MetaString::CRE_SING_NAMES, n.creatureid);
- iw.text.addReplacement(MetaString::CRE_SING_NAMES, n.creatureid);
- break;
- case NewTurn::PLAGUE:
- iw.text.addTxt(MetaString::ARRAY_TXT, 132);
- break;
- case NewTurn::BONUS_GROWTH:
- iw.text.addTxt(MetaString::ARRAY_TXT, 134);
- iw.text.addReplacement(MetaString::CRE_SING_NAMES, n.creatureid);
- iw.text.addReplacement(MetaString::CRE_SING_NAMES, n.creatureid);
- break;
- case NewTurn::DEITYOFFIRE:
- iw.text.addTxt(MetaString::ARRAY_TXT, 135);
- iw.text.addReplacement(MetaString::CRE_SING_NAMES, 42); //%s imp
- iw.text.addReplacement(MetaString::CRE_SING_NAMES, 42); //%s imp
- iw.text.addReplacement2(15); //%+d 15
- iw.text.addReplacement(MetaString::CRE_SING_NAMES, 43); //%s familiar
- iw.text.addReplacement2(15); //%+d 15
- break;
- default:
- iw.text.addTxt(MetaString::ARRAY_TXT, (newmonth ? 130 : 133));
- iw.text.addReplacement(MetaString::ARRAY_TXT, 43 + rand()%15);
- }
- for (std::map<ui8, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end(); i++)
- {
- iw.player = i->first;
- sendAndApply(&iw);
- }
- }
- sendAndApply(&n2);
- }
- tlog5 << "Info about turn " << n.day << "has been sent!" << std::endl;
- handleTimeEvents();
- //call objects
- for(size_t i = 0; i<gs->map->objects.size(); i++)
- {
- if(gs->map->objects[i])
- gs->map->objects[i]->newTurn();
- }
- winLoseHandle(0xff);
- //warn players without town
- if(gs->day)
- {
- for (std::map<ui8, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end();i++)
- {
- if(i->second.status || i->second.towns.size() || i->second.color >= PLAYER_LIMIT)
- continue;
- InfoWindow iw;
- iw.player = i->first;
- iw.components.push_back(Component(Component::FLAG,i->first,0,0));
- if(!i->second.daysWithoutCastle)
- {
- 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.
- iw.text.addReplacement(MetaString::COLOR, i->first);
- }
- else if(i->second.daysWithoutCastle == 6)
- {
- 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.
- iw.text.addReplacement(MetaString::COLOR, i->first);
- }
- else
- {
- 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.
- iw.text.addReplacement(MetaString::COLOR, i->first);
- iw.text.addReplacement(7 - i->second.daysWithoutCastle);
- }
- sendAndApply(&iw);
- }
- }
- }
- void CGameHandler::run(bool resume)
- {
- using namespace boost::posix_time;
- BOOST_FOREACH(CConnection *cc, conns)
- {//init conn.
- ui32 quantity;
- ui8 pom;
- //ui32 seed;
- if(!resume)
- {
- ui32 sum = gs->map ? gs->map->checksum : 612;
- (*cc) << gs->initialOpts << sum << gs->seed; // gs->scenarioOps
- }
- (*cc) >> quantity; //how many players will be handled at that client
- tlog0 << "Connection " << cc->connectionID << " will handle " << quantity << " player: ";
- for(int i=0;i<quantity;i++)
- {
- (*cc) >> pom; //read player color
- tlog0 << (int)pom << " ";
- {
- boost::unique_lock<boost::recursive_mutex> lock(gsm);
- connections[pom] = cc;
- }
- }
- tlog0 << std::endl;
- }
-
- for(std::set<CConnection*>::iterator i = conns.begin(); i!=conns.end();i++)
- {
- std::set<int> pom;
- for(std::map<int,CConnection*>::iterator j = connections.begin(); j!=connections.end();j++)
- if(j->second == *i)
- pom.insert(j->first);
- boost::thread(boost::bind(&CGameHandler::handleConnection,this,pom,boost::ref(**i)));
- }
- if(gs->scenarioOps->mode == StartInfo::DUEL)
- {
- runBattle();
- return;
- }
- while (!end2)
- {
- if(!resume)
- newTurn();
- std::map<ui8,PlayerState>::iterator i;
- if(!resume)
- i = gs->players.begin();
- else
- i = gs->players.find(gs->currentPlayer);
- resume = false;
- for(; i != gs->players.end(); i++)
- {
- if((i->second.towns.size()==0 && i->second.heroes.size()==0)
- || i->second.color<0
- || i->first>=PLAYER_LIMIT
- || i->second.status)
- {
- continue;
- }
- states.setFlag(i->first,&PlayerStatus::makingTurn,true);
- {
- YourTurn yt;
- yt.player = i->first;
- sendAndApply(&yt);
- }
- //wait till turn is done
- boost::unique_lock<boost::mutex> lock(states.mx);
- while(states.players[i->first].makingTurn && !end2)
- {
- static time_duration p = milliseconds(200);
- states.cv.timed_wait(lock,p);
- }
- }
- }
- while(conns.size() && (*conns.begin())->isOpen())
- boost::this_thread::sleep(boost::posix_time::milliseconds(5)); //give time client to close socket
- }
- //namespace CGH
- //{
- // using namespace std;
- // static void readItTo(ifstream & input, vector< vector<int> > & dest) //reads 7 lines, i-th one containing i integers, and puts it to dest
- // {
- // for(int j=0; j<7; ++j)
- // {
- // std::vector<int> pom;
- // for(int g=0; g<j+1; ++g)
- // {
- // int hlp; input>>hlp;
- // pom.push_back(hlp);
- // }
- // dest.push_back(pom);
- // }
- // }
- //}
- void CGameHandler::setupBattle( int3 tile, const CArmedInstance *armies[2], const CGHeroInstance *heroes[2], bool creatureBank, const CGTownInstance *town )
- {
- battleResult.set(NULL);
- //send info about battles
- BattleStart bs;
- bs.info = gs->setupBattle(tile, armies, heroes, creatureBank, town);
- sendAndApply(&bs);
- }
- void CGameHandler::checkForBattleEnd( std::vector<CStack*> &stacks )
- {
- //checking winning condition
- bool hasStack[2]; //hasStack[0] - true if attacker has a living stack; defender similarily
- hasStack[0] = hasStack[1] = false;
- for(int b = 0; b<stacks.size(); ++b)
- {
- if(stacks[b]->alive() && !stacks[b]->hasBonusOfType(Bonus::SIEGE_WEAPON))
- {
- hasStack[1-stacks[b]->attackerOwned] = true;
- }
- }
- if(!hasStack[0] || !hasStack[1]) //somebody has won
- {
- setBattleResult(0, hasStack[1]);
- }
- }
- void CGameHandler::giveSpells( const CGTownInstance *t, const CGHeroInstance *h )
- {
- if(!h->hasSpellbook())
- return; //hero hasn't spellbok
- ChangeSpells cs;
- cs.hid = h->id;
- cs.learn = true;
- for(int i=0; i<std::min(t->mageGuildLevel(),h->getSecSkillLevel(CGHeroInstance::WISDOM)+2);i++)
- {
- if (t->subID == 8 && vstd::contains(t->builtBuildings, 26)) //Aurora Borealis
- {
- std::vector<ui16> spells;
- getAllowedSpells(spells, i);
- for (int j = 0; j < spells.size(); ++j)
- cs.spells.insert(spells[j]);
- }
- else
- {
- for(int j=0; j<t->spellsAtLevel(i+1,true) && j<t->spells[i].size(); j++)
- {
- if(!vstd::contains(h->spells,t->spells[i][j]))
- cs.spells.insert(t->spells[i][j]);
- }
- }
- }
- if(cs.spells.size())
- sendAndApply(&cs);
- }
- void CGameHandler::setBlockVis(int objid, bool bv)
- {
- SetObjectProperty sop(objid,2,bv);
- sendAndApply(&sop);
- }
- bool CGameHandler::removeObject( int objid )
- {
- if(!getObj(objid))
- {
- tlog1 << "Something wrong, that object already has been removed or hasn't existed!\n";
- return false;
- }
- RemoveObject ro;
- ro.id = objid;
- sendAndApply(&ro);
- winLoseHandle(255); //eg if monster escaped (removing objs after battle is done dircetly by endBattle, not this function)
- return true;
- }
- void CGameHandler::setAmount(int objid, ui32 val)
- {
- SetObjectProperty sop(objid,3,val);
- sendAndApply(&sop);
- }
- bool CGameHandler::moveHero( si32 hid, int3 dst, ui8 instant, ui8 asker /*= 255*/ )
- {
- bool blockvis = false;
- const CGHeroInstance *h = getHero(hid);
- 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)
- )
- {
- tlog1 << "Illegal call to move hero!\n";
- return false;
- }
- tlog5 << "Player " <<int(asker) << " wants to move hero "<< hid << " from "<< h->pos << " to " << dst << std::endl;
- int3 hmpos = dst + int3(-1,0,0);
- if(!gs->map->isInTheMap(hmpos))
- {
- tlog1 << "Destination tile is outside the map!\n";
- return false;
- }
- TerrainTile t = gs->map->terrain[hmpos.x][hmpos.y][hmpos.z];
- int cost = gs->getMovementCost(h, h->getPosition(false), CGHeroInstance::convertPosition(dst,false),h->movement);
- int3 guardPos = gs->guardingCreaturePosition(hmpos);
- //result structure for start - movement failed, no move points used
- TryMoveHero tmh;
- tmh.id = hid;
- tmh.start = h->pos;
- tmh.end = dst;
- tmh.result = TryMoveHero::FAILED;
- tmh.movePoints = h->movement;
- //check if destination tile is available
- //it's a rock or blocked and not visitable tile
- //OR hero is on land and dest is water and (there is not present only one object - boat)
- if((t.tertype == TerrainTile::rock || (t.blocked && !t.visitable && !h->hasBonusOfType(Bonus::FLYING_MOVEMENT) ))
- && complain("Cannot move hero, destination tile is blocked!")
- || (!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)
- && complain("Cannot move hero, destination tile is on water!")
- || (h->boat && t.tertype != TerrainTile::water && t.blocked)
- && complain("Cannot disembark hero, tile is blocked!")
- || (h->movement < cost && dst != h->pos && !instant)
- && complain("Hero doesn't have any movement points left!")
- || states.checkFlag(h->tempOwner, &PlayerStatus::engagedIntoBattle)
- && complain("Cannot move hero during the battle"))
- {
- //send info about movement failure
- sendAndApply(&tmh);
- return false;
- }
- //hero enters the boat
- if(!h->boat && t.visitableObjects.size() && t.visitableObjects.back()->ID == 8)
- {
- tmh.result = TryMoveHero::EMBARK;
- tmh.movePoints = 0; //embarking takes all move points
- //TODO: check for bonus that removes that penalty
- getTilesInRange(tmh.fowRevealed,h->getSightCenter()+(tmh.end-tmh.start),h->getSightRadious(),h->tempOwner,1);
- sendAndApply(&tmh);
- return true;
- }
- //hero leaves the boat
- else if(h->boat && t.tertype != TerrainTile::water && !t.blocked)
- {
- tmh.result = TryMoveHero::DISEMBARK;
- tmh.movePoints = 0; //disembarking takes all move points
- //TODO: check for bonus that removes that penalty
- getTilesInRange(tmh.fowRevealed,h->getSightCenter()+(tmh.end-tmh.start),h->getSightRadious(),h->tempOwner,1);
- sendAndApply(&tmh);
- tryAttackingGuard(guardPos, h);
- return true;
- }
- //checks for standard movement
- if(!instant)
- {
- if( distance(h->pos,dst) >= 1.5 && complain("Tiles are not neighboring!")
- || h->movement < cost && h->movement < 100 && complain("Not enough move points!"))
- {
- sendAndApply(&tmh);
- return false;
- }
- //check if there is blocking visitable object
- blockvis = false;
- tmh.movePoints = std::max(si32(0),h->movement-cost); //take move points
- BOOST_FOREACH(CGObjectInstance *obj, t.visitableObjects)
- {
- if(obj != h && obj->blockVisit && !(obj->getPassableness() & 1<<h->tempOwner))
- {
- blockvis = true;
- break;
- }
- }
- //we start moving
- if(blockvis)//interaction with blocking object (like resources)
- {
- tmh.result = TryMoveHero::BLOCKING_VISIT;
- sendAndApply(&tmh);
- //failed to move to that tile but we visit object
- if(t.visitableObjects.size())
- objectVisited(t.visitableObjects.back(), h);
- tlog5 << "Blocking visit at " << hmpos << std::endl;
- return true;
- }
- else //normal move
- {
- BOOST_FOREACH(CGObjectInstance *obj, gs->map->terrain[h->pos.x-1][h->pos.y][h->pos.z].visitableObjects)
- {
- obj->onHeroLeave(h);
- }
- getTilesInRange(tmh.fowRevealed,h->getSightCenter()+(tmh.end-tmh.start),h->getSightRadious(),h->tempOwner,1);
- tmh.result = TryMoveHero::SUCCESS;
- tmh.attackedFrom = guardPos;
- sendAndApply(&tmh);
- tlog5 << "Moved to " <<tmh.end<<std::endl;
- // If a creature guards the tile, block visit.
- const bool fightingGuard = tryAttackingGuard(guardPos, h);
- if(!fightingGuard && t.visitableObjects.size()) //call objects if they are visited
- {
- visitObjectOnTile(t, h);
- }
- tlog5 << "Movement end!\n";
- return true;
- }
- }
- else //instant move - teleportation
- {
- BOOST_FOREACH(CGObjectInstance* obj, t.blockingObjects)
- {
- if(obj->ID==HEROI_TYPE)
- {
- CGHeroInstance *dh = static_cast<CGHeroInstance *>(obj);
- if( gameState()->getPlayerRelations(dh->tempOwner, h->tempOwner))
- {
- heroExchange(h->id, dh->id);
- return true;
- }
- startBattleI(h, dh);
- return true;
- }
- }
- tmh.result = TryMoveHero::TELEPORTATION;
- getTilesInRange(tmh.fowRevealed,h->getSightCenter()+(tmh.end-tmh.start),h->getSightRadious(),h->tempOwner,1);
- sendAndApply(&tmh);
- return true;
- }
- }
- bool CGameHandler::teleportHero(si32 hid, si32 dstid, ui8 source, ui8 asker/* = 255*/)
- {
- const CGHeroInstance *h = getHero(hid);
- const CGTownInstance *t = getTown(dstid);
-
- if ( !h || !t || h->getOwner() != gs->currentPlayer )
- tlog1<<"Invalid call to teleportHero!";
-
- const CGTownInstance *from = h->visitedTown;
- if((h->getOwner() != t->getOwner())
- && complain("Cannot teleport hero to another player")
- || (!from || from->subID!=3 || !vstd::contains(from->builtBuildings, 22))
- && complain("Hero must be in town with Castle gate for teleporting")
- || (t->subID!=3 || !vstd::contains(t->builtBuildings, 22))
- && complain("Cannot teleport hero to town without Castle gate in it"))
- return false;
- int3 pos = t->visitablePos();
- pos += h->getVisitableOffset();
- stopHeroVisitCastle(from->id, hid);
- moveHero(hid,pos,1);
- heroVisitCastle(dstid, hid);
- return true;
- }
- void CGameHandler::setOwner(int objid, ui8 owner)
- {
- ui8 oldOwner = getOwner(objid);
- SetObjectProperty sop(objid,1,owner);
- sendAndApply(&sop);
- winLoseHandle(1<<owner | 1<<oldOwner);
- if(owner < PLAYER_LIMIT && getTown(objid)) //town captured
- {
- const CGTownInstance * town = getTown(objid);
- if (town->subID == 5 && vstd::contains(town->builtBuildings, 22))
- setPortalDwelling(town, true, false);
-
- if (!gs->getPlayer(owner)->towns.size())//player lost last town
- {
- InfoWindow iw;
- iw.player = oldOwner;
- 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.
- sendAndApply(&iw);
- }
- }
-
- const CGObjectInstance * obj = getObj(objid);
- const PlayerState * p = gs->getPlayer(owner);
- if((obj->ID == 17 || obj->ID == 20 ) && p && p->dwellings.size()==1)//first dwelling captured
- BOOST_FOREACH(const CGTownInstance *t, gs->getPlayer(owner)->towns)
- if (t->subID == 5 && vstd::contains(t->builtBuildings, 22))
- setPortalDwelling(t);//set initial creatures for all portals of summoning
- }
- void CGameHandler::setHoverName(int objid, MetaString* name)
- {
- SetHoverName shn(objid, *name);
- sendAndApply(&shn);
- }
- void CGameHandler::showBlockingDialog( BlockingDialog *iw, const CFunctionList<void(ui32)> &callback )
- {
- ask(iw,iw->player,callback);
- }
- ui32 CGameHandler::showBlockingDialog( BlockingDialog *iw )
- {
- //TODO
- //gsm.lock();
- //int query = QID++;
- //states.addQuery(player,query);
- //sendToAllClients(iw);
- //gsm.unlock();
- //ui32 ret = getQueryResult(iw->player, query);
- //gsm.lock();
- //states.removeQuery(player, query);
- //gsm.unlock();
- return 0;
- }
- void CGameHandler::giveResource(int player, int which, int val)
- {
- if(!val) return; //don't waste time on empty call
- SetResource sr;
- sr.player = player;
- sr.resid = which;
- sr.val = gs->players.find(player)->second.resources[which] + val;
- sendAndApply(&sr);
- }
- void CGameHandler::giveCreatures(const CArmedInstance *obj, const CGHeroInstance * h, const CCreatureSet &creatures, bool remove)
- {
- boost::function<void()> removeOrNot = 0;
- if(remove)
- removeOrNot = boost::bind(&CGameHandler::removeObject, this, obj->id);
- COMPLAIN_RET_IF(!creatures.stacksCount(), "Strange, giveCreatures called without args!");
- COMPLAIN_RET_IF(obj->stacksCount(), "Cannot give creatures from not-cleared object!");
- COMPLAIN_RET_IF(creatures.stacksCount() > ARMY_SIZE, "Too many stacks to give!");
- //first we move creatures to give to make them army of object-source
- for (TSlots::const_iterator stack = creatures.Slots().begin(); stack != creatures.Slots().end(); stack++)
- {
- addToSlot(StackLocation(obj, obj->getSlotFor(stack->second->type)), stack->second->type, stack->second->count);
- }
- tryJoiningArmy(obj, h, remove, true);
- }
- void CGameHandler::takeCreatures(int objid, const std::vector<CStackBasicDescriptor> &creatures)
- {
- std::vector<CStackBasicDescriptor> cres = creatures;
- if (cres.size() <= 0)
- return;
- const CArmedInstance* obj = static_cast<const CArmedInstance*>(getObj(objid));
- BOOST_FOREACH(CStackBasicDescriptor &sbd, cres)
- {
- TQuantity collected = 0;
- while(collected < sbd.count)
- {
- TSlots::const_iterator i = obj->Slots().begin();
- for(; i != obj->Slots().end(); i++)
- {
- if(i->second->type == sbd.type)
- {
- TQuantity take = std::min(sbd.count - collected, i->second->count); //collect as much cres as we can
- changeStackCount(StackLocation(obj, i->first), take, false);
- collected += take;
- break;
- }
- }
- if(i == obj->Slots().end()) //we went through the whole loop and haven't found appropriate cres
- {
- complain("Unexpected failure during taking creatures!");
- return;
- }
- }
- }
- }
- void CGameHandler::showCompInfo(ShowInInfobox * comp)
- {
- sendToAllClients(comp);
- }
- void CGameHandler::heroVisitCastle(int obj, int heroID)
- {
- HeroVisitCastle vc;
- vc.hid = heroID;
- vc.tid = obj;
- vc.flags |= 1;
- sendAndApply(&vc);
- const CGHeroInstance *h = getHero(heroID);
- vistiCastleObjects (getTown(obj), h);
- giveSpells (getTown(obj), getHero(heroID));
- if(gs->map->victoryCondition.condition == transportItem)
- checkLossVictory(h->tempOwner); //transported artifact?
- }
- void CGameHandler::vistiCastleObjects (const CGTownInstance *t, const CGHeroInstance *h)
- {
- std::vector<CGTownBuilding*>::const_iterator i;
- for (i = t->bonusingBuildings.begin(); i != t->bonusingBuildings.end(); i++)
- (*i)->onHeroVisit (h);
- }
- void CGameHandler::stopHeroVisitCastle(int obj, int heroID)
- {
- HeroVisitCastle vc;
- vc.hid = heroID;
- vc.tid = obj;
- sendAndApply(&vc);
- }
- void CGameHandler::removeArtifact(const ArtifactLocation &al)
- {
- assert(al.getArt());
- EraseArtifact ea;
- ea.al = al;
- sendAndApply(&ea);
- }
- 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
- {
- engageIntoBattle(army1->tempOwner);
- engageIntoBattle(army2->tempOwner);
- //block engaged players
- if(army2->tempOwner < PLAYER_LIMIT)
- states.setFlag(army2->tempOwner,&PlayerStatus::engagedIntoBattle,true);
- static const CArmedInstance *armies[2];
- armies[0] = army1;
- armies[1] = army2;
- static const CGHeroInstance*heroes[2];
- heroes[0] = hero1;
- heroes[1] = hero2;
- boost::thread(boost::bind(&CGameHandler::startBattle, this, armies, tile, heroes, creatureBank, cb, town));
- }
- void CGameHandler::startBattleI( const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, boost::function<void(BattleResult*)> cb, bool creatureBank )
- {
- startBattleI(army1, army2, tile,
- army1->ID == HEROI_TYPE ? static_cast<const CGHeroInstance*>(army1) : NULL,
- army2->ID == HEROI_TYPE ? static_cast<const CGHeroInstance*>(army2) : NULL,
- creatureBank, cb);
- }
- void CGameHandler::startBattleI( const CArmedInstance *army1, const CArmedInstance *army2, boost::function<void(BattleResult*)> cb, bool creatureBank)
- {
- startBattleI(army1, army2, army2->visitablePos(), cb, creatureBank);
- }
- void CGameHandler::changeSpells( int hid, bool give, const std::set<ui32> &spells )
- {
- ChangeSpells cs;
- cs.hid = hid;
- cs.spells = spells;
- cs.learn = give;
- sendAndApply(&cs);
- }
- void CGameHandler::sendMessageTo( CConnection &c, const std::string &message )
- {
- SystemMessage sm;
- sm.text = message;
- c << &sm;
- }
- void CGameHandler::giveHeroBonus( GiveBonus * bonus )
- {
- sendAndApply(bonus);
- }
- void CGameHandler::setMovePoints( SetMovePoints * smp )
- {
- sendAndApply(smp);
- }
- void CGameHandler::setManaPoints( int hid, int val )
- {
- SetMana sm;
- sm.hid = hid;
- sm.val = val;
- sendAndApply(&sm);
- }
- void CGameHandler::giveHero( int id, int player )
- {
- GiveHero gh;
- gh.id = id;
- gh.player = player;
- sendAndApply(&gh);
- }
- void CGameHandler::changeObjPos( int objid, int3 newPos, ui8 flags )
- {
- ChangeObjPos cop;
- cop.objid = objid;
- cop.nPos = newPos;
- cop.flags = flags;
- sendAndApply(&cop);
- }
- void CGameHandler::useScholarSkill(si32 fromHero, si32 toHero)
- {
- const CGHeroInstance * h1 = getHero(fromHero);
- const CGHeroInstance * h2 = getHero(toHero);
- if ( h1->getSecSkillLevel(CGHeroInstance::SCHOLAR) < h2->getSecSkillLevel(CGHeroInstance::SCHOLAR) )
- {
- std::swap (h1,h2);//1st hero need to have higher scholar level for correct message
- std::swap(fromHero, toHero);
- }
- int ScholarLevel = h1->getSecSkillLevel(CGHeroInstance::SCHOLAR);//heroes can trade up to this level
- if (!ScholarLevel || !h1->hasSpellbook() || !h2->hasSpellbook() )
- return;//no scholar skill or no spellbook
- int h1Lvl = std::min(ScholarLevel+1, h1->getSecSkillLevel(CGHeroInstance::WISDOM)+2),
- h2Lvl = std::min(ScholarLevel+1, h2->getSecSkillLevel(CGHeroInstance::WISDOM)+2);//heroes can receive this levels
- ChangeSpells cs1;
- cs1.learn = true;
- cs1.hid = toHero;//giving spells to first hero
- for(std::set<ui32>::const_iterator it=h1->spells.begin(); it!=h1->spells.end();it++)
- if ( h2Lvl >= VLC->spellh->spells[*it]->level && !vstd::contains(h2->spells, *it))//hero can learn it and don't have it yet
- cs1.spells.insert(*it);//spell to learn
- ChangeSpells cs2;
- cs2.learn = true;
- cs2.hid = fromHero;
- for(std::set<ui32>::const_iterator it=h2->spells.begin(); it!=h2->spells.end();it++)
- if ( h1Lvl >= VLC->spellh->spells[*it]->level && !vstd::contains(h1->spells, *it))
- cs2.spells.insert(*it);
-
- if (cs1.spells.size() || cs2.spells.size())//create a message
- {
- InfoWindow iw;
- iw.player = h1->tempOwner;
- iw.components.push_back(Component(Component::SEC_SKILL, 18, ScholarLevel, 0));
- iw.text.addTxt(MetaString::GENERAL_TXT, 139);//"%s, who has studied magic extensively,
- iw.text.addReplacement(h1->name);
-
- if (cs2.spells.size())//if found new spell - apply
- {
- iw.text.addTxt(MetaString::GENERAL_TXT, 140);//learns
- int size = cs2.spells.size();
- for(std::set<ui32>::const_iterator it=cs2.spells.begin(); it!=cs2.spells.end();it++)
- {
- iw.components.push_back(Component(Component::SPELL, (*it), 1, 0));
- iw.text.addTxt(MetaString::SPELL_NAME, (*it));
- switch (size--)
- {
- case 2: iw.text.addTxt(MetaString::GENERAL_TXT, 141);
- case 1: break;
- default: iw.text << ", ";
- }
- }
- iw.text.addTxt(MetaString::GENERAL_TXT, 142);//from %s
- iw.text.addReplacement(h2->name);
- sendAndApply(&cs2);
- }
- if (cs1.spells.size() && cs2.spells.size() )
- {
- iw.text.addTxt(MetaString::GENERAL_TXT, 141);//and
- }
- if (cs1.spells.size())
- {
- iw.text.addTxt(MetaString::GENERAL_TXT, 147);//teaches
- int size = cs1.spells.size();
- for(std::set<ui32>::const_iterator it=cs1.spells.begin(); it!=cs1.spells.end();it++)
- {
- iw.components.push_back(Component(Component::SPELL, (*it), 1, 0));
- iw.text.addTxt(MetaString::SPELL_NAME, (*it));
- switch (size--)
- {
- case 2: iw.text.addTxt(MetaString::GENERAL_TXT, 141);
- case 1: break;
- default: iw.text << ", ";
- } }
- iw.text.addTxt(MetaString::GENERAL_TXT, 148);//from %s
- iw.text.addReplacement(h2->name);
- sendAndApply(&cs1);
- }
- sendAndApply(&iw);
- }
- }
- void CGameHandler::heroExchange(si32 hero1, si32 hero2)
- {
- ui8 player1 = getHero(hero1)->tempOwner;
- ui8 player2 = getHero(hero2)->tempOwner;
- if( gameState()->getPlayerRelations( player1, player2))
- {
- OpenWindow hex;
- hex.window = OpenWindow::EXCHANGE_WINDOW;
- hex.id1 = hero1;
- hex.id2 = hero2;
- sendAndApply(&hex);
- useScholarSkill(hero1,hero2);
- }
- }
- void CGameHandler::applyAndAsk( Query * sel, ui8 player, boost::function<void(ui32)> &callback )
- {
- boost::unique_lock<boost::recursive_mutex> lock(gsm);
- sel->id = QID;
- callbacks[QID] = callback;
- states.addQuery(player,QID);
- QID++;
- sendAndApply(sel);
- }
- void CGameHandler::ask( Query * sel, ui8 player, const CFunctionList<void(ui32)> &callback )
- {
- boost::unique_lock<boost::recursive_mutex> lock(gsm);
- sel->id = QID;
- callbacks[QID] = callback;
- states.addQuery(player,QID);
- sendToAllClients(sel);
- QID++;
- }
- void CGameHandler::sendToAllClients( CPackForClient * info )
- {
- tlog5 << "Sending to all clients a package of type " << typeid(*info).name() << std::endl;
- for(std::set<CConnection*>::iterator i=conns.begin(); i!=conns.end();i++)
- {
- (*i)->wmx->lock();
- **i << info;
- (*i)->wmx->unlock();
- }
- }
- void CGameHandler::sendAndApply( CPackForClient * info )
- {
- //TODO? mutex
- sendToAllClients(info);
- gs->apply(info);
- }
- void CGameHandler::sendAndApply(CGarrisonOperationPack * info)
- {
- sendAndApply((CPackForClient*)info);
- if(gs->map->victoryCondition.condition == gatherTroop)
- winLoseHandle();
- }
- // void CGameHandler::sendAndApply( SetGarrisons * info )
- // {
- // sendAndApply((CPackForClient*)info);
- // if(gs->map->victoryCondition.condition == gatherTroop)
- // for(std::map<ui32,CCreatureSet>::const_iterator i = info->garrs.begin(); i != info->garrs.end(); i++)
- // checkLossVictory(getObj(i->first)->tempOwner);
- // }
- void CGameHandler::sendAndApply( SetResource * info )
- {
- sendAndApply((CPackForClient*)info);
- if(gs->map->victoryCondition.condition == gatherResource)
- checkLossVictory(info->player);
- }
- void CGameHandler::sendAndApply( SetResources * info )
- {
- sendAndApply((CPackForClient*)info);
- if(gs->map->victoryCondition.condition == gatherResource)
- checkLossVictory(info->player);
- }
- void CGameHandler::sendAndApply( NewStructures * info )
- {
- sendAndApply((CPackForClient*)info);
- if(gs->map->victoryCondition.condition == buildCity)
- checkLossVictory(getTown(info->tid)->tempOwner);
- }
- void CGameHandler::save( const std::string &fname )
- {
- {
- tlog0 << "Ordering clients to serialize...\n";
- SaveGame sg(fname);
- sendToAllClients(&sg);
- }
- {
- tlog0 << "Serializing game info...\n";
- CSaveFile save(GVCMIDirs.UserPath + "/Games/" + fname + ".vlgm1");
- char hlp[8] = "VCMISVG";
- save << hlp << static_cast<CMapHeader&>(*gs->map) << gs->scenarioOps << *VLC << gs;
- }
- {
- tlog0 << "Serializing server info...\n";
- CSaveFile save(GVCMIDirs.UserPath + "/Games/" + fname + ".vsgm1");
- save << *this;
- }
- tlog0 << "Game has been successfully saved!\n";
- }
- void CGameHandler::close()
- {
- tlog0 << "We have been requested to close.\n";
- if(gs->initialOpts->mode == StartInfo::DUEL)
- {
- exit(0);
- }
- //BOOST_FOREACH(CConnection *cc, conns)
- // if(cc && cc->socket && cc->socket->is_open())
- // cc->socket->close();
- //exit(0);
- }
- bool CGameHandler::arrangeStacks( si32 id1, si32 id2, ui8 what, ui8 p1, ui8 p2, si32 val, ui8 player )
- {
- CArmedInstance *s1 = static_cast<CArmedInstance*>(gs->map->objects[id1].get()),
- *s2 = static_cast<CArmedInstance*>(gs->map->objects[id2].get());
- CCreatureSet &S1 = *s1, &S2 = *s2;
- StackLocation sl1(s1, p1), sl2(s2, p2);
- if(!isAllowedExchange(id1,id2))
- {
- complain("Cannot exchange stacks between these two objects!\n");
- return false;
- }
- if(what==1) //swap
- {
- if ( ((s1->tempOwner != player && s1->tempOwner != 254) && S1.stacks[p1]->count) //why 254??
- || ((s2->tempOwner != player && s2->tempOwner != 254) && S2.stacks[p2]->count))
- {
- complain("Can't take troops from another player!");
- return false;
- }
- swapStacks(sl1, sl2);
- }
- else if(what==2)//merge
- {
- if (( S1.stacks[p1]->type != S2.stacks[p2]->type && complain("Cannot merge different creatures stacks!"))
- || ((s1->tempOwner != player && s1->tempOwner != 254) && S2.stacks[p2]->count) && complain("Can't take troops from another player!"))
- return false;
- moveStack(sl1, sl2);
- }
- else if(what==3) //split
- {
- if ( (s1->tempOwner != player && S1.stacks[p1]->count < s1->getStackCount(p1) )
- || (s2->tempOwner != player && S2.stacks[p2]->count < s2->getStackCount(p2) ) )
- {
- complain("Can't move troops of another player!");
- return false;
- }
- //general conditions checking
- if((!vstd::contains(S1.stacks,p1) && complain("no creatures to split"))
- || (val<1 && complain("no creatures to split")) )
- {
- return false;
- }
- if(vstd::contains(S2.stacks,p2)) //dest. slot not free - it must be "rebalancing"...
- {
- int total = S1.stacks[p1]->count + S2.stacks[p2]->count;
- if( (total < val && complain("Cannot split that stack, not enough creatures!"))
- || (S2.stacks[p2]->type != S1.stacks[p1]->type && complain("Cannot rebalance different creatures stacks!"))
- )
- {
- return false;
- }
-
- moveStack(sl1, sl2, val - S2.stacks[p2]->count);
- //S2.slots[p2]->count = val;
- //S1.slots[p1]->count = total - val;
- }
- else //split one stack to the two
- {
- if(S1.stacks[p1]->count < val)//not enough creatures
- {
- complain("Cannot split that stack, not enough creatures!");
- return false;
- }
- moveStack(sl1, sl2, val);
- }
- }
- return true;
- }
- int CGameHandler::getPlayerAt( CConnection *c ) const
- {
- std::set<int> all;
- for(std::map<int,CConnection*>::const_iterator i=connections.begin(); i!=connections.end(); i++)
- if(i->second == c)
- all.insert(i->first);
- switch(all.size())
- {
- case 0:
- return 255;
- case 1:
- return *all.begin();
- default:
- {
- //if we have more than one player at this connection, try to pick active one
- if(vstd::contains(all,int(gs->currentPlayer)))
- return gs->currentPlayer;
- else
- return 253; //cannot say which player is it
- }
- }
- }
- bool CGameHandler::disbandCreature( si32 id, ui8 pos )
- {
- CArmedInstance *s1 = static_cast<CArmedInstance*>(gs->map->objects[id].get());
- if(!vstd::contains(s1->stacks,pos))
- {
- complain("Illegal call to disbandCreature - no such stack in army!");
- return false;
- }
- eraseStack(StackLocation(s1, pos));
- return true;
- }
- bool CGameHandler::buildStructure( si32 tid, si32 bid, bool force /*=false*/ )
- {
- CGTownInstance * t = static_cast<CGTownInstance*>(gs->map->objects[tid].get());
- CBuilding * b = VLC->buildh->buildings[t->subID][bid];
- if( !force && gs->canBuildStructure(t,bid) != 7)
- {
- complain("Cannot build that building!");
- return false;
- }
-
- if( !force && bid == 26) //grail
- {
- if(!t->visitingHero || !t->visitingHero->hasArt(2))
- {
- complain("Cannot build grail - hero doesn't have it");
- return false;
- }
- //remove grail
- removeArtifact(ArtifactLocation(t->visitingHero, t->visitingHero->getArtPos(2, false)));
- }
- NewStructures ns;
- ns.tid = tid;
- if ( (bid == 18) && (vstd::contains(t->builtBuildings,(t->town->hordeLvl[0]+37))) )
- ns.bid.insert(19);//we have upgr. dwelling, upgr. horde will be builded as well
- else if ( (bid == 24) && (vstd::contains(t->builtBuildings,(t->town->hordeLvl[1]+37))) )
- ns.bid.insert(25);
- else if(bid>36) //upg dwelling
- {
- if ( (bid-37 == t->town->hordeLvl[0]) && (vstd::contains(t->builtBuildings,18)) )
- ns.bid.insert(19);//we have horde, will be upgraded as well as dwelling
- if ( (bid-37 == t->town->hordeLvl[1]) && (vstd::contains(t->builtBuildings,24)) )
- ns.bid.insert(25);
- SetAvailableCreatures ssi;
- ssi.tid = tid;
- ssi.creatures = t->creatures;
- ssi.creatures[bid-37].second.push_back(t->town->upgradedCreatures[bid-37]);
- sendAndApply(&ssi);
- }
- else if(bid >= 30) //bas. dwelling
- {
- int crid = t->town->basicCreatures[bid-30];
- SetAvailableCreatures ssi;
- ssi.tid = tid;
- ssi.creatures = t->creatures;
- ssi.creatures[bid-30].first = VLC->creh->creatures[crid]->growth;
- ssi.creatures[bid-30].second.push_back(crid);
- sendAndApply(&ssi);
- }
- else if(bid == 11)
- ns.bid.insert(27);
- else if(bid == 12)
- ns.bid.insert(28);
- else if(bid == 13)
- ns.bid.insert(29);
- else if (t->subID == 4 && bid == 17) //veil of darkness
- {
- //handled via town->reacreateBonuses in apply
- // GiveBonus gb(GiveBonus::TOWN);
- // gb.bonus.type = Bonus::DARKNESS;
- // gb.bonus.val = 20;
- // gb.id = t->id;
- // gb.bonus.duration = Bonus::PERMANENT;
- // gb.bonus.source = Bonus::TOWN_STRUCTURE;
- // gb.bonus.id = 17;
- // sendAndApply(&gb);
- }
- else if ( t->subID == 5 && bid == 22 )
- {
- setPortalDwelling(t);
- }
- ns.bid.insert(bid);
- ns.builded = force?t->builded:(t->builded+1);
- sendAndApply(&ns);
-
- //reveal ground for lookout tower
- FoWChange fw;
- fw.player = t->tempOwner;
- fw.mode = 1;
- getTilesInRange(fw.tiles,t->pos,t->getSightRadious(),t->tempOwner,1);
- sendAndApply(&fw);
- if (!force)
- {
- SetResources sr;
- sr.player = t->tempOwner;
- sr.res = gs->getPlayer(t->tempOwner)->resources;
- for(int i=0;i<b->resources.size();i++)
- sr.res[i]-=b->resources[i];
- sendAndApply(&sr);
- }
- if(bid<5) //it's mage guild
- {
- if(t->visitingHero)
- giveSpells(t,t->visitingHero);
- if(t->garrisonHero)
- giveSpells(t,t->garrisonHero);
- }
- if(t->visitingHero)
- vistiCastleObjects (t, t->visitingHero);
- if(t->garrisonHero)
- vistiCastleObjects (t, t->garrisonHero);
- checkLossVictory(t->tempOwner);
- return true;
- }
- bool CGameHandler::razeStructure (si32 tid, si32 bid)
- {
- ///incomplete, simply erases target building
- CGTownInstance * t = static_cast<CGTownInstance*>(gs->map->objects[tid].get());
- if (t->builtBuildings.find(bid) == t->builtBuildings.end())
- return false;
- RazeStructures rs;
- rs.tid = tid;
- rs.bid.insert(bid);
- rs.destroyed = t->destroyed + 1;
- sendAndApply(&rs);
- //TODO: Remove dwellers
- // if (t->subID == 4 && bid == 17) //Veil of Darkness
- // {
- // RemoveBonus rb(RemoveBonus::TOWN);
- // rb.whoID = t->id;
- // rb.source = Bonus::TOWN_STRUCTURE;
- // rb.id = 17;
- // sendAndApply(&rb);
- // }
- return true;
- }
- void CGameHandler::sendMessageToAll( const std::string &message )
- {
- SystemMessage sm;
- sm.text = message;
- sendToAllClients(&sm);
- }
- bool CGameHandler::recruitCreatures( si32 objid, ui32 crid, ui32 cram, si32 fromLvl )
- {
- const CGDwelling *dw = static_cast<CGDwelling*>(gs->map->objects[objid].get());
- const CArmedInstance *dst = NULL;
- const CCreature *c = VLC->creh->creatures[crid];
- bool warMachine = c->hasBonusOfType(Bonus::SIEGE_WEAPON);
- //TODO: test for owning
- if(dw->ID == TOWNI_TYPE)
- dst = (static_cast<const CGTownInstance *>(dw))->getUpperArmy();
- else if(dw->ID == 17 || dw->ID == 20 || dw->ID == 78) //advmap dwelling
- dst = getHero(gs->getPlayer(dw->tempOwner)->currentSelection); //TODO: check if current hero is really visiting dwelling
- else if(dw->ID == 106)
- dst = dynamic_cast<const CGHeroInstance *>(getTile(dw->visitablePos())->visitableObjects.back());
- assert(dw && dst);
- //verify
- bool found = false;
- int level = 0;
- typedef std::pair<const int,int> Parka;
- for(; level < dw->creatures.size(); level++) //iterate through all levels
- {
- if ( (fromLvl != -1) && ( level !=fromLvl ) )
- continue;
- const std::pair<ui32, std::vector<ui32> > &cur = dw->creatures[level]; //current level info <amount, list of cr. ids>
- int i = 0;
- for(; i < cur.second.size(); i++) //look for crid among available creatures list on current level
- if(cur.second[i] == crid)
- break;
- if(i < cur.second.size())
- {
- found = true;
- cram = std::min(cram, cur.first); //reduce recruited amount up to available amount
- break;
- }
- }
- int slot = dst->getSlotFor(crid);
- if(!found && complain("Cannot recruit: no such creatures!")
- || cram > VLC->creh->creatures[crid]->maxAmount(gs->getPlayer(dst->tempOwner)->resources) && complain("Cannot recruit: lack of resources!")
- || cram<=0 && complain("Cannot recruit: cram <= 0!")
- || slot<0 && !warMachine && complain("Cannot recruit: no available slot!"))
- {
- return false;
- }
- //recruit
- SetResources sr;
- sr.player = dst->tempOwner;
- for(int i=0;i<RESOURCE_QUANTITY;i++)
- sr.res[i] = gs->getPlayer(dst->tempOwner)->resources[i] - (c->cost[i] * cram);
- SetAvailableCreatures sac;
- sac.tid = objid;
- sac.creatures = dw->creatures;
- sac.creatures[level].first -= cram;
- sendAndApply(&sr);
- sendAndApply(&sac);
-
- if(warMachine)
- {
- const CGHeroInstance *h = dynamic_cast<const CGHeroInstance*>(dst);
- if(!h)
- COMPLAIN_RET("Only hero can buy war machines");
- switch(crid)
- {
- case 146:
- giveHeroNewArtifact(h, VLC->arth->artifacts[4], Arts::MACH1);
- break;
- case 147:
- giveHeroNewArtifact(h, VLC->arth->artifacts[6], Arts::MACH3);
- break;
- case 148:
- giveHeroNewArtifact(h, VLC->arth->artifacts[5], Arts::MACH2);
- break;
- default:
- complain("This war machine cannot be recruited!");
- return false;
- }
- }
- else
- {
- addToSlot(StackLocation(dst, slot), c, cram);
- }
- return true;
- }
- bool CGameHandler::upgradeCreature( ui32 objid, ui8 pos, ui32 upgID )
- {
- CArmedInstance *obj = static_cast<CArmedInstance*>(gs->map->objects[objid].get());
- assert(obj->hasStackAtSlot(pos));
- UpgradeInfo ui = gs->getUpgradeInfo(obj->getStack(pos));
- int player = obj->tempOwner;
- int crQuantity = obj->stacks[pos]->count;
- int newIDpos= vstd::findPos(ui.newID, upgID);//get position of new id in UpgradeInfo
- //check if upgrade is possible
- if( (ui.oldID<0 || newIDpos == -1 ) && complain("That upgrade is not possible!"))
- {
- return false;
- }
-
- //check if player has enough resources
- for (std::set<std::pair<int,int> >::iterator j=ui.cost[newIDpos].begin(); j!=ui.cost[newIDpos].end(); j++)
- {
- if(gs->getPlayer(player)->resources[j->first] < j->second*crQuantity)
- {
- complain("Cannot upgrade, not enough resources!");
- return false;
- }
- }
-
- //take resources
- for (std::set<std::pair<int,int> >::iterator j=ui.cost[newIDpos].begin(); j!=ui.cost[newIDpos].end(); j++)
- {
- SetResource sr;
- sr.player = player;
- sr.resid = j->first;
- sr.val = gs->getPlayer(player)->resources[j->first] - j->second*crQuantity;
- sendAndApply(&sr);
- }
-
- //upgrade creature
- changeStackType(StackLocation(obj, pos), VLC->creh->creatures[upgID]);
- return true;
- }
- bool CGameHandler::changeStackType(const StackLocation &sl, CCreature *c)
- {
- if(!sl.army->hasStackAtSlot(sl.slot))
- COMPLAIN_RET("Cannot find a stack to change type");
- SetStackType sst;
- sst.sl = sl;
- sst.type = c;
- sendAndApply(&sst);
- return true;
- }
- void CGameHandler::moveArmy(const CArmedInstance *src, const CArmedInstance *dst, bool allowMerging)
- {
- assert(src->canBeMergedWith(*dst, allowMerging));
- while(src->stacksCount())//while there are unmoved creatures
- {
- TSlots::const_iterator i = src->Slots().begin(); //iterator to stack to move
- StackLocation sl(src, i->first); //location of stack to move
- TSlot pos = dst->getSlotFor(i->second->type);
- if(pos < 0)
- {
- //try to merge two other stacks to make place
- std::pair<TSlot, TSlot> toMerge;
- if(dst->mergableStacks(toMerge, i->first) && allowMerging)
- {
- moveStack(StackLocation(dst, toMerge.first), StackLocation(dst, toMerge.second)); //merge toMerge.first into toMerge.second
- assert(!dst->hasStackAtSlot(toMerge.first)); //we have now a new free slot
- moveStack(sl, StackLocation(dst, toMerge.first)); //move stack to freed slot
- }
- else
- {
- complain("Unexpected failure during an attempt to move army from " + src->nodeName() + " to " + dst->nodeName() + "!");
- return;
- }
- }
- else
- {
- moveStack(sl, StackLocation(dst, pos));
- }
- }
- }
- bool CGameHandler::garrisonSwap( si32 tid )
- {
- CGTownInstance *town = gs->getTown(tid);
- if(!town->garrisonHero && town->visitingHero) //visiting => garrison, merge armies: town army => hero army
- {
- if(!town->visitingHero->canBeMergedWith(*town))
- {
- complain("Cannot make garrison swap, not enough free slots!");
- return false;
- }
-
- moveArmy(town, town->visitingHero, true);
-
- SetHeroesInTown intown;
- intown.tid = tid;
- intown.visiting = -1;
- intown.garrison = town->visitingHero->id;
- sendAndApply(&intown);
- return true;
- }
- else if (town->garrisonHero && !town->visitingHero) //move hero out of the garrison
- {
- //check if moving hero out of town will break 8 wandering heroes limit
- if(getHeroCount(town->garrisonHero->tempOwner,false) >= 8)
- {
- complain("Cannot move hero out of the garrison, there are already 8 wandering heroes!");
- return false;
- }
- SetHeroesInTown intown;
- intown.tid = tid;
- intown.garrison = -1;
- intown.visiting = town->garrisonHero->id;
- sendAndApply(&intown);
- return true;
- }
- else if(!!town->garrisonHero && town->visitingHero) //swap visiting and garrison hero
- {
- SetHeroesInTown intown;
- intown.tid = tid;
- intown.garrison = town->visitingHero->id;
- intown.visiting = town->garrisonHero->id;
- sendAndApply(&intown);
- return true;
- }
- else
- {
- complain("Cannot swap garrison hero!");
- return false;
- }
- }
- // With the amount of changes done to the function, it's more like transferArtifacts.
- // 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.
- bool CGameHandler::moveArtifact(si32 srcHeroID, si32 destHeroID, ui16 srcSlot, ui16 destSlot)
- {
- const CGHeroInstance *srcHero = getHero(srcHeroID);
- const CGHeroInstance *destHero = getHero(destHeroID);
- ArtifactLocation src(srcHero, srcSlot), dst(destHero, destSlot);
- // Make sure exchange is even possible between the two heroes.
- if(!isAllowedExchange(srcHeroID, destHeroID))
- COMPLAIN_RET("That heroes cannot make any exchange!");
- const CArtifactInstance *srcArtifact = src.getArt();
- const CArtifactInstance *destArtifact = dst.getArt();
- if (srcArtifact == NULL)
- COMPLAIN_RET("No artifact to move!");
- if (destArtifact && srcHero->tempOwner != destHero->tempOwner)
- COMPLAIN_RET("Can't touch artifact on hero of another player!");
-
- // Check if src/dest slots are appropriate for the artifacts exchanged.
- // Moving to the backpack is always allowed.
- if ((!srcArtifact || destSlot < Arts::BACKPACK_START)
- && srcArtifact && !srcArtifact->canBePutAt(dst, true))
- COMPLAIN_RET("Cannot move artifact!");
- if ((srcArtifact && srcArtifact->artType->id == Arts::ID_LOCK) || (destArtifact && destArtifact->artType->id == Arts::ID_LOCK))
- COMPLAIN_RET("Cannot move artifact locks.");
- if (destSlot >= Arts::BACKPACK_START && srcArtifact->artType->isBig())
- COMPLAIN_RET("Cannot put big artifacts in backpack!");
- if (srcSlot == Arts::MACH4 || destSlot == Arts::MACH4)
- COMPLAIN_RET("Cannot move catapult!");
- if(dst.slot >= Arts::BACKPACK_START)
- amin(dst.slot, Arts::BACKPACK_START + dst.hero->artifactsInBackpack.size());
- if (src.slot == dst.slot && src.hero == dst.hero)
- COMPLAIN_RET("Won't move artifact: Dest same as source!");
- //moving art to backpack is always allowed (we've ruled out exceptions)
- if(destSlot >= Arts::BACKPACK_START)
- {
- moveArtifact(src, dst);
- }
- else //moving art to another slot
- {
- if(destArtifact) //old artifact must be removed first
- {
- moveArtifact(dst, ArtifactLocation(destHero, destHero->artifactsInBackpack.size() + Arts::BACKPACK_START));
- }
- moveArtifact(src, dst);
- }
- return true;
- }
- /**
- * Assembles or disassembles a combination artifact.
- * @param heroID ID of hero holding the artifact(s).
- * @param artifactSlot The worn slot ID of the combination- or constituent artifact.
- * @param assemble True for assembly operation, false for disassembly.
- * @param assembleTo If assemble is true, this represents the artifact ID of the combination
- * artifact to assemble to. Otherwise it's not used.
- */
- bool CGameHandler::assembleArtifacts (si32 heroID, ui16 artifactSlot, bool assemble, ui32 assembleTo)
- {
- CGHeroInstance *hero = gs->getHero(heroID);
- const CArtifactInstance *destArtifact = hero->getArt(artifactSlot);
- if(!destArtifact)
- COMPLAIN_RET("assembleArtifacts: there is no such artifact instance!");
- if(assemble)
- {
- CArtifact *combinedArt = VLC->arth->artifacts[assembleTo];
- if(!combinedArt->constituents)
- COMPLAIN_RET("assembleArtifacts: Artifact being attempted to assemble is not a combined artifacts!");
- if(!vstd::contains(destArtifact->assemblyPossibilities(hero), combinedArt))
- COMPLAIN_RET("assembleArtifacts: It's impossible to assemble requested artifact!");
- AssembledArtifact aa;
- aa.al = ArtifactLocation(hero, artifactSlot);
- aa.builtArt = combinedArt;
- sendAndApply(&aa);
- }
- else
- {
- if(!destArtifact->artType->constituents)
- COMPLAIN_RET("assembleArtifacts: Artifact being attempted to disassemble is not a combined artifact!");
- DisassembledArtifact da;
- da.al = ArtifactLocation(hero, artifactSlot);
- sendAndApply(&da);
- }
- return false;
- }
- bool CGameHandler::buyArtifact( ui32 hid, si32 aid )
- {
- CGHeroInstance *hero = gs->getHero(hid);
- CGTownInstance *town = hero->visitedTown;
- if(aid==0) //spellbook
- {
- if(!vstd::contains(town->builtBuildings,si32(0)) && complain("Cannot buy a spellbook, no mage guild in the town!")
- || getResource(hero->getOwner(), Res::GOLD) < SPELLBOOK_GOLD_COST && complain("Cannot buy a spellbook, not enough gold!")
- || hero->getArt(Arts::SPELLBOOK) && complain("Cannot buy a spellbook, hero already has a one!")
- )
- return false;
- giveResource(hero->getOwner(),Res::GOLD,-SPELLBOOK_GOLD_COST);
- giveHeroNewArtifact(hero, VLC->arth->artifacts[0], Arts::SPELLBOOK);
- assert(hero->getArt(Arts::SPELLBOOK));
- giveSpells(town,hero);
- return true;
- }
- else if(aid < 7 && aid > 3) //war machine
- {
- int price = VLC->arth->artifacts[aid]->price;
- if(hero->getArt(9+aid) && complain("Hero already has this machine!")
- || !vstd::contains(town->builtBuildings,si32(16)) && complain("No blackismith!")
- || gs->getPlayer(hero->getOwner())->resources[Res::GOLD] < price && complain("Not enough gold!") //no gold
- || (!(town->subID == 6 && vstd::contains(town->builtBuildings,si32(22) ) )
- && town->town->warMachine!= aid ) && complain("This machine is unavailable here!") )
- {
- return false;
- }
- giveResource(hero->getOwner(),Res::GOLD,-price);
- giveHeroNewArtifact(hero, VLC->arth->artifacts[aid], 9+aid);
- return true;
- }
- return false;
- }
- bool CGameHandler::buyArtifact(const IMarket *m, const CGHeroInstance *h, int rid, int aid)
- {
- if(!vstd::contains(m->availableItemsIds(RESOURCE_ARTIFACT), aid))
- COMPLAIN_RET("That artifact is unavailable!");
- int b1, b2;
- m->getOffer(rid, aid, b1, b2, RESOURCE_ARTIFACT);
-
- if(getResource(h->tempOwner, rid) < b1)
- COMPLAIN_RET("You can't afford to buy this artifact!");
- SetResource sr;
- sr.player = h->tempOwner;
- sr.resid = rid;
- sr.val = getResource(h->tempOwner, rid) - b1;
- sendAndApply(&sr);
- SetAvailableArtifacts saa;
- if(m->o->ID == TOWNI_TYPE)
- {
- saa.id = -1;
- saa.arts = CGTownInstance::merchantArtifacts;
- }
- else if(const CGBlackMarket *bm = dynamic_cast<const CGBlackMarket *>(m->o)) //black market
- {
- saa.id = bm->id;
- saa.arts = bm->artifacts;
- }
- else
- COMPLAIN_RET("Wrong marktet...");
- bool found = false;
- BOOST_FOREACH(const CArtifact *&art, saa.arts)
- {
- if(art && art->id == aid)
- {
- art = NULL;
- found = true;
- break;
- }
- }
- if(!found)
- COMPLAIN_RET("Cannot find selected artifact on the list");
- sendAndApply(&saa);
- giveHeroNewArtifact(h, VLC->arth->artifacts[aid], -2);
- return true;
- }
- bool CGameHandler::sellArtifact(const IMarket *m, const CGHeroInstance *h, int aid, int rid)
- {
- const CArtifactInstance *art = h->getArtByInstanceId(aid);
- if(!art)
- COMPLAIN_RET("There is no artifact to sell!");
- if(art->artType->id < 7)
- COMPLAIN_RET("Cannot sell a war machine or spellbook!");
- int resVal = 0, dump = 1;
- m->getOffer(art->artType->id, rid, dump, resVal, ARTIFACT_RESOURCE);
- removeArtifact(ArtifactLocation(h, h->getArtPos(art)));
- giveResource(h->tempOwner, rid, resVal);
- return true;
- }
- bool CGameHandler::buySecSkill( const IMarket *m, const CGHeroInstance *h, int skill)
- {
- if (!h)
- COMPLAIN_RET("You need hero to buy a skill!");
-
- if (h->getSecSkillLevel(static_cast<CGHeroInstance::SecondarySkill>(skill)))
- COMPLAIN_RET("Hero already know this skill");
-
- if (h->secSkills.size() >= SKILL_PER_HERO)//can't learn more skills
- COMPLAIN_RET("Hero can't learn any more skills");
-
- if (h->type->heroClass->proSec[skill]==0)//can't learn this skill (like necromancy for most of non-necros)
- COMPLAIN_RET("The hero can't learn this skill!");
- if(!vstd::contains(m->availableItemsIds(RESOURCE_SKILL), skill))
- COMPLAIN_RET("That skill is unavailable!");
- if(getResource(h->tempOwner, 6) < 2000)//TODO: remove hardcoded resource\summ?
- COMPLAIN_RET("You can't afford to buy this skill");
- SetResource sr;
- sr.player = h->tempOwner;
- sr.resid = 6;
- sr.val = getResource(h->tempOwner, 6) - 2000;
- sendAndApply(&sr);
- changeSecSkill(h->id, skill, 1, true);
- return true;
- }
- bool CGameHandler::tradeResources(const IMarket *market, ui32 val, ui8 player, ui32 id1, ui32 id2)
- {
- int r1 = gs->getPlayer(player)->resources[id1],
- r2 = gs->getPlayer(player)->resources[id2];
- amin(val, r1); //can't trade more resources than have
- int b1, b2; //base quantities for trade
- market->getOffer(id1, id2, b1, b2, RESOURCE_RESOURCE);
- int units = val / b1; //how many base quantities we trade
- if(val%b1) //all offered units of resource should be used, if not -> somewhere in calculations must be an error
- {
- //TODO: complain?
- assert(0);
- }
- SetResource sr;
- sr.player = player;
- sr.resid = id1;
- sr.val = r1 - b1 * units;
- sendAndApply(&sr);
- sr.resid = id2;
- sr.val = r2 + b2 * units;
- sendAndApply(&sr);
- return true;
- }
- bool CGameHandler::sellCreatures(ui32 count, const IMarket *market, const CGHeroInstance * hero, ui32 slot, ui32 resourceID)
- {
- if(!vstd::contains(hero->Slots(), slot))
- COMPLAIN_RET("Hero doesn't have any creature in that slot!");
- const CStackInstance &s = hero->getStack(slot);
- if(s.count < count //can't sell more creatures than have
- || hero->Slots().size() == 1 && hero->needsLastStack() && s.count == count) //can't sell last stack
- {
- COMPLAIN_RET("Not enough creatures in army!");
- }
- int b1, b2; //base quantities for trade
- market->getOffer(s.type->idNumber, resourceID, b1, b2, CREATURE_RESOURCE);
- int units = count / b1; //how many base quantities we trade
-
- if(count%b1) //all offered units of resource should be used, if not -> somewhere in calculations must be an error
- {
- //TODO: complain?
- assert(0);
- }
-
- changeStackCount(StackLocation(hero, slot), -count);
- SetResource sr;
- sr.player = hero->tempOwner;
- sr.resid = resourceID;
- sr.val = getResource(hero->tempOwner, resourceID) + b2 * units;
- sendAndApply(&sr);
- return true;
- }
- bool CGameHandler::transformInUndead(const IMarket *market, const CGHeroInstance * hero, ui32 slot)
- {
- const CArmedInstance *army = NULL;
- if (hero)
- army = hero;
- else
- army = dynamic_cast<const CGTownInstance *>(market->o);
- if (!army)
- COMPLAIN_RET("Incorrect call to transform in undead!");
- if(!army->hasStackAtSlot(slot))
- COMPLAIN_RET("Army doesn't have any creature in that slot!");
- const CStackInstance &s = army->getStack(slot);
- int resCreature;//resulting creature - bone dragons or skeletons
-
- if (s.hasBonusOfType(Bonus::DRAGON_NATURE))
- resCreature = 68;
- else
- resCreature = 56;
- changeStackType(StackLocation(army, slot), VLC->creh->creatures[resCreature]);
- return true;
- }
- bool CGameHandler::sendResources(ui32 val, ui8 player, ui32 r1, ui32 r2)
- {
- const PlayerState *p2 = gs->getPlayer(r2, false);
- if(!p2 || p2->status != PlayerState::INGAME)
- {
- complain("Dest player must be in game!");
- return false;
- }
- si32 curRes1 = gs->getPlayer(player)->resources[r1], curRes2 = gs->getPlayer(r2)->resources[r1];
- val = std::min(si32(val),curRes1);
- SetResource sr;
- sr.player = player;
- sr.resid = r1;
- sr.val = curRes1 - val;
- sendAndApply(&sr);
- sr.player = r2;
- sr.val = curRes2 + val;
- sendAndApply(&sr);
- return true;
- }
- bool CGameHandler::setFormation( si32 hid, ui8 formation )
- {
- gs->getHero(hid)-> formation = formation;
- return true;
- }
- bool CGameHandler::hireHero(const CGObjectInstance *obj, ui8 hid, ui8 player)
- {
- const PlayerState *p = gs->getPlayer(player);
- const CGTownInstance *t = gs->getTown(obj->id);
- //common prconditions
- if( p->resources[6]<2500 && complain("Not enough gold for buying hero!")
- || getHeroCount(player, false) >= 8 && complain("Cannot hire hero, only 8 wandering heroes are allowed!"))
- return false;
- if(t) //tavern in town
- {
- if(!vstd::contains(t->builtBuildings,5) && complain("No tavern!")
- || t->visitingHero && complain("There is visiting hero - no place!"))
- return false;
- }
- else if(obj->ID == 95) //Tavern on adv map
- {
- if(getTile(obj->visitablePos())->visitableObjects.back() != obj && complain("Tavern entry must be unoccupied!"))
- return false;
- }
- const CGHeroInstance *nh = p->availableHeroes[hid];
- assert(nh);
- HeroRecruited hr;
- hr.tid = obj->id;
- hr.hid = nh->subID;
- hr.player = player;
- hr.tile = obj->visitablePos() + nh->getVisitableOffset();
- sendAndApply(&hr);
- bmap<ui32, ConstTransitivePtr<CGHeroInstance> > pool = gs->unusedHeroesFromPool();
- const CGHeroInstance *theOtherHero = p->availableHeroes[!hid];
- const CGHeroInstance *newHero = gs->hpool.pickHeroFor(false, player, getNativeTown(player), pool, theOtherHero->type->heroClass);
- SetAvailableHeroes sah;
- sah.player = player;
- if(newHero)
- {
- sah.hid[hid] = newHero->subID;
- sah.army[hid].clear();
- sah.army[hid].setCreature(0, VLC->creh->nameToID[newHero->type->refTypeStack[0]],1);
- }
- else
- sah.hid[hid] = -1;
- sah.hid[!hid] = theOtherHero ? theOtherHero->subID : -1;
- sendAndApply(&sah);
- SetResource sr;
- sr.player = player;
- sr.resid = 6;
- sr.val = p->resources[6] - 2500;
- sendAndApply(&sr);
- if(t)
- {
- vistiCastleObjects (t, nh);
- giveSpells (t,nh);
- }
- return true;
- }
- bool CGameHandler::queryReply( ui32 qid, ui32 answer )
- {
- boost::unique_lock<boost::recursive_mutex> lock(gsm);
- if(vstd::contains(callbacks,qid))
- {
- CFunctionList<void(ui32)> callb = callbacks[qid];
- callbacks.erase(qid);
- if(callb)
- callb(answer);
- }
- else if(vstd::contains(garrisonCallbacks,qid))
- {
- if(garrisonCallbacks[qid])
- garrisonCallbacks[qid]();
- garrisonCallbacks.erase(qid);
- allowedExchanges.erase(qid);
- }
- else
- {
- tlog1 << "Unknown query reply...\n";
- return false;
- }
- return true;
- }
- static EndAction end_action;
- bool CGameHandler::makeBattleAction( BattleAction &ba )
- {
- tlog1 << "\tMaking action of type " << ba.actionType << std::endl;
- bool ok = true;
- switch(ba.actionType)
- {
- case BattleAction::END_TACTIC_PHASE: //wait
- {
- StartAction start_action(ba);
- sendAndApply(&start_action);
- sendAndApply(&end_action);
- break;
- }
- case BattleAction::WALK: //walk
- {
- StartAction start_action(ba);
- sendAndApply(&start_action); //start movement
- moveStack(ba.stackNumber,ba.destinationTile); //move
- sendAndApply(&end_action);
- break;
- }
- case BattleAction::DEFEND: //defend
- {
- //defensive stance
- SetStackEffect sse;
- sse.effect.push_back( Bonus(Bonus::STACK_GETS_TURN, Bonus::PRIMARY_SKILL, Bonus::OTHER, 20, -1, PrimarySkill::DEFENSE, Bonus::PERCENT_TO_ALL) );
- sse.stacks.push_back(ba.stackNumber);
- sendAndApply(&sse);
- //don't break - we share code with next case
- }
- case BattleAction::WAIT: //wait
- {
- StartAction start_action(ba);
- sendAndApply(&start_action);
- sendAndApply(&end_action);
- break;
- }
- case BattleAction::RETREAT: //retreat/flee
- {
- if(!gs->curB->battleCanFlee(gs->curB->sides[ba.side]))
- complain("Cannot retreat!");
- else
- setBattleResult(1, !ba.side); //surrendering side loses
- break;
- }
- case BattleAction::SURRENDER:
- {
- int player = gs->curB->sides[ba.side];
- int cost = gs->curB->getSurrenderingCost(player);
- if(cost < 0)
- complain("Cannot surrender!");
- else if(getResource(player, Res::GOLD) < cost)
- complain("Not enough gold to surrender!");
- else
- {
- giveResource(player, Res::GOLD, -cost);
- setBattleResult(2, !ba.side); //surrendering side loses
- }
- break;
- }
- break;
- case BattleAction::WALK_AND_ATTACK: //walk or attack
- {
- StartAction start_action(ba);
- sendAndApply(&start_action); //start movement and attack
- int startingPos = gs->curB->getStack(ba.stackNumber)->position;
- int distance = moveStack(ba.stackNumber, ba.destinationTile);
- CStack *curStack = gs->curB->getStack(ba.stackNumber),
- *stackAtEnd = gs->curB->getStackT(ba.additionalInfo);
- if(curStack->position != ba.destinationTile //we wasn't able to reach destination tile
- && !(curStack->doubleWide()
- && ( curStack->position == ba.destinationTile + (curStack->attackerOwned ? +1 : -1 ) )
- ) //nor occupy specified hex
- )
- {
- std::string problem = "We cannot move this stack to its destination " + curStack->getCreature()->namePl;
- tlog3 << problem << std::endl;
- complain(problem);
- ok = false;
- sendAndApply(&end_action);
- break;
- }
- if(stackAtEnd && curStack->ID == stackAtEnd->ID) //we should just move, it will be handled by following check
- {
- stackAtEnd = NULL;
- }
- if(!stackAtEnd)
- {
- complain(boost::str(boost::format("walk and attack error: no stack at additionalInfo tile (%d)!\n") % ba.additionalInfo));
- ok = false;
- sendAndApply(&end_action);
- break;
- }
- if( !CStack::isMeleeAttackPossible(curStack, stackAtEnd) )
- {
- complain("Attack cannot be performed!");
- sendAndApply(&end_action);
- ok = false;
- break;
- }
- //attack
- BattleAttack bat;
- prepareAttack(bat, curStack, stackAtEnd, distance);
- sendAndApply(&bat);
- handleAfterAttackCasting(bat);
- //counterattack
- if(!curStack->hasBonusOfType(Bonus::BLOCKS_RETALIATION)
- && stackAtEnd->alive()
- && ( stackAtEnd->counterAttacks > 0 || stackAtEnd->hasBonusOfType(Bonus::UNLIMITED_RETALIATIONS) )
- && !stackAtEnd->hasBonusOfType(Bonus::SIEGE_WEAPON)
- && !stackAtEnd->hasBonusOfType(Bonus::HYPNOTIZED))
- {
- prepareAttack(bat, stackAtEnd, curStack, 0);
- bat.flags |= BattleAttack::COUNTER;
- sendAndApply(&bat);
- handleAfterAttackCasting(bat);
- }
- //second attack
- if(curStack->valOfBonuses(Bonus::ADDITIONAL_ATTACK) > 0
- && !curStack->hasBonusOfType(Bonus::SHOOTER)
- && curStack->alive()
- && stackAtEnd->alive() )
- {
- bat.flags = 0;
- prepareAttack(bat, curStack, stackAtEnd, 0);
- sendAndApply(&bat);
- handleAfterAttackCasting(bat);
- }
- //return
- if(curStack->hasBonusOfType(Bonus::RETURN_AFTER_STRIKE) && startingPos != curStack->position && curStack->alive())
- {
- moveStack(ba.stackNumber, startingPos);
- //NOTE: curStack->ID == ba.stackNumber (rev 1431)
- }
- sendAndApply(&end_action);
- break;
- }
- case BattleAction::SHOOT: //shoot
- {
- CStack *curStack = gs->curB->getStack(ba.stackNumber),
- *destStack= gs->curB->getStackT(ba.destinationTile);
- if( !gs->curB->battleCanShoot(curStack, ba.destinationTile) )
- break;
- StartAction start_action(ba);
- sendAndApply(&start_action); //start shooting
- BattleAttack bat;
- bat.flags |= BattleAttack::SHOT;
- prepareAttack(bat, curStack, destStack, 0);
- sendAndApply(&bat);
- handleAfterAttackCasting(bat);
- //ballista & artillery handling
- if(destStack->alive() && curStack->getCreature()->idNumber == 146)
- {
- BattleAttack bat2;
- bat2.flags |= BattleAttack::SHOT;
- prepareAttack(bat2, curStack, destStack, 0);
- sendAndApply(&bat2);
- }
- if(curStack->valOfBonuses(Bonus::ADDITIONAL_ATTACK) > 0 //if unit shots twice let's make another shot
- && curStack->alive()
- && destStack->alive()
- && curStack->shots
- )
- {
- prepareAttack(bat, curStack, destStack, 0);
- sendAndApply(&bat);
- handleAfterAttackCasting(bat);
- }
- sendAndApply(&end_action);
- break;
- }
- case BattleAction::CATAPULT: //catapult
- {
- StartAction start_action(ba);
- sendAndApply(&start_action);
- const CGHeroInstance * attackingHero = gs->curB->heroes[ba.side];
- CHeroHandler::SBallisticsLevelInfo sbi = VLC->heroh->ballistics[attackingHero->getSecSkillLevel(CGHeroInstance::BALLISTICS)];
-
- int attackedPart = gs->curB->hexToWallPart(ba.destinationTile);
- if(attackedPart == -1)
- {
- complain("catapult tried to attack non-catapultable hex!");
- break;
- }
- int wallInitHP = gs->curB->si.wallState[attackedPart];
- int dmgAlreadyDealt = 0; //in successive iterations damage is dealt but not yet substracted from wall's HPs
- for(int g=0; g<sbi.shots; ++g)
- {
- if(wallInitHP + dmgAlreadyDealt == 3) //it's not destroyed
- continue;
-
- CatapultAttack ca; //package for clients
- std::pair< std::pair< ui8, si16 >, ui8> attack; //<< attackedPart , destination tile >, damageDealt >
- attack.first.first = attackedPart;
- attack.first.second = ba.destinationTile;
- attack.second = 0;
- int chanceForHit = 0;
- int dmgChance[3] = {sbi.noDmg, sbi.oneDmg, sbi.twoDmg}; //dmgChance[i] - chance for doing i dmg when hit is successful
- switch(attackedPart)
- {
- case 0: //keep
- chanceForHit = sbi.keep;
- break;
- case 1: //bottom tower
- case 6: //upper tower
- chanceForHit = sbi.tower;
- break;
- case 2: //bottom wall
- case 3: //below gate
- case 4: //over gate
- case 5: //upper wall
- chanceForHit = sbi.wall;
- break;
- case 7: //gate
- chanceForHit = sbi.gate;
- break;
- }
- if(rand()%100 <= chanceForHit) //hit is successful
- {
- int dmgRand = rand()%100;
- //accumulating dmgChance
- dmgChance[1] += dmgChance[0];
- dmgChance[2] += dmgChance[1];
- //calculating dealt damage
- for(int v = 0; v < ARRAY_COUNT(dmgChance); ++v)
- {
- if(dmgRand <= dmgChance[v])
- {
- attack.second = std::min(3 - dmgAlreadyDealt - wallInitHP, v);
- dmgAlreadyDealt += attack.second;
- break;
- }
- }
- //removing creatures in turrets / keep if one is destroyed
- if(attack.second > 0 && (attackedPart == 0 || attackedPart == 1 || attackedPart == 6))
- {
- int posRemove = -1;
- switch(attackedPart)
- {
- case 0: //keep
- posRemove = -2;
- break;
- case 1: //bottom tower
- posRemove = -3;
- break;
- case 6: //upper tower
- posRemove = -4;
- break;
- }
- BattleStacksRemoved bsr;
- for(int g=0; g<gs->curB->stacks.size(); ++g)
- {
- if(gs->curB->stacks[g]->position == posRemove)
- {
- bsr.stackIDs.insert( gs->curB->stacks[g]->ID );
- break;
- }
- }
- sendAndApply(&bsr);
- }
- }
- ca.attacker = ba.stackNumber;
- ca.attackedParts.insert(attack);
- sendAndApply(&ca);
- }
- sendAndApply(&end_action);
- break;
- }
- case BattleAction::STACK_HEAL: //healing with First Aid Tent
- {
- StartAction start_action(ba);
- sendAndApply(&start_action);
- const CGHeroInstance * attackingHero = gs->curB->heroes[ba.side];
- CStack *healer = gs->curB->getStack(ba.stackNumber),
- *destStack = gs->curB->getStackT(ba.destinationTile);
- if(healer == NULL || destStack == NULL || !healer->hasBonusOfType(Bonus::HEALER))
- {
- complain("There is either no healer, no destination, or healer cannot heal :P");
- }
- int maxHealable = destStack->MaxHealth() - destStack->firstHPleft;
- int maxiumHeal = healer->count * std::max(10, attackingHero->valOfBonuses(Bonus::SECONDARY_SKILL_PREMY, 27));
- int healed = std::min(maxHealable, maxiumHeal);
- if(healed == 0)
- {
- //nothing to heal.. should we complain?
- }
- else
- {
- StacksHealedOrResurrected shr;
- shr.lifeDrain = false;
- StacksHealedOrResurrected::HealInfo hi;
- hi.healedHP = healed;
- hi.lowLevelResurrection = 0;
- hi.stackID = destStack->ID;
- shr.healedStacks.push_back(hi);
- sendAndApply(&shr);
- }
- sendAndApply(&end_action);
- break;
- }
- }
- if(ba.stackNumber == gs->curB->activeStack || battleResult.get()) //active stack has moved or battle has finished
- battleMadeAction.setn(true);
- return ok;
- }
- void CGameHandler::playerMessage( ui8 player, const std::string &message )
- {
- bool cheated=true;
- PlayerMessage temp_message(player,message);
- sendAndApply(&temp_message);
- if(message == "vcmiistari") //give all spells and 999 mana
- {
- SetMana sm;
- ChangeSpells cs;
- CGHeroInstance *h = gs->getHero(gs->getPlayer(player)->currentSelection);
- if(!h && complain("Cannot realize cheat, no hero selected!")) return;
- sm.hid = cs.hid = h->id;
- //give all spells
- cs.learn = 1;
- for(int i=0;i<VLC->spellh->spells.size();i++)
- {
- if(!VLC->spellh->spells[i]->creatureAbility)
- cs.spells.insert(i);
- }
- //give mana
- sm.val = 999;
- if(!h->hasSpellbook()) //hero doesn't have spellbook
- giveHeroNewArtifact(h, VLC->arth->artifacts[0], Arts::SPELLBOOK); //give spellbook
- sendAndApply(&cs);
- sendAndApply(&sm);
- }
- else if(message == "vcmiainur") //gives 5 archangels into each slot
- {
- CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
- const CCreature *archangel = VLC->creh->creatures[13];
- if(!hero) return;
- for(int i = 0; i < ARMY_SIZE; i++)
- if(!hero->hasStackAtSlot(i))
- insertNewStack(StackLocation(hero, i), archangel, 10);
- }
- else if(message == "vcmiangband") //gives 10 black knight into each slot
- {
- CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
- const CCreature *blackKnight = VLC->creh->creatures[66];
- if(!hero) return;
- for(int i = 0; i < ARMY_SIZE; i++)
- if(!hero->hasStackAtSlot(i))
- insertNewStack(StackLocation(hero, i), blackKnight, 10);
- }
- else if(message == "vcminoldor") //all war machines
- {
- CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
- if(!hero) return;
- if(!hero->getArt(Arts::MACH1))
- giveHeroNewArtifact(hero, VLC->arth->artifacts[4], Arts::MACH1);
- if(!hero->getArt(Arts::MACH2))
- giveHeroNewArtifact(hero, VLC->arth->artifacts[5], Arts::MACH2);
- if(!hero->getArt(Arts::MACH3))
- giveHeroNewArtifact(hero, VLC->arth->artifacts[6], Arts::MACH3);
- }
- else if(message == "vcminahar") //1000000 movement points
- {
- CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
- if(!hero) return;
- SetMovePoints smp;
- smp.hid = hero->id;
- smp.val = 1000000;
- sendAndApply(&smp);
- }
- else if(message == "vcmiformenos") //give resources
- {
- SetResources sr;
- sr.player = player;
- sr.res = gs->getPlayer(player)->resources;
- for(int i=0;i<7;i++)
- sr.res[i] += 100;
- sr.res[6] += 19900;
- sendAndApply(&sr);
- }
- else if(message == "vcmieagles") //reveal FoW
- {
- FoWChange fc;
- fc.mode = 1;
- fc.player = player;
- int3 * hlp_tab = new int3[gs->map->width * gs->map->height * (gs->map->twoLevel + 1)];
- int lastUnc = 0;
- for(int i=0;i<gs->map->width;i++)
- for(int j=0;j<gs->map->height;j++)
- for(int k=0;k<gs->map->twoLevel+1;k++)
- if(!gs->getPlayerTeam(fc.player)->fogOfWarMap[i][j][k])
- hlp_tab[lastUnc++] = int3(i,j,k);
- fc.tiles.insert(hlp_tab, hlp_tab + lastUnc);
- delete [] hlp_tab;
- sendAndApply(&fc);
- }
- else if(message == "vcmiglorfindel") //selected hero gains a new level
- {
- CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
- changePrimSkill(hero->id,4,VLC->heroh->reqExp(hero->level+1) - VLC->heroh->reqExp(hero->level));
- }
- else if(message == "vcmisilmaril") //player wins
- {
- gs->getPlayer(player)->enteredWinningCheatCode = 1;
- checkLossVictory(player);
- }
- else if(message == "vcmimelkor") //player looses
- {
- gs->getPlayer(player)->enteredLosingCheatCode = 1;
- checkLossVictory(player);
- }
- else if (message == "vcmiforgeofnoldorking") //hero gets all artifacts except war machines, spell scrolls and spell book
- {
- CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
- if(!hero) return;
- for (int g=7; g<=140; ++g)
- giveHeroNewArtifact(hero, VLC->arth->artifacts[g], -1);
- }
- else
- cheated = false;
- if(cheated)
- {
- SystemMessage temp_message(VLC->generaltexth->allTexts[260]);
- sendAndApply(&temp_message);
- }
- }
- void CGameHandler::handleSpellCasting( int spellID, int spellLvl, int destination, ui8 casterSide, ui8 casterColor, const CGHeroInstance * caster, const CGHeroInstance * secHero, int usedSpellPower, SpellCasting::ECastingMode mode, const CStack * stack)
- {
- const CSpell *spell = VLC->spellh->spells[spellID];
- BattleSpellCast sc;
- sc.side = casterSide;
- sc.id = spellID;
- sc.skill = spellLvl;
- sc.tile = destination;
- sc.dmgToDisplay = 0;
- sc.castedByHero = (bool)caster;
- sc.attackerType = (stack ? stack->type->idNumber : -1);
- //calculating affected creatures for all spells
- std::set<CStack*> attackedCres = gs->curB->getAttackedCreatures(spell, spellLvl, casterColor, destination);
- for(std::set<CStack*>::const_iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
- {
- sc.affectedCres.insert((*it)->ID);
- }
- //checking if creatures resist
- sc.resisted = gs->curB->calculateResistedStacks(spell, caster, secHero, attackedCres, casterColor, mode);
- //calculating dmg to display
- for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
- {
- if(vstd::contains(sc.resisted, (*it)->ID)) //this creature resisted the spell
- continue;
- sc.dmgToDisplay += gs->curB->calculateSpellDmg(spell, caster, *it, spellLvl, usedSpellPower);
- }
- if (spellID == 79 || spellID == 81) // Death stare or Acid Breath
- {
- sc.dmgToDisplay = usedSpellPower;
- if (spellID == 79)
- amin(sc.dmgToDisplay, (*attackedCres.begin())->count); //stack is already reduced after attack
- }
- //applying effects
- switch(spellID)
- {
- case 15: //magic arrow
- case 16: //ice bolt
- case 17: //lightning bolt
- case 18: //implosion
- case 20: //frost ring
- case 21: //fireball
- case 22: //inferno
- case 23: //meteor shower
- case 24: //death ripple
- case 25: //destroy undead
- case 26: //armageddon
- case 77: //Thunderbolt (thunderbirds)
- {
- StacksInjured si;
- for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
- {
- if(vstd::contains(sc.resisted, (*it)->ID)) //this creature resisted the spell
- continue;
- BattleStackAttacked bsa;
- bsa.flags |= BattleStackAttacked::EFFECT;
- bsa.effect = spell->mainEffectAnim;
- bsa.damageAmount = gs->curB->calculateSpellDmg(spell, caster, *it, spellLvl, usedSpellPower);
- bsa.stackAttacked = (*it)->ID;
- bsa.attackerID = -1;
- (*it)->prepareAttacked(bsa);
- si.stacks.push_back(bsa);
- }
- if(!si.stacks.empty())
- sendAndApply(&si);
- break;
- }
- // permanent effects
- case 27: //shield
- case 28: //air shield
- case 29: //fire shield
- case 30: //protection from air
- case 31: //protection from fire
- case 32: //protection from water
- case 33: //protection from earth
- case 34: //anti-magic
- case 41: //bless
- case 42: //curse
- case 43: //bloodlust
- case 44: //precision
- case 45: //weakness
- case 46: //stone skin
- case 47: //disrupting ray
- case 48: //prayer
- case 49: //mirth
- case 50: //sorrow
- case 51: //fortune
- case 52: //misfortune
- case 53: //haste
- case 54: //slow
- case 55: //slayer
- case 56: //frenzy
- case 58: //counterstrike
- case 59: //berserk
- case 60: //hypnotize
- case 61: //forgetfulness
- case 62: //blind
- case 70: //Stone Gaze
- case 71: //Poison
- case 72: //Bind
- case 73: //Disease
- case 74: //Paralyze
- case 75: //Aging
- case 80: //Acid Breath defense reduction
- {
- SetStackEffect sse;
- Bonus pseudoBonus;
- pseudoBonus.sid = spellID;
- pseudoBonus.val = spellLvl;
- pseudoBonus.turnsRemain = gs->curB->calculateSpellDuration(spell, caster, usedSpellPower);
- CStack::stackEffectToFeature(sse.effect, pseudoBonus);
- const Bonus * bonus = NULL;
- if (caster)
- bonus = caster->getBonus(Selector::typeSybtype(Bonus::SPECIAL_PECULIAR_ENCHANT, spellID));
- si32 power;
- for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
- {
- if(vstd::contains(sc.resisted, (*it)->ID)) //this creature resisted the spell
- continue;
- sse.stacks.push_back((*it)->ID);
-
- //Apply hero specials - peculiar enchants
- if ((*it)->base) // no war machines - TODO: make it work
- {
- ui8 tier = (*it)->base->type->level;
- if (bonus)
- {
- switch(bonus->additionalInfo)
- {
- case 0: //normal
- {
- switch(tier)
- {
- case 1: case 2:
- power = 3;
- break;
- case 3: case 4:
- power = 2;
- break;
- case 5: case 6:
- power = 1;
- break;
- }
- Bonus specialBonus(sse.effect.back());
- specialBonus.val = power; //it doesn't necessarily make sense for some spells, use it wisely
- sse.uniqueBonuses.push_back (std::pair<ui32,Bonus> ((*it)->ID, specialBonus)); //additional premy to given effect
- }
- break;
- case 1: //only Coronius as yet
- {
- power = std::max(5 - tier, 0);
- Bonus specialBonus = CStack::featureGenerator(Bonus::PRIMARY_SKILL, PrimarySkill::ATTACK, power, pseudoBonus.turnsRemain);
- specialBonus.sid = spellID;
- sse.uniqueBonuses.push_back (std::pair<ui32,Bonus> ((*it)->ID, specialBonus)); //additional attack to Slayer effect
- }
- break;
- }
- }
- if (caster && caster->hasBonusOfType(Bonus::SPECIAL_BLESS_DAMAGE, spellID)) //TODO: better handling of bonus percentages
- {
- int damagePercent = caster->level * caster->valOfBonuses(Bonus::SPECIAL_BLESS_DAMAGE, spellID) / tier;
- Bonus specialBonus = CStack::featureGenerator(Bonus::CREATURE_DAMAGE, 0, damagePercent, pseudoBonus.turnsRemain);
- specialBonus.valType = Bonus::PERCENT_TO_ALL;
- specialBonus.sid = spellID;
- sse.uniqueBonuses.push_back (std::pair<ui32,Bonus> ((*it)->ID, specialBonus));
- }
- }
- }
- if(!sse.stacks.empty())
- sendAndApply(&sse);
- break;
- }
- case 63: //teleport
- {
- BattleStackMoved bsm;
- bsm.distance = -1;
- bsm.stack = gs->curB->activeStack;
- bsm.ending = true;
- bsm.tile = destination;
- bsm.teleporting = true;
- sendAndApply(&bsm);
- break;
- }
- case 37: //cure
- case 38: //resurrection
- case 39: //animate dead
- {
- StacksHealedOrResurrected shr;
- shr.lifeDrain = false;
- for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
- {
- if(vstd::contains(sc.resisted, (*it)->ID) //this creature resisted the spell
- || (spellID == 39 && !(*it)->hasBonusOfType(Bonus::UNDEAD)) //we try to cast animate dead on living stack
- )
- continue;
- StacksHealedOrResurrected::HealInfo hi;
- hi.stackID = (*it)->ID;
- hi.healedHP = gs->curB->calculateHealedHP(caster, spell, *it);
- hi.lowLevelResurrection = spellLvl <= 1;
- shr.healedStacks.push_back(hi);
- }
- if(!shr.healedStacks.empty())
- sendAndApply(&shr);
- break;
- }
- case 64: //remove obstacle
- {
- ObstaclesRemoved obr;
- for(int g=0; g<gs->curB->obstacles.size(); ++g)
- {
- std::vector<THex> blockedHexes = VLC->heroh->obstacles[gs->curB->obstacles[g].ID].getBlocked(gs->curB->obstacles[g].pos);
- if(vstd::contains(blockedHexes, destination)) //this obstacle covers given hex
- {
- obr.obstacles.insert(gs->curB->obstacles[g].uniqueID);
- }
- }
- if(!obr.obstacles.empty())
- sendAndApply(&obr);
- break;
- }
- break;
- case 79: //Death stare - handled in a bit different way
- {
- StacksInjured si;
- for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
- {
- if((*it)->hasBonusOfType(Bonus::UNDEAD) || (*it)->hasBonusOfType(Bonus::NON_LIVING)) //this creature is immune
- {
- sc.dmgToDisplay = 0; //TODO: handle Death Stare for multiple targets (?)
- continue;
- }
- BattleStackAttacked bsa;
- bsa.flags |= BattleStackAttacked::EFFECT;
- bsa.effect = spell->mainEffectAnim; //from config\spell-Info.txt
- bsa.damageAmount = usedSpellPower * (*it)->valOfBonuses(Bonus::STACK_HEALTH);
- bsa.stackAttacked = (*it)->ID;
- bsa.attackerID = -1;
- (*it)->prepareAttacked(bsa);
- si.stacks.push_back(bsa);
- }
- if(!si.stacks.empty())
- sendAndApply(&si);
- }
- break;
- case 81: //Acid breath damage - new effect, separate from acid breath defense reduction
- {
- StacksInjured si;
- for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it) //no immunities
- {
- BattleStackAttacked bsa;
- bsa.flags |= BattleStackAttacked::EFFECT;
- bsa.effect = VLC->spellh->spells[80]->mainEffectAnim; //use acid breath
- bsa.damageAmount = usedSpellPower; //damage times the number of attackers
- bsa.stackAttacked = (*it)->ID;
- bsa.attackerID = -1;
- (*it)->prepareAttacked(bsa);
- si.stacks.push_back(bsa);
- }
- if(!si.stacks.empty())
- sendAndApply(&si);
- }
- break;
- }
- sendAndApply(&sc);
- }
- bool CGameHandler::makeCustomAction( BattleAction &ba )
- {
- switch(ba.actionType)
- {
- case BattleAction::HERO_SPELL: //hero casts spell
- {
- const CGHeroInstance *h = gs->curB->heroes[ba.side];
- const CGHeroInstance *secondHero = gs->curB->heroes[!ba.side];
- if(!h)
- {
- tlog2 << "Wrong caster!\n";
- return false;
- }
- if(ba.additionalInfo >= VLC->spellh->spells.size())
- {
- tlog2 << "Wrong spell id (" << ba.additionalInfo << ")!\n";
- return false;
- }
- const CSpell *s = VLC->spellh->spells[ba.additionalInfo];
- ui8 skill = h->getSpellSchoolLevel(s); //skill level
- SpellCasting::ESpellCastProblem escp = gs->curB->battleCanCastThisSpell(h->tempOwner, s, SpellCasting::HERO_CASTING);
- if(escp != SpellCasting::OK)
- {
- tlog2 << "Spell cannot be cast!\n";
- tlog2 << "Problem : " << escp << std::endl;
- return false;
- }
- StartAction start_action(ba);
- sendAndApply(&start_action); //start spell casting
- handleSpellCasting (ba.additionalInfo, skill, ba.destinationTile, ba.side, h->tempOwner, h, secondHero, h->getPrimSkillLevel(2), SpellCasting::HERO_CASTING, NULL);
- sendAndApply(&end_action);
- if( !gs->curB->getStack(gs->curB->activeStack, false)->alive() )
- {
- battleMadeAction.setn(true);
- }
- checkForBattleEnd(gs->curB->stacks);
- if(battleResult.get())
- {
- battleMadeAction.setn(true);
- //battle will be ended by startBattle function
- //endBattle(gs->curB->tile, gs->curB->heroes[0], gs->curB->heroes[1]);
- }
- return true;
- }
- }
- return false;
- }
- void CGameHandler::handleTimeEvents()
- {
- gs->map->events.sort(evntCmp);
- while(gs->map->events.size() && gs->map->events.front()->firstOccurence+1 == gs->day)
- {
- CMapEvent *ev = gs->map->events.front();
- for(int player = 0; player < PLAYER_LIMIT; player++)
- {
- PlayerState *pinfo = gs->getPlayer(player);
- if( pinfo //player exists
- && (ev->players & 1<<player) //event is enabled to this player
- && ((ev->computerAffected && !pinfo->human)
- || (ev->humanAffected && pinfo->human)
- )
- )
- {
- //give resources
- SetResources sr;
- sr.player = player;
- sr.res = pinfo->resources;
- //prepare dialog
- InfoWindow iw;
- iw.player = player;
- iw.text << ev->message;
- for (int i=0; i<ev->resources.size(); i++)
- {
- if(ev->resources[i]) //if resource is changed, we add it to the dialog
- {
- // If removing too much resources, adjust the
- // amount so the total doesn't become negative.
- if (sr.res[i] + ev->resources[i] < 0)
- ev->resources[i] = -sr.res[i];
- if(ev->resources[i]) //if non-zero res change
- {
- iw.components.push_back(Component(Component::RESOURCE,i,ev->resources[i],0));
- sr.res[i] += ev->resources[i];
- }
- }
- }
- if (iw.components.size())
- {
- sendAndApply(&sr); //update player resources if changed
- }
- sendAndApply(&iw); //show dialog
- }
- } //PLAYERS LOOP
- if(ev->nextOccurence)
- {
- gs->map->events.pop_front();
- ev->firstOccurence += ev->nextOccurence;
- std::list<ConstTransitivePtr<CMapEvent> >::iterator it = gs->map->events.begin();
- while ( it !=gs->map->events.end() && **it <= *ev )
- it++;
- gs->map->events.insert(it, ev);
- }
- else
- {
- delete ev;
- gs->map->events.pop_front();
- }
- }
- }
- void CGameHandler::handleTownEvents(CGTownInstance * town, NewTurn &n, std::map<si32, std::map<si32, si32> > &newCreas)
- {
- town->events.sort(evntCmp);
- while(town->events.size() && town->events.front()->firstOccurence == gs->day)
- {
- ui8 player = town->tempOwner;
- CCastleEvent *ev = town->events.front();
- PlayerState *pinfo = gs->getPlayer(player);
- if( pinfo //player exists
- && (ev->players & 1<<player) //event is enabled to this player
- && ((ev->computerAffected && !pinfo->human)
- || (ev->humanAffected && pinfo->human) ) )
- {
- // dialog
- InfoWindow iw;
- iw.player = player;
- iw.text << ev->message;
- for (int i=0; i<ev->resources.size(); i++)
- if(ev->resources[i]) //if resource had changed, we add it to the dialog
- {
- int was = n.res[player][i];
- n.res[player][i] += ev->resources[i];
- n.res[player][i] = std::max<si32>(n.res[player][i], 0);
- if(pinfo->resources[i] != n.res[player][i]) //if non-zero res change
- iw.components.push_back(Component(Component::RESOURCE,i,n.res[player][i]-was,0));
- }
- for(std::set<si32>::iterator i = ev->buildings.begin(); i!=ev->buildings.end();i++)
- if ( !vstd::contains(town->builtBuildings, *i))
- {
- buildStructure(town->id, *i, true);
- iw.components.push_back(Component(Component::BUILDING, town->subID, *i, 0));
- }
- for(si32 i=0;i<ev->creatures.size();i++) //creature growths
- {
- if(town->creatureDwelling(i) && ev->creatures[i])//there is dwelling
- {
- newCreas[town->id][i] += ev->creatures[i];
- iw.components.push_back(Component(Component::CREATURE,
- town->creatures[i].second.back(), ev->creatures[i], 0));
- }
- }
- sendAndApply(&iw); //show dialog
- }
- if(ev->nextOccurence)
- {
- town->events.pop_front();
- ev->firstOccurence += ev->nextOccurence;
- std::list<CCastleEvent*>::iterator it = town->events.begin();
- while ( it !=town->events.end() && **it <= *ev )
- it++;
- town->events.insert(it, ev);
- }
- else
- {
- delete ev;
- town->events.pop_front();
- }
- }
- }
- bool CGameHandler::complain( const std::string &problem )
- {
- sendMessageToAll("Server encountered a problem: " + problem);
- tlog1 << problem << std::endl;
- return true;
- }
- ui32 CGameHandler::getQueryResult( ui8 player, int queryID )
- {
- //TODO: write
- return 0;
- }
- void CGameHandler::showGarrisonDialog( int upobj, int hid, bool removableUnits, const boost::function<void()> &cb )
- {
- ui8 player = getOwner(hid);
- GarrisonDialog gd;
- gd.hid = hid;
- gd.objid = upobj;
- {
- boost::unique_lock<boost::recursive_mutex> lock(gsm);
- gd.id = QID;
- garrisonCallbacks[QID] = cb;
- allowedExchanges[QID] = std::pair<si32,si32>(upobj,hid);
- states.addQuery(player,QID);
- QID++;
- gd.removableUnits = removableUnits;
- sendAndApply(&gd);
- }
- }
- void CGameHandler::showThievesGuildWindow(int requestingObjId)
- {
- OpenWindow ow;
- ow.window = OpenWindow::THIEVES_GUILD;
- ow.id1 = requestingObjId;
- sendAndApply(&ow);
- }
- bool CGameHandler::isAllowedExchange( int id1, int id2 )
- {
- if(id1 == id2)
- return true;
- {
- boost::unique_lock<boost::recursive_mutex> lock(gsm);
- for(std::map<ui32, std::pair<si32,si32> >::const_iterator i = allowedExchanges.begin(); i!=allowedExchanges.end(); i++)
- if((id1 == i->second.first && id2 == i->second.second) ||
- (id2 == i->second.first && id1 == i->second.second))
- return true;
- }
- const CGObjectInstance *o1 = getObj(id1), *o2 = getObj(id2);
- if(o1->ID == TOWNI_TYPE)
- {
- const CGTownInstance *t = static_cast<const CGTownInstance*>(o1);
- if(t->visitingHero == o2 || t->garrisonHero == o2)
- return true;
- }
- if(o2->ID == TOWNI_TYPE)
- {
- const CGTownInstance *t = static_cast<const CGTownInstance*>(o2);
- if(t->visitingHero == o1 || t->garrisonHero == o1)
- return true;
- }
- if(o1->ID == HEROI_TYPE && o2->ID == HEROI_TYPE
- && distance(o1->pos, o2->pos) < 2) //hero stands on the same tile or on the neighbouring tiles
- {
- //TODO: it's workaround, we should check if first hero visited second and player hasn't closed exchange window
- //(to block moving stacks for free [without visiting] between heroes)
- return true;
- }
- return false;
- }
- void CGameHandler::objectVisited( const CGObjectInstance * obj, const CGHeroInstance * h )
- {
- HeroVisit hv;
- hv.obj = obj;
- hv.hero = h;
- hv.starting = true;
- sendAndApply(&hv);
- obj->onHeroVisit(h);
- hv.obj = NULL; //not necessary, moreover may have been deleted in the meantime
- hv.starting = false;
- sendAndApply(&hv);
- }
- bool CGameHandler::buildBoat( ui32 objid )
- {
- const IShipyard *obj = IShipyard::castFrom(getObj(objid));
- if(obj->state())
- {
- complain("Cannot build boat in this shipyard!");
- return false;
- }
- else if(obj->o->ID == TOWNI_TYPE
- && !vstd::contains((static_cast<const CGTownInstance*>(obj))->builtBuildings,6))
- {
- complain("Cannot build boat in the town - no shipyard!");
- return false;
- }
- //TODO use "real" cost via obj->getBoatCost
- if(getResource(obj->o->tempOwner, 6) < 1000 || getResource(obj->o->tempOwner, 0) < 10)
- {
- complain("Not enough resources to build a boat!");
- return false;
- }
- int3 tile = obj->bestLocation();
- if(!gs->map->isInTheMap(tile))
- {
- complain("Cannot find appropriate tile for a boat!");
- return false;
- }
- //take boat cost
- SetResources sr;
- sr.player = obj->o->tempOwner;
- sr.res = gs->getPlayer(obj->o->tempOwner)->resources;
- sr.res[0] -= 10;
- sr.res[6] -= 1000;
- sendAndApply(&sr);
- //create boat
- NewObject no;
- no.ID = 8;
- no.subID = obj->getBoatType();
- no.pos = tile + int3(1,0,0);
- sendAndApply(&no);
- return true;
- }
- void CGameHandler::engageIntoBattle( ui8 player )
- {
- if(vstd::contains(states.players, player))
- states.setFlag(player,&PlayerStatus::engagedIntoBattle,true);
- //notify interfaces
- PlayerBlocked pb;
- pb.player = player;
- pb.reason = PlayerBlocked::UPCOMING_BATTLE;
- sendAndApply(&pb);
- }
- void CGameHandler::winLoseHandle(ui8 players )
- {
- for(size_t i = 0; i < PLAYER_LIMIT; i++)
- {
- if(players & 1<<i && gs->getPlayer(i))
- {
- checkLossVictory(i);
- }
- }
- }
- void CGameHandler::checkLossVictory( ui8 player )
- {
- const PlayerState *p = gs->getPlayer(player);
- if(p->status) //player already won / lost
- return;
- int loss = gs->lossCheck(player);
- int vic = gs->victoryCheck(player);
- if(!loss && !vic)
- return;
- InfoWindow iw;
- getLossVicMessage(player, vic ? vic : loss , vic, iw);
- sendAndApply(&iw);
- PlayerEndsGame peg;
- peg.player = player;
- peg.victory = vic;
- sendAndApply(&peg);
- if(vic > 0) //one player won -> all enemies lost
- {
- iw.text.localStrings.front().second++; //message about losing because enemy won first is just after victory message
- for (bmap<ui8,PlayerState>::const_iterator i = gs->players.begin(); i!=gs->players.end(); i++)
- {
- if(i->first < PLAYER_LIMIT && i->first != player)//FIXME: skip already eliminated players?
- {
- iw.player = i->first;
- sendAndApply(&iw);
- peg.player = i->first;
- peg.victory = gameState()->getPlayerRelations(player, i->first) == 1; // ally of winner
- sendAndApply(&peg);
- }
- }
- }
- else //player lost -> all his objects become unflagged (neutral)
- {
- std::vector<ConstTransitivePtr<CGHeroInstance> > hlp = p->heroes;
- for (std::vector<ConstTransitivePtr<CGHeroInstance> >::const_iterator i = hlp.begin(); i != hlp.end(); i++) //eliminate heroes
- removeObject((*i)->id);
- for (std::vector<ConstTransitivePtr<CGObjectInstance> >::const_iterator i = gs->map->objects.begin(); i != gs->map->objects.end(); i++) //unflag objs
- {
- if(*i && (*i)->tempOwner == player)
- setOwner((**i).id,NEUTRAL_PLAYER);
- }
- //eliminating one player may cause victory of another:
- winLoseHandle(ALL_PLAYERS & ~(1<<player));
- }
- if(vic)
- {
- end2 = true;
- if(gs->campaign)
- {
- std::vector<CGHeroInstance *> hes;
- BOOST_FOREACH(CGHeroInstance * ghi, gs->map->heroes)
- {
- if (ghi->tempOwner == 0 /*TODO: insert human player's color*/)
- {
- hes.push_back(ghi);
- }
- }
- gs->campaign->mapConquered(hes);
- UpdateCampaignState ucs;
- ucs.camp = gs->campaign;
- sendAndApply(&ucs);
- }
- }
- }
- void CGameHandler::getLossVicMessage( ui8 player, ui8 standard, bool victory, InfoWindow &out ) const
- {
- // const PlayerState *p = gs->getPlayer(player);
- // if(!p->human)
- // return; //AI doesn't need text info of loss
- out.player = player;
- if(victory)
- {
- if(standard < 0) //not std loss
- {
- switch(gs->map->victoryCondition.condition)
- {
- case artifact:
- out.text.addTxt(MetaString::GENERAL_TXT, 280); //Congratulations! You have found the %s, and can claim victory!
- out.text.addReplacement(MetaString::ART_NAMES,gs->map->victoryCondition.ID); //artifact name
- break;
- case gatherTroop:
- 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!
- out.text.addReplacement(gs->map->victoryCondition.count);
- out.text.addReplacement(MetaString::CRE_PL_NAMES, gs->map->victoryCondition.ID);
- break;
- case gatherResource:
- out.text.addTxt(MetaString::GENERAL_TXT, 278); //Congratulations! You have collected over %d %s in your treasury. Victory is yours!
- out.text.addReplacement(gs->map->victoryCondition.count);
- out.text.addReplacement(MetaString::RES_NAMES, gs->map->victoryCondition.ID);
- break;
- case buildCity:
- out.text.addTxt(MetaString::GENERAL_TXT, 282); //Congratulations! You have successfully upgraded your town, and can claim victory!
- break;
- case buildGrail:
- out.text.addTxt(MetaString::GENERAL_TXT, 284); //Congratulations! You have constructed a permanent home for the Grail, and can claim victory!
- break;
- case beatHero:
- {
- out.text.addTxt(MetaString::GENERAL_TXT, 252); //Congratulations! You have completed your quest to defeat the enemy hero %s. Victory is yours!
- const CGHeroInstance *h = dynamic_cast<const CGHeroInstance*>(gs->map->victoryCondition.obj);
- assert(h);
- out.text.addReplacement(h->name);
- }
- break;
- case captureCity:
- {
- out.text.addTxt(MetaString::GENERAL_TXT, 249); //Congratulations! You captured %s, and are victorious!
- const CGTownInstance *t = dynamic_cast<const CGTownInstance*>(gs->map->victoryCondition.obj);
- assert(t);
- out.text.addReplacement(t->name);
- }
- break;
- case beatMonster:
- out.text.addTxt(MetaString::GENERAL_TXT, 286); //Congratulations! You have completed your quest to kill the fearsome beast, and can claim victory!
- break;
- case takeDwellings:
- out.text.addTxt(MetaString::GENERAL_TXT, 288); //Congratulations! Your flag flies on the dwelling of every creature. Victory is yours!
- break;
- case takeMines:
- out.text.addTxt(MetaString::GENERAL_TXT, 290); //Congratulations! Your flag flies on every mine. Victory is yours!
- break;
- case transportItem:
- out.text.addTxt(MetaString::GENERAL_TXT, 292); //Congratulations! You have reached your destination, precious cargo intact, and can claim victory!
- break;
- }
- }
- else
- {
- out.text.addTxt(MetaString::GENERAL_TXT, 659); //Congratulations! You have reached your destination, precious cargo intact, and can claim victory!
- }
- }
- else
- {
- if(standard < 0) //not std loss
- {
- switch(gs->map->lossCondition.typeOfLossCon)
- {
- case lossCastle:
- {
- out.text.addTxt(MetaString::GENERAL_TXT, 251); //The town of %s has fallen - all is lost!
- const CGTownInstance *t = dynamic_cast<const CGTownInstance*>(gs->map->lossCondition.obj);
- assert(t);
- out.text.addReplacement(t->name);
- }
- break;
- case lossHero:
- {
- out.text.addTxt(MetaString::GENERAL_TXT, 253); //The hero, %s, has suffered defeat - your quest is over!
- const CGHeroInstance *h = dynamic_cast<const CGHeroInstance*>(gs->map->lossCondition.obj);
- assert(h);
- out.text.addReplacement(h->name);
- }
- break;
- case timeExpires:
- out.text.addTxt(MetaString::GENERAL_TXT, 254); //Alas, time has run out on your quest. All is lost.
- break;
- }
- }
- else if(standard == 2)
- {
- out.text.addTxt(MetaString::GENERAL_TXT, 7);//%s, your heroes abandon you, and you are banished from this land.
- out.text.addReplacement(MetaString::COLOR, player);
- out.components.push_back(Component(Component::FLAG,player,0,0));
- }
- else //lost all towns and heroes
- {
- out.text.addTxt(MetaString::GENERAL_TXT, 660); //All your forces have been defeated, and you are banished from this land!
- }
- }
- }
- bool CGameHandler::dig( const CGHeroInstance *h )
- {
- for (std::vector<ConstTransitivePtr<CGObjectInstance> >::const_iterator i = gs->map->objects.begin(); i != gs->map->objects.end(); i++) //unflag objs
- {
- if(*i && (*i)->ID == 124 && (*i)->pos == h->getPosition())
- {
- complain("Cannot dig - there is already a hole under the hero!");
- return false;
- }
- }
- NewObject no;
- no.ID = 124;
- no.pos = h->getPosition();
- no.subID = getTile(no.pos)->tertype;
- if(no.subID >= 8) //no digging on water / rock
- {
- complain("Cannot dig - wrong terrain type!");
- return false;
- }
- sendAndApply(&no);
- SetMovePoints smp;
- smp.hid = h->id;
- smp.val = 0;
- sendAndApply(&smp);
- InfoWindow iw;
- iw.player = h->tempOwner;
- if(gs->map->grailPos == h->getPosition())
- {
- iw.text.addTxt(MetaString::GENERAL_TXT, 58); //"Congratulations! After spending many hours digging here, your hero has uncovered the "
- iw.text.addTxt(MetaString::ART_NAMES, 2);
- iw.soundID = soundBase::ULTIMATEARTIFACT;
- giveHeroNewArtifact(h, VLC->arth->artifacts[2], -1); //give grail
- sendAndApply(&iw);
- iw.text.clear();
- iw.text.addTxt(MetaString::ART_DESCR, 2);
- sendAndApply(&iw);
- }
- else
- {
- iw.text.addTxt(MetaString::GENERAL_TXT, 59); //"Nothing here. \n Where could it be?"
- iw.soundID = soundBase::Dig;
- sendAndApply(&iw);
- }
- return true;
- }
- void CGameHandler::handleAfterAttackCasting( const BattleAttack & bat )
- {
- const CStack * attacker = gs->curB->getStack(bat.stackAttacking);
- if( attacker->hasBonusOfType(Bonus::SPELL_AFTER_ATTACK) )
- {
- std::set<ui32> spellsToCast;
- BOOST_FOREACH(const Bonus *sf, attacker->getBonuses(Selector::type(Bonus::SPELL_AFTER_ATTACK)))
- {
- spellsToCast.insert (sf->subtype);
- }
- BOOST_FOREACH(ui32 spellID, spellsToCast)
- {
- const CStack * oneOfAttacked = NULL;
- for(int g=0; g<bat.bsa.size(); ++g)
- {
- if (bat.bsa[g].newAmount > 0)
- {
- oneOfAttacked = gs->curB->getStack(bat.bsa[g].stackAttacked);
- break;
- }
- }
- bool castMe = false;
- int meleeRanged;
- if(oneOfAttacked == NULL) //all attacked creatures have been killed
- return;
- int spellLevel = 0;
- BOOST_FOREACH(const Bonus *sf, attacker->getBonuses(Selector::typeSybtype(Bonus::SPELL_AFTER_ATTACK, spellID)))
- {
- amax(spellLevel, sf->additionalInfo % 1000); //pick highest level
- meleeRanged = sf->additionalInfo / 1000;
- if (meleeRanged == 0 || (meleeRanged == 1 && bat.shot()) || (meleeRanged == 2 && !bat.shot()))
- castMe = true;
- }
- int chance = attacker->valOfBonuses((Selector::typeSybtype(Bonus::SPELL_AFTER_ATTACK, spellID)));
- amin (chance, 100);
- int destination = oneOfAttacked->position;
- const CSpell * spell = VLC->spellh->spells[spellID];
- if(gs->curB->battleCanCastThisSpellHere(attacker->owner, spell, SpellCasting::AFTER_ATTACK_CASTING, oneOfAttacked->position)
- != SpellCasting::OK)
- continue;
- //check if spell should be casted (probability handling)
- if(rand()%100 >= chance)
- continue;
- //casting
- if (castMe)
- handleSpellCasting(spellID, spellLevel, destination, !attacker->attackerOwned, attacker->owner, NULL, NULL, attacker->count, SpellCasting::AFTER_ATTACK_CASTING, attacker);
- }
- }
- if (attacker->hasBonusOfType(Bonus::DEATH_STARE)) // spell id 79
- {
- int staredCreatures = 0;
- double mean = attacker->count * attacker->valOfBonuses(Bonus::DEATH_STARE, 0) / 100;
- if (mean >= 1)
- {
- boost::poisson_distribution<int, double> p((int)mean);
- boost::mt19937 rng;
- boost::variate_generator<boost::mt19937&, boost::poisson_distribution<int, double> > dice (rng, p);
- staredCreatures += dice();
- }
- if (((int)(mean * 100)) < rand() % 100) //fractional chance for one last kill
- ++staredCreatures;
-
- staredCreatures += attacker->type->level * attacker->valOfBonuses(Bonus::DEATH_STARE, 1);
- if (staredCreatures)
- {
- if (bat.bsa.size() && bat.bsa[0].newAmount > 0) //TODO: death stare was not originally avaliable for multiple-hex attacks, but...
- handleSpellCasting(79, 0, gs->curB->getStack(bat.bsa[0].stackAttacked)->position,
- !attacker->attackerOwned, attacker->owner, NULL, NULL, staredCreatures, SpellCasting::AFTER_ATTACK_CASTING, attacker);
- }
- }
- int acidDamage = 0;
- BOOST_FOREACH(const Bonus *b, attacker->getBonuses(Selector::type(Bonus::ACID_BREATH)))
- {
- if (b->additionalInfo > rand()%100)
- acidDamage += b->val;
- }
- if (acidDamage)
- {
- handleSpellCasting(81, 0, gs->curB->getStack(bat.bsa[0].stackAttacked)->position,
- !attacker->attackerOwned, attacker->owner, NULL, NULL,
- acidDamage * attacker->count, SpellCasting::AFTER_ATTACK_CASTING, attacker);
- }
- }
- bool CGameHandler::castSpell(const CGHeroInstance *h, int spellID, const int3 &pos)
- {
- const CSpell *s = VLC->spellh->spells[spellID];
- int cost = h->getSpellCost(s);
- int schoolLevel = h->getSpellSchoolLevel(s);
- if(!h->canCastThisSpell(s))
- COMPLAIN_RET("Hero cannot cast this spell!");
- if(h->mana < cost)
- COMPLAIN_RET("Hero doesn't have enough spell points to cast this spell!");
- if(s->combatSpell)
- COMPLAIN_RET("This function can be used only for adventure map spells!");
- AdvmapSpellCast asc;
- asc.caster = h;
- asc.spellID = spellID;
- sendAndApply(&asc);
- using namespace Spells;
- switch(spellID)
- {
- case SUMMON_BOAT: //Summon Boat
- {
- //check if spell works at all
- if(rand() % 100 >= s->powers[schoolLevel]) //power is % chance of success
- {
- InfoWindow iw;
- iw.player = h->tempOwner;
- iw.text.addTxt(MetaString::GENERAL_TXT, 336); //%s tried to summon a boat, but failed.
- iw.text.addReplacement(h->name);
- sendAndApply(&iw);
- return true; //TODO? or should it be false? request was correct and realized, but spell failed...
- }
- //try to find unoccupied boat to summon
- const CGBoat *nearest = NULL;
- double dist = 0;
- int3 summonPos = h->bestLocation();
- if(summonPos.x < 0)
- COMPLAIN_RET("There is no water tile available!");
- BOOST_FOREACH(const CGObjectInstance *obj, gs->map->objects)
- {
- if(obj && obj->ID == 8)
- {
- const CGBoat *b = static_cast<const CGBoat*>(obj);
- if(b->hero) continue; //we're looking for unoccupied boat
- double nDist = distance(b->pos, h->getPosition());
- if(!nearest || nDist < dist) //it's first boat or closer than previous
- {
- nearest = b;
- dist = nDist;
- }
- }
- }
- if(nearest) //we found boat to summon
- {
- ChangeObjPos cop;
- cop.objid = nearest->id;
- cop.nPos = summonPos + int3(1,0,0);;
- cop.flags = 1;
- sendAndApply(&cop);
- }
- else if(schoolLevel < 2) //none or basic level -> cannot create boat :(
- {
- InfoWindow iw;
- iw.player = h->tempOwner;
- iw.text.addTxt(MetaString::GENERAL_TXT, 335); //There are no boats to summon.
- sendAndApply(&iw);
- }
- else //create boat
- {
- NewObject no;
- no.ID = 8;
- no.subID = h->getBoatType();
- no.pos = summonPos + int3(1,0,0);;
- sendAndApply(&no);
- }
- break;
- }
- case SCUTTLE_BOAT: //Scuttle Boat
- {
- //check if spell works at all
- if(rand() % 100 >= s->powers[schoolLevel]) //power is % chance of success
- {
- InfoWindow iw;
- iw.player = h->tempOwner;
- iw.text.addTxt(MetaString::GENERAL_TXT, 337); //%s tried to scuttle the boat, but failed
- iw.text.addReplacement(h->name);
- sendAndApply(&iw);
- return true; //TODO? or should it be false? request was correct and realized, but spell failed...
- }
- if(!gs->map->isInTheMap(pos))
- COMPLAIN_RET("Invalid dst tile for scuttle!");
- //TODO: test range, visibility
- const TerrainTile *t = &gs->map->getTile(pos);
- if(!t->visitableObjects.size() || t->visitableObjects.back()->ID != 8)
- COMPLAIN_RET("There is no boat to scuttle!");
- RemoveObject ro;
- ro.id = t->visitableObjects.back()->id;
- sendAndApply(&ro);
- break;
- }
- case DIMENSION_DOOR: //Dimension Door
- {
- const TerrainTile *dest = getTile(pos);
- const TerrainTile *curr = getTile(h->getSightCenter());
- if(!dest)
- COMPLAIN_RET("Destination tile doesn't exist!");
- if(!h->movement)
- COMPLAIN_RET("Hero needs movement points to cast Dimension Door!");
- if(h->getBonusesCount(Bonus::SPELL_EFFECT, Spells::DIMENSION_DOOR) >= s->powers[schoolLevel]) //limit casts per turn
- {
- InfoWindow iw;
- iw.player = h->tempOwner;
- iw.text.addTxt(MetaString::GENERAL_TXT, 338); //%s is not skilled enough to cast this spell again today.
- iw.text.addReplacement(h->name);
- sendAndApply(&iw);
- break;
- }
- GiveBonus gb;
- gb.id = h->id;
- gb.bonus = Bonus(Bonus::ONE_DAY, Bonus::NONE, Bonus::SPELL_EFFECT, 0, Spells::DIMENSION_DOOR);
- sendAndApply(&gb);
-
- if(!dest->isClear(curr)) //wrong dest tile
- {
- InfoWindow iw;
- iw.player = h->tempOwner;
- iw.text.addTxt(MetaString::GENERAL_TXT, 70); //Dimension Door failed!
- sendAndApply(&iw);
- break;
- }
- //we need obtain guard pos before moving hero, otherwise we get nothing, because tile will be "unguarded" by hero
- int3 guardPos = gs->guardingCreaturePosition(pos);
- TryMoveHero tmh;
- tmh.id = h->id;
- tmh.movePoints = std::max<int>(0, h->movement - 300);
- tmh.result = TryMoveHero::TELEPORTATION;
- tmh.start = h->pos;
- tmh.end = pos + h->getVisitableOffset();
- getTilesInRange(tmh.fowRevealed, pos, h->getSightRadious(), h->tempOwner,1);
- sendAndApply(&tmh);
- tryAttackingGuard(guardPos, h);
- }
- break;
- case FLY: //Fly
- {
- int subtype = schoolLevel >= 2 ? 1 : 2; //adv or expert
- GiveBonus gb;
- gb.id = h->id;
- gb.bonus = Bonus(Bonus::ONE_DAY, Bonus::FLYING_MOVEMENT, Bonus::SPELL_EFFECT, 0, Spells::FLY, subtype);
- sendAndApply(&gb);
- }
- break;
- case WATER_WALK: //Water Walk
- {
- int subtype = schoolLevel >= 2 ? 1 : 2; //adv or expert
- GiveBonus gb;
- gb.id = h->id;
- gb.bonus = Bonus(Bonus::ONE_DAY, Bonus::WATER_WALKING, Bonus::SPELL_EFFECT, 0, Spells::FLY, subtype);
- sendAndApply(&gb);
- }
- break;
-
- case TOWN_PORTAL: //Town Portal
- {
- if (!gs->map->isInTheMap(pos))
- COMPLAIN_RET("Destination tile not present!")
- TerrainTile tile = gs->map->getTile(pos);
- if (tile.visitableObjects.empty() || tile.visitableObjects.back()->ID != TOWNI_TYPE )
- COMPLAIN_RET("Town not found for Town Portal!");
-
- CGTownInstance * town = static_cast<CGTownInstance*>(tile.visitableObjects.back());
- if (town->tempOwner != h->tempOwner)
- COMPLAIN_RET("Can't teleport to another player!");
- if (town->visitingHero)
- COMPLAIN_RET("Can't teleport to occupied town!");
-
- if (h->getSpellSchoolLevel(s) < 2)
- {
- double dist = town->pos.dist2d(h->pos);
- int nearest = town->id; //nearest town's ID
- BOOST_FOREACH(const CGTownInstance * currTown, gs->getPlayer(h->tempOwner)->towns)
- {
- double curDist = currTown->pos.dist2d(h->pos);
- if (nearest == -1 || curDist < dist)
- {
- nearest = town->id;
- dist = curDist;
- }
- }
- if (town->id != nearest)
- COMPLAIN_RET("This hero can only teleport to nearest town!")
- }
- if (h->visitedTown)
- stopHeroVisitCastle(town->id, h->id);
- if (moveHero(h->id, town->visitablePos() + h->getVisitableOffset() ,1));
- heroVisitCastle(town->id, h->id);
- }
- break;
- case VISIONS: //Visions
- case VIEW_EARTH: //View Earth
- case DISGUISE: //Disguise
- case VIEW_AIR: //View Air
- default:
- COMPLAIN_RET("This spell is not implemented yet!");
- break;
- }
- SetMana sm;
- sm.hid = h->id;
- sm.val = h->mana - cost;
- sendAndApply(&sm);
- return true;
- }
- void CGameHandler::visitObjectOnTile(const TerrainTile &t, const CGHeroInstance * h)
- {
- //to prevent self-visiting heroes on space press
- if(t.visitableObjects.back() != h)
- objectVisited(t.visitableObjects.back(), h);
- else if(t.visitableObjects.size() > 1)
- objectVisited(*(t.visitableObjects.end()-2),h);
- }
- bool CGameHandler::tryAttackingGuard(const int3 &guardPos, const CGHeroInstance * h)
- {
- if(!gs->map->isInTheMap(guardPos))
- return false;
- const TerrainTile &guardTile = gs->map->terrain[guardPos.x][guardPos.y][guardPos.z];
- objectVisited(guardTile.visitableObjects.back(), h);
- visitObjectAfterVictory = true;
- return true;
- }
- bool CGameHandler::sacrificeCreatures(const IMarket *market, const CGHeroInstance *hero, TSlot slot, ui32 count)
- {
- int oldCount = hero->getStackCount(slot);
- if(oldCount < count)
- COMPLAIN_RET("Not enough creatures to sacrifice!")
- else if(oldCount == count && hero->Slots().size() == 1 && hero->needsLastStack())
- COMPLAIN_RET("Cannot sacrifice last creature!");
- int crid = hero->getStack(slot).type->idNumber;
-
- changeStackCount(StackLocation(hero, slot), -count);
- int dump, exp;
- market->getOffer(crid, 0, dump, exp, CREATURE_EXP);
- exp *= count;
- changePrimSkill(hero->id, 4, hero->calculateXp(exp));
- return true;
- }
- bool CGameHandler::sacrificeArtifact(const IMarket * m, const CGHeroInstance * hero, int slot)
- {
- ArtifactLocation al(hero, slot);
- const CArtifactInstance *a = al.getArt();
- if(!a)
- COMPLAIN_RET("Cannot find artifact to sacrifice!");
- int dmp, expToGive;
- m->getOffer(hero->getArtTypeId(slot), 0, dmp, expToGive, ARTIFACT_EXP);
- removeArtifact(al);
- changePrimSkill(hero->id, 4, expToGive);
- return true;
- }
- void CGameHandler::makeStackDoNothing(const CStack * next)
- {
- BattleAction doNothing;
- doNothing.actionType = 0;
- doNothing.additionalInfo = 0;
- doNothing.destinationTile = -1;
- doNothing.side = !next->attackerOwned;
- doNothing.stackNumber = next->ID;
- StartAction start_action(doNothing);
- sendAndApply(&start_action);
- sendAndApply(&end_action);
- }
- bool CGameHandler::insertNewStack(const StackLocation &sl, const CCreature *c, TQuantity count)
- {
- if(sl.army->hasStackAtSlot(sl.slot))
- COMPLAIN_RET("Slot is already taken!");
- InsertNewStack ins;
- ins.sl = sl;
- ins.stack = CStackBasicDescriptor(c, count);
- sendAndApply(&ins);
- return true;
- }
- bool CGameHandler::eraseStack(const StackLocation &sl, bool forceRemoval/* = false*/)
- {
- if(!sl.army->hasStackAtSlot(sl.slot))
- COMPLAIN_RET("Cannot find a stack to erase");
- if(sl.army->Slots().size() == 1 //from the last stack
- && sl.army->needsLastStack() //that must be left
- && !forceRemoval) //ignore above conditions if we are forcing removal
- {
- COMPLAIN_RET("Cannot erase the last stack!");
- }
- EraseStack es;
- es.sl = sl;
- sendAndApply(&es);
- return true;
- }
- bool CGameHandler::changeStackCount(const StackLocation &sl, TQuantity count, bool absoluteValue /*= false*/)
- {
- TQuantity currentCount = sl.army->getStackCount(sl.slot);
- if((absoluteValue && count < 0)
- || (!absoluteValue && -count > currentCount))
- {
- COMPLAIN_RET("Cannot take more stacks than present!");
- }
- if((currentCount == -count && !absoluteValue)
- || (!count && absoluteValue))
- {
- eraseStack(sl);
- }
- else
- {
- ChangeStackCount csc;
- csc.sl = sl;
- csc.count = count;
- csc.absoluteValue = absoluteValue;
- sendAndApply(&csc);
- }
- return true;
- }
- bool CGameHandler::addToSlot(const StackLocation &sl, const CCreature *c, TQuantity count)
- {
- const CCreature *slotC = sl.army->getCreature(sl.slot);
- if(!slotC) //slot is empty
- insertNewStack(sl, c, count);
- else if(c == slotC)
- changeStackCount(sl, count);
- else
- {
- COMPLAIN_RET("Cannot add " + c->namePl + " to slot " + boost::lexical_cast<std::string>(sl.slot) + "!");
- }
- return true;
- }
- void CGameHandler::tryJoiningArmy(const CArmedInstance *src, const CArmedInstance *dst, bool removeObjWhenFinished, bool allowMerging)
- {
- if(!dst->canBeMergedWith(*src, allowMerging))
- {
- if (allowMerging) //do that, add all matching creatures.
- {
- bool cont = true;
- while (cont)
- {
- for(TSlots::const_iterator i = src->stacks.begin(); i != src->stacks.end(); i++)//while there are unmoved creatures
- {
- TSlot pos = dst->getSlotFor(i->second->type);
- if(pos > -1)
- {
- moveStack(StackLocation(src, i->first), StackLocation(dst, pos));
- cont = true;
- break; //or iterator crashes
- }
- cont = false;
- }
- }
- }
- boost::function<void()> removeOrNot = 0;
- if(removeObjWhenFinished)
- removeOrNot = boost::bind(&IGameCallback::removeObject,this,src->id);
- showGarrisonDialog(src->id, dst->id, true, removeOrNot); //show garrison window and optionally remove ourselves from map when player ends
- }
- else //merge
- {
- moveArmy(src, dst, allowMerging);
- if(removeObjWhenFinished)
- removeObject(src->id);
- }
- }
- bool CGameHandler::moveStack(const StackLocation &src, const StackLocation &dst, TQuantity count)
- {
- if(!src.army->hasStackAtSlot(src.slot))
- COMPLAIN_RET("No stack to move!");
- if(dst.army->hasStackAtSlot(dst.slot) && dst.army->getCreature(dst.slot) != src.army->getCreature(src.slot))
- COMPLAIN_RET("Cannot move: stack of different type at destination pos!");
- if(count == -1)
- {
- count = src.army->getStackCount(src.slot);
- }
- if(src.army != dst.army //moving away
- && count == src.army->getStackCount(src.slot) //all creatures
- && src.army->Slots().size() == 1 //from the last stack
- && src.army->needsLastStack()) //that must be left
- {
- COMPLAIN_RET("Cannot move away the alst creature!");
- }
- RebalanceStacks rs;
- rs.src = src;
- rs.dst = dst;
- rs.count = count;
- sendAndApply(&rs);
- return true;
- }
- bool CGameHandler::swapStacks(const StackLocation &sl1, const StackLocation &sl2)
- {
- if(!sl1.army->hasStackAtSlot(sl1.slot))
- return moveStack(sl2, sl1);
- else if(!sl2.army->hasStackAtSlot(sl2.slot))
- return moveStack(sl1, sl2);
- else
- {
- SwapStacks ss;
- ss.sl1 = sl1;
- ss.sl2 = sl2;
- sendAndApply(&ss);
- return true;
- }
- }
- void CGameHandler::runBattle()
- {
- assert(gs->curB);
- //TODO: pre-tactic stuff, call scripts etc.
- //tactic round
- {
- while(gs->curB->tacticDistance)
- boost::this_thread::sleep(boost::posix_time::milliseconds(50));
- }
- //spells opening battle
- for(int i=0; i<ARRAY_COUNT(gs->curB->heroes); ++i)
- {
- if(gs->curB->heroes[i] && gs->curB->heroes[i]->hasBonusOfType(Bonus::OPENING_BATTLE_SPELL))
- {
- BonusList bl;
- gs->curB->heroes[i]->getBonuses(bl, Selector::type(Bonus::OPENING_BATTLE_SPELL));
- BOOST_FOREACH (Bonus *b, bl)
- {
- handleSpellCasting(b->subtype, 3, -1, 0, gs->curB->heroes[i]->tempOwner, NULL, gs->curB->heroes[1-i], b->val, SpellCasting::HERO_CASTING, NULL);
- }
- }
- }
- //main loop
- while(!battleResult.get()) //till the end of the battle ;]
- {
- NEW_ROUND;
- std::vector<CStack*> & stacks = (gs->curB->stacks);
- const BattleInfo & curB = *gs->curB;
- //stack loop
- const CStack *next;
- while(!battleResult.get() && (next = curB.getNextStack()) && next->willMove())
- {
- //check for bad morale => freeze
- int nextStackMorale = next->MoraleVal();
- if( nextStackMorale < 0 &&
- !(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)
- )
- {
- if( rand()%24 < -2 * nextStackMorale)
- {
- //unit loses its turn - empty freeze action
- BattleAction ba;
- ba.actionType = BattleAction::BAD_MORALE;
- ba.additionalInfo = 1;
- ba.side = !next->attackerOwned;
- ba.stackNumber = next->ID;
- StartAction start_action(ba);
- sendAndApply(&start_action);
- sendAndApply(&end_action);
- checkForBattleEnd(stacks); //check if this "action" ended the battle (not likely but who knows...)
- continue;
- }
- }
- if(next->hasBonusOfType(Bonus::ATTACKS_NEAREST_CREATURE)) //while in berserk
- {
- std::pair<const CStack *, int> attackInfo = curB.getNearestStack(next, boost::logic::indeterminate);
- if(attackInfo.first != NULL)
- {
- BattleAction attack;
- attack.actionType = BattleAction::WALK_AND_ATTACK;
- attack.side = !next->attackerOwned;
- attack.stackNumber = next->ID;
- attack.additionalInfo = attackInfo.first->position;
- attack.destinationTile = attackInfo.second;
- makeBattleAction(attack);
- checkForBattleEnd(stacks);
- }
- else
- {
- makeStackDoNothing(next);
- }
- continue;
- }
- const CGHeroInstance * curOwner = gs->curB->battleGetOwner(next);
- if( (next->position < 0 && (!curOwner || curOwner->getSecSkillLevel(CGHeroInstance::BALLISTICS) == 0)) //arrow turret, hero has no ballistics
- || (next->getCreature()->idNumber == 146 && (!curOwner || curOwner->getSecSkillLevel(CGHeroInstance::ARTILLERY) == 0))) //ballista, hero has no artillery
- {
- BattleAction attack;
- attack.actionType = BattleAction::SHOOT;
- attack.side = !next->attackerOwned;
- attack.stackNumber = next->ID;
- for(int g=0; g<gs->curB->stacks.size(); ++g)
- {
- if(gs->curB->stacks[g]->owner != next->owner && gs->curB->stacks[g]->alive())
- {
- attack.destinationTile = gs->curB->stacks[g]->position;
- break;
- }
- }
- makeBattleAction(attack);
- checkForBattleEnd(stacks);
- continue;
- }
- if(next->getCreature()->idNumber == 145 && (!curOwner || curOwner->getSecSkillLevel(CGHeroInstance::BALLISTICS) == 0)) //catapult, hero has no ballistics
- {
- BattleAction attack;
- static const int wallHexes[] = {50, 183, 182, 130, 62, 29, 12, 95};
- attack.destinationTile = wallHexes[ rand()%ARRAY_COUNT(wallHexes) ];
- attack.actionType = BattleAction::CATAPULT;
- attack.additionalInfo = 0;
- attack.side = !next->attackerOwned;
- attack.stackNumber = next->ID;
- makeBattleAction(attack);
- continue;
- }
- if(next->getCreature()->idNumber == 147 && (!curOwner || curOwner->getSecSkillLevel(CGHeroInstance::FIRST_AID) == 0)) //first aid tent, hero has no first aid
- {
- BattleAction heal;
- std::vector< const CStack * > possibleStacks, secondPriority;
- for (int v=0; v<gs->curB->stacks.size(); ++v)
- {
- const CStack * cstack = gs->curB->stacks[v];
- if (cstack->owner == next->owner && cstack->firstHPleft < cstack->MaxHealth() && cstack->alive()) //it's friendly and not fully healthy
- {
- if (cstack->hasBonusOfType(Bonus::SIEGE_WEAPON))
- secondPriority.push_back(cstack);
- else
- possibleStacks.push_back(cstack);
- }
- }
- if(possibleStacks.size() == 0 && secondPriority.size() == 0)
- {
- //nothing to heal
- makeStackDoNothing(next);
- continue;
- }
- else
- {
- //heal random creature
- const CStack * toBeHealed = NULL;
- if (possibleStacks.size() > 0)
- toBeHealed = possibleStacks[ rand()%possibleStacks.size() ];
- else
- toBeHealed = secondPriority[ rand()%secondPriority.size() ];
-
- heal.actionType = BattleAction::STACK_HEAL;
- heal.additionalInfo = 0;
- heal.destinationTile = toBeHealed->position;
- heal.side = !next->attackerOwned;
- heal.stackNumber = next->ID;
- makeBattleAction(heal);
- }
- continue;
- }
- int numberOfAsks = 1;
- bool breakOuter = false;
- do
- {//ask interface and wait for answer
- if(!battleResult.get())
- {
- BattleSetActiveStack sas;
- sas.stack = next->ID;
- sendAndApply(&sas);
- boost::unique_lock<boost::mutex> lock(battleMadeAction.mx);
- while(next->alive() && (!battleMadeAction.data && !battleResult.get())) //active stack hasn't made its action and battle is still going
- battleMadeAction.cond.wait(lock);
- battleMadeAction.data = false;
- }
- if(battleResult.get()) //don't touch it, battle could be finished while waiting got action
- {
- breakOuter = true;
- break;
- }
- //we're after action, all results applied
- checkForBattleEnd(stacks); //check if this action ended the battle
- //check for good morale
- nextStackMorale = next->MoraleVal();
- if(!vstd::contains(next->state,HAD_MORALE) //only one extra move per turn possible
- && !vstd::contains(next->state,DEFENDING)
- && !vstd::contains(next->state,WAITING)
- && next->alive()
- && nextStackMorale > 0
- && !(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
- )
- {
- if(rand()%24 < nextStackMorale) //this stack hasn't got morale this turn
- ++numberOfAsks; //move this stack once more
- }
- --numberOfAsks;
- } while (numberOfAsks > 0);
- if (breakOuter)
- {
- break;
- }
- }
- }
- endBattle(gs->curB->tile, gs->curB->heroes[0], gs->curB->heroes[1]);
- }
- void CGameHandler::giveHeroArtifact(const CGHeroInstance *h, const CArtifactInstance *a, int pos)
- {
- assert(a->artType);
- ArtifactLocation al;
- al.hero = h;
- int slot = -1;
- if(pos < 0)
- {
- if(pos == -2)
- slot = a->firstAvailableSlot(h);
- else
- slot = a->firstBackpackSlot(h);
- }
- else
- {
- slot = pos;
- }
- al.slot = slot;
- if(slot < 0 || !a->canBePutAt(al))
- {
- complain("Cannot put artifact in that slot!");
- return;
- }
- putArtifact(al, a);
- }
- void CGameHandler::putArtifact(const ArtifactLocation &al, const CArtifactInstance *a)
- {
- PutArtifact pa;
- pa.art = a;
- pa.al = al;
- sendAndApply(&pa);
- }
- void CGameHandler::moveArtifact(const ArtifactLocation &al1, const ArtifactLocation &al2)
- {
- MoveArtifact ma;
- ma.src = al1;
- ma.dst = al2;
- sendAndApply(&ma);
- }
- void CGameHandler::giveHeroNewArtifact(const CGHeroInstance *h, const CArtifact *artType, int pos)
- {
- CArtifactInstance *a = NULL;
- if(!artType->constituents)
- a = new CArtifactInstance();
- else
- a = new CCombinedArtifactInstance();
- a->artType = artType; //*NOT* via settype -> all bonus-related stuff must be done by NewArtifact apply
-
- NewArtifact na;
- na.art = a;
- sendAndApply(&na); // -> updates a!!!, will create a on other machines
- giveHeroArtifact(h, a, pos);
- }
- void CGameHandler::setBattleResult(int resultType, int victoriusSide)
- {
- BattleResult *br = new BattleResult;
- br->result = resultType;
- br->winner = victoriusSide; //surrendering side loses
- gs->curB->calculateCasualties(br->casualties);
- battleResult.set(br);
- }
- void CGameHandler::commitPackage( CPackForClient *pack )
- {
- sendAndApply(pack);
- }
- CasualtiesAfterBattle::CasualtiesAfterBattle(const CArmedInstance *army, BattleInfo *bat)
- {
- int color = army->tempOwner;
- if(color == 254)
- color = NEUTRAL_PLAYER;
- BOOST_FOREACH(CStack *st, bat->stacks)
- {
- if(vstd::contains(st->state, SUMMONED)) //don't take into account summoned stacks
- continue;
- if(st->owner==color && !army->slotEmpty(st->slot) && st->count < army->getStackCount(st->slot))
- {
- StackLocation sl(army, st->slot);
- if(st->alive())
- newStackCounts.push_back(std::pair<StackLocation, int>(sl, st->count));
- else
- newStackCounts.push_back(std::pair<StackLocation, int>(sl, 0));
- }
- }
- }
- void CasualtiesAfterBattle::takeFromArmy(CGameHandler *gh)
- {
- BOOST_FOREACH(TStackAndItsNewCount &ncount, newStackCounts)
- {
- if(ncount.second > 0)
- gh->changeStackCount(ncount.first, ncount.second, true);
- else
- gh->eraseStack(ncount.first, true);
- }
- }
|