CGameHandler.cpp 75 KB

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