IGameCallback.cpp 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955
  1. #include "StdInc.h"
  2. #include "IGameCallback.h"
  3. #include <boost/random/linear_congruential.hpp>
  4. #include "CGameState.h"
  5. #include "Mapping/CMap.h"
  6. #include "CObjectHandler.h"
  7. #include "CHeroHandler.h"
  8. #include "StartInfo.h"
  9. #include "CArtHandler.h"
  10. #include "CSpellHandler.h"
  11. #include "VCMI_Lib.h"
  12. #include "CTownHandler.h"
  13. #include "BattleState.h"
  14. #include "NetPacks.h"
  15. #include "CBuildingHandler.h"
  16. #include "GameConstants.h"
  17. #include "CModHandler.h"
  18. /*
  19. * IGameCallback.cpp, part of VCMI engine
  20. *
  21. * Authors: listed in file AUTHORS in main folder
  22. *
  23. * License: GNU General Public License v2.0 or later
  24. * Full text of license available in license.txt file, in main folder
  25. *
  26. */
  27. //TODO make clean
  28. #define ERROR_SILENT_RET_VAL_IF(cond, txt, retVal) do {if(cond){return retVal;}} while(0)
  29. #define ERROR_VERBOSE_OR_NOT_RET_VAL_IF(cond, verbose, txt, retVal) do {if(cond){if(verbose)tlog1 << BOOST_CURRENT_FUNCTION << ": " << txt << std::endl; return retVal;}} while(0)
  30. #define ERROR_RET_IF(cond, txt) do {if(cond){tlog1 << BOOST_CURRENT_FUNCTION << ": " << txt << std::endl; return;}} while(0)
  31. #define ERROR_RET_VAL_IF(cond, txt, retVal) do {if(cond){tlog1 << BOOST_CURRENT_FUNCTION << ": " << txt << std::endl; return retVal;}} while(0)
  32. extern boost::rand48 ran;
  33. CGameState * CPrivilagedInfoCallback::gameState ()
  34. {
  35. return gs;
  36. }
  37. int CGameInfoCallback::getOwner(int heroID) const
  38. {
  39. const CGObjectInstance *obj = getObj(heroID);
  40. ERROR_RET_VAL_IF(!obj, "No such object!", -1);
  41. return gs->map->objects[heroID]->tempOwner;
  42. }
  43. int CGameInfoCallback::getResource(TPlayerColor Player, Res::ERes which) const
  44. {
  45. const PlayerState *p = getPlayer(Player);
  46. ERROR_RET_VAL_IF(!p, "No player info!", -1);
  47. ERROR_RET_VAL_IF(p->resources.size() <= which || which < 0, "No such resource!", -1);
  48. return p->resources[which];
  49. }
  50. const CGHeroInstance* CGameInfoCallback::getSelectedHero( TPlayerColor Player ) const
  51. {
  52. const PlayerState *p = getPlayer(Player);
  53. ERROR_RET_VAL_IF(!p, "No player info!", NULL);
  54. return getHero(p->currentSelection);
  55. }
  56. const CGHeroInstance* CGameInfoCallback::getSelectedHero() const
  57. {
  58. return getSelectedHero(gs->currentPlayer);
  59. }
  60. const PlayerSettings * CGameInfoCallback::getPlayerSettings(TPlayerColor color) const
  61. {
  62. return &gs->scenarioOps->getIthPlayersSettings(color);
  63. }
  64. void CPrivilagedInfoCallback::getTilesInRange( boost::unordered_set<int3, ShashInt3> &tiles, int3 pos, int radious, int player/*=-1*/, int mode/*=0*/ ) const
  65. {
  66. if(player >= GameConstants::PLAYER_LIMIT)
  67. {
  68. tlog1 << "Illegal call to getTilesInRange!\n";
  69. return;
  70. }
  71. if (radious == -1) //reveal entire map
  72. getAllTiles (tiles, player, -1, 0);
  73. else
  74. {
  75. const TeamState * team = gs->getPlayerTeam(player);
  76. for (int xd = std::max<int>(pos.x - radious , 0); xd <= std::min<int>(pos.x + radious, gs->map->width - 1); xd++)
  77. {
  78. for (int yd = std::max<int>(pos.y - radious, 0); yd <= std::min<int>(pos.y + radious, gs->map->height - 1); yd++)
  79. {
  80. double distance = pos.dist2d(int3(xd,yd,pos.z)) - 0.5;
  81. if(distance <= radious)
  82. {
  83. if(player < 0
  84. || (mode == 1 && team->fogOfWarMap[xd][yd][pos.z]==0)
  85. || (mode == -1 && team->fogOfWarMap[xd][yd][pos.z]==1)
  86. )
  87. tiles.insert(int3(xd,yd,pos.z));
  88. }
  89. }
  90. }
  91. }
  92. }
  93. void CPrivilagedInfoCallback::getAllTiles (boost::unordered_set<int3, ShashInt3> &tiles, int Player/*=-1*/, int level, int surface ) const
  94. {
  95. if(Player >= GameConstants::PLAYER_LIMIT)
  96. {
  97. tlog1 << "Illegal call to getAllTiles !\n";
  98. return;
  99. }
  100. bool water = surface == 0 || surface == 2,
  101. land = surface == 0 || surface == 1;
  102. std::vector<int> floors;
  103. if(level == -1)
  104. {
  105. for(int b = 0; b < (gs->map->twoLevel ? 2 : 1); ++b)
  106. {
  107. floors.push_back(b);
  108. }
  109. }
  110. else
  111. floors.push_back(level);
  112. for (std::vector<int>::const_iterator i = floors.begin(); i!= floors.end(); i++)
  113. {
  114. register int zd = *i;
  115. for (int xd = 0; xd < gs->map->width; xd++)
  116. {
  117. for (int yd = 0; yd < gs->map->height; yd++)
  118. {
  119. if ((getTile (int3 (xd,yd,zd))->terType == 8 && water)
  120. || (getTile (int3 (xd,yd,zd))->terType != 8 && land))
  121. tiles.insert(int3(xd,yd,zd));
  122. }
  123. }
  124. }
  125. }
  126. void CPrivilagedInfoCallback::getFreeTiles (std::vector<int3> &tiles) const
  127. {
  128. std::vector<int> floors;
  129. for (int b = 0; b < (gs->map->twoLevel ? 2 : 1); ++b)
  130. {
  131. floors.push_back(b);
  132. }
  133. const TerrainTile *tinfo;
  134. for (std::vector<int>::const_iterator i = floors.begin(); i!= floors.end(); i++)
  135. {
  136. register int zd = *i;
  137. for (int xd = 0; xd < gs->map->width; xd++)
  138. {
  139. for (int yd = 0; yd < gs->map->height; yd++)
  140. {
  141. tinfo = getTile(int3 (xd,yd,zd));
  142. if (tinfo->terType != 8 && !tinfo->blocked) //land and free
  143. tiles.push_back (int3 (xd,yd,zd));
  144. }
  145. }
  146. }
  147. }
  148. bool CGameInfoCallback::isAllowed( int type, int id )
  149. {
  150. switch(type)
  151. {
  152. case 0:
  153. return gs->map->allowedSpell[id];
  154. case 1:
  155. return gs->map->allowedArtifact[id];
  156. case 2:
  157. return gs->map->allowedAbilities[id];
  158. default:
  159. ERROR_RET_VAL_IF(1, "Wrong type!", false);
  160. }
  161. }
  162. void CPrivilagedInfoCallback::pickAllowedArtsSet(std::vector<const CArtifact*> &out)
  163. {
  164. for (int j = 0; j < 3 ; j++)
  165. out.push_back(VLC->arth->artifacts[getRandomArt(CArtifact::ART_TREASURE)]);
  166. for (int j = 0; j < 3 ; j++)
  167. out.push_back(VLC->arth->artifacts[getRandomArt(CArtifact::ART_MINOR)]);
  168. out.push_back(VLC->arth->artifacts[getRandomArt(CArtifact::ART_MAJOR)]);
  169. }
  170. ui16 CPrivilagedInfoCallback::getRandomArt (int flags)
  171. {
  172. return VLC->arth->getRandomArt(flags);
  173. }
  174. ui16 CPrivilagedInfoCallback::getArtSync (ui32 rand, int flags)
  175. {
  176. return VLC->arth->getArtSync (rand, flags);
  177. }
  178. void CPrivilagedInfoCallback::erasePickedArt (si32 id)
  179. {
  180. VLC->arth->erasePickedArt(id);
  181. }
  182. void CPrivilagedInfoCallback::getAllowedSpells(std::vector<SpellID> &out, ui16 level)
  183. {
  184. CSpell *spell;
  185. for (ui32 i = 0; i < gs->map->allowedSpell.size(); i++) //spellh size appears to be greater (?)
  186. {
  187. spell = VLC->spellh->spells[i];
  188. if (isAllowed (0, spell->id) && spell->level == level)
  189. {
  190. out.push_back(spell->id);
  191. }
  192. }
  193. }
  194. inline TerrainTile * CNonConstInfoCallback::getTile( int3 pos )
  195. {
  196. if(!gs->map->isInTheMap(pos))
  197. return NULL;
  198. return &gs->map->getTile(pos);
  199. }
  200. const PlayerState * CGameInfoCallback::getPlayer(TPlayerColor color, bool verbose) const
  201. {
  202. ERROR_VERBOSE_OR_NOT_RET_VAL_IF(!hasAccess(color), verbose, "Cannot access player " << color << "info!", NULL);
  203. ERROR_VERBOSE_OR_NOT_RET_VAL_IF(!vstd::contains(gs->players,color), verbose, "Cannot find player " << color << "info!", NULL);
  204. return &gs->players[color];
  205. }
  206. const CTown * CGameInfoCallback::getNativeTown(TPlayerColor color) const
  207. {
  208. const PlayerSettings *ps = getPlayerSettings(color);
  209. ERROR_RET_VAL_IF(!ps, "There is no such player!", NULL);
  210. return &VLC->townh->towns[ps->castle];
  211. }
  212. const CGObjectInstance * CGameInfoCallback::getObjByQuestIdentifier(int identifier) const
  213. {
  214. ERROR_RET_VAL_IF(!vstd::contains(gs->map->questIdentifierToId, identifier), "There is no object with such quest identifier!", NULL);
  215. return getObj(gs->map->questIdentifierToId[identifier]);
  216. }
  217. /************************************************************************/
  218. /* */
  219. /************************************************************************/
  220. const CGObjectInstance* CGameInfoCallback::getObj(int objid, bool verbose) const
  221. {
  222. if(objid < 0 || objid >= gs->map->objects.size())
  223. {
  224. if(verbose)
  225. tlog1 << "Cannot get object with id " << objid << std::endl;
  226. return NULL;
  227. }
  228. const CGObjectInstance *ret = gs->map->objects[objid];
  229. if(!ret)
  230. {
  231. if(verbose)
  232. tlog1 << "Cannot get object with id " << objid << ". Object was removed.\n";
  233. return NULL;
  234. }
  235. if(!isVisible(ret, player))
  236. {
  237. if(verbose)
  238. tlog1 << "Cannot get object with id " << objid << ". Object is not visible.\n";
  239. return NULL;
  240. }
  241. return ret;
  242. }
  243. const CGHeroInstance* CGameInfoCallback::getHero(int objid) const
  244. {
  245. const CGObjectInstance *obj = getObj(objid, false);
  246. if(obj)
  247. return dynamic_cast<const CGHeroInstance*>(obj);
  248. else
  249. return NULL;
  250. }
  251. const CGTownInstance* CGameInfoCallback::getTown(int objid) const
  252. {
  253. const CGObjectInstance *obj = getObj(objid, false);
  254. if(obj)
  255. return dynamic_cast<const CGTownInstance*>(gs->map->objects[objid].get());
  256. else
  257. return NULL;
  258. }
  259. void CGameInfoCallback::getUpgradeInfo(const CArmedInstance *obj, int stackPos, UpgradeInfo &out) const
  260. {
  261. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  262. ERROR_RET_IF(!canGetFullInfo(obj), "Cannot get info about not owned object!");
  263. ERROR_RET_IF(!obj->hasStackAtSlot(stackPos), "There is no such stack!");
  264. out = gs->getUpgradeInfo(obj->getStack(stackPos));
  265. //return gs->getUpgradeInfo(obj->getStack(stackPos));
  266. }
  267. const StartInfo * CGameInfoCallback::getStartInfo(bool beforeRandomization /*= false*/) const
  268. {
  269. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  270. if(beforeRandomization)
  271. return gs->initialOpts;
  272. else
  273. return gs->scenarioOps;
  274. }
  275. int CGameInfoCallback::getSpellCost(const CSpell * sp, const CGHeroInstance * caster) const
  276. {
  277. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  278. ERROR_RET_VAL_IF(!canGetFullInfo(caster), "Cannot get info about caster!", -1);
  279. //if there is a battle
  280. if(gs->curB)
  281. return gs->curB->battleGetSpellCost(sp, caster);
  282. //if there is no battle
  283. return caster->getSpellCost(sp);
  284. }
  285. int CGameInfoCallback::estimateSpellDamage(const CSpell * sp, const CGHeroInstance * hero) const
  286. {
  287. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  288. ERROR_RET_VAL_IF(hero && !canGetFullInfo(hero), "Cannot get info about caster!", -1);
  289. if(!gs->curB) //no battle
  290. {
  291. if (hero) //but we see hero's spellbook
  292. return gs->curB->calculateSpellDmg(
  293. sp, hero, NULL, hero->getSpellSchoolLevel(sp), hero->getPrimSkillLevel(PrimarySkill::SPELL_POWER));
  294. else
  295. return 0; //mage guild
  296. }
  297. //gs->getHero(gs->currentPlayer)
  298. //const CGHeroInstance * ourHero = gs->curB->heroes[0]->tempOwner == player ? gs->curB->heroes[0] : gs->curB->heroes[1];
  299. const CGHeroInstance * ourHero = hero;
  300. return gs->curB->calculateSpellDmg(
  301. sp, ourHero, NULL, ourHero->getSpellSchoolLevel(sp), ourHero->getPrimSkillLevel(PrimarySkill::SPELL_POWER));
  302. }
  303. void CGameInfoCallback::getThievesGuildInfo(SThievesGuildInfo & thi, const CGObjectInstance * obj)
  304. {
  305. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  306. ERROR_RET_IF(!obj, "No guild object!");
  307. ERROR_RET_IF(obj->ID == Obj::TOWN && !canGetFullInfo(obj), "Cannot get info about town guild object!");
  308. //TODO: advmap object -> check if they're visited by our hero
  309. if(obj->ID == Obj::TOWN || obj->ID == Obj::TAVERN)
  310. {
  311. gs->obtainPlayersStats(thi, gs->players[obj->tempOwner].towns.size());
  312. }
  313. else if(obj->ID == Obj::DEN_OF_THIEVES)
  314. {
  315. gs->obtainPlayersStats(thi, 20);
  316. }
  317. }
  318. int CGameInfoCallback::howManyTowns(int Player) const
  319. {
  320. ERROR_RET_VAL_IF(!hasAccess(Player), "Access forbidden!", -1);
  321. return gs->players[Player].towns.size();
  322. }
  323. bool CGameInfoCallback::getTownInfo( const CGObjectInstance *town, InfoAboutTown &dest ) const
  324. {
  325. ERROR_RET_VAL_IF(!isVisible(town, player), "Town is not visible!", false); //it's not a town or it's not visible for layer
  326. bool detailed = hasAccess(town->tempOwner);
  327. //TODO vision support
  328. if(town->ID == Obj::TOWN)
  329. dest.initFromTown(static_cast<const CGTownInstance *>(town), detailed);
  330. else if(town->ID == Obj::GARRISON || town->ID == Obj::GARRISON2)
  331. dest.initFromArmy(static_cast<const CArmedInstance *>(town), detailed);
  332. else
  333. return false;
  334. return true;
  335. }
  336. int3 CGameInfoCallback::guardingCreaturePosition (int3 pos) const
  337. {
  338. ERROR_RET_VAL_IF(!isVisible(pos), "Tile is not visible!", int3(-1,-1,-1));
  339. return gs->guardingCreaturePosition(pos);
  340. }
  341. std::vector<const CGObjectInstance*> CGameInfoCallback::getGuardingCreatures (int3 pos) const
  342. {
  343. ERROR_RET_VAL_IF(!isVisible(pos), "Tile is not visible!", std::vector<const CGObjectInstance*>());
  344. std::vector<const CGObjectInstance*> ret;
  345. BOOST_FOREACH(auto cr, gs->guardingCreatures(pos))
  346. {
  347. ret.push_back(cr);
  348. }
  349. return ret;
  350. }
  351. bool CGameInfoCallback::getHeroInfo( const CGObjectInstance *hero, InfoAboutHero &dest ) const
  352. {
  353. const CGHeroInstance *h = dynamic_cast<const CGHeroInstance *>(hero);
  354. ERROR_RET_VAL_IF(!h, "That's not a hero!", false);
  355. ERROR_RET_VAL_IF(!isVisible(h->getPosition(false)), "That hero is not visible!", false);
  356. //TODO vision support
  357. dest.initFromHero(h, hasAccess(h->tempOwner));
  358. return true;
  359. }
  360. int CGameInfoCallback::getDate(Date::EDateType mode) const
  361. {
  362. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  363. return gs->getDate(mode);
  364. }
  365. std::vector < std::string > CGameInfoCallback::getObjDescriptions(int3 pos) const
  366. {
  367. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  368. std::vector<std::string> ret;
  369. const TerrainTile *t = getTile(pos);
  370. ERROR_RET_VAL_IF(!t, "Not a valid tile given!", ret);
  371. BOOST_FOREACH(const CGObjectInstance * obj, t->blockingObjects)
  372. ret.push_back(obj->getHoverText());
  373. return ret;
  374. }
  375. bool CGameInfoCallback::isVisible(int3 pos, boost::optional<TPlayerColor> Player) const
  376. {
  377. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  378. return gs->map->isInTheMap(pos) && (!Player || gs->isVisible(pos, *Player));
  379. }
  380. bool CGameInfoCallback::isVisible(int3 pos) const
  381. {
  382. return isVisible(pos, player);
  383. }
  384. bool CGameInfoCallback::isVisible( const CGObjectInstance *obj, boost::optional<TPlayerColor> Player ) const
  385. {
  386. return gs->isVisible(obj, Player);
  387. }
  388. bool CGameInfoCallback::isVisible(const CGObjectInstance *obj) const
  389. {
  390. return isVisible(obj, player);
  391. }
  392. // const CCreatureSet* CInfoCallback::getGarrison(const CGObjectInstance *obj) const
  393. // {
  394. // //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  395. // if()
  396. // const CArmedInstance *armi = dynamic_cast<const CArmedInstance*>(obj);
  397. // if(!armi)
  398. // return NULL;
  399. // else
  400. // return armi;
  401. // }
  402. std::vector < const CGObjectInstance * > CGameInfoCallback::getBlockingObjs( int3 pos ) const
  403. {
  404. std::vector<const CGObjectInstance *> ret;
  405. const TerrainTile *t = getTile(pos);
  406. ERROR_RET_VAL_IF(!t, "Not a valid tile requested!", ret);
  407. BOOST_FOREACH(const CGObjectInstance * obj, t->blockingObjects)
  408. ret.push_back(obj);
  409. return ret;
  410. }
  411. std::vector <const CGObjectInstance * > CGameInfoCallback::getVisitableObjs(int3 pos, bool verbose /*= true*/) const
  412. {
  413. std::vector<const CGObjectInstance *> ret;
  414. const TerrainTile *t = getTile(pos, verbose);
  415. ERROR_VERBOSE_OR_NOT_RET_VAL_IF(!t, verbose, pos << " is not visible!", ret);
  416. BOOST_FOREACH(const CGObjectInstance * obj, t->visitableObjects)
  417. {
  418. if(player < 0 || obj->ID != Obj::EVENT) //hide events from players
  419. ret.push_back(obj);
  420. }
  421. return ret;
  422. }
  423. std::vector < const CGObjectInstance * > CGameInfoCallback::getFlaggableObjects(int3 pos) const
  424. {
  425. std::vector<const CGObjectInstance *> ret;
  426. const TerrainTile *t = getTile(pos);
  427. ERROR_RET_VAL_IF(!t, "Not a valid tile requested!", ret);
  428. BOOST_FOREACH(const CGObjectInstance *obj, t->blockingObjects)
  429. if(obj->tempOwner != 254)
  430. ret.push_back(obj);
  431. // const std::vector < std::pair<const CGObjectInstance*,SDL_Rect> > & objs = CGI->mh->ttiles[pos.x][pos.y][pos.z].objects;
  432. // for(size_t b=0; b<objs.size(); ++b)
  433. // {
  434. // if(objs[b].first->tempOwner!=254 && !((objs[b].first->defInfo->blockMap[pos.y - objs[b].first->pos.y + 5] >> (objs[b].first->pos.x - pos.x)) & 1))
  435. // ret.push_back(CGI->mh->ttiles[pos.x][pos.y][pos.z].objects[b].first);
  436. // }
  437. return ret;
  438. }
  439. int3 CGameInfoCallback::getMapSize() const
  440. {
  441. return int3(gs->map->width, gs->map->height, gs->map->twoLevel ? 2 : 1);
  442. }
  443. std::vector<const CGHeroInstance *> CGameInfoCallback::getAvailableHeroes(const CGObjectInstance * townOrTavern) const
  444. {
  445. ASSERT_IF_CALLED_WITH_PLAYER
  446. std::vector<const CGHeroInstance *> ret;
  447. //ERROR_RET_VAL_IF(!isOwnedOrVisited(townOrTavern), "Town or tavern must be owned or visited!", ret);
  448. //TODO: town needs to be owned, advmap tavern needs to be visited; to be reimplemented when visit tracking is done
  449. ret.resize(gs->players[*player].availableHeroes.size());
  450. std::copy(gs->players[*player].availableHeroes.begin(),gs->players[*player].availableHeroes.end(),ret.begin());
  451. return ret;
  452. }
  453. const TerrainTile * CGameInfoCallback::getTile( int3 tile, bool verbose) const
  454. {
  455. ERROR_VERBOSE_OR_NOT_RET_VAL_IF(!isVisible(tile), verbose, tile << " is not visible!", NULL);
  456. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  457. return &gs->map->getTile(tile);
  458. }
  459. EBuildingState::EBuildingState CGameInfoCallback::canBuildStructure( const CGTownInstance *t, int ID )
  460. {
  461. ERROR_RET_VAL_IF(!canGetFullInfo(t), "Town is not owned!", EBuildingState::TOWN_NOT_OWNED);
  462. CBuilding * pom = t->town->buildings[ID];
  463. if(!pom)
  464. return EBuildingState::BUILDING_ERROR;
  465. if(t->hasBuilt(ID)) //already built
  466. return EBuildingState::ALREADY_PRESENT;
  467. //can we build it?
  468. if(t->forbiddenBuildings.find(ID)!=t->forbiddenBuildings.end())
  469. return EBuildingState::FORBIDDEN; //forbidden
  470. //checking for requirements
  471. std::set<int> reqs = getBuildingRequiments(t, ID);//getting all requirements
  472. bool notAllBuilt = false;
  473. for( std::set<int>::iterator ri = reqs.begin(); ri != reqs.end(); ri++ )
  474. {
  475. if(!t->hasBuilt(*ri)) //lack of requirements - cannot build
  476. {
  477. if(vstd::contains(t->forbiddenBuildings, *ri)) // not built requirement forbidden - same goes to this build
  478. return EBuildingState::FORBIDDEN;
  479. else
  480. notAllBuilt = true; // no return here - we need to check if any required builds are forbidden
  481. }
  482. }
  483. if(t->builded >= VLC->modh->settings.MAX_BUILDING_PER_TURN)
  484. return EBuildingState::CANT_BUILD_TODAY; //building limit
  485. if (notAllBuilt)
  486. return EBuildingState::PREREQUIRES;
  487. if(ID == BuildingID::CAPITOL)
  488. {
  489. const PlayerState *ps = getPlayer(t->tempOwner);
  490. if(ps)
  491. {
  492. BOOST_FOREACH(const CGTownInstance *t, ps->towns)
  493. {
  494. if(t->hasBuilt(BuildingID::CAPITOL))
  495. {
  496. return EBuildingState::HAVE_CAPITAL; //no more than one capitol
  497. }
  498. }
  499. }
  500. }
  501. else if(ID == BuildingID::SHIPYARD)
  502. {
  503. const TerrainTile *tile = getTile(t->bestLocation(), false);
  504. if(!tile || tile->terType != ETerrainType::WATER)
  505. return EBuildingState::NO_WATER; //lack of water
  506. }
  507. //checking resources
  508. if(!pom->resources.canBeAfforded(getPlayer(t->tempOwner)->resources))
  509. return EBuildingState::NO_RESOURCES; //lack of res
  510. return EBuildingState::ALLOWED;
  511. }
  512. std::set<int> CGameInfoCallback::getBuildingRequiments( const CGTownInstance *t, int ID )
  513. {
  514. ERROR_RET_VAL_IF(!canGetFullInfo(t), "Town is not owned!", std::set<int>());
  515. std::set<int> used;
  516. used.insert(ID);
  517. auto reqs = t->town->buildings[ID]->requirements;
  518. bool found;
  519. do
  520. {
  521. found = false;
  522. for(auto i=reqs.begin();i!=reqs.end();i++)
  523. {
  524. if(used.find(*i)==used.end()) //we haven't added requirements for this building
  525. {
  526. found = true;
  527. auto & requires = t->town->buildings[*i]->requirements;
  528. used.insert(*i);
  529. for(auto j = requires.begin(); j!= requires.end(); j++)
  530. reqs.insert(*j);//creating full list of requirements
  531. }
  532. }
  533. }
  534. while (found);
  535. return reqs;
  536. }
  537. const CMapHeader * CGameInfoCallback::getMapHeader() const
  538. {
  539. return gs->map;
  540. }
  541. bool CGameInfoCallback::hasAccess(boost::optional<TPlayerColor> playerId) const
  542. {
  543. return !player || gs->getPlayerRelations( *playerId, *player ) != PlayerRelations::ENEMIES;
  544. }
  545. EPlayerStatus::EStatus CGameInfoCallback::getPlayerStatus(TPlayerColor player) const
  546. {
  547. const PlayerState *ps = gs->getPlayer(player, false);
  548. ERROR_RET_VAL_IF(!ps, "No such player!", EPlayerStatus::WRONG);
  549. return ps->status;
  550. }
  551. std::string CGameInfoCallback::getTavernGossip(const CGObjectInstance * townOrTavern) const
  552. {
  553. return "GOSSIP TEST";
  554. }
  555. PlayerRelations::PlayerRelations CGameInfoCallback::getPlayerRelations( TPlayerColor color1, TPlayerColor color2 ) const
  556. {
  557. return gs->getPlayerRelations(color1, color2);
  558. }
  559. bool CGameInfoCallback::canGetFullInfo(const CGObjectInstance *obj) const
  560. {
  561. return !obj || hasAccess(obj->tempOwner);
  562. }
  563. int CGameInfoCallback::getHeroCount( TPlayerColor player, bool includeGarrisoned ) const
  564. {
  565. int ret = 0;
  566. const PlayerState *p = gs->getPlayer(player);
  567. ERROR_RET_VAL_IF(!p, "No such player!", -1);
  568. if(includeGarrisoned)
  569. return p->heroes.size();
  570. else
  571. for(ui32 i = 0; i < p->heroes.size(); i++)
  572. if(!p->heroes[i]->inTownGarrison)
  573. ret++;
  574. return ret;
  575. }
  576. bool CGameInfoCallback::isOwnedOrVisited(const CGObjectInstance *obj) const
  577. {
  578. if(canGetFullInfo(obj))
  579. return true;
  580. const TerrainTile *t = getTile(obj->visitablePos()); //get entrance tile
  581. const CGObjectInstance *visitor = t->visitableObjects.back(); //visitong hero if present or the obejct itself at last
  582. return visitor->ID == Obj::HERO && canGetFullInfo(visitor); //owned or allied hero is a visitor
  583. }
  584. int CGameInfoCallback::getCurrentPlayer() const
  585. {
  586. return gs->currentPlayer;
  587. }
  588. CGameInfoCallback::CGameInfoCallback()
  589. {
  590. }
  591. CGameInfoCallback::CGameInfoCallback(CGameState *GS, boost::optional<TPlayerColor> Player)
  592. {
  593. gs = GS;
  594. player = Player;
  595. }
  596. const std::vector< std::vector< std::vector<ui8> > > & CPlayerSpecificInfoCallback::getVisibilityMap() const
  597. {
  598. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  599. return gs->getPlayerTeam(*player)->fogOfWarMap;
  600. }
  601. int CPlayerSpecificInfoCallback::howManyTowns() const
  602. {
  603. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  604. ERROR_RET_VAL_IF(!player, "Applicable only for player callbacks", -1);
  605. return CGameInfoCallback::howManyTowns(*player);
  606. }
  607. std::vector < const CGTownInstance *> CPlayerSpecificInfoCallback::getTownsInfo(bool onlyOur) const
  608. {
  609. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  610. std::vector < const CGTownInstance *> ret = std::vector < const CGTownInstance *>();
  611. BOOST_FOREACH(const auto & i, gs->players)
  612. {
  613. BOOST_FOREACH(const auto & town, i.second.towns)
  614. {
  615. if (i.first==player || (isVisible(town, player) && !onlyOur))
  616. {
  617. ret.push_back(town);
  618. }
  619. }
  620. } // for ( std::map<int, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end();i++)
  621. return ret;
  622. }
  623. std::vector < const CGHeroInstance *> CPlayerSpecificInfoCallback::getHeroesInfo(bool onlyOur) const
  624. {
  625. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  626. std::vector < const CGHeroInstance *> ret;
  627. BOOST_FOREACH(auto hero, gs->map->heroes)
  628. {
  629. if( !player || (hero->tempOwner == *player) ||
  630. (isVisible(hero->getPosition(false), player) && !onlyOur) )
  631. {
  632. ret.push_back(hero);
  633. }
  634. }
  635. return ret;
  636. }
  637. boost::optional<TPlayerColor> CPlayerSpecificInfoCallback::getMyColor() const
  638. {
  639. return player;
  640. }
  641. int CPlayerSpecificInfoCallback::getHeroSerial(const CGHeroInstance * hero, bool includeGarrisoned) const
  642. {
  643. if (hero->inTownGarrison && !includeGarrisoned)
  644. return -1;
  645. size_t index = 0;
  646. auto & heroes = gs->players[*player].heroes;
  647. for (auto curHero = heroes.begin(); curHero!=heroes.end(); curHero++)
  648. {
  649. if (includeGarrisoned || !(*curHero)->inTownGarrison)
  650. index++;
  651. if (*curHero == hero)
  652. return index;
  653. }
  654. return -1;
  655. }
  656. int3 CPlayerSpecificInfoCallback::getGrailPos( double &outKnownRatio )
  657. {
  658. if (!player || CGObelisk::obeliskCount == 0)
  659. {
  660. outKnownRatio = 0.0;
  661. }
  662. else
  663. {
  664. outKnownRatio = static_cast<double>(CGObelisk::visited[gs->getPlayerTeam(*player)->id]) / CGObelisk::obeliskCount;
  665. }
  666. return gs->map->grailPos;
  667. }
  668. std::vector < const CGObjectInstance * > CPlayerSpecificInfoCallback::getMyObjects() const
  669. {
  670. std::vector < const CGObjectInstance * > ret;
  671. BOOST_FOREACH(const CGObjectInstance * obj, gs->map->objects)
  672. {
  673. if(obj && obj->tempOwner == player)
  674. ret.push_back(obj);
  675. }
  676. return ret;
  677. }
  678. std::vector < const CGDwelling * > CPlayerSpecificInfoCallback::getMyDwellings() const
  679. {
  680. ASSERT_IF_CALLED_WITH_PLAYER
  681. std::vector < const CGDwelling * > ret;
  682. BOOST_FOREACH(CGDwelling * dw, gs->getPlayer(*player)->dwellings)
  683. {
  684. ret.push_back(dw);
  685. }
  686. return ret;
  687. }
  688. std::vector <QuestInfo> CPlayerSpecificInfoCallback::getMyQuests() const
  689. {
  690. std::vector <QuestInfo> ret;
  691. BOOST_FOREACH (auto quest, gs->getPlayer(*player)->quests)
  692. {
  693. ret.push_back (quest);
  694. }
  695. return ret;
  696. }
  697. int CPlayerSpecificInfoCallback::howManyHeroes(bool includeGarrisoned) const
  698. {
  699. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  700. ERROR_RET_VAL_IF(!player, "Applicable only for player callbacks", -1);
  701. return getHeroCount(*player,includeGarrisoned);
  702. }
  703. const CGHeroInstance* CPlayerSpecificInfoCallback::getHeroBySerial(int serialId, bool includeGarrisoned) const
  704. {
  705. ASSERT_IF_CALLED_WITH_PLAYER
  706. const PlayerState *p = getPlayer(*player);
  707. ERROR_RET_VAL_IF(!p, "No player info", NULL);
  708. if (!includeGarrisoned)
  709. {
  710. for(ui32 i = 0; i < p->heroes.size() && i<=serialId; i++)
  711. if(p->heroes[i]->inTownGarrison)
  712. serialId++;
  713. }
  714. ERROR_RET_VAL_IF(serialId < 0 || serialId >= p->heroes.size(), "No player info", NULL);
  715. return p->heroes[serialId];
  716. }
  717. const CGTownInstance* CPlayerSpecificInfoCallback::getTownBySerial(int serialId) const
  718. {
  719. ASSERT_IF_CALLED_WITH_PLAYER
  720. const PlayerState *p = getPlayer(*player);
  721. ERROR_RET_VAL_IF(!p, "No player info", NULL);
  722. ERROR_RET_VAL_IF(serialId < 0 || serialId >= p->towns.size(), "No player info", NULL);
  723. return p->towns[serialId];
  724. }
  725. int CPlayerSpecificInfoCallback::getResourceAmount(Res::ERes type) const
  726. {
  727. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  728. ERROR_RET_VAL_IF(!player, "Applicable only for player callbacks", -1);
  729. return getResource(*player, type);
  730. }
  731. TResources CPlayerSpecificInfoCallback::getResourceAmount() const
  732. {
  733. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  734. ERROR_RET_VAL_IF(!player, "Applicable only for player callbacks", TResources());
  735. return gs->players[*player].resources;
  736. }
  737. CGHeroInstance *CNonConstInfoCallback::getHero(int objid)
  738. {
  739. return const_cast<CGHeroInstance*>(CGameInfoCallback::getHero(objid));
  740. }
  741. CGTownInstance *CNonConstInfoCallback::getTown(int objid)
  742. {
  743. return const_cast<CGTownInstance*>(CGameInfoCallback::getTown(objid));
  744. }
  745. TeamState *CNonConstInfoCallback::getTeam(ui8 teamID)
  746. {
  747. return const_cast<TeamState*>(CGameInfoCallback::getTeam(teamID));
  748. }
  749. TeamState *CNonConstInfoCallback::getPlayerTeam(TPlayerColor color)
  750. {
  751. return const_cast<TeamState*>(CGameInfoCallback::getPlayerTeam(color));
  752. }
  753. PlayerState * CNonConstInfoCallback::getPlayer( TPlayerColor color, bool verbose )
  754. {
  755. return const_cast<PlayerState*>(CGameInfoCallback::getPlayer(color, verbose));
  756. }
  757. const TeamState * CGameInfoCallback::getTeam( ui8 teamID ) const
  758. {
  759. ERROR_RET_VAL_IF(!vstd::contains(gs->teams, teamID), "Cannot find info for team " << int(teamID), NULL);
  760. const TeamState *ret = &gs->teams[teamID];
  761. ERROR_RET_VAL_IF(!!player && !vstd::contains(ret->players, *player), "Illegal attempt to access team data!", NULL);
  762. return ret;
  763. }
  764. const TeamState * CGameInfoCallback::getPlayerTeam( TPlayerColor color ) const
  765. {
  766. const PlayerState * ps = getPlayer(color);
  767. if (ps)
  768. return getTeam(ps->team);
  769. return NULL;
  770. }
  771. const CGHeroInstance* CGameInfoCallback::getHeroWithSubid( int subid ) const
  772. {
  773. BOOST_FOREACH(const CGHeroInstance *h, gs->map->heroes)
  774. if(h->subID == subid)
  775. return h;
  776. return NULL;
  777. }
  778. int CGameInfoCallback::getLocalPlayer() const
  779. {
  780. return getCurrentPlayer();
  781. }
  782. bool CGameInfoCallback::isInTheMap(const int3 &pos) const
  783. {
  784. return gs->map->isInTheMap(pos);
  785. }
  786. void IGameEventRealizer::showInfoDialog( InfoWindow *iw )
  787. {
  788. commitPackage(iw);
  789. }
  790. void IGameEventRealizer::showInfoDialog(const std::string &msg, int player)
  791. {
  792. InfoWindow iw;
  793. iw.player = player;
  794. iw.text << msg;
  795. showInfoDialog(&iw);
  796. }
  797. void IGameEventRealizer::setObjProperty(int objid, int prop, si64 val)
  798. {
  799. SetObjectProperty sob;
  800. sob.id = objid;
  801. sob.what = prop;
  802. sob.val = static_cast<ui32>(val);
  803. commitPackage(&sob);
  804. }
  805. const CGObjectInstance * IGameCallback::putNewObject(Obj ID, int subID, int3 pos)
  806. {
  807. NewObject no;
  808. no.ID = ID; //creature
  809. no.subID= subID;
  810. no.pos = pos;
  811. commitPackage(&no);
  812. return getObj(no.id); //id field will be filled during applying on gs
  813. }
  814. const CGCreature * IGameCallback::putNewMonster(int creID, int count, int3 pos)
  815. {
  816. const CGObjectInstance *m = putNewObject(Obj::MONSTER, creID, pos);
  817. setObjProperty(m->id, ObjProperty::MONSTER_COUNT, count);
  818. setObjProperty(m->id, ObjProperty::MONSTER_POWER, (si64)1000*count);
  819. return dynamic_cast<const CGCreature*>(m);
  820. }