CGameHandler.cpp 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093
  1. #include "../StartInfo.h"
  2. #include "../hch/CArtHandler.h"
  3. #include "../hch/CBuildingHandler.h"
  4. #include "../hch/CDefObjInfoHandler.h"
  5. #include "../hch/CHeroHandler.h"
  6. #include "../hch/CObjectHandler.h"
  7. #include "../hch/CSpellHandler.h"
  8. #include "../hch/CTownHandler.h"
  9. #include "../lib/CGameState.h"
  10. #include "../lib/CondSh.h"
  11. #include "../lib/NetPacks.h"
  12. #include "../lib/VCMI_Lib.h"
  13. #include "../lib/map.h"
  14. #include "CGameHandler.h"
  15. #include <boost/bind.hpp>
  16. #include <boost/date_time/posix_time/posix_time_types.hpp> //no i/o just types
  17. #include <boost/foreach.hpp>
  18. #include <boost/thread.hpp>
  19. #include <boost/thread/shared_mutex.hpp>
  20. #include <boost/assign/list_of.hpp>
  21. #include <fstream>
  22. /*
  23. * CGameHandler.cpp, part of VCMI engine
  24. *
  25. * Authors: listed in file AUTHORS in main folder
  26. *
  27. * License: GNU General Public License v2.0 or later
  28. * Full text of license available in license.txt file, in main folder
  29. *
  30. */
  31. #undef DLL_EXPORT
  32. #define DLL_EXPORT
  33. #include "../lib/RegisterTypes.cpp"
  34. #ifndef _MSC_VER
  35. #include <boost/thread/xtime.hpp>
  36. #endif
  37. extern bool end2;
  38. #ifdef min
  39. #undef min
  40. #endif
  41. #ifdef max
  42. #undef max
  43. #endif
  44. #define NEW_ROUND BattleNextRound bnr;\
  45. bnr.round = gs->curB->round + 1;\
  46. sendAndApply(&bnr);
  47. CondSh<bool> battleMadeAction;
  48. CondSh<BattleResult *> battleResult(NULL);
  49. class CBaseForGHApply
  50. {
  51. public:
  52. virtual bool applyOnGH(CGameHandler *gh, CConnection *c, void *pack) const =0;
  53. };
  54. template <typename T> class CApplyOnGH : public CBaseForGHApply
  55. {
  56. public:
  57. bool applyOnGH(CGameHandler *gh, CConnection *c, void *pack) const
  58. {
  59. T *ptr = static_cast<T*>(pack);
  60. ptr->c = c;
  61. return ptr->applyGh(gh);
  62. }
  63. };
  64. class CGHApplier
  65. {
  66. public:
  67. std::map<ui16,CBaseForGHApply*> apps;
  68. CGHApplier()
  69. {
  70. registerTypes3(*this);
  71. }
  72. template<typename T> void registerType(const T * t=NULL)
  73. {
  74. ui16 ID = typeList.registerType(t);
  75. apps[ID] = new CApplyOnGH<T>;
  76. }
  77. } *applier = NULL;
  78. class CMP_stack
  79. {
  80. public:
  81. inline bool operator ()(const CStack* a, const CStack* b)
  82. {
  83. return (a->Speed())>(b->Speed());
  84. }
  85. } cmpst ;
  86. static inline double distance(int3 a, int3 b)
  87. {
  88. return std::sqrt( (double)(a.x-b.x)*(a.x-b.x) + (a.y-b.y)*(a.y-b.y) );
  89. }
  90. static void giveExp(BattleResult &r)
  91. {
  92. r.exp[0] = 0;
  93. r.exp[1] = 0;
  94. for(std::set<std::pair<ui32,si32> >::iterator i = r.casualties[!r.winner].begin(); i!=r.casualties[!r.winner].end(); i++)
  95. {
  96. r.exp[r.winner] += VLC->creh->creatures[i->first].hitPoints * i->second;
  97. }
  98. }
  99. PlayerStatus PlayerStatuses::operator[](ui8 player)
  100. {
  101. boost::unique_lock<boost::mutex> l(mx);
  102. if(players.find(player) != players.end())
  103. {
  104. return players[player];
  105. }
  106. else
  107. {
  108. throw std::string("No such player!");
  109. }
  110. }
  111. void PlayerStatuses::addPlayer(ui8 player)
  112. {
  113. boost::unique_lock<boost::mutex> l(mx);
  114. players[player];
  115. }
  116. bool PlayerStatuses::hasQueries(ui8 player)
  117. {
  118. boost::unique_lock<boost::mutex> l(mx);
  119. if(players.find(player) != players.end())
  120. {
  121. return players[player].queries.size();
  122. }
  123. else
  124. {
  125. throw std::string("No such player!");
  126. }
  127. }
  128. bool PlayerStatuses::checkFlag(ui8 player, bool PlayerStatus::*flag)
  129. {
  130. boost::unique_lock<boost::mutex> l(mx);
  131. if(players.find(player) != players.end())
  132. {
  133. return players[player].*flag;
  134. }
  135. else
  136. {
  137. throw std::string("No such player!");
  138. }
  139. }
  140. void PlayerStatuses::setFlag(ui8 player, bool PlayerStatus::*flag, bool val)
  141. {
  142. boost::unique_lock<boost::mutex> l(mx);
  143. if(players.find(player) != players.end())
  144. {
  145. players[player].*flag = val;
  146. }
  147. else
  148. {
  149. throw std::string("No such player!");
  150. }
  151. cv.notify_all();
  152. }
  153. void PlayerStatuses::addQuery(ui8 player, ui32 id)
  154. {
  155. boost::unique_lock<boost::mutex> l(mx);
  156. if(players.find(player) != players.end())
  157. {
  158. players[player].queries.insert(id);
  159. }
  160. else
  161. {
  162. throw std::string("No such player!");
  163. }
  164. cv.notify_all();
  165. }
  166. void PlayerStatuses::removeQuery(ui8 player, ui32 id)
  167. {
  168. boost::unique_lock<boost::mutex> l(mx);
  169. if(players.find(player) != players.end())
  170. {
  171. players[player].queries.erase(id);
  172. }
  173. else
  174. {
  175. throw std::string("No such player!");
  176. }
  177. cv.notify_all();
  178. }
  179. template <typename T>
  180. void callWith(std::vector<T> args, boost::function<void(T)> fun, ui32 which)
  181. {
  182. fun(args[which]);
  183. }
  184. void CGameHandler::changeSecSkill( int ID, int which, int val, bool abs/*=false*/ )
  185. {
  186. SetSecSkill sss;
  187. sss.id = ID;
  188. sss.which = which;
  189. sss.val = val;
  190. sss.abs = abs;
  191. sendAndApply(&sss);
  192. if(which == 7) //Wisdom
  193. {
  194. const CGHeroInstance *h = getHero(ID);
  195. if(h && h->visitedTown)
  196. giveSpells(h->visitedTown, h);
  197. }
  198. }
  199. void CGameHandler::changePrimSkill(int ID, int which, si64 val, bool abs)
  200. {
  201. SetPrimSkill sps;
  202. sps.id = ID;
  203. sps.which = which;
  204. sps.abs = abs;
  205. sps.val = val;
  206. sendAndApply(&sps);
  207. if(which==4) //only for exp - hero may level up
  208. {
  209. CGHeroInstance *hero = static_cast<CGHeroInstance *>(gs->map->objects[ID]);
  210. while (hero->exp >= VLC->heroh->reqExp(hero->level+1)) //new level
  211. {
  212. //give prim skill
  213. tlog5 << hero->name <<" got level "<<hero->level<<std::endl;
  214. int r = rand()%100, pom=0, x=0;
  215. int std::pair<int,int>::*g = (hero->level>9) ? (&std::pair<int,int>::second) : (&std::pair<int,int>::first);
  216. for(;x<PRIMARY_SKILLS;x++)
  217. {
  218. pom += hero->type->heroClass->primChance[x].*g;
  219. if(r<pom)
  220. break;
  221. }
  222. tlog5 << "Bohater dostaje umiejetnosc pierwszorzedna " << x << " (wynik losowania "<<r<<")"<<std::endl;
  223. SetPrimSkill sps;
  224. sps.id = ID;
  225. sps.which = x;
  226. sps.abs = false;
  227. sps.val = 1;
  228. sendAndApply(&sps);
  229. HeroLevelUp hlu;
  230. hlu.heroid = ID;
  231. hlu.primskill = x;
  232. hlu.level = hero->level+1;
  233. //picking sec. skills for choice
  234. std::set<int> basicAndAdv, expert, none;
  235. for(int i=0;i<SKILL_QUANTITY;i++) none.insert(i);
  236. for(unsigned i=0;i<hero->secSkills.size();i++)
  237. {
  238. if(hero->secSkills[i].second < 3)
  239. basicAndAdv.insert(hero->secSkills[i].first);
  240. else
  241. expert.insert(hero->secSkills[i].first);
  242. none.erase(hero->secSkills[i].first);
  243. }
  244. //first offered skill
  245. if(hero->secSkills.size() < hero->type->heroClass->skillLimit) //free skill slot
  246. {
  247. hlu.skills.push_back(hero->type->heroClass->chooseSecSkill(none)); //new skill
  248. none.erase(hlu.skills.back());
  249. }
  250. else if(basicAndAdv.size())
  251. {
  252. int s = hero->type->heroClass->chooseSecSkill(basicAndAdv);
  253. hlu.skills.push_back(s);
  254. basicAndAdv.erase(s);
  255. }
  256. //second offered skill
  257. if(basicAndAdv.size())
  258. {
  259. hlu.skills.push_back(hero->type->heroClass->chooseSecSkill(basicAndAdv)); //new skill
  260. }
  261. else if(hero->secSkills.size() < hero->type->heroClass->skillLimit)
  262. {
  263. hlu.skills.push_back(hero->type->heroClass->chooseSecSkill(none)); //new skill
  264. }
  265. if(hlu.skills.size() > 1) //apply and ask for secondary skill
  266. {
  267. boost::function<void(ui32)> callback = boost::function<void(ui32)>(boost::bind(callWith<ui16>,hlu.skills,boost::function<void(ui16)>(boost::bind(&CGameHandler::changeSecSkill,this,ID,_1,1,0)),_1));
  268. applyAndAsk(&hlu,hero->tempOwner,callback); //call changeSecSkill with appropriate args when client responds
  269. }
  270. else if(hlu.skills.size() == 1) //apply, give only possible skill and send info
  271. {
  272. sendAndApply(&hlu);
  273. changeSecSkill(ID,hlu.skills.back(),1,false);
  274. }
  275. else //apply and send info
  276. {
  277. sendAndApply(&hlu);
  278. }
  279. }
  280. }
  281. }
  282. static CCreatureSet takeCasualties(int color, const CCreatureSet &set, BattleInfo *bat)
  283. {
  284. if(color == 254)
  285. color = 255;
  286. CCreatureSet ret(set);
  287. for(int i=0; i<bat->stacks.size();i++)
  288. {
  289. if(bat->stacks[i]->hasFeatureOfType(StackFeature::SUMMONED)) //don't take into account sumoned stacks
  290. continue;
  291. CStack *st = bat->stacks[i];
  292. if(st->owner==color && vstd::contains(set.slots,st->slot) && st->amount < set.slots.find(st->slot)->second.second)
  293. {
  294. if(st->alive())
  295. ret.slots[st->slot].second = st->amount;
  296. else
  297. ret.slots.erase(st->slot);
  298. }
  299. }
  300. return ret;
  301. }
  302. void CGameHandler::startBattle(const CArmedInstance *army1, const CArmedInstance * army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool creatureBank, boost::function<void(BattleResult*)> cb)
  303. {
  304. BattleInfo *curB = new BattleInfo;
  305. setupBattle(curB, tile, army1->army, army2->army, hero1, hero2, creatureBank); //initializes stacks, places creatures on battlefield, blocks and informs player interfaces
  306. NEW_ROUND;
  307. //TODO: pre-tactic stuff, call scripts etc.
  308. //tactic round
  309. {
  310. NEW_ROUND;
  311. if( (hero1 && hero1->getSecSkillLevel(19)>0) ||
  312. ( hero2 && hero2->getSecSkillLevel(19)>0) )//someone has tactics
  313. {
  314. //TODO: tactic round (round -1)
  315. }
  316. }
  317. //main loop
  318. while(!battleResult.get()) //till the end of the battle ;]
  319. {
  320. NEW_ROUND;
  321. std::vector<CStack*> & stacks = (gs->curB->stacks);
  322. const BattleInfo & curB = *gs->curB;
  323. //stack loop
  324. CStack *next;
  325. while(!battleResult.get() && (next=gs->curB->getNextStack()))
  326. {
  327. next->state -= WAITING; //if stack was waiting it'll now make move, so it won't be "waiting" anymore
  328. //check for bad morale => freeze
  329. if(next->Morale() < 0 &&
  330. !((hero1 && hero1->hasBonusOfType(HeroBonus::BLOCK_MORALE)) || (hero2 && hero2->hasBonusOfType(HeroBonus::BLOCK_MORALE))) //checking if heroes have (or don't have) morale blocking bonuses)
  331. )
  332. {
  333. if( rand()%24 < (-next->Morale())*2 )
  334. {
  335. //unit loses its turn - empty freeze action
  336. BattleAction ba;
  337. ba.actionType = 11;
  338. ba.additionalInfo = 1;
  339. ba.side = !next->attackerOwned;
  340. ba.stackNumber = next->ID;
  341. sendAndApply(&StartAction(ba));
  342. sendAndApply(&EndAction());
  343. checkForBattleEnd(stacks); //check if this "action" ended the battle (not likely but who knows...)
  344. continue;
  345. }
  346. }
  347. askInterfaceForMove:
  348. //ask interface and wait for answer
  349. if(!battleResult.get())
  350. {
  351. BattleSetActiveStack sas;
  352. sas.stack = next->ID;
  353. sendAndApply(&sas);
  354. boost::unique_lock<boost::mutex> lock(battleMadeAction.mx);
  355. while(!battleMadeAction.data && !battleResult.get()) //active stack hasn't made its action and battle is still going
  356. battleMadeAction.cond.wait(lock);
  357. battleMadeAction.data = false;
  358. }
  359. else
  360. {
  361. break;
  362. }
  363. //we're after action, all results applied
  364. checkForBattleEnd(stacks); //check if this action ended the battle
  365. //check for good morale
  366. if(!vstd::contains(next->state,HAD_MORALE) //only one extra move per turn possible
  367. && !vstd::contains(next->state,DEFENDING)
  368. && !vstd::contains(next->state,WAITING)
  369. && next->alive()
  370. && next->Morale() > 0
  371. && !((hero1 && hero1->hasBonusOfType(HeroBonus::BLOCK_MORALE)) || (hero2 && hero2->hasBonusOfType(HeroBonus::BLOCK_MORALE)) ) //checking if heroes have (or don't have) morale blocking bonuses
  372. )
  373. if(rand()%24 < next->Morale()) //this stack hasn't got morale this turn
  374. goto askInterfaceForMove; //move this stack once more
  375. }
  376. }
  377. BattleResultsApplied resultsApplied;
  378. resultsApplied.player1 = army1->tempOwner;
  379. resultsApplied.player2 = army2->tempOwner;
  380. //unblock engaged players
  381. if(army1->tempOwner<PLAYER_LIMIT)
  382. states.setFlag(army1->tempOwner,&PlayerStatus::engagedIntoBattle,false);
  383. if(army2 && army2->tempOwner<PLAYER_LIMIT)
  384. states.setFlag(army2->tempOwner,&PlayerStatus::engagedIntoBattle,false);
  385. //casualties among heroes armies
  386. SetGarrisons sg;
  387. sg.garrs[army1->id] = takeCasualties(army1->tempOwner,army1->army,gs->curB);
  388. sg.garrs[army2->id] = takeCasualties(army2->tempOwner,army2->army,gs->curB);
  389. sendAndApply(&sg);
  390. //end battle, remove all info, free memory
  391. giveExp(*battleResult.data);
  392. sendAndApply(battleResult.data);
  393. //if one hero has lost we will erase him
  394. if(battleResult.data->winner!=0 && hero1)
  395. {
  396. RemoveObject ro(hero1->id);
  397. sendAndApply(&ro);
  398. }
  399. if(battleResult.data->winner!=1 && hero2)
  400. {
  401. RemoveObject ro(hero2->id);
  402. sendAndApply(&ro);
  403. }
  404. //give exp
  405. if(battleResult.data->exp[0] && hero1)
  406. changePrimSkill(hero1->id,4,battleResult.data->exp[0]);
  407. if(battleResult.data->exp[1] && hero2)
  408. changePrimSkill(hero2->id,4,battleResult.data->exp[1]);
  409. if(cb)
  410. cb(battleResult.data);
  411. delete battleResult.data;
  412. sendAndApply(&resultsApplied);
  413. }
  414. void CGameHandler::prepareAttacked(BattleStackAttacked &bsa, CStack *def)
  415. {
  416. bsa.killedAmount = bsa.damageAmount / def->MaxHealth();
  417. unsigned damageFirst = bsa.damageAmount % def->MaxHealth();
  418. if( def->firstHPleft <= damageFirst )
  419. {
  420. bsa.killedAmount++;
  421. bsa.newHP = def->firstHPleft + def->MaxHealth() - damageFirst;
  422. }
  423. else
  424. {
  425. bsa.newHP = def->firstHPleft - damageFirst;
  426. }
  427. if(def->amount <= bsa.killedAmount) //stack killed
  428. {
  429. bsa.newAmount = 0;
  430. bsa.flags |= 1;
  431. bsa.killedAmount = def->amount; //we cannot kill more creatures than we have
  432. }
  433. else
  434. {
  435. bsa.newAmount = def->amount - bsa.killedAmount;
  436. }
  437. }
  438. void CGameHandler::prepareAttack(BattleAttack &bat, CStack *att, CStack *def)
  439. {
  440. bat.bsa.clear();
  441. bat.stackAttacking = att->ID;
  442. std::set<BattleStackAttacked>::iterator i = bat.bsa.insert(BattleStackAttacked()).first;
  443. #ifdef __GNUC__
  444. BattleStackAttacked *bsa = (BattleStackAttacked *)&*i;
  445. #else
  446. BattleStackAttacked *bsa = &*i;
  447. #endif
  448. bsa->stackAttacked = def->ID;
  449. bsa->damageAmount = BattleInfo::calculateDmg(att, def, gs->getHero(att->attackerOwned ? gs->curB->hero1 : gs->curB->hero2), gs->getHero(def->attackerOwned ? gs->curB->hero1 : gs->curB->hero2), bat.shot());//counting dealt damage
  450. if(att->Luck() > 0 && rand()%24 < att->Luck())
  451. {
  452. bsa->damageAmount *= 2;
  453. bat.flags |= 4;
  454. }
  455. prepareAttacked(*bsa,def);
  456. }
  457. void CGameHandler::handleConnection(std::set<int> players, CConnection &c)
  458. {
  459. srand(time(NULL));
  460. CPack *pack = NULL;
  461. try
  462. {
  463. while(!end2)
  464. {
  465. {
  466. boost::unique_lock<boost::mutex> lock(*c.rmx);
  467. c >> pack; //get the package
  468. tlog5 << "Received client message of type " << typeid(*pack).name() << std::endl;
  469. }
  470. int packType = typeList.getTypeID(pack); //get the id of type
  471. CBaseForGHApply *apply = applier->apps[packType]; //and appropriae applier object
  472. if(apply)
  473. {
  474. bool result = apply->applyOnGH(this,&c,pack);
  475. tlog5 << "Message successfully applied (result=" << result << ")!\n";
  476. //send confirmation that we've applied the package
  477. if(pack->type != 6000) //WORKAROUND - not confirm query replies TODO: reconsider
  478. {
  479. PackageApplied applied;
  480. applied.result = result;
  481. applied.packType = packType;
  482. {
  483. boost::unique_lock<boost::mutex> lock(*c.wmx);
  484. c << &applied;
  485. }
  486. }
  487. }
  488. else
  489. {
  490. tlog1 << "Message cannot be applied, cannot find applier (unregistered type)!\n";
  491. }
  492. delete pack;
  493. pack = NULL;
  494. }
  495. }
  496. HANDLE_EXCEPTION(end2 = true);
  497. handleConEnd:
  498. tlog1 << "Ended handling connection\n";
  499. #undef SPELL_CAST_TEMPLATE_1
  500. #undef SPELL_CAST_TEMPLATE_2
  501. }
  502. void CGameHandler::moveStack(int stack, int dest)
  503. {
  504. CStack *curStack = gs->curB->getStack(stack),
  505. *stackAtEnd = gs->curB->getStackT(dest);
  506. //initing necessary tables
  507. bool accessibility[BFIELD_SIZE];
  508. std::vector<int> accessible = gs->curB->getAccessibility(curStack->ID, false);
  509. for(int b=0; b<BFIELD_SIZE; ++b)
  510. {
  511. accessibility[b] = false;
  512. }
  513. for(int g=0; g<accessible.size(); ++g)
  514. {
  515. accessibility[accessible[g]] = true;
  516. }
  517. //shifting destination (if we have double wide stack and we can occupy dest but not be exactly there)
  518. if(!stackAtEnd && curStack->hasFeatureOfType(StackFeature::DOUBLE_WIDE) && !accessibility[dest])
  519. {
  520. if(curStack->attackerOwned)
  521. {
  522. if(accessibility[dest+1])
  523. dest+=1;
  524. }
  525. else
  526. {
  527. if(accessibility[dest-1])
  528. dest-=1;
  529. }
  530. }
  531. if((stackAtEnd && stackAtEnd!=curStack && stackAtEnd->alive()) || !accessibility[dest])
  532. return;
  533. bool accessibilityWithOccupyable[BFIELD_SIZE];
  534. std::vector<int> accOc = gs->curB->getAccessibility(curStack->ID, true);
  535. for(int b=0; b<BFIELD_SIZE; ++b)
  536. {
  537. accessibilityWithOccupyable[b] = false;
  538. }
  539. for(int g=0; g<accOc.size(); ++g)
  540. {
  541. accessibilityWithOccupyable[accOc[g]] = true;
  542. }
  543. //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
  544. // return false;
  545. std::pair< std::vector<int>, int > path = gs->curB->getPath(curStack->position, dest, accessibilityWithOccupyable, curStack->hasFeatureOfType(StackFeature::FLYING), curStack->hasFeatureOfType(StackFeature::DOUBLE_WIDE), curStack->attackerOwned);
  546. if(curStack->hasFeatureOfType(StackFeature::FLYING))
  547. {
  548. if(path.second <= curStack->Speed() && path.first.size() > 0)
  549. {
  550. //inform clients about move
  551. BattleStackMoved sm;
  552. sm.stack = curStack->ID;
  553. sm.tile = path.first[0];
  554. sm.distance = path.second;
  555. sm.ending = true;
  556. sendAndApply(&sm);
  557. }
  558. }
  559. else //for non-flying creatures
  560. {
  561. int tilesToMove = std::max((int)(path.first.size() - curStack->Speed()), 0);
  562. for(int v=path.first.size()-1; v>=tilesToMove; --v)
  563. {
  564. //inform clients about move
  565. BattleStackMoved sm;
  566. sm.stack = curStack->ID;
  567. sm.tile = path.first[v];
  568. sm.distance = path.second;
  569. sm.ending = v==tilesToMove;
  570. sendAndApply(&sm);
  571. }
  572. }
  573. }
  574. CGameHandler::CGameHandler(void)
  575. {
  576. QID = 1;
  577. gs = NULL;
  578. IObjectInterface::cb = this;
  579. applier = new CGHApplier;
  580. }
  581. CGameHandler::~CGameHandler(void)
  582. {
  583. delete applier;
  584. applier = NULL;
  585. delete gs;
  586. }
  587. void CGameHandler::init(StartInfo *si, int Seed)
  588. {
  589. Mapa *map = new Mapa(si->mapname);
  590. tlog0 << "Map loaded!" << std::endl;
  591. gs = new CGameState();
  592. tlog0 << "Gamestate created!" << std::endl;
  593. gs->init(si,map,Seed);
  594. tlog0 << "Gamestate initialized!" << std::endl;
  595. for(std::map<ui8,PlayerState>::iterator i = gs->players.begin(); i != gs->players.end(); i++)
  596. states.addPlayer(i->first);
  597. }
  598. static bool evntCmp(const CMapEvent *a, const CMapEvent *b)
  599. {
  600. return *a < *b;
  601. }
  602. void CGameHandler::newTurn()
  603. {
  604. tlog5 << "Turn " << gs->day+1 << std::endl;
  605. NewTurn n;
  606. n.day = gs->day + 1;
  607. n.resetBuilded = true;
  608. std::map<ui32,CGHeroInstance *> pool = gs->hpool.heroesPool;
  609. for ( std::map<ui8, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end();i++)
  610. {
  611. if(i->first == 255) continue;
  612. if(gs->getDate(1)==7) //first day of week - new heroes in tavern
  613. {
  614. SetAvailableHeroes sah;
  615. sah.player = i->first;
  616. CGHeroInstance *h = gs->hpool.pickHeroFor(true,i->first,&VLC->townh->towns[gs->scenarioOps->getIthPlayersSettings(i->first).castle], pool);
  617. if(h)
  618. sah.hid1 = h->subID;
  619. else
  620. sah.hid1 = -1;
  621. h = gs->hpool.pickHeroFor(false,i->first,&VLC->townh->towns[gs->scenarioOps->getIthPlayersSettings(i->first).castle], pool);
  622. if(h)
  623. sah.hid2 = h->subID;
  624. else
  625. sah.hid2 = -1;
  626. sendAndApply(&sah);
  627. }
  628. if(i->first>=PLAYER_LIMIT) continue;
  629. SetResources r;
  630. r.player = i->first;
  631. for(int j=0;j<RESOURCE_QUANTITY;j++)
  632. r.res[j] = i->second.resources[j];
  633. BOOST_FOREACH(CGHeroInstance *h, (*i).second.heroes)
  634. {
  635. if(h->visitedTown)
  636. giveSpells(h->visitedTown, h);
  637. NewTurn::Hero hth;
  638. hth.id = h->id;
  639. hth.move = h->maxMovePoints(gs->map->getTile(h->getPosition(false)).tertype != TerrainTile::water);
  640. if(h->visitedTown && vstd::contains(h->visitedTown->builtBuildings,0)) //if hero starts turn in town with mage guild
  641. hth.mana = h->manaLimit(); //restore all mana
  642. else
  643. hth.mana = std::max(si32(0), std::min(h->mana + h->manaRegain(), h->manaLimit()) );
  644. n.heroes.insert(hth);
  645. if(gs->day) //not first day
  646. {
  647. switch(h->getSecSkillLevel(13)) //handle estates - give gold
  648. {
  649. case 1: //basic
  650. r.res[6] += 125;
  651. break;
  652. case 2: //advanced
  653. r.res[6] += 250;
  654. break;
  655. case 3: //expert
  656. r.res[6] += 500;
  657. break;
  658. }
  659. for(std::list<HeroBonus>::iterator i = h->bonuses.begin(); i != h->bonuses.end(); i++)
  660. if(i->type == HeroBonus::GENERATE_RESOURCE)
  661. r.res[i->subtype] += i->val;
  662. }
  663. }
  664. for(std::vector<CGTownInstance *>::iterator j=i->second.towns.begin();j!=i->second.towns.end();j++)//handle towns
  665. {
  666. if(gs->day && vstd::contains((**j).builtBuildings,15)) //not first day and there is resource silo
  667. {
  668. if((**j).town->primaryRes == 127) //we'll give wood and ore
  669. {
  670. r.res[0] += 1;
  671. r.res[2] += 1;
  672. }
  673. else
  674. {
  675. r.res[(**j).town->primaryRes] += 1;
  676. }
  677. }
  678. if(gs->getDate(1)==7) //first day of week
  679. {
  680. SetAvailableCreatures sac;
  681. sac.tid = (**j).id;
  682. sac.creatures = (**j).creatures;
  683. for(int k=0;k<CREATURES_PER_TOWN;k++) //creature growths
  684. {
  685. if((**j).creatureDwelling(k))//there is dwelling (k-level)
  686. {
  687. sac.creatures[k].first += (**j).creatureGrowth(k);
  688. if(!gs->getDate(0)) //first day of game: use only basic growths
  689. amin(sac.creatures[k].first, VLC->creh->creatures[(*j)->town->basicCreatures[k]].growth);
  690. }
  691. }
  692. n.cres.push_back(sac);
  693. }
  694. if(gs->day && i->first<PLAYER_LIMIT)//not the first day and town not neutral
  695. r.res[6] += (**j).dailyIncome();
  696. }
  697. n.res.push_back(r);
  698. }
  699. sendAndApply(&n);
  700. tlog5 << "Info about turn " << n.day << "has been sent!" << std::endl;
  701. handleTimeEvents();
  702. //call objects
  703. for(size_t i = 0; i<gs->map->objects.size(); i++)
  704. if(gs->map->objects[i])
  705. gs->map->objects[i]->newTurn();
  706. }
  707. void CGameHandler::run(bool resume)
  708. {
  709. BOOST_FOREACH(CConnection *cc, conns)
  710. {//init conn.
  711. ui8 quantity, pom;
  712. //ui32 seed;
  713. if(!resume)
  714. (*cc) << gs->scenarioOps->mapname << gs->map->checksum << gs->seed;
  715. (*cc) >> quantity; //how many players will be handled at that client
  716. for(int i=0;i<quantity;i++)
  717. {
  718. (*cc) >> pom; //read player color
  719. {
  720. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  721. connections[pom] = cc;
  722. }
  723. }
  724. }
  725. for(std::set<CConnection*>::iterator i = conns.begin(); i!=conns.end();i++)
  726. {
  727. std::set<int> pom;
  728. for(std::map<int,CConnection*>::iterator j = connections.begin(); j!=connections.end();j++)
  729. if(j->second == *i)
  730. pom.insert(j->first);
  731. boost::thread(boost::bind(&CGameHandler::handleConnection,this,pom,boost::ref(**i)));
  732. }
  733. while (!end2)
  734. {
  735. if(!resume)
  736. newTurn();
  737. else
  738. resume = false;
  739. std::map<ui8,PlayerState>::iterator i;
  740. if(!resume)
  741. i = gs->players.begin();
  742. else
  743. i = gs->players.find(gs->currentPlayer);
  744. for(; i != gs->players.end(); i++)
  745. {
  746. if((i->second.towns.size()==0 && i->second.heroes.size()==0) || i->second.color<0 || i->first>=PLAYER_LIMIT ) continue; //players has not towns/castle - loser
  747. states.setFlag(i->first,&PlayerStatus::makingTurn,true);
  748. gs->currentPlayer = i->first;
  749. {
  750. YourTurn yt;
  751. yt.player = i->first;
  752. boost::unique_lock<boost::mutex> lock(*connections[i->first]->wmx);
  753. *connections[i->first] << &yt;
  754. }
  755. //wait till turn is done
  756. boost::unique_lock<boost::mutex> lock(states.mx);
  757. while(states.players[i->first].makingTurn && !end2)
  758. {
  759. boost::posix_time::time_duration p;
  760. p = boost::posix_time::milliseconds(200);
  761. states.cv.timed_wait(lock,p);
  762. }
  763. }
  764. }
  765. }
  766. namespace CGH
  767. {
  768. using namespace std;
  769. static void readItTo(ifstream & input, vector< vector<int> > & dest) //reads 7 lines, i-th one containing i integers, and puts it to dest
  770. {
  771. for(int j=0; j<7; ++j)
  772. {
  773. std::vector<int> pom;
  774. for(int g=0; g<j+1; ++g)
  775. {
  776. int hlp; input>>hlp;
  777. pom.push_back(hlp);
  778. }
  779. dest.push_back(pom);
  780. }
  781. }
  782. }
  783. void CGameHandler::setupBattle( BattleInfo * curB, int3 tile, const CCreatureSet &army1, const CCreatureSet &army2, const CGHeroInstance * hero1, const CGHeroInstance * hero2, bool creatureBank )
  784. {
  785. battleResult.set(NULL);
  786. std::vector<CStack*> & stacks = (curB->stacks);
  787. curB->tile = tile;
  788. curB->siege = 0; //TODO: add sieges
  789. curB->army1=army1;
  790. curB->army2=army2;
  791. curB->hero1=(hero1)?(hero1->id):(-1);
  792. curB->hero2=(hero2)?(hero2->id):(-1);
  793. curB->side1=(hero1)?(hero1->tempOwner):(-1);
  794. curB->side2=(hero2)?(hero2->tempOwner):(-1);
  795. curB->round = -2;
  796. curB->activeStack = -1;
  797. //reading battleStartpos
  798. std::ifstream positions;
  799. positions.open("config" PATHSEPARATOR "battleStartpos.txt", std::ios_base::in|std::ios_base::binary);
  800. if(!positions.is_open())
  801. {
  802. tlog1<<"Unable to open battleStartpos.txt!"<<std::endl;
  803. }
  804. std::string dump;
  805. positions>>dump; positions>>dump;
  806. std::vector< std::vector<int> > attackerLoose, defenderLoose, attackerTight, defenderTight, attackerCreBank, defenderCreBank;
  807. CGH::readItTo(positions, attackerLoose);
  808. positions>>dump;
  809. CGH::readItTo(positions, defenderLoose);
  810. positions>>dump;
  811. positions>>dump;
  812. CGH::readItTo(positions, attackerTight);
  813. positions>>dump;
  814. CGH::readItTo(positions, defenderTight);
  815. positions>>dump;
  816. positions>>dump;
  817. CGH::readItTo(positions, attackerCreBank);
  818. positions>>dump;
  819. CGH::readItTo(positions, defenderCreBank);
  820. positions.close();
  821. //battleStartpos read
  822. int k = 0; //stack serial
  823. for(std::map<si32,std::pair<ui32,si32> >::const_iterator i = army1.slots.begin(); i!=army1.slots.end(); i++, k++)
  824. {
  825. int pos;
  826. if(creatureBank)
  827. pos = attackerCreBank[army1.slots.size()-1][k];
  828. else if(army1.formation)
  829. pos = attackerTight[army1.slots.size()-1][k];
  830. else
  831. pos = attackerLoose[army1.slots.size()-1][k];
  832. CStack * stack = BattleInfo::generateNewStack(hero1, i->second.first, i->second.second, stacks.size(), true, i->first, gs->map->terrain[tile.x][tile.y][tile.z].tertype, pos);
  833. stacks.push_back(stack);
  834. }
  835. k = 0;
  836. for(std::map<si32,std::pair<ui32,si32> >::const_iterator i = army2.slots.begin(); i!=army2.slots.end(); i++, k++)
  837. {
  838. int pos;
  839. if(creatureBank)
  840. pos = defenderCreBank[army1.slots.size()-1][k];
  841. else if(army2.formation)
  842. pos = defenderTight[army2.slots.size()-1][k];
  843. else
  844. pos = defenderLoose[army2.slots.size()-1][k];
  845. CStack * stack = BattleInfo::generateNewStack(hero2, i->second.first, i->second.second, stacks.size(), false, i->first, gs->map->terrain[tile.x][tile.y][tile.z].tertype, pos);
  846. stacks.push_back(stack);
  847. }
  848. for(unsigned g=0; g<stacks.size(); ++g) //shifting positions of two-hex creatures
  849. {
  850. if((stacks[g]->position%17)==1 && stacks[g]->hasFeatureOfType(StackFeature::DOUBLE_WIDE))
  851. {
  852. stacks[g]->position += 1;
  853. }
  854. else if((stacks[g]->position%17)==15 && stacks[g]->hasFeatureOfType(StackFeature::DOUBLE_WIDE))
  855. {
  856. stacks[g]->position -= 1;
  857. }
  858. }
  859. //adding war machines
  860. if(hero1)
  861. {
  862. if(hero1->getArt(13)) //ballista
  863. {
  864. CStack * stack = BattleInfo::generateNewStack(hero1, 146, 1, stacks.size(), true, 255, gs->map->terrain[tile.x][tile.y][tile.z].tertype, 52);
  865. stacks.push_back(stack);
  866. }
  867. if(hero1->getArt(14)) //ammo cart
  868. {
  869. CStack * stack = BattleInfo::generateNewStack(hero1, 148, 1, stacks.size(), true, 255, gs->map->terrain[tile.x][tile.y][tile.z].tertype, 18);
  870. stacks.push_back(stack);
  871. }
  872. if(hero1->getArt(15)) //first aid tent
  873. {
  874. CStack * stack = BattleInfo::generateNewStack(hero1, 147, 1, stacks.size(), true, 255, gs->map->terrain[tile.x][tile.y][tile.z].tertype, 154);
  875. stacks.push_back(stack);
  876. }
  877. }
  878. if(hero2)
  879. {
  880. if(hero2->getArt(13)) //ballista
  881. {
  882. CStack * stack = BattleInfo::generateNewStack(hero2, 146, 1, stacks.size(), false, 255, gs->map->terrain[tile.x][tile.y][tile.z].tertype, 66);
  883. stacks.push_back(stack);
  884. }
  885. if(hero2->getArt(14)) //ammo cart
  886. {
  887. CStack * stack = BattleInfo::generateNewStack(hero2, 148, 1, stacks.size(), false, 255, gs->map->terrain[tile.x][tile.y][tile.z].tertype, 32);
  888. stacks.push_back(stack);
  889. }
  890. if(hero2->getArt(15)) //first aid tent
  891. {
  892. CStack * stack = BattleInfo::generateNewStack(hero2, 147, 1, stacks.size(), false, 255, gs->map->terrain[tile.x][tile.y][tile.z].tertype, 168);
  893. stacks.push_back(stack);
  894. }
  895. }
  896. //war machines added
  897. std::stable_sort(stacks.begin(),stacks.end(),cmpst);
  898. //randomize obstacles
  899. bool obAv[BFIELD_SIZE]; //availability of hexes for obstacles;
  900. std::vector<int> possibleObstacles;
  901. for(int i=0; i<BFIELD_SIZE; ++i)
  902. {
  903. if(i%17 < 4 || i%17 > 12)
  904. {
  905. obAv[i] = false;
  906. }
  907. else
  908. {
  909. obAv[i] = true;
  910. }
  911. }
  912. int terType = gs->battleGetBattlefieldType(tile);
  913. for(std::map<int, CObstacleInfo>::const_iterator g=VLC->heroh->obstacles.begin(); g!=VLC->heroh->obstacles.end(); ++g)
  914. {
  915. if(g->second.allowedTerrains[terType-1] == '1') //we need to take terType with -1 because terrain ids start from 1 and allowedTerrains array is indexed from 0
  916. {
  917. possibleObstacles.push_back(g->first);
  918. }
  919. }
  920. srand(time(NULL));
  921. if(possibleObstacles.size() > 0) //we cannot place any obstacles when we don't have them
  922. {
  923. int toBlock = rand()%6 + 6; //how many hexes should be blocked by obstacles
  924. while(toBlock>0)
  925. {
  926. CObstacleInstance coi;
  927. coi.uniqueID = curB->obstacles.size();
  928. coi.ID = possibleObstacles[rand()%possibleObstacles.size()];
  929. coi.pos = rand()%BFIELD_SIZE;
  930. std::vector<int> block = VLC->heroh->obstacles[coi.ID].getBlocked(coi.pos);
  931. bool badObstacle = false;
  932. for(int b=0; b<block.size(); ++b)
  933. {
  934. if(block[b] < 0 || block[b] >= BFIELD_SIZE || !obAv[block[b]])
  935. {
  936. badObstacle = true;
  937. break;
  938. }
  939. }
  940. if(badObstacle) continue;
  941. //obstacle can be placed
  942. curB->obstacles.push_back(coi);
  943. for(int b=0; b<block.size(); ++b)
  944. {
  945. if(block[b] >= 0 && block[b] < BFIELD_SIZE)
  946. obAv[block[b]] = false;
  947. }
  948. toBlock -= block.size();
  949. }
  950. }
  951. //giving terrain premies for heroes & stacks
  952. int bonusSubtype = -1;
  953. switch(terType)
  954. {
  955. case 9: //magic plains
  956. {
  957. bonusSubtype = 0;
  958. }
  959. case 14: //fiery fields
  960. {
  961. if(bonusSubtype == -1) bonusSubtype = 1;
  962. }
  963. case 15: //rock lands
  964. {
  965. if(bonusSubtype == -1) bonusSubtype = 8;
  966. }
  967. case 16: //magic clouds
  968. {
  969. if(bonusSubtype == -1) bonusSubtype = 2;
  970. }
  971. case 17: //lucid pools
  972. {
  973. if(bonusSubtype == -1) bonusSubtype = 4;
  974. }
  975. { //common part for cases 9, 14, 15, 16, 17
  976. const CGHeroInstance * cHero = NULL;
  977. for(int i=0; i<2; ++i)
  978. {
  979. if(i == 0) cHero = hero1;
  980. else cHero = hero2;
  981. if(cHero == NULL) continue;
  982. GiveBonus gs;
  983. gs.bonus = HeroBonus(HeroBonus::ONE_BATTLE, HeroBonus::MAGIC_SCHOOL_SKILL, HeroBonus::OBJECT, 3, -1, "", bonusSubtype);
  984. gs.hid = cHero->id;
  985. sendAndApply(&gs);
  986. }
  987. break;
  988. }
  989. case 18: //holy ground
  990. {
  991. for(int g=0; g<stacks.size(); ++g) //+1 morale bonus for good creatures, -1 morale bonus for evil creatures
  992. {
  993. if(stacks[g]->creature->faction == 0
  994. || stacks[g]->creature->faction == 1
  995. || stacks[g]->creature->faction == 2)
  996. {
  997. stacks[g]->features.push_back(makeFeature(StackFeature::MORALE_BONUS, StackFeature::WHOLE_BATTLE, 0, 1, StackFeature::OTHER_SOURCE));
  998. }
  999. else if(stacks[g]->creature->faction == 3
  1000. || stacks[g]->creature->faction == 4
  1001. || stacks[g]->creature->faction == 5)
  1002. {
  1003. stacks[g]->features.push_back(makeFeature(StackFeature::MORALE_BONUS, StackFeature::WHOLE_BATTLE, 0, -1, StackFeature::OTHER_SOURCE));
  1004. }
  1005. }
  1006. break;
  1007. }
  1008. case 19: //clover field
  1009. {
  1010. for(int g=0; g<stacks.size(); ++g)
  1011. {
  1012. if(stacks[g]->creature->faction == -1) //+2 luck bonus for neutral creatures
  1013. {
  1014. stacks[g]->features.push_back(makeFeature(StackFeature::LUCK_BONUS, StackFeature::WHOLE_BATTLE, 0, 2, StackFeature::OTHER_SOURCE));
  1015. }
  1016. }
  1017. break;
  1018. }
  1019. case 20: //evil fog
  1020. {
  1021. for(int g=0; g<stacks.size(); ++g) //-1 morale bonus for good creatures, +1 morale bonus for evil creatures
  1022. {
  1023. if(stacks[g]->creature->faction == 0
  1024. || stacks[g]->creature->faction == 1
  1025. || stacks[g]->creature->faction == 2)
  1026. {
  1027. stacks[g]->features.push_back(makeFeature(StackFeature::MORALE_BONUS, StackFeature::WHOLE_BATTLE, 0, -1, StackFeature::OTHER_SOURCE));
  1028. }
  1029. else if(stacks[g]->creature->faction == 3
  1030. || stacks[g]->creature->faction == 4
  1031. || stacks[g]->creature->faction == 5)
  1032. {
  1033. stacks[g]->features.push_back(makeFeature(StackFeature::MORALE_BONUS, StackFeature::WHOLE_BATTLE, 0, 1, StackFeature::OTHER_SOURCE));
  1034. }
  1035. }
  1036. break;
  1037. }
  1038. case 22: //cursed ground
  1039. {
  1040. for(int g=0; g<stacks.size(); ++g) //no luck nor morale
  1041. {
  1042. stacks[g]->features.push_back(makeFeature(StackFeature::NO_MORALE, StackFeature::WHOLE_BATTLE, 0, 0, StackFeature::OTHER_SOURCE));
  1043. stacks[g]->features.push_back(makeFeature(StackFeature::NO_LUCK, StackFeature::WHOLE_BATTLE, 0, 0, StackFeature::OTHER_SOURCE));
  1044. }
  1045. const CGHeroInstance * cHero = NULL;
  1046. for(int i=0; i<2; ++i) //blocking spells above level 1
  1047. {
  1048. if(i == 0) cHero = hero1;
  1049. else cHero = hero2;
  1050. if(cHero == NULL) continue;
  1051. GiveBonus gs;
  1052. gs.bonus = HeroBonus(HeroBonus::ONE_BATTLE, HeroBonus::BLOCK_SPELLS_ABOVE_LEVEL, HeroBonus::OBJECT, 1, -1, "", bonusSubtype);
  1053. gs.hid = cHero->id;
  1054. sendAndApply(&gs);
  1055. }
  1056. break;
  1057. }
  1058. }
  1059. //premies given
  1060. //send info about battles
  1061. BattleStart bs;
  1062. bs.info = curB;
  1063. sendAndApply(&bs);
  1064. }
  1065. void CGameHandler::checkForBattleEnd( std::vector<CStack*> &stacks )
  1066. {
  1067. //checking winning condition
  1068. bool hasStack[2]; //hasStack[0] - true if attacker has a living stack; defender similarily
  1069. hasStack[0] = hasStack[1] = false;
  1070. for(int b = 0; b<stacks.size(); ++b)
  1071. {
  1072. if(stacks[b]->alive() && !stacks[b]->hasFeatureOfType(StackFeature::SIEGE_WEAPON))
  1073. {
  1074. hasStack[1-stacks[b]->attackerOwned] = true;
  1075. }
  1076. }
  1077. if(!hasStack[0] || !hasStack[1]) //somebody has won
  1078. {
  1079. BattleResult *br = new BattleResult; //will be deleted at the end of startBattle(...)
  1080. br->result = 0;
  1081. br->winner = hasStack[1]; //fleeing side loses
  1082. gs->curB->calculateCasualties(br->casualties);
  1083. battleResult.set(br);
  1084. }
  1085. }
  1086. void CGameHandler::giveSpells( const CGTownInstance *t, const CGHeroInstance *h )
  1087. {
  1088. if(!vstd::contains(h->artifWorn,17))
  1089. return; //hero hasn't spellbok
  1090. ChangeSpells cs;
  1091. cs.hid = h->id;
  1092. cs.learn = true;
  1093. for(int i=0; i<std::min(t->mageGuildLevel(),h->getSecSkillLevel(7)+2);i++)
  1094. {
  1095. for(int j=0; j<t->spellsAtLevel(i+1,true) && j<t->spells[i].size(); j++)
  1096. {
  1097. if(!vstd::contains(h->spells,t->spells[i][j]))
  1098. cs.spells.insert(t->spells[i][j]);
  1099. }
  1100. }
  1101. if(cs.spells.size())
  1102. sendAndApply(&cs);
  1103. }
  1104. void CGameHandler::setBlockVis(int objid, bool bv)
  1105. {
  1106. SetObjectProperty sop(objid,2,bv);
  1107. sendAndApply(&sop);
  1108. }
  1109. bool CGameHandler::removeObject( int objid )
  1110. {
  1111. if(!getObj(objid))
  1112. {
  1113. tlog1 << "Something wrong, that object already has been removed or hasn't existed!\n";
  1114. return false;
  1115. }
  1116. RemoveObject ro;
  1117. ro.id = objid;
  1118. sendAndApply(&ro);
  1119. return true;
  1120. }
  1121. void CGameHandler::setAmount(int objid, ui32 val)
  1122. {
  1123. SetObjectProperty sop(objid,3,val);
  1124. sendAndApply(&sop);
  1125. }
  1126. bool CGameHandler::moveHero( si32 hid, int3 dst, ui8 instant, ui8 asker /*= 255*/ )
  1127. {
  1128. bool blockvis = false;
  1129. const CGHeroInstance *h = getHero(hid);
  1130. 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)
  1131. )
  1132. {
  1133. tlog1 << "Illegal call to move hero!\n";
  1134. return false;
  1135. }
  1136. if(states.checkFlag(h->tempOwner, &PlayerStatus::engagedIntoBattle) && complain("Cannot move hero during the battle"))
  1137. return false;
  1138. tlog5 << "Player " <<int(asker) << " wants to move hero "<< hid << " from "<< h->pos << " to " << dst << std::endl;
  1139. int3 hmpos = dst + int3(-1,0,0);
  1140. if(!gs->map->isInTheMap(hmpos))
  1141. {
  1142. tlog1 << "Destination tile os out of the map!\n";
  1143. return false;
  1144. }
  1145. TerrainTile t = gs->map->terrain[hmpos.x][hmpos.y][hmpos.z];
  1146. int cost = gs->getMovementCost(h,h->getPosition(false),CGHeroInstance::convertPosition(dst,false),h->movement);
  1147. //result structure for start - movement failed, no move points used
  1148. TryMoveHero tmh;
  1149. tmh.id = hid;
  1150. tmh.start = h->pos;
  1151. tmh.end = dst;
  1152. tmh.result = TryMoveHero::FAILED;
  1153. tmh.movePoints = h->movement;
  1154. //check if destination tile is available
  1155. //it's a rock or blocked and not visitable tile
  1156. //OR hero is on land and dest is water and (there is not present only one object - boat)
  1157. if((t.tertype == TerrainTile::rock || (t.blocked && !t.visitable))
  1158. && complain("Cannot move hero, destination tile is blocked!")
  1159. || (!h->boat && !h->canWalkOnSea() && t.tertype == TerrainTile::water && (t.visitableObjects.size() != 1 || t.visitableObjects.front()->ID != 8))
  1160. && complain("Cannot move hero, destination tile is on water!")
  1161. || (h->boat && t.tertype != TerrainTile::water && t.blocked)
  1162. && complain("Cannot disembark hero, tile is blocked!")
  1163. || (!h->movement && dst != h->pos)
  1164. && complain("Hero don't have any movement points left!"))
  1165. {
  1166. //send info about movement failure
  1167. sendAndApply(&tmh);
  1168. return false;
  1169. }
  1170. //hero enters the boat
  1171. if(!h->boat && t.visitableObjects.size() && t.visitableObjects.front()->ID == 8)
  1172. {
  1173. tmh.result = TryMoveHero::EMBARK;
  1174. tmh.movePoints = 0; //embarking takes all move points
  1175. //TODO: check for bonus that removes that penalty
  1176. getTilesInRange(tmh.fowRevealed,h->getSightCenter()+(tmh.end-tmh.start),h->getSightRadious(),h->tempOwner,1);
  1177. sendAndApply(&tmh);
  1178. return true;
  1179. }
  1180. //hero leaves the boat
  1181. else if(h->boat && t.tertype != TerrainTile::water && !t.blocked)
  1182. {
  1183. tmh.result = TryMoveHero::DISEMBARK;
  1184. tmh.movePoints = 0; //disembarking takes all move points
  1185. //TODO: check for bonus that removes that penalty
  1186. getTilesInRange(tmh.fowRevealed,h->getSightCenter()+(tmh.end-tmh.start),h->getSightRadious(),h->tempOwner,1);
  1187. sendAndApply(&tmh);
  1188. return true;
  1189. }
  1190. //checks for standard movement
  1191. if(!instant)
  1192. {
  1193. if( distance(h->pos,dst) >= 1.5 && complain("Tiles are not neighbouring!")
  1194. || h->movement < cost && h->movement < 100 && complain("Not enough move points!"))
  1195. {
  1196. sendAndApply(&tmh);
  1197. return false;
  1198. }
  1199. //check if there is blocking visitable object
  1200. blockvis = false;
  1201. tmh.movePoints = std::max(si32(0),h->movement-cost); //take move points
  1202. BOOST_FOREACH(CGObjectInstance *obj, t.visitableObjects)
  1203. {
  1204. if(obj != h && obj->blockVisit)
  1205. {
  1206. blockvis = true;
  1207. break;
  1208. }
  1209. }
  1210. //we start moving
  1211. if(blockvis)//interaction with blocking object (like resources)
  1212. {
  1213. tmh.result = TryMoveHero::BLOCKING_VISIT;
  1214. sendAndApply(&tmh);
  1215. //failed to move to that tile but we visit object
  1216. BOOST_FOREACH(CGObjectInstance *obj, t.visitableObjects)
  1217. {
  1218. if (obj->blockVisit)
  1219. {
  1220. objectVisited(obj, h);
  1221. }
  1222. }
  1223. tlog5 << "Blocking visit at " << hmpos << std::endl;
  1224. return true;
  1225. }
  1226. else //normal move
  1227. {
  1228. tmh.result = TryMoveHero::SUCCESS;
  1229. BOOST_FOREACH(CGObjectInstance *obj, gs->map->terrain[h->pos.x-1][h->pos.y][h->pos.z].visitableObjects)
  1230. {
  1231. obj->onHeroLeave(h);
  1232. }
  1233. getTilesInRange(tmh.fowRevealed,h->getSightCenter()+(tmh.end-tmh.start),h->getSightRadious(),h->tempOwner,1);
  1234. sendAndApply(&tmh);
  1235. tlog5 << "Moved to " <<tmh.end<<std::endl;
  1236. //call objects if they are visited
  1237. BOOST_FOREACH(CGObjectInstance *obj, t.visitableObjects)
  1238. {
  1239. objectVisited(obj, h);
  1240. }
  1241. }
  1242. tlog5 << "Movement end!\n";
  1243. return true;
  1244. }
  1245. else //instant move - teleportation
  1246. {
  1247. BOOST_FOREACH(CGObjectInstance* obj, t.blockingObjects)
  1248. {
  1249. if(obj->ID==HEROI_TYPE)
  1250. {
  1251. CGHeroInstance *dh = static_cast<CGHeroInstance *>(obj);
  1252. if(obj->tempOwner==h->tempOwner)
  1253. {
  1254. heroExchange(dh->id, h->id);
  1255. return true;
  1256. }
  1257. //TODO: check for ally
  1258. startBattleI(h, dh, false);
  1259. return true;
  1260. }
  1261. }
  1262. tmh.result = TryMoveHero::TELEPORTATION;
  1263. getTilesInRange(tmh.fowRevealed,h->getSightCenter()+(tmh.end-tmh.start),h->getSightRadious(),h->tempOwner,1);
  1264. sendAndApply(&tmh);
  1265. return true;
  1266. }
  1267. }
  1268. void CGameHandler::setOwner(int objid, ui8 owner)
  1269. {
  1270. SetObjectProperty sop(objid,1,owner);
  1271. sendAndApply(&sop);
  1272. }
  1273. void CGameHandler::setHoverName(int objid, MetaString* name)
  1274. {
  1275. SetHoverName shn(objid, *name);
  1276. sendAndApply(&shn);
  1277. }
  1278. void CGameHandler::showInfoDialog(InfoWindow *iw)
  1279. {
  1280. sendToAllClients(iw);
  1281. }
  1282. void CGameHandler::showBlockingDialog( BlockingDialog *iw, const CFunctionList<void(ui32)> &callback )
  1283. {
  1284. ask(iw,iw->player,callback);
  1285. }
  1286. ui32 CGameHandler::showBlockingDialog( BlockingDialog *iw )
  1287. {
  1288. //TODO
  1289. //gsm.lock();
  1290. //int query = QID++;
  1291. //states.addQuery(player,query);
  1292. //sendToAllClients(iw);
  1293. //gsm.unlock();
  1294. //ui32 ret = getQueryResult(iw->player, query);
  1295. //gsm.lock();
  1296. //states.removeQuery(player, query);
  1297. //gsm.unlock();
  1298. return 0;
  1299. }
  1300. int CGameHandler::getCurrentPlayer()
  1301. {
  1302. return gs->currentPlayer;
  1303. }
  1304. void CGameHandler::giveResource(int player, int which, int val)
  1305. {
  1306. if(!val) return; //don't waste time on empty call
  1307. SetResource sr;
  1308. sr.player = player;
  1309. sr.resid = which;
  1310. sr.val = gs->players.find(player)->second.resources[which]+val;
  1311. sendAndApply(&sr);
  1312. }
  1313. void CGameHandler::giveCreatures (int objid, const CGHeroInstance * h, CCreatureSet *creatures)
  1314. {
  1315. CCreatureSet heroArmy = h->army;
  1316. while(creatures)
  1317. {
  1318. int slot = heroArmy.getSlotFor(creatures->slots.begin()->second.first);
  1319. if(slot < 0)
  1320. break;
  1321. heroArmy.slots[slot].first = creatures->slots.begin()->second.first;
  1322. heroArmy.slots[slot].second += creatures->slots.begin()->second.second;
  1323. creatures->slots.erase(creatures->slots.begin());
  1324. }
  1325. if(!creatures) //all creatures can be moved to hero army - do that
  1326. {
  1327. SetGarrisons sg;
  1328. sg.garrs[h->id] = heroArmy;
  1329. sendAndApply(&sg);
  1330. }
  1331. else //show garrison window and let player pick creatures
  1332. {
  1333. SetGarrisons sg;
  1334. sg.garrs[objid] = *creatures;
  1335. sendAndApply(&sg);
  1336. showGarrisonDialog(objid, h->id, 0);
  1337. return;
  1338. }
  1339. }
  1340. void CGameHandler::showCompInfo(ShowInInfobox * comp)
  1341. {
  1342. sendToAllClients(comp);
  1343. }
  1344. void CGameHandler::heroVisitCastle(int obj, int heroID)
  1345. {
  1346. HeroVisitCastle vc;
  1347. vc.hid = heroID;
  1348. vc.tid = obj;
  1349. vc.flags |= 1;
  1350. sendAndApply(&vc);
  1351. giveSpells(getTown(obj),getHero(heroID));
  1352. }
  1353. void CGameHandler::stopHeroVisitCastle(int obj, int heroID)
  1354. {
  1355. HeroVisitCastle vc;
  1356. vc.hid = heroID;
  1357. vc.tid = obj;
  1358. sendAndApply(&vc);
  1359. }
  1360. void CGameHandler::giveHeroArtifact(int artid, int hid, int position) //pos==-1 - first free slot in backpack
  1361. {
  1362. const CGHeroInstance* h = getHero(hid);
  1363. const CArtifact &art = VLC->arth->artifacts[artid];
  1364. SetHeroArtifacts sha;
  1365. sha.hid = hid;
  1366. sha.artifacts = h->artifacts;
  1367. sha.artifWorn = h->artifWorn;
  1368. if(position<0)
  1369. {
  1370. if(position == -2)
  1371. {
  1372. int i;
  1373. for(i=0; i<art.possibleSlots.size(); i++) //try to put artifact into first available slot
  1374. {
  1375. if( !vstd::contains(sha.artifWorn,art.possibleSlots[i]) )
  1376. {
  1377. //we've found a free suitable slot
  1378. sha.artifWorn[art.possibleSlots[i]] = artid;
  1379. break;
  1380. }
  1381. }
  1382. if(i == art.possibleSlots.size()) //if haven't find proper slot, use backpack
  1383. sha.artifacts.push_back(artid);
  1384. }
  1385. else //should be -1 => put artifact into backpack
  1386. {
  1387. sha.artifacts.push_back(artid);
  1388. }
  1389. }
  1390. else
  1391. {
  1392. if(!vstd::contains(sha.artifWorn,ui16(position)))
  1393. {
  1394. sha.artifWorn[position] = artid;
  1395. }
  1396. else
  1397. {
  1398. sha.artifacts.push_back(artid);
  1399. }
  1400. }
  1401. sendAndApply(&sha);
  1402. }
  1403. void CGameHandler::startBattleI(const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool creatureBank, boost::function<void(BattleResult*)> cb) //use hero=NULL for no hero
  1404. {
  1405. engageIntoBattle(army1->tempOwner);
  1406. engageIntoBattle(army2->tempOwner);
  1407. //block engaged players
  1408. if(army2->tempOwner < PLAYER_LIMIT)
  1409. states.setFlag(army2->tempOwner,&PlayerStatus::engagedIntoBattle,true);
  1410. boost::thread(boost::bind(&CGameHandler::startBattle, this, army1, army2, tile, hero1, hero2, creatureBank, cb));
  1411. }
  1412. void CGameHandler::startBattleI( const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, bool creatureBank, boost::function<void(BattleResult*)> cb )
  1413. {
  1414. startBattleI(army1, army2, tile,
  1415. army1->ID == HEROI_TYPE ? static_cast<const CGHeroInstance*>(army1) : NULL,
  1416. army2->ID == HEROI_TYPE ? static_cast<const CGHeroInstance*>(army2) : NULL,
  1417. creatureBank, cb);
  1418. }
  1419. void CGameHandler::startBattleI( const CArmedInstance *army1, const CArmedInstance *army2, bool creatureBank, boost::function<void(BattleResult*)> cb)
  1420. {
  1421. startBattleI(army1, army2, army2->pos - army2->getVisitableOffset(), creatureBank, cb);
  1422. }
  1423. //void CGameHandler::startBattleI(int heroID, CCreatureSet army, int3 tile, boost::function<void(BattleResult*)> cb) //for hero<=>neutral army
  1424. //{
  1425. // CGHeroInstance* h = const_cast<CGHeroInstance*>(getHero(heroID));
  1426. // startBattleI(&h->army,&army,tile,h,NULL,cb);
  1427. // //battle(&h->army,army,tile,h,NULL);
  1428. //}
  1429. void CGameHandler::changeSpells( int hid, bool give, const std::set<ui32> &spells )
  1430. {
  1431. ChangeSpells cs;
  1432. cs.hid = hid;
  1433. cs.spells = spells;
  1434. cs.learn = give;
  1435. sendAndApply(&cs);
  1436. }
  1437. int CGameHandler::getSelectedHero()
  1438. {
  1439. return IGameCallback::getSelectedHero(getCurrentPlayer())->id;
  1440. }
  1441. void CGameHandler::setObjProperty( int objid, int prop, si64 val )
  1442. {
  1443. SetObjectProperty sob;
  1444. sob.id = objid;
  1445. sob.what = prop;
  1446. sob.val = val;
  1447. sendAndApply(&sob);
  1448. }
  1449. void CGameHandler::sendMessageTo( CConnection &c, const std::string &message )
  1450. {
  1451. SystemMessage sm;
  1452. sm.text = message;
  1453. c << &sm;
  1454. }
  1455. void CGameHandler::giveHeroBonus( GiveBonus * bonus )
  1456. {
  1457. sendAndApply(bonus);
  1458. }
  1459. void CGameHandler::setMovePoints( SetMovePoints * smp )
  1460. {
  1461. sendAndApply(smp);
  1462. }
  1463. void CGameHandler::setManaPoints( int hid, int val )
  1464. {
  1465. SetMana sm;
  1466. sm.hid = hid;
  1467. sm.val = val;
  1468. sendAndApply(&sm);
  1469. }
  1470. void CGameHandler::giveHero( int id, int player )
  1471. {
  1472. GiveHero gh;
  1473. gh.id = id;
  1474. gh.player = player;
  1475. sendAndApply(&gh);
  1476. }
  1477. void CGameHandler::changeObjPos( int objid, int3 newPos, ui8 flags )
  1478. {
  1479. ChangeObjPos cop;
  1480. cop.objid = objid;
  1481. cop.nPos = newPos;
  1482. cop.flags = flags;
  1483. sendAndApply(&cop);
  1484. }
  1485. void CGameHandler::heroExchange(si32 hero1, si32 hero2)
  1486. {
  1487. ui8 player1 = getHero(hero1)->tempOwner;
  1488. ui8 player2 = getHero(hero2)->tempOwner;
  1489. if(player1 == player2)
  1490. {
  1491. OpenWindow hex;
  1492. hex.window = OpenWindow::EXCHANGE_WINDOW;
  1493. hex.id1 = hero1;
  1494. hex.id2 = hero2;
  1495. sendAndApply(&hex);
  1496. }
  1497. }
  1498. void CGameHandler::applyAndAsk( Query * sel, ui8 player, boost::function<void(ui32)> &callback )
  1499. {
  1500. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  1501. sel->id = QID;
  1502. callbacks[QID] = callback;
  1503. states.addQuery(player,QID);
  1504. QID++;
  1505. sendAndApply(sel);
  1506. }
  1507. void CGameHandler::ask( Query * sel, ui8 player, const CFunctionList<void(ui32)> &callback )
  1508. {
  1509. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  1510. sel->id = QID;
  1511. callbacks[QID] = callback;
  1512. states.addQuery(player,QID);
  1513. sendToAllClients(sel);
  1514. QID++;
  1515. }
  1516. void CGameHandler::sendToAllClients( CPackForClient * info )
  1517. {
  1518. tlog5 << "Sending to all clients a package of type " << typeid(*info).name() << std::endl;
  1519. for(std::set<CConnection*>::iterator i=conns.begin(); i!=conns.end();i++)
  1520. {
  1521. (*i)->wmx->lock();
  1522. **i << info;
  1523. (*i)->wmx->unlock();
  1524. }
  1525. }
  1526. void CGameHandler::sendAndApply( CPackForClient * info )
  1527. {
  1528. gs->apply(info);
  1529. sendToAllClients(info);
  1530. }
  1531. void CGameHandler::save( const std::string &fname )
  1532. {
  1533. {
  1534. tlog0 << "Ordering clients to serialize...\n";
  1535. SaveGame sg(fname);
  1536. sendToAllClients(&sg);
  1537. }
  1538. {
  1539. tlog0 << "Serializing game info...\n";
  1540. CSaveFile save(std::string("Games") + PATHSEPARATOR + fname + ".vlgm1");
  1541. char hlp[8] = "VCMISVG";
  1542. save << hlp << static_cast<CMapHeader&>(*gs->map) << gs->scenarioOps->difficulty << *VLC << gs;
  1543. }
  1544. {
  1545. tlog0 << "Serializing server info...\n";
  1546. CSaveFile save(std::string("Games") + PATHSEPARATOR + fname + ".vsgm1");
  1547. save << *this;
  1548. }
  1549. tlog0 << "Game has been succesfully saved!\n";
  1550. }
  1551. void CGameHandler::close()
  1552. {
  1553. tlog0 << "We have been requested to close.\n";
  1554. //BOOST_FOREACH(CConnection *cc, conns)
  1555. // if(cc && cc->socket && cc->socket->is_open())
  1556. // cc->socket->close();
  1557. //exit(0);
  1558. }
  1559. bool CGameHandler::arrangeStacks( si32 id1, si32 id2, ui8 what, ui8 p1, ui8 p2, si32 val )
  1560. {
  1561. CArmedInstance *s1 = static_cast<CArmedInstance*>(gs->map->objects[id1]),
  1562. *s2 = static_cast<CArmedInstance*>(gs->map->objects[id2]);
  1563. CCreatureSet temp1 = s1->army, temp2 = s2->army,
  1564. &S1 = temp1, &S2 = (s1!=s2)?(temp2):(temp1);
  1565. if(!isAllowedExchange(id1,id2))
  1566. {
  1567. complain("Cannot exchange stacks between these two objects!\n");
  1568. return false;
  1569. }
  1570. if(what==1) //swap
  1571. {
  1572. std::swap(S1.slots[p1],S2.slots[p2]); //swap slots
  1573. //if one of them is empty, remove entry
  1574. if(!S1.slots[p1].second)
  1575. S1.slots.erase(p1);
  1576. if(!S2.slots[p2].second)
  1577. S2.slots.erase(p2);
  1578. }
  1579. else if(what==2)//merge
  1580. {
  1581. if(S1.slots[p1].first != S2.slots[p2].first) //not same creature
  1582. {
  1583. complain("Cannot merge different creatures stacks!");
  1584. return false;
  1585. }
  1586. S2.slots[p2].second += S1.slots[p1].second;
  1587. S1.slots.erase(p1);
  1588. }
  1589. else if(what==3) //split
  1590. {
  1591. //general conditions checking
  1592. if((!vstd::contains(S1.slots,p1) && complain("no creatures to split"))
  1593. || (val<1 && complain("no creatures to split")) )
  1594. {
  1595. return false;
  1596. }
  1597. if(vstd::contains(S2.slots,p2)) //dest. slot not free - it must be "rebalancing"...
  1598. {
  1599. int total = S1.slots[p1].second + S2.slots[p2].second;
  1600. if( (total < val && complain("Cannot split that stack, not enough creatures!"))
  1601. || (S2.slots[p2].first != S1.slots[p1].first && complain("Cannot rebalance different creatures stacks!"))
  1602. )
  1603. {
  1604. return false;
  1605. }
  1606. S2.slots[p2].second = val;
  1607. S1.slots[p1].second = total - val;
  1608. }
  1609. else //split one stack to the two
  1610. {
  1611. if(S1.slots[p1].second < val)//not enough creatures
  1612. {
  1613. complain("Cannot split that stack, not enough creatures!");
  1614. return false;
  1615. }
  1616. S2.slots[p2].first = S1.slots[p1].first;
  1617. S2.slots[p2].second = val;
  1618. S1.slots[p1].second -= val;
  1619. }
  1620. if(!S1.slots[p1].second) //if we've moved all creatures
  1621. S1.slots.erase(p1);
  1622. }
  1623. if((s1->needsLastStack() && !S1.slots.size()) //it's not allowed to take last stack from hero army!
  1624. || (s2->needsLastStack() && !S2.slots.size())
  1625. )
  1626. {
  1627. complain("Cannot take the last stack!");
  1628. return false; //leave without applying changes to garrison
  1629. }
  1630. //apply changes
  1631. SetGarrisons sg;
  1632. sg.garrs[id1] = S1;
  1633. if(s1 != s2)
  1634. sg.garrs[id2] = S2;
  1635. sendAndApply(&sg);
  1636. return true;
  1637. }
  1638. int CGameHandler::getPlayerAt( CConnection *c ) const
  1639. {
  1640. std::set<int> all;
  1641. for(std::map<int,CConnection*>::const_iterator i=connections.begin(); i!=connections.end(); i++)
  1642. if(i->second == c)
  1643. all.insert(i->first);
  1644. switch(all.size())
  1645. {
  1646. case 0:
  1647. return 255;
  1648. case 1:
  1649. return *all.begin();
  1650. default:
  1651. {
  1652. //if we have more than one player at this connection, try to pick active one
  1653. if(vstd::contains(all,int(gs->currentPlayer)))
  1654. return gs->currentPlayer;
  1655. else
  1656. return 253; //cannot say which player is it
  1657. }
  1658. }
  1659. }
  1660. bool CGameHandler::disbandCreature( si32 id, ui8 pos )
  1661. {
  1662. CArmedInstance *s1 = static_cast<CArmedInstance*>(gs->map->objects[id]);
  1663. if(!vstd::contains(s1->army.slots,pos))
  1664. {
  1665. complain("Illegal call to disbandCreature - no such stack in army!");
  1666. return false;
  1667. }
  1668. s1->army.slots.erase(pos);
  1669. SetGarrisons sg;
  1670. sg.garrs[id] = s1->army;
  1671. sendAndApply(&sg);
  1672. return true;
  1673. }
  1674. bool CGameHandler::buildStructure( si32 tid, si32 bid )
  1675. {
  1676. CGTownInstance * t = static_cast<CGTownInstance*>(gs->map->objects[tid]);
  1677. CBuilding * b = VLC->buildh->buildings[t->subID][bid];
  1678. if(gs->canBuildStructure(t,bid) != 7)
  1679. {
  1680. complain("Cannot build that building!");
  1681. return false;
  1682. }
  1683. NewStructures ns;
  1684. ns.tid = tid;
  1685. if(bid>36) //upg dwelling
  1686. {
  1687. if(t->getHordeLevel(0) == (bid-37))
  1688. ns.bid.insert(19);
  1689. else if(t->getHordeLevel(1) == (bid-37))
  1690. ns.bid.insert(25);
  1691. SetAvailableCreatures ssi;
  1692. ssi.tid = tid;
  1693. ssi.creatures = t->creatures;
  1694. ssi.creatures[bid-37].second.push_back(t->town->upgradedCreatures[bid-37]);
  1695. sendAndApply(&ssi);
  1696. }
  1697. else if(bid >= 30) //bas. dwelling
  1698. {
  1699. int crid = t->town->basicCreatures[bid-30];
  1700. SetAvailableCreatures ssi;
  1701. ssi.tid = tid;
  1702. ssi.creatures = t->creatures;
  1703. ssi.creatures[bid-30].first = VLC->creh->creatures[crid].growth;
  1704. ssi.creatures[bid-30].second.push_back(crid);
  1705. sendAndApply(&ssi);
  1706. }
  1707. ns.bid.insert(bid);
  1708. ns.builded = t->builded + 1;
  1709. sendAndApply(&ns);
  1710. SetResources sr;
  1711. sr.player = t->tempOwner;
  1712. sr.res = gs->getPlayer(t->tempOwner)->resources;
  1713. for(int i=0;i<b->resources.size();i++)
  1714. sr.res[i]-=b->resources[i];
  1715. sendAndApply(&sr);
  1716. if(bid<5) //it's mage guild
  1717. {
  1718. if(t->visitingHero)
  1719. giveSpells(t,t->visitingHero);
  1720. if(t->garrisonHero)
  1721. giveSpells(t,t->garrisonHero);
  1722. }
  1723. return true;
  1724. }
  1725. void CGameHandler::sendMessageToAll( const std::string &message )
  1726. {
  1727. SystemMessage sm;
  1728. sm.text = message;
  1729. sendToAllClients(&sm);
  1730. }
  1731. bool CGameHandler::recruitCreatures( si32 objid, ui32 crid, ui32 cram )
  1732. {
  1733. const CGDwelling *dw = static_cast<CGDwelling*>(gs->map->objects[objid]);
  1734. const CArmedInstance *dst = NULL;
  1735. if(dw->ID == TOWNI_TYPE)
  1736. dst = dw;
  1737. else if(dw->ID == 17 || dw->ID == 20) //advmap dwelling
  1738. dst = getHero(gs->getPlayer(dw->tempOwner)->currentSelection); //TODO: check if current hero is really visiting dwelling
  1739. assert(dw && dst);
  1740. //verify
  1741. bool found = false;
  1742. int level = -1;
  1743. typedef std::pair<const int,int> Parka;
  1744. for(level = 0; level < dw->creatures.size(); level++) //iterate through all levels
  1745. {
  1746. const std::pair<ui32, std::vector<ui32> > &cur = dw->creatures[level]; //current level info <amount, list of cr. ids>
  1747. int i = 0;
  1748. for(; i < cur.second.size(); i++) //look for crid among available creatures list on current level
  1749. if(cur.second[i] == crid)
  1750. break;
  1751. if(i < cur.second.size())
  1752. {
  1753. found = true;
  1754. cram = std::min(cram, cur.first); //reduce recruited amount up to available amount
  1755. break;
  1756. }
  1757. }
  1758. int slot = dst->army.getSlotFor(crid);
  1759. if(!found && complain("Cannot recruit: no such creatures!")
  1760. || cram > VLC->creh->creatures[crid].maxAmount(gs->getPlayer(dst->tempOwner)->resources) && complain("Cannot recruit: lack of resources!")
  1761. || cram<=0 && complain("Cannot recruit: cram <= 0!")
  1762. || slot<0 && complain("Cannot recruit: no available slot!"))
  1763. {
  1764. return false;
  1765. }
  1766. //recruit
  1767. SetResources sr;
  1768. sr.player = dst->tempOwner;
  1769. for(int i=0;i<RESOURCE_QUANTITY;i++)
  1770. sr.res[i] = gs->getPlayer(dst->tempOwner)->resources[i] - (VLC->creh->creatures[crid].cost[i] * cram);
  1771. SetAvailableCreatures sac;
  1772. sac.tid = objid;
  1773. sac.creatures = dw->creatures;
  1774. sac.creatures[level].first -= cram;
  1775. SetGarrisons sg;
  1776. sg.garrs[dst->id] = dst->army;
  1777. if(sg.garrs[dst->id].slots.find(slot) == sg.garrs[dst->id].slots.end()) //take a free slot
  1778. {
  1779. sg.garrs[dst->id].slots[slot] = std::make_pair(crid,cram);
  1780. }
  1781. else //add creatures to a already existing stack
  1782. {
  1783. sg.garrs[dst->id].slots[slot].second += cram;
  1784. }
  1785. sendAndApply(&sr);
  1786. sendAndApply(&sac);
  1787. sendAndApply(&sg);
  1788. return true;
  1789. }
  1790. bool CGameHandler::upgradeCreature( ui32 objid, ui8 pos, ui32 upgID )
  1791. {
  1792. CArmedInstance *obj = static_cast<CArmedInstance*>(gs->map->objects[objid]);
  1793. UpgradeInfo ui = gs->getUpgradeInfo(obj,pos);
  1794. int player = obj->tempOwner;
  1795. int crQuantity = obj->army.slots[pos].second;
  1796. //check if upgrade is possible
  1797. if((ui.oldID<0 || !vstd::contains(ui.newID,upgID)) && complain("That upgrade is not possible!"))
  1798. {
  1799. return false;
  1800. }
  1801. //check if player has enough resources
  1802. for(int i=0;i<ui.cost.size();i++)
  1803. {
  1804. for (std::set<std::pair<int,int> >::iterator j=ui.cost[i].begin(); j!=ui.cost[i].end(); j++)
  1805. {
  1806. if(gs->getPlayer(player)->resources[j->first] < j->second*crQuantity)
  1807. {
  1808. complain("Cannot upgrade, not enough resources!");
  1809. return false;
  1810. }
  1811. }
  1812. }
  1813. //take resources
  1814. for(int i=0;i<ui.cost.size();i++)
  1815. {
  1816. for (std::set<std::pair<int,int> >::iterator j=ui.cost[i].begin(); j!=ui.cost[i].end(); j++)
  1817. {
  1818. SetResource sr;
  1819. sr.player = player;
  1820. sr.resid = j->first;
  1821. sr.val = gs->getPlayer(player)->resources[j->first] - j->second*crQuantity;
  1822. sendAndApply(&sr);
  1823. }
  1824. }
  1825. //upgrade creature
  1826. SetGarrisons sg;
  1827. sg.garrs[objid] = obj->army;
  1828. sg.garrs[objid].slots[pos].first = upgID;
  1829. sendAndApply(&sg);
  1830. return true;
  1831. }
  1832. bool CGameHandler::garrisonSwap( si32 tid )
  1833. {
  1834. CGTownInstance *town = gs->getTown(tid);
  1835. if(!town->garrisonHero && town->visitingHero) //visiting => garrison, merge armies
  1836. {
  1837. CCreatureSet csn = town->visitingHero->army, cso = town->army;
  1838. while(!cso.slots.empty())//while there are unmoved creatures
  1839. {
  1840. int pos = csn.getSlotFor(cso.slots.begin()->second.first);
  1841. if(pos<0)
  1842. {
  1843. complain("Cannot make garrison swap, not enough free slots!");
  1844. return false;
  1845. }
  1846. if(csn.slots.find(pos)!=csn.slots.end()) //add creatures to the existing stack
  1847. {
  1848. csn.slots[pos].second += cso.slots.begin()->second.second;
  1849. }
  1850. else //move stack on the free pos
  1851. {
  1852. csn.slots[pos].first = cso.slots.begin()->second.first;
  1853. csn.slots[pos].second = cso.slots.begin()->second.second;
  1854. }
  1855. cso.slots.erase(cso.slots.begin());
  1856. }
  1857. SetGarrisons sg;
  1858. sg.garrs[town->visitingHero->id] = csn;
  1859. sg.garrs[town->id] = csn;
  1860. sendAndApply(&sg);
  1861. SetHeroesInTown intown;
  1862. intown.tid = tid;
  1863. intown.visiting = -1;
  1864. intown.garrison = town->visitingHero->id;
  1865. sendAndApply(&intown);
  1866. return true;
  1867. }
  1868. else if (town->garrisonHero && !town->visitingHero) //move hero out of the garrison
  1869. {
  1870. //check if moving hero out of town will break 8 wandering heroes limit
  1871. if(getHeroCount(town->garrisonHero->tempOwner,false) >= 8)
  1872. {
  1873. complain("Cannot move hero out of the garrison, there are already 8 wandering heroes!");
  1874. return false;
  1875. }
  1876. SetHeroesInTown intown;
  1877. intown.tid = tid;
  1878. intown.garrison = -1;
  1879. intown.visiting = town->garrisonHero->id;
  1880. sendAndApply(&intown);
  1881. //town will be empty
  1882. SetGarrisons sg;
  1883. sg.garrs[tid] = CCreatureSet();
  1884. sendAndApply(&sg);
  1885. return true;
  1886. }
  1887. else if (town->garrisonHero && town->visitingHero) //swap visiting and garrison hero
  1888. {
  1889. SetGarrisons sg;
  1890. sg.garrs[town->id] = town->visitingHero->army;
  1891. sg.garrs[town->garrisonHero->id] = town->garrisonHero->army;
  1892. SetHeroesInTown intown;
  1893. intown.tid = tid;
  1894. intown.garrison = town->visitingHero->id;
  1895. intown.visiting = town->garrisonHero->id;
  1896. sendAndApply(&intown);
  1897. sendAndApply(&sg);
  1898. return true;
  1899. }
  1900. else
  1901. {
  1902. complain("Cannot swap garrison hero!");
  1903. return false;
  1904. }
  1905. }
  1906. bool CGameHandler::swapArtifacts( si32 hid1, si32 hid2, ui16 slot1, ui16 slot2 )
  1907. {
  1908. CGHeroInstance *h1 = gs->getHero(hid1), *h2 = gs->getHero(hid2);
  1909. if((distance(h1->pos,h2->pos) > 1.5) || (h1->tempOwner != h2->tempOwner))
  1910. return false;
  1911. const CArtifact *a1 = h1->getArt(slot1),
  1912. *a2=h2->getArt(slot2);
  1913. //check if
  1914. // 1) slots are appropriate for that artifacts
  1915. // 2) they are not war machine
  1916. if((a1 && slot2<19 && !vstd::contains(a1->possibleSlots,slot2) || (a2 && slot1<19 && !vstd::contains(a2->possibleSlots,slot1))) && complain("Cannot swap artifacts!")
  1917. || (slot1>=13 && slot1<=16 || slot2>=13 && slot2<=16) && complain("Cannot move war machine!")
  1918. )
  1919. {
  1920. return false;
  1921. }
  1922. SetHeroArtifacts sha;
  1923. sha.hid = hid1;
  1924. sha.artifacts = h1->artifacts;
  1925. sha.artifWorn = h1->artifWorn;
  1926. sha.setArtAtPos(slot1,h2->getArtAtPos(slot2));
  1927. if(h1 == h2) sha.setArtAtPos(slot2,h1->getArtAtPos(slot1));
  1928. sendAndApply(&sha);
  1929. if(hid1 != hid2)
  1930. {
  1931. sha.hid = hid2;
  1932. sha.artifacts = h2->artifacts;
  1933. sha.artifWorn = h2->artifWorn;
  1934. sha.setArtAtPos(slot2, a1 ? a1->id : -1);
  1935. sendAndApply(&sha);
  1936. }
  1937. return true;
  1938. }
  1939. bool CGameHandler::buyArtifact( ui32 hid, si32 aid )
  1940. {
  1941. CGHeroInstance *hero = gs->getHero(hid);
  1942. CGTownInstance *town = hero->visitedTown;
  1943. if(aid==0) //spellbook
  1944. {
  1945. if(!vstd::contains(town->builtBuildings,si32(0)) && complain("Cannot buy a spellbook, no mage guild in the town!")
  1946. || getResource(hero->getOwner(),6)<500 && complain("Cannot buy a spellbook, not enough gold!")
  1947. || hero->getArt(17) && complain("Cannot buy a spellbook, hero already has a one!")
  1948. )
  1949. return false;
  1950. giveResource(hero->getOwner(),6,-500);
  1951. giveHeroArtifact(0,hid,17);
  1952. giveSpells(town,hero);
  1953. return true;
  1954. }
  1955. else if(aid < 7 && aid > 3) //war machine
  1956. {
  1957. int price = VLC->arth->artifacts[aid].price;
  1958. if(vstd::contains(hero->artifWorn,ui16(9+aid)) && complain("Hero already has this machine!")
  1959. || !vstd::contains(town->builtBuildings,si32(16)) && complain("No blackismith!")
  1960. || gs->getPlayer(hero->getOwner())->resources[6] < price && complain("Not enough gold!") //no gold
  1961. || town->town->warMachine!= aid && complain("This machine is unavailale here!") ) //TODO: ballista yard in Stronghold
  1962. {
  1963. return false;
  1964. }
  1965. giveResource(hero->getOwner(),6,-price);
  1966. giveHeroArtifact(aid,hid,9+aid);
  1967. return true;
  1968. }
  1969. return false;
  1970. }
  1971. bool CGameHandler::tradeResources( ui32 val, ui8 player, ui32 id1, ui32 id2 )
  1972. {
  1973. val = std::min(si32(val),gs->getPlayer(player)->resources[id1]);
  1974. double yield = (double)gs->resVals[id1] * val * gs->getMarketEfficiency(player);
  1975. yield /= gs->resVals[id2];
  1976. SetResource sr;
  1977. sr.player = player;
  1978. sr.resid = id1;
  1979. sr.val = gs->getPlayer(player)->resources[id1] - val;
  1980. sendAndApply(&sr);
  1981. sr.resid = id2;
  1982. sr.val = gs->getPlayer(player)->resources[id2] + (int)yield;
  1983. sendAndApply(&sr);
  1984. return true;
  1985. }
  1986. bool CGameHandler::setFormation( si32 hid, ui8 formation )
  1987. {
  1988. gs->getHero(hid)->army.formation = formation;
  1989. return true;
  1990. }
  1991. bool CGameHandler::hireHero( ui32 tid, ui8 hid )
  1992. {
  1993. CGTownInstance *t = gs->getTown(tid);
  1994. if(!vstd::contains(t->builtBuildings,5) && complain("No tavern!")
  1995. || gs->getPlayer(t->tempOwner)->resources[6]<2500 && complain("Not enough gold for buying hero!")
  1996. || t->visitingHero && complain("There is visiting hero - no place!")
  1997. || getHeroCount(t->tempOwner,false) >= 8 && complain("Cannot hire hero, only 8 wandering heroes are allowed!")
  1998. )
  1999. return false;
  2000. CGHeroInstance *nh = gs->getPlayer(t->tempOwner)->availableHeroes[hid];
  2001. assert(nh);
  2002. HeroRecruited hr;
  2003. hr.tid = tid;
  2004. hr.hid = nh->subID;
  2005. hr.player = t->tempOwner;
  2006. hr.tile = t->pos - int3(1,0,0);
  2007. sendAndApply(&hr);
  2008. std::map<ui32,CGHeroInstance *> pool = gs->hpool.heroesPool;
  2009. for ( std::map<ui8, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end();i++)
  2010. for(std::vector<CGHeroInstance *>::iterator j = i->second.availableHeroes.begin(); j != i->second.availableHeroes.end(); j++)
  2011. if(*j)
  2012. pool.erase((**j).subID);
  2013. SetAvailableHeroes sah;
  2014. CGHeroInstance *h1 = gs->hpool.pickHeroFor(false,t->tempOwner,t->town, pool),
  2015. *h2 = gs->getPlayer(t->tempOwner)->availableHeroes[!hid];
  2016. (hid ? sah.hid2 : sah.hid1) = h1 ? h1->subID : -1;
  2017. (hid ? sah.hid1 : sah.hid2) = h2 ? h2->subID : -1;
  2018. sah.player = t->tempOwner;
  2019. sah.flags = hid+1;
  2020. sendAndApply(&sah);
  2021. SetResource sr;
  2022. sr.player = t->tempOwner;
  2023. sr.resid = 6;
  2024. sr.val = gs->getPlayer(t->tempOwner)->resources[6] - 2500;
  2025. sendAndApply(&sr);
  2026. giveSpells(t,nh);
  2027. return true;
  2028. }
  2029. bool CGameHandler::queryReply( ui32 qid, ui32 answer )
  2030. {
  2031. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  2032. if(vstd::contains(callbacks,qid))
  2033. {
  2034. CFunctionList<void(ui32)> callb = callbacks[qid];
  2035. callbacks.erase(qid);
  2036. if(callb)
  2037. callb(answer);
  2038. }
  2039. else if(vstd::contains(garrisonCallbacks,qid))
  2040. {
  2041. if(garrisonCallbacks[qid])
  2042. garrisonCallbacks[qid]();
  2043. garrisonCallbacks.erase(qid);
  2044. allowedExchanges.erase(qid);
  2045. }
  2046. else
  2047. {
  2048. tlog1 << "Unknown query reply...\n";
  2049. return false;
  2050. }
  2051. return true;
  2052. }
  2053. bool CGameHandler::makeBattleAction( BattleAction &ba )
  2054. {
  2055. bool ok = true;
  2056. switch(ba.actionType)
  2057. {
  2058. case 2: //walk
  2059. {
  2060. sendAndApply(&StartAction(ba)); //start movement
  2061. moveStack(ba.stackNumber,ba.destinationTile); //move
  2062. sendAndApply(&EndAction());
  2063. break;
  2064. }
  2065. case 3: //defend
  2066. case 8: //wait
  2067. {
  2068. sendAndApply(&StartAction(ba));
  2069. sendAndApply(&EndAction());
  2070. break;
  2071. }
  2072. case 4: //retreat/flee
  2073. {
  2074. if( !gs->battleCanFlee(ba.side ? gs->curB->side2 : gs->curB->side1) )
  2075. break;
  2076. //TODO: remove retreating hero from map and place it in recruitment list
  2077. BattleResult *br = new BattleResult;
  2078. br->result = 1;
  2079. br->winner = !ba.side; //fleeing side loses
  2080. gs->curB->calculateCasualties(br->casualties);
  2081. giveExp(*br);
  2082. battleResult.set(br);
  2083. break;
  2084. }
  2085. case 6: //walk or attack
  2086. {
  2087. sendAndApply(&StartAction(ba)); //start movement and attack
  2088. moveStack(ba.stackNumber,ba.destinationTile);
  2089. CStack *curStack = gs->curB->getStack(ba.stackNumber),
  2090. *stackAtEnd = gs->curB->getStackT(ba.additionalInfo);
  2091. if(curStack->position != ba.destinationTile //we wasn't able to reach destination tile
  2092. && !(curStack->hasFeatureOfType(StackFeature::DOUBLE_WIDE)
  2093. && ( curStack->position == ba.destinationTile + (curStack->attackerOwned ? +1 : -1 ) )
  2094. ) //nor occupy specified hex
  2095. )
  2096. {
  2097. std::string problem = "We cannot move this stack to its destination " + curStack->creature->namePl;
  2098. tlog3 << problem << std::endl;
  2099. complain(problem);
  2100. ok = false;
  2101. sendAndApply(&EndAction());
  2102. break;
  2103. }
  2104. if(curStack->ID == stackAtEnd->ID) //we should just move, it will be handled by following check
  2105. {
  2106. stackAtEnd = NULL;
  2107. }
  2108. if(!stackAtEnd)
  2109. {
  2110. std::ostringstream problem;
  2111. problem << "There is no stack on " << ba.additionalInfo << " tile (no attack)!";
  2112. std::string probl = problem.str();
  2113. tlog3 << probl << std::endl;
  2114. complain(probl);
  2115. ok = false;
  2116. sendAndApply(&EndAction());
  2117. break;
  2118. }
  2119. ui16 curpos = curStack->position,
  2120. enemypos = stackAtEnd->position;
  2121. if( !(
  2122. (BattleInfo::mutualPosition(curpos, enemypos) >= 0) //front <=> front
  2123. || (curStack->hasFeatureOfType(StackFeature::DOUBLE_WIDE) //back <=> front
  2124. && BattleInfo::mutualPosition(curpos + (curStack->attackerOwned ? -1 : 1), enemypos) >= 0)
  2125. || (stackAtEnd->hasFeatureOfType(StackFeature::DOUBLE_WIDE) //front <=> back
  2126. && BattleInfo::mutualPosition(curpos, enemypos + (stackAtEnd->attackerOwned ? -1 : 1)) >= 0)
  2127. || (stackAtEnd->hasFeatureOfType(StackFeature::DOUBLE_WIDE) && curStack->hasFeatureOfType(StackFeature::DOUBLE_WIDE)//back <=> back
  2128. && BattleInfo::mutualPosition(curpos + (curStack->attackerOwned ? -1 : 1), enemypos + (stackAtEnd->attackerOwned ? -1 : 1)) >= 0)
  2129. )
  2130. )
  2131. {
  2132. tlog3 << "Attack cannot be performed!";
  2133. sendAndApply(&EndAction());
  2134. ok = false;
  2135. }
  2136. //attack
  2137. BattleAttack bat;
  2138. prepareAttack(bat,curStack,stackAtEnd);
  2139. sendAndApply(&bat);
  2140. //counterattack
  2141. if(!curStack->hasFeatureOfType(StackFeature::BLOCKS_RETALIATION)
  2142. && stackAtEnd->alive()
  2143. && ( stackAtEnd->counterAttacks > 0 || stackAtEnd->hasFeatureOfType(StackFeature::UNLIMITED_RETALIATIONS) )
  2144. && !stackAtEnd->hasFeatureOfType(StackFeature::SIEGE_WEAPON)
  2145. && !stackAtEnd->hasFeatureOfType(StackFeature::HYPNOTIZED))
  2146. {
  2147. prepareAttack(bat,stackAtEnd,curStack);
  2148. bat.flags |= 2;
  2149. sendAndApply(&bat);
  2150. }
  2151. //second attack
  2152. if(curStack->valOfFeatures(StackFeature::ADDITIONAL_ATTACK) > 0
  2153. && !curStack->hasFeatureOfType(StackFeature::SHOOTER)
  2154. && curStack->alive()
  2155. && stackAtEnd->alive() )
  2156. {
  2157. bat.flags = 0;
  2158. prepareAttack(bat,curStack,stackAtEnd);
  2159. sendAndApply(&bat);
  2160. }
  2161. sendAndApply(&EndAction());
  2162. break;
  2163. }
  2164. case 7: //shoot
  2165. {
  2166. CStack *curStack = gs->curB->getStack(ba.stackNumber),
  2167. *destStack= gs->curB->getStackT(ba.destinationTile);
  2168. if(!curStack //our stack exists
  2169. || !destStack //there is a stack at destination tile
  2170. || !curStack->shots //stack has shots
  2171. || gs->curB->isStackBlocked(curStack->ID) //we are not blocked
  2172. || !curStack->hasFeatureOfType(StackFeature::SHOOTER) //our stack is shooting unit
  2173. )
  2174. break;
  2175. //for(int g=0; g<curStack->effects.size(); ++g)
  2176. //{
  2177. // if(61 == curStack->effects[g].id) //forgetfulness
  2178. // break;
  2179. //}
  2180. if(curStack->hasFeatureOfType(StackFeature::FORGETFULL)) //forgetfulness
  2181. break;
  2182. sendAndApply(&StartAction(ba)); //start shooting
  2183. BattleAttack bat;
  2184. prepareAttack(bat,curStack,destStack);
  2185. bat.flags |= 1;
  2186. sendAndApply(&bat);
  2187. if(curStack->valOfFeatures(StackFeature::ADDITIONAL_ATTACK) > 0 //if unit shots twice let's make another shot
  2188. && curStack->alive()
  2189. && destStack->alive()
  2190. && curStack->shots
  2191. )
  2192. {
  2193. prepareAttack(bat,curStack,destStack);
  2194. sendAndApply(&bat);
  2195. }
  2196. sendAndApply(&EndAction());
  2197. break;
  2198. }
  2199. }
  2200. battleMadeAction.setn(true);
  2201. return ok;
  2202. }
  2203. void CGameHandler::playerMessage( ui8 player, const std::string &message )
  2204. {
  2205. bool cheated=true;
  2206. sendAndApply(&PlayerMessage(player,message));
  2207. if(message == "vcmiistari") //give all spells and 999 mana
  2208. {
  2209. SetMana sm;
  2210. ChangeSpells cs;
  2211. SetHeroArtifacts sha;
  2212. CGHeroInstance *h = gs->getHero(gs->getPlayer(player)->currentSelection);
  2213. if(!h && complain("Cannot realize cheat, no hero selected!")) return;
  2214. sm.hid = cs.hid = h->id;
  2215. //give all spells
  2216. cs.learn = 1;
  2217. for(int i=0;i<VLC->spellh->spells.size();i++)
  2218. {
  2219. if(!VLC->spellh->spells[i].creatureAbility)
  2220. cs.spells.insert(i);
  2221. }
  2222. //give mana
  2223. sm.val = 999;
  2224. if(!h->getArt(17)) //hero doesn't have spellbook
  2225. {
  2226. //give spellbook
  2227. sha.artifacts = h->artifacts;
  2228. sha.artifWorn = h->artifWorn;
  2229. sha.artifWorn[17] = 0;
  2230. sendAndApply(&sha);
  2231. }
  2232. sendAndApply(&cs);
  2233. sendAndApply(&sm);
  2234. }
  2235. else if(message == "vcmiainur") //gives 5 archangels into each slot
  2236. {
  2237. SetGarrisons sg;
  2238. CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
  2239. if(!hero) return;
  2240. sg.garrs[hero->id] = hero->army;
  2241. for(int i=0;i<7;i++)
  2242. if(!vstd::contains(sg.garrs[hero->id].slots,i))
  2243. sg.garrs[hero->id].slots[i] = std::pair<ui32,si32>(13,5);
  2244. sendAndApply(&sg);
  2245. }
  2246. else if(message == "vcmiangband") //gives 10 black knight into each slot
  2247. {
  2248. SetGarrisons sg;
  2249. CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
  2250. if(!hero) return;
  2251. sg.garrs[hero->id] = hero->army;
  2252. for(int i=0;i<7;i++)
  2253. if(!vstd::contains(sg.garrs[hero->id].slots,i))
  2254. sg.garrs[hero->id].slots[i] = std::pair<ui32,si32>(66,10);
  2255. sendAndApply(&sg);
  2256. }
  2257. else if(message == "vcminoldor") //all war machines
  2258. {
  2259. CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
  2260. if(!hero) return;
  2261. SetHeroArtifacts sha;
  2262. sha.hid = hero->id;
  2263. sha.artifacts = hero->artifacts;
  2264. sha.artifWorn = hero->artifWorn;
  2265. sha.artifWorn[13] = 4;
  2266. sha.artifWorn[14] = 5;
  2267. sha.artifWorn[15] = 6;
  2268. sendAndApply(&sha);
  2269. }
  2270. else if(message == "vcminahar") //1000000 movement points
  2271. {
  2272. CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
  2273. if(!hero) return;
  2274. SetMovePoints smp;
  2275. smp.hid = hero->id;
  2276. smp.val = 1000000;
  2277. sendAndApply(&smp);
  2278. }
  2279. else if(message == "vcmiformenos") //give resources
  2280. {
  2281. SetResources sr;
  2282. sr.player = player;
  2283. sr.res = gs->getPlayer(player)->resources;
  2284. for(int i=0;i<7;i++)
  2285. sr.res[i] += 100;
  2286. sr.res[6] += 19900;
  2287. sendAndApply(&sr);
  2288. }
  2289. else if(message == "vcmieagles") //reveal FoW
  2290. {
  2291. FoWChange fc;
  2292. fc.mode = 1;
  2293. fc.player = player;
  2294. for(int i=0;i<gs->map->width;i++)
  2295. for(int j=0;j<gs->map->height;j++)
  2296. for(int k=0;k<gs->map->twoLevel+1;k++)
  2297. if(!gs->getPlayer(fc.player)->fogOfWarMap[i][j][k])
  2298. fc.tiles.insert(int3(i,j,k));
  2299. sendAndApply(&fc);
  2300. }
  2301. else if(message == "vcmiglorfindel")
  2302. {
  2303. CGHeroInstance *hero = gs->getHero(gs->getPlayer(player)->currentSelection);
  2304. changePrimSkill(hero->id,4,VLC->heroh->reqExp(hero->level+1) - VLC->heroh->reqExp(hero->level));
  2305. }
  2306. else
  2307. cheated = false;
  2308. if(cheated)
  2309. {
  2310. sendAndApply(&SystemMessage("CHEATER!!!"));
  2311. }
  2312. }
  2313. static ui32 calculateSpellDmg(const CSpell * sp, const CGHeroInstance * caster, const CStack * affectedCreature)
  2314. {
  2315. ui32 ret = 0; //value to return
  2316. //15 - magic arrows, 16 - ice bolt, 17 - lightning bolt, 18 - implosion, 20 - frost ring, 21 - fireball, 22 - inferno, 23 - meteor shower,
  2317. //24 - death ripple, 25 - destroy undead, 26 - armageddon
  2318. std::map <int, int> dmgMultipliers = boost::assign::map_list_of(15, 10)(16, 20)(17, 25)(18, 75)(20, 10)(21, 10)(22, 10)(23, 10)(24, 5)(25, 10)(26, 50);
  2319. ret = caster->getPrimSkillLevel(2) * dmgMultipliers[sp->id] + sp->powers[caster->getSpellSchoolLevel(sp)];
  2320. //applying sorcerery secondary skill
  2321. switch(caster->getSecSkillLevel(25))
  2322. {
  2323. case 1: //basic
  2324. ret *= 1.05f;
  2325. break;
  2326. case 2: //advanced
  2327. ret *= 1.1f;
  2328. break;
  2329. case 3: //expert
  2330. ret *= 1.15f;
  2331. break;
  2332. }
  2333. //applying hero bonuses
  2334. if(sp->air && caster->valOfBonuses(HeroBonus::AIR_SPELL_DMG_PREMY) != 0)
  2335. {
  2336. ret *= (100.0f + caster->valOfBonuses(HeroBonus::AIR_SPELL_DMG_PREMY) / 100.0f);
  2337. }
  2338. else if(sp->fire && caster->valOfBonuses(HeroBonus::FIRE_SPELL_DMG_PREMY) != 0)
  2339. {
  2340. ret *= (100.0f + caster->valOfBonuses(HeroBonus::FIRE_SPELL_DMG_PREMY) / 100.0f);
  2341. }
  2342. else if(sp->water && caster->valOfBonuses(HeroBonus::WATER_SPELL_DMG_PREMY) != 0)
  2343. {
  2344. ret *= (100.0f + caster->valOfBonuses(HeroBonus::WATER_SPELL_DMG_PREMY) / 100.0f);
  2345. }
  2346. else if(sp->earth && caster->valOfBonuses(HeroBonus::EARTH_SPELL_DMG_PREMY) != 0)
  2347. {
  2348. ret *= (100.0f + caster->valOfBonuses(HeroBonus::EARTH_SPELL_DMG_PREMY) / 100.0f);
  2349. }
  2350. //applying protections - when spell has more then one elements, only one protection should be applied (I think)
  2351. if(sp->air && affectedCreature->hasFeatureOfType(StackFeature::SPELL_DAMAGE_REDUCTION, 0)) //air spell & protection from air
  2352. {
  2353. ret *= affectedCreature->valOfFeatures(StackFeature::SPELL_DAMAGE_REDUCTION, 0);
  2354. ret /= 100;
  2355. }
  2356. else if(sp->fire && affectedCreature->hasFeatureOfType(StackFeature::SPELL_DAMAGE_REDUCTION, 1)) //fire spell & protection from fire
  2357. {
  2358. ret *= affectedCreature->valOfFeatures(StackFeature::SPELL_DAMAGE_REDUCTION, 1);
  2359. ret /= 100;
  2360. }
  2361. else if(sp->water && affectedCreature->hasFeatureOfType(StackFeature::SPELL_DAMAGE_REDUCTION, 2)) //water spell & protection from water
  2362. {
  2363. ret *= affectedCreature->valOfFeatures(StackFeature::SPELL_DAMAGE_REDUCTION, 2);
  2364. ret /= 100;
  2365. }
  2366. else if (sp->earth && affectedCreature->hasFeatureOfType(StackFeature::SPELL_DAMAGE_REDUCTION, 3)) //earth spell & protection from earth
  2367. {
  2368. ret *= affectedCreature->valOfFeatures(StackFeature::SPELL_DAMAGE_REDUCTION, 3);
  2369. ret /= 100;
  2370. }
  2371. //general spell dmg reduction
  2372. if(sp->air && affectedCreature->hasFeatureOfType(StackFeature::SPELL_DAMAGE_REDUCTION, -1)) //air spell & protection from air
  2373. {
  2374. ret *= affectedCreature->valOfFeatures(StackFeature::SPELL_DAMAGE_REDUCTION, -1);
  2375. ret /= 100;
  2376. }
  2377. return ret;
  2378. }
  2379. static ui32 calculateHealedHP(const CGHeroInstance * caster, const CSpell * spell, const CStack * stack)
  2380. {
  2381. switch(spell->id)
  2382. {
  2383. case 37: //cure
  2384. {
  2385. int healedHealth = caster->getPrimSkillLevel(2) * 5 + spell->powers[caster->getSpellSchoolLevel(spell)];
  2386. return std::min<ui32>(healedHealth, stack->MaxHealth() - stack->firstHPleft);
  2387. break;
  2388. }
  2389. case 38: //resurrection
  2390. {
  2391. int healedHealth = caster->getPrimSkillLevel(2) * 50 + spell->powers[caster->getSpellSchoolLevel(spell)];
  2392. return std::min<ui32>(healedHealth, stack->MaxHealth() - stack->firstHPleft + stack->baseAmount * stack->MaxHealth());
  2393. break;
  2394. }
  2395. case 39: //animate dead
  2396. {
  2397. int healedHealth = caster->getPrimSkillLevel(2) * 50 + spell->powers[caster->getSpellSchoolLevel(spell)];
  2398. return std::min<ui32>(healedHealth, stack->MaxHealth() - stack->firstHPleft + stack->baseAmount * stack->MaxHealth());
  2399. break;
  2400. }
  2401. }
  2402. //we shouldn't be here
  2403. tlog1 << "calculateHealedHP called for non-healing spell: " << spell->name << std::endl;
  2404. return 0;
  2405. }
  2406. static std::vector<ui32> calculateResistedStacks(const CSpell * sp, const CGHeroInstance * caster, const CGHeroInstance * hero2, const std::set<CStack*> affectedCreatures)
  2407. {
  2408. std::vector<ui32> ret;
  2409. for(std::set<CStack*>::const_iterator it = affectedCreatures.begin(); it != affectedCreatures.end(); ++it)
  2410. {
  2411. //non-negative spells on friendly stacks should always succeed
  2412. if(sp->positiveness >= 0 && (*it)->owner == caster->tempOwner)
  2413. continue;
  2414. const CGHeroInstance * bonusHero; //hero we should take bonuses from
  2415. if((*it)->owner == caster->tempOwner)
  2416. bonusHero = caster;
  2417. else
  2418. bonusHero = hero2;
  2419. int prob = (*it)->valOfFeatures(StackFeature::MAGIC_RESISTANCE); //probability of resistance in %
  2420. if(bonusHero)
  2421. {
  2422. //bonusHero's resistance support (secondary skils and artifacts)
  2423. prob += bonusHero->valOfBonuses(HeroBonus::MAGIC_RESISTANCE);
  2424. switch(bonusHero->getSecSkillLevel(26)) //resistance
  2425. {
  2426. case 1: //basic
  2427. prob += 5;
  2428. break;
  2429. case 2: //advanced
  2430. prob += 10;
  2431. break;
  2432. case 3: //expert
  2433. prob += 20;
  2434. break;
  2435. }
  2436. }
  2437. if(prob > 100) prob = 100;
  2438. if( (*it)->hasFeatureOfType(StackFeature::SPELL_IMMUNITY, sp->id) //100% sure spell immunity
  2439. || rand()%100 < prob) //immunity from resistance
  2440. ret.push_back((*it)->ID);
  2441. }
  2442. if(sp->id == 60) //hypnotize
  2443. {
  2444. for(std::set<CStack*>::const_iterator it = affectedCreatures.begin(); it != affectedCreatures.end(); ++it)
  2445. {
  2446. if( (*it)->hasFeatureOfType(StackFeature::SPELL_IMMUNITY, sp->id) //100% sure spell immunity
  2447. || ( (*it)->amount - 1 ) * (*it)->MaxHealth() + (*it)->firstHPleft
  2448. >
  2449. caster->getPrimSkillLevel(2) * 25 + sp->powers[caster->getSpellSchoolLevel(sp)]
  2450. )
  2451. {
  2452. ret.push_back((*it)->ID);
  2453. }
  2454. }
  2455. }
  2456. return ret;
  2457. }
  2458. bool CGameHandler::makeCustomAction( BattleAction &ba )
  2459. {
  2460. switch(ba.actionType)
  2461. {
  2462. case 1: //hero casts spell
  2463. {
  2464. CGHeroInstance *h = (ba.side) ? gs->getHero(gs->curB->hero2) : gs->getHero(gs->curB->hero1);
  2465. CGHeroInstance *secondHero = (!ba.side) ? gs->getHero(gs->curB->hero2) : gs->getHero(gs->curB->hero1);
  2466. if(!h)
  2467. {
  2468. tlog2 << "Wrong caster!\n";
  2469. return false;
  2470. }
  2471. if(ba.additionalInfo >= VLC->spellh->spells.size())
  2472. {
  2473. tlog2 << "Wrong spell id (" << ba.additionalInfo << ")!\n";
  2474. return false;
  2475. }
  2476. CSpell *s = &VLC->spellh->spells[ba.additionalInfo];
  2477. ui8 skill = h->getSpellSchoolLevel(s); //skill level
  2478. if( !(h->canCastThisSpell(s)) //hero cannot cast this spell at all
  2479. || (h->mana < s->costs[skill]) //not enough mana
  2480. || (ba.additionalInfo < 10) //it's adventure spell (not combat)
  2481. || (gs->curB->castSpells[ba.side]) //spell has been cast
  2482. || (secondHero && secondHero->hasBonusOfType(HeroBonus::SPELL_IMMUNITY, s->id)) //non - casting hero provides immunity for this spell
  2483. || (gs->battleMaxSpellLevel() < s->level) //non - casting hero stops caster from casting this spell
  2484. )
  2485. {
  2486. tlog2 << "Spell cannot be cast!\n";
  2487. return false;
  2488. }
  2489. sendAndApply(&StartAction(ba)); //start spell casting
  2490. SpellCast sc;
  2491. sc.side = ba.side;
  2492. sc.id = ba.additionalInfo;
  2493. sc.skill = skill;
  2494. sc.tile = ba.destinationTile;
  2495. //calculating affected creatures for all spells
  2496. std::set<CStack*> attackedCres = gs->curB->getAttackedCreatures(s, h, ba.destinationTile);
  2497. for(std::set<CStack*>::const_iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
  2498. {
  2499. sc.affectedCres.insert((*it)->ID);
  2500. }
  2501. //checking if creatures resist
  2502. sc.resisted = calculateResistedStacks(s, h, secondHero, attackedCres);
  2503. sendAndApply(&sc);
  2504. //applying effects
  2505. switch(ba.additionalInfo) //spell id
  2506. {
  2507. case 15: //magic arrow
  2508. case 16: //ice bolt
  2509. case 17: //lightning bolt
  2510. case 18: //implosion
  2511. case 20: //frost ring
  2512. case 21: //fireball
  2513. case 22: //inferno
  2514. case 23: //meteor shower
  2515. case 24: //death ripple
  2516. case 25: //destroy undead
  2517. case 26: //armageddon
  2518. {
  2519. StacksInjured si;
  2520. for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
  2521. {
  2522. if(vstd::contains(sc.resisted, (*it)->ID)) //this creature resisted the spell
  2523. continue;
  2524. BattleStackAttacked bsa;
  2525. bsa.flags |= 2;
  2526. bsa.effect = VLC->spellh->spells[ba.additionalInfo].mainEffectAnim;
  2527. bsa.damageAmount = calculateSpellDmg(s, h, *it);
  2528. bsa.stackAttacked = (*it)->ID;
  2529. prepareAttacked(bsa,*it);
  2530. si.stacks.insert(bsa);
  2531. }
  2532. if(!si.stacks.empty())
  2533. sendAndApply(&si);
  2534. break;
  2535. }
  2536. case 27: //shield
  2537. case 28: //air shield
  2538. case 30: //protection from air
  2539. case 31: //protection from fire
  2540. case 32: //protection from water
  2541. case 33: //protection from earth
  2542. case 34: //anti-magic
  2543. case 41: //bless
  2544. case 42: //curse
  2545. case 43: //bloodlust
  2546. case 44: //precision
  2547. case 45: //weakness
  2548. case 46: //stone skin
  2549. case 47: //disrupting ray
  2550. case 48: //prayer
  2551. case 49: //mirth
  2552. case 50: //sorrow
  2553. case 51: //fortune
  2554. case 52: //misfortune
  2555. case 53: //haste
  2556. case 54: //slow
  2557. case 55: //slayer
  2558. case 56: //frenzy
  2559. case 58: //counterstrike
  2560. case 60: //hypnotize
  2561. case 61: //forgetfulness
  2562. case 62: //blind
  2563. {
  2564. SetStackEffect sse;
  2565. for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
  2566. {
  2567. if(vstd::contains(sc.resisted, (*it)->ID)) //this creature resisted the spell
  2568. continue;
  2569. sse.stacks.insert((*it)->ID);
  2570. }
  2571. sse.effect.id = ba.additionalInfo;
  2572. sse.effect.level = h->getSpellSchoolLevel(s);
  2573. sse.effect.turnsRemain = BattleInfo::calculateSpellDuration(s, h);
  2574. if(!sse.stacks.empty())
  2575. sendAndApply(&sse);
  2576. break;
  2577. }
  2578. case 37: //cure
  2579. case 38: //resurrection
  2580. case 39: //animate dead
  2581. {
  2582. StacksHealedOrResurrected shr;
  2583. for(std::set<CStack*>::iterator it = attackedCres.begin(); it != attackedCres.end(); ++it)
  2584. {
  2585. if(vstd::contains(sc.resisted, (*it)->ID) //this creature resisted the spell
  2586. || (s->id == 39 && !(*it)->hasFeatureOfType(StackFeature::UNDEAD)) //we try to cast animate dead on living stack
  2587. )
  2588. continue;
  2589. StacksHealedOrResurrected::HealInfo hi;
  2590. hi.stackID = (*it)->ID;
  2591. hi.healedHP = calculateHealedHP(h, s, *it);
  2592. shr.healedStacks.push_back(hi);
  2593. }
  2594. if(!shr.healedStacks.empty())
  2595. sendAndApply(&shr);
  2596. break;
  2597. }
  2598. case 64: //remove obstacle
  2599. {
  2600. ObstaclesRemoved obr;
  2601. for(int g=0; g<gs->curB->obstacles.size(); ++g)
  2602. {
  2603. std::vector<int> blockedHexes = VLC->heroh->obstacles[gs->curB->obstacles[g].ID].getBlocked(gs->curB->obstacles[g].pos);
  2604. if(vstd::contains(blockedHexes, ba.destinationTile)) //this obstacle covers given hex
  2605. {
  2606. obr.obstacles.insert(gs->curB->obstacles[g].uniqueID);
  2607. }
  2608. }
  2609. if(!obr.obstacles.empty())
  2610. sendAndApply(&obr);
  2611. break;
  2612. }
  2613. }
  2614. sendAndApply(&EndAction());
  2615. return true;
  2616. }
  2617. }
  2618. return false;
  2619. }
  2620. void CGameHandler::handleTimeEvents()
  2621. {
  2622. gs->map->events.sort(evntCmp);
  2623. while(gs->map->events.size() && gs->map->events.front()->firstOccurence+1 == gs->day)
  2624. {
  2625. CMapEvent *ev = gs->map->events.front();
  2626. for(int player = 0; player < PLAYER_LIMIT; player++)
  2627. {
  2628. PlayerState *pinfo = gs->getPlayer(player);
  2629. if( pinfo //player exists
  2630. && (ev->players & 1<<player) //event is enabled to this player
  2631. && ((ev->computerAffected && !pinfo->human)
  2632. || (ev->humanAffected && pinfo->human)
  2633. )
  2634. )
  2635. {
  2636. //give resources
  2637. SetResources sr;
  2638. sr.player = player;
  2639. sr.res = pinfo->resources;
  2640. //prepare dialog
  2641. InfoWindow iw;
  2642. iw.player = player;
  2643. iw.text << ev->message;
  2644. for (int i=0; i<ev->resources.size(); i++)
  2645. {
  2646. if(ev->resources[i]) //if resource is changed, we add it to the dialog
  2647. {
  2648. // If removing too much resources, adjust the
  2649. // amount so the total doesn't become negative.
  2650. if (sr.res[i] + ev->resources[i] < 0)
  2651. ev->resources[i] = -sr.res[i];
  2652. if(ev->resources[i]) //if non-zero res change
  2653. {
  2654. iw.components.push_back(Component(Component::RESOURCE,i,ev->resources[i],0));
  2655. sr.res[i] += ev->resources[i];
  2656. }
  2657. }
  2658. }
  2659. if (iw.components.size())
  2660. {
  2661. sendAndApply(&sr); //update player resources if changed
  2662. }
  2663. sendAndApply(&iw); //show dialog
  2664. }
  2665. } //PLAYERS LOOP
  2666. if(ev->nextOccurence)
  2667. {
  2668. ev->firstOccurence += ev->nextOccurence;
  2669. gs->map->events.sort(evntCmp);
  2670. }
  2671. else
  2672. {
  2673. delete ev;
  2674. gs->map->events.pop_front();
  2675. }
  2676. }
  2677. }
  2678. bool CGameHandler::complain( const std::string &problem )
  2679. {
  2680. sendMessageToAll("Server encountered a problem: " + problem);
  2681. tlog1 << problem << std::endl;
  2682. return true;
  2683. }
  2684. ui32 CGameHandler::getQueryResult( ui8 player, int queryID )
  2685. {
  2686. //TODO: write
  2687. return 0;
  2688. }
  2689. void CGameHandler::showGarrisonDialog( int upobj, int hid, const boost::function<void()> &cb )
  2690. {
  2691. ui8 player = getOwner(hid);
  2692. GarrisonDialog gd;
  2693. gd.hid = hid;
  2694. gd.objid = upobj;
  2695. {
  2696. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  2697. gd.id = QID;
  2698. garrisonCallbacks[QID] = cb;
  2699. allowedExchanges[QID] = std::pair<si32,si32>(upobj,hid);
  2700. states.addQuery(player,QID);
  2701. QID++;
  2702. sendAndApply(&gd);
  2703. }
  2704. }
  2705. bool CGameHandler::isAllowedExchange( int id1, int id2 )
  2706. {
  2707. if(id1 == id2)
  2708. return true;
  2709. {
  2710. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  2711. for(std::map<ui32, std::pair<si32,si32> >::const_iterator i = allowedExchanges.begin(); i!=allowedExchanges.end(); i++)
  2712. if(id1 == i->second.first && id2 == i->second.second || id2 == i->second.first && id1 == i->second.second)
  2713. return true;
  2714. }
  2715. const CGObjectInstance *o1 = getObj(id1), *o2 = getObj(id2);
  2716. if(o1->ID == TOWNI_TYPE)
  2717. {
  2718. const CGTownInstance *t = static_cast<const CGTownInstance*>(o1);
  2719. if(t->visitingHero == o2 || t->garrisonHero == o2)
  2720. return true;
  2721. }
  2722. if(o2->ID == TOWNI_TYPE)
  2723. {
  2724. const CGTownInstance *t = static_cast<const CGTownInstance*>(o2);
  2725. if(t->visitingHero == o1 || t->garrisonHero == o1)
  2726. return true;
  2727. }
  2728. if(o1->ID == HEROI_TYPE && o2->ID == HEROI_TYPE
  2729. && distance(o1->pos, o2->pos) < 2) //hero stands on the same tile or on the neighbouring tiles
  2730. {
  2731. //TODO: it's workaround, we should check if first hero visited second and player hasn't closed exchange window
  2732. //(to block moving stacks for free [without visiting] beteen heroes)
  2733. return true;
  2734. }
  2735. return false;
  2736. }
  2737. void CGameHandler::objectVisited( const CGObjectInstance * obj, const CGHeroInstance * h )
  2738. {
  2739. obj->onHeroVisit(h);
  2740. }
  2741. bool CGameHandler::buildBoat( ui32 objid )
  2742. {
  2743. const IShipyard *obj = IShipyard::castFrom(getObj(objid));
  2744. if(obj->state())
  2745. {
  2746. complain("Cannot build boat in this shipyard!");
  2747. return false;
  2748. }
  2749. else if(obj->o->ID == TOWNI_TYPE
  2750. && !vstd::contains((static_cast<const CGTownInstance*>(obj))->builtBuildings,6))
  2751. {
  2752. complain("Cannot build boat in the town - no shipyard!");
  2753. return false;
  2754. }
  2755. //TODO use "real" cost via obj->getBoatCost
  2756. if(getResource(obj->o->tempOwner, 6) < 1000 || getResource(obj->o->tempOwner, 0) < 10)
  2757. {
  2758. complain("Not enough resources to build a boat!");
  2759. return false;
  2760. }
  2761. int3 tile = obj->bestLocation();
  2762. if(!gs->map->isInTheMap(tile))
  2763. {
  2764. complain("Cannot find appropriate tile for a boat!");
  2765. return false;
  2766. }
  2767. //take boat cost
  2768. SetResources sr;
  2769. sr.player = obj->o->tempOwner;
  2770. sr.res = gs->getPlayer(obj->o->tempOwner)->resources;
  2771. sr.res[0] -= 10;
  2772. sr.res[6] -= 1000;
  2773. sendAndApply(&sr);
  2774. //create boat
  2775. NewObject no;
  2776. no.ID = 8;
  2777. no.subID = 1;
  2778. no.pos = tile + int3(1,0,0);
  2779. sendAndApply(&no);
  2780. return true;
  2781. }
  2782. void CGameHandler::engageIntoBattle( ui8 player )
  2783. {
  2784. if(vstd::contains(states.players, player))
  2785. states.setFlag(player,&PlayerStatus::engagedIntoBattle,true);
  2786. //notify interfaces
  2787. PlayerBlocked pb;
  2788. pb.player = player;
  2789. pb.reason = PlayerBlocked::UPCOMING_BATTLE;
  2790. sendAndApply(&pb);
  2791. }