CGameInfoCallback.cpp 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005
  1. /*
  2. * CGameInfoCallback.cpp, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #include "StdInc.h"
  11. #include "CGameInfoCallback.h"
  12. #include "CGameState.h" // PlayerState
  13. #include "CGeneralTextHandler.h"
  14. #include "mapObjects/CObjectHandler.h" // for CGObjectInstance
  15. #include "StartInfo.h" // for StartInfo
  16. #include "BattleState.h" // for BattleInfo
  17. #include "NetPacks.h" // for InfoWindow
  18. #include "CModHandler.h"
  19. #include "spells/CSpellHandler.h"
  20. #include "mapping/CMap.h"
  21. #include "CPlayerState.h"
  22. //TODO make clean
  23. #define ERROR_VERBOSE_OR_NOT_RET_VAL_IF(cond, verbose, txt, retVal) do {if(cond){if(verbose)logGlobal->errorStream() << BOOST_CURRENT_FUNCTION << ": " << txt; return retVal;}} while(0)
  24. #define ERROR_RET_IF(cond, txt) do {if(cond){logGlobal->errorStream() << BOOST_CURRENT_FUNCTION << ": " << txt; return;}} while(0)
  25. #define ERROR_RET_VAL_IF(cond, txt, retVal) do {if(cond){logGlobal->errorStream() << BOOST_CURRENT_FUNCTION << ": " << txt; return retVal;}} while(0)
  26. PlayerColor CGameInfoCallback::getOwner(ObjectInstanceID heroID) const
  27. {
  28. const CGObjectInstance *obj = getObj(heroID);
  29. ERROR_RET_VAL_IF(!obj, "No such object!", PlayerColor::CANNOT_DETERMINE);
  30. return obj->tempOwner;
  31. }
  32. int CGameInfoCallback::getResource(PlayerColor Player, Res::ERes which) const
  33. {
  34. const PlayerState *p = getPlayer(Player);
  35. ERROR_RET_VAL_IF(!p, "No player info!", -1);
  36. ERROR_RET_VAL_IF(p->resources.size() <= which || which < 0, "No such resource!", -1);
  37. return p->resources[which];
  38. }
  39. const PlayerSettings * CGameInfoCallback::getPlayerSettings(PlayerColor color) const
  40. {
  41. return &gs->scenarioOps->getIthPlayersSettings(color);
  42. }
  43. bool CGameInfoCallback::isAllowed( int type, int id )
  44. {
  45. switch(type)
  46. {
  47. case 0:
  48. return gs->map->allowedSpell[id];
  49. case 1:
  50. return gs->map->allowedArtifact[id];
  51. case 2:
  52. return gs->map->allowedAbilities[id];
  53. default:
  54. ERROR_RET_VAL_IF(1, "Wrong type!", false);
  55. }
  56. }
  57. const PlayerState * CGameInfoCallback::getPlayer(PlayerColor color, bool verbose) const
  58. {
  59. //funtion written from scratch since it's accessed A LOT by AI
  60. if(!color.isValidPlayer())
  61. {
  62. return nullptr;
  63. }
  64. auto player = gs->players.find(color);
  65. if (player != gs->players.end())
  66. {
  67. if (hasAccess(color))
  68. return &player->second;
  69. else
  70. {
  71. if (verbose)
  72. logGlobal->error("Cannot access player %d info!", color);
  73. return nullptr;
  74. }
  75. }
  76. else
  77. {
  78. if (verbose)
  79. logGlobal->error("Cannot find player %d info!", color);
  80. return nullptr;
  81. }
  82. }
  83. const CTown * CGameInfoCallback::getNativeTown(PlayerColor color) const
  84. {
  85. const PlayerSettings *ps = getPlayerSettings(color);
  86. ERROR_RET_VAL_IF(!ps, "There is no such player!", nullptr);
  87. return VLC->townh->factions[ps->castle]->town;
  88. }
  89. const CGObjectInstance * CGameInfoCallback::getObjByQuestIdentifier(int identifier) const
  90. {
  91. ERROR_RET_VAL_IF(!vstd::contains(gs->map->questIdentifierToId, identifier), "There is no object with such quest identifier!", nullptr);
  92. return getObj(gs->map->questIdentifierToId[identifier]);
  93. }
  94. /************************************************************************/
  95. /* */
  96. /************************************************************************/
  97. const CGObjectInstance* CGameInfoCallback::getObj(ObjectInstanceID objid, bool verbose) const
  98. {
  99. si32 oid = objid.num;
  100. if(oid < 0 || oid >= gs->map->objects.size())
  101. {
  102. if(verbose)
  103. logGlobal->errorStream() << "Cannot get object with id " << oid;
  104. return nullptr;
  105. }
  106. const CGObjectInstance *ret = gs->map->objects[oid];
  107. if(!ret)
  108. {
  109. if(verbose)
  110. logGlobal->errorStream() << "Cannot get object with id " << oid << ". Object was removed.";
  111. return nullptr;
  112. }
  113. if(!isVisible(ret, player) && ret->tempOwner != player)
  114. {
  115. if(verbose)
  116. logGlobal->errorStream() << "Cannot get object with id " << oid << ". Object is not visible.";
  117. return nullptr;
  118. }
  119. return ret;
  120. }
  121. const CGHeroInstance* CGameInfoCallback::getHero(ObjectInstanceID objid) const
  122. {
  123. const CGObjectInstance *obj = getObj(objid, false);
  124. if(obj)
  125. return dynamic_cast<const CGHeroInstance*>(obj);
  126. else
  127. return nullptr;
  128. }
  129. const CGTownInstance* CGameInfoCallback::getTown(ObjectInstanceID objid) const
  130. {
  131. const CGObjectInstance *obj = getObj(objid, false);
  132. if(obj)
  133. return dynamic_cast<const CGTownInstance*>(obj);
  134. else
  135. return nullptr;
  136. }
  137. void CGameInfoCallback::getUpgradeInfo(const CArmedInstance *obj, SlotID stackPos, UpgradeInfo &out) const
  138. {
  139. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  140. ERROR_RET_IF(!canGetFullInfo(obj), "Cannot get info about not owned object!");
  141. ERROR_RET_IF(!obj->hasStackAtSlot(stackPos), "There is no such stack!");
  142. out = gs->getUpgradeInfo(obj->getStack(stackPos));
  143. //return gs->getUpgradeInfo(obj->getStack(stackPos));
  144. }
  145. const StartInfo * CGameInfoCallback::getStartInfo(bool beforeRandomization /*= false*/) const
  146. {
  147. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  148. if(beforeRandomization)
  149. return gs->initialOpts;
  150. else
  151. return gs->scenarioOps;
  152. }
  153. int CGameInfoCallback::getSpellCost(const CSpell * sp, const CGHeroInstance * caster) const
  154. {
  155. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  156. ERROR_RET_VAL_IF(!canGetFullInfo(caster), "Cannot get info about caster!", -1);
  157. //if there is a battle
  158. if(gs->curB)
  159. return gs->curB->battleGetSpellCost(sp, caster);
  160. //if there is no battle
  161. return caster->getSpellCost(sp);
  162. }
  163. int CGameInfoCallback::estimateSpellDamage(const CSpell * sp, const CGHeroInstance * hero) const
  164. {
  165. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  166. ERROR_RET_VAL_IF(hero && !canGetFullInfo(hero), "Cannot get info about caster!", -1);
  167. if (hero) //we see hero's spellbook
  168. return sp->calculateDamage(hero, nullptr, hero->getEffectLevel(sp), hero->getEffectPower(sp));
  169. else
  170. return 0; //mage guild
  171. }
  172. void CGameInfoCallback::getThievesGuildInfo(SThievesGuildInfo & thi, const CGObjectInstance * obj)
  173. {
  174. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  175. ERROR_RET_IF(!obj, "No guild object!");
  176. ERROR_RET_IF(obj->ID == Obj::TOWN && !canGetFullInfo(obj), "Cannot get info about town guild object!");
  177. //TODO: advmap object -> check if they're visited by our hero
  178. if(obj->ID == Obj::TOWN || obj->ID == Obj::TAVERN)
  179. {
  180. int taverns = 0;
  181. for(auto town : gs->players[*player].towns)
  182. {
  183. if(town->hasBuilt(BuildingID::TAVERN))
  184. taverns++;
  185. }
  186. gs->obtainPlayersStats(thi, taverns);
  187. }
  188. else if(obj->ID == Obj::DEN_OF_THIEVES)
  189. {
  190. gs->obtainPlayersStats(thi, 20);
  191. }
  192. }
  193. int CGameInfoCallback::howManyTowns(PlayerColor Player) const
  194. {
  195. ERROR_RET_VAL_IF(!hasAccess(Player), "Access forbidden!", -1);
  196. return gs->players[Player].towns.size();
  197. }
  198. bool CGameInfoCallback::getTownInfo(const CGObjectInstance * town, InfoAboutTown & dest, const CGObjectInstance * selectedObject/* = nullptr*/) const
  199. {
  200. ERROR_RET_VAL_IF(!isVisible(town, player), "Town is not visible!", false); //it's not a town or it's not visible for layer
  201. bool detailed = hasAccess(town->tempOwner);
  202. if(town->ID == Obj::TOWN)
  203. {
  204. if(!detailed && nullptr != selectedObject)
  205. {
  206. const CGHeroInstance * selectedHero = dynamic_cast<const CGHeroInstance *>(selectedObject);
  207. if(nullptr != selectedHero)
  208. detailed = selectedHero->hasVisions(town, 1);
  209. }
  210. dest.initFromTown(static_cast<const CGTownInstance *>(town), detailed);
  211. }
  212. else if(town->ID == Obj::GARRISON || town->ID == Obj::GARRISON2)
  213. dest.initFromArmy(static_cast<const CArmedInstance *>(town), detailed);
  214. else
  215. return false;
  216. return true;
  217. }
  218. int3 CGameInfoCallback::guardingCreaturePosition (int3 pos) const //FIXME: redundant?
  219. {
  220. ERROR_RET_VAL_IF(!isVisible(pos), "Tile is not visible!", int3(-1,-1,-1));
  221. return gs->guardingCreaturePosition(pos);
  222. }
  223. std::vector<const CGObjectInstance*> CGameInfoCallback::getGuardingCreatures (int3 pos) const
  224. {
  225. ERROR_RET_VAL_IF(!isVisible(pos), "Tile is not visible!", std::vector<const CGObjectInstance*>());
  226. std::vector<const CGObjectInstance*> ret;
  227. for(auto cr : gs->guardingCreatures(pos))
  228. {
  229. ret.push_back(cr);
  230. }
  231. return ret;
  232. }
  233. bool CGameInfoCallback::getHeroInfo(const CGObjectInstance * hero, InfoAboutHero & dest, const CGObjectInstance * selectedObject/* = nullptr*/) const
  234. {
  235. const CGHeroInstance *h = dynamic_cast<const CGHeroInstance *>(hero);
  236. ERROR_RET_VAL_IF(!h, "That's not a hero!", false);
  237. ERROR_RET_VAL_IF(!isVisible(h->getPosition(false)), "That hero is not visible!", false);
  238. InfoAboutHero::EInfoLevel infoLevel = InfoAboutHero::EInfoLevel::BASIC;
  239. if(hasAccess(h->tempOwner))
  240. infoLevel = InfoAboutHero::EInfoLevel::DETAILED;
  241. if ( (infoLevel == InfoAboutHero::EInfoLevel::BASIC) && gs->curB) //if it's battle we can get enemy hero full data
  242. {
  243. if(gs->curB->playerHasAccessToHeroInfo(*player, h))
  244. infoLevel = InfoAboutHero::EInfoLevel::INBATTLE;
  245. }
  246. if( (infoLevel == InfoAboutHero::EInfoLevel::BASIC) && nullptr != selectedObject)
  247. {
  248. const CGHeroInstance * selectedHero = dynamic_cast<const CGHeroInstance *>(selectedObject);
  249. if(nullptr != selectedHero)
  250. if(selectedHero->hasVisions(hero, 1))
  251. infoLevel = InfoAboutHero::EInfoLevel::DETAILED;
  252. }
  253. dest.initFromHero(h, infoLevel);
  254. //DISGUISED bonus implementation
  255. bool disguiseFlag = (infoLevel == InfoAboutHero::EInfoLevel::DETAILED);
  256. if(getPlayerRelations(getLocalPlayer(), hero->tempOwner) == PlayerRelations::ENEMIES)
  257. {
  258. //todo: bonus cashing
  259. int disguiseLevel = h->valOfBonuses(Selector::typeSubtype(Bonus::DISGUISED, 0));
  260. auto doBasicDisguise = [disguiseLevel](InfoAboutHero & info)
  261. {
  262. int maxAIValue = 0;
  263. const CCreature * mostStrong = nullptr;
  264. for(auto & elem : info.army)
  265. {
  266. if(elem.second.type->AIValue > maxAIValue)
  267. {
  268. maxAIValue = elem.second.type->AIValue;
  269. mostStrong = elem.second.type;
  270. }
  271. }
  272. if(nullptr == mostStrong)//just in case
  273. logGlobal->errorStream() << "CGameInfoCallback::getHeroInfo: Unable to select most strong stack" << disguiseLevel;
  274. else
  275. for(auto & elem : info.army)
  276. {
  277. elem.second.type = mostStrong;
  278. }
  279. };
  280. auto doAdvancedDisguise = [disguiseFlag, &doBasicDisguise](InfoAboutHero & info)
  281. {
  282. doBasicDisguise(info);
  283. for(auto & elem : info.army)
  284. elem.second.count = 0;
  285. };
  286. auto doExpertDisguise = [this,h](InfoAboutHero & info)
  287. {
  288. for(auto & elem : info.army)
  289. elem.second.count = 0;
  290. const auto factionIndex = getStartInfo(false)->playerInfos.at(h->tempOwner).castle;
  291. int maxAIValue = 0;
  292. const CCreature * mostStrong = nullptr;
  293. for(auto creature : VLC->creh->creatures)
  294. {
  295. if(creature->faction == factionIndex && creature->AIValue > maxAIValue)
  296. {
  297. maxAIValue = creature->AIValue;
  298. mostStrong = creature;
  299. }
  300. }
  301. if(nullptr != mostStrong) //possible, faction may have no creatures at all
  302. for(auto & elem : info.army)
  303. elem.second.type = mostStrong;
  304. };
  305. switch (disguiseLevel)
  306. {
  307. case 0:
  308. //no bonus at all - do nothing
  309. break;
  310. case 1:
  311. doBasicDisguise(dest);
  312. break;
  313. case 2:
  314. doAdvancedDisguise(dest);
  315. break;
  316. case 3:
  317. doExpertDisguise(dest);
  318. break;
  319. default:
  320. //invalid value
  321. logGlobal->errorStream() << "CGameInfoCallback::getHeroInfo: Invalid DISGUISED bonus value " << disguiseLevel;
  322. break;
  323. }
  324. }
  325. return true;
  326. }
  327. int CGameInfoCallback::getDate(Date::EDateType mode) const
  328. {
  329. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  330. return gs->getDate(mode);
  331. }
  332. bool CGameInfoCallback::isVisible(int3 pos, boost::optional<PlayerColor> Player) const
  333. {
  334. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  335. return gs->map->isInTheMap(pos) && (!Player || gs->isVisible(pos, *Player));
  336. }
  337. bool CGameInfoCallback::isVisible(int3 pos) const
  338. {
  339. return isVisible(pos, player);
  340. }
  341. bool CGameInfoCallback::isVisible( const CGObjectInstance *obj, boost::optional<PlayerColor> Player ) const
  342. {
  343. return gs->isVisible(obj, Player);
  344. }
  345. bool CGameInfoCallback::isVisible(const CGObjectInstance *obj) const
  346. {
  347. return isVisible(obj, player);
  348. }
  349. // const CCreatureSet* CInfoCallback::getGarrison(const CGObjectInstance *obj) const
  350. // {
  351. // //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  352. // if()
  353. // const CArmedInstance *armi = dynamic_cast<const CArmedInstance*>(obj);
  354. // if(!armi)
  355. // return nullptr;
  356. // else
  357. // return armi;
  358. // }
  359. std::vector < const CGObjectInstance * > CGameInfoCallback::getBlockingObjs( int3 pos ) const
  360. {
  361. std::vector<const CGObjectInstance *> ret;
  362. const TerrainTile *t = getTile(pos);
  363. ERROR_RET_VAL_IF(!t, "Not a valid tile requested!", ret);
  364. for(const CGObjectInstance * obj : t->blockingObjects)
  365. ret.push_back(obj);
  366. return ret;
  367. }
  368. std::vector <const CGObjectInstance * > CGameInfoCallback::getVisitableObjs(int3 pos, bool verbose /*= true*/) const
  369. {
  370. std::vector<const CGObjectInstance *> ret;
  371. const TerrainTile *t = getTile(pos, verbose);
  372. ERROR_VERBOSE_OR_NOT_RET_VAL_IF(!t, verbose, pos << " is not visible!", ret);
  373. for(const CGObjectInstance * obj : t->visitableObjects)
  374. {
  375. if(player || obj->ID != Obj::EVENT) //hide events from players
  376. ret.push_back(obj);
  377. }
  378. return ret;
  379. }
  380. const CGObjectInstance * CGameInfoCallback::getTopObj (int3 pos) const
  381. {
  382. return vstd::backOrNull(getVisitableObjs(pos));
  383. }
  384. std::vector < const CGObjectInstance * > CGameInfoCallback::getFlaggableObjects(int3 pos) const
  385. {
  386. std::vector<const CGObjectInstance *> ret;
  387. const TerrainTile *t = getTile(pos);
  388. ERROR_RET_VAL_IF(!t, "Not a valid tile requested!", ret);
  389. for(const CGObjectInstance *obj : t->blockingObjects)
  390. if(obj->tempOwner != PlayerColor::UNFLAGGABLE)
  391. ret.push_back(obj);
  392. // const std::vector < std::pair<const CGObjectInstance*,SDL_Rect> > & objs = CGI->mh->ttiles[pos.x][pos.y][pos.z].objects;
  393. // for(size_t b=0; b<objs.size(); ++b)
  394. // {
  395. // 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))
  396. // ret.push_back(CGI->mh->ttiles[pos.x][pos.y][pos.z].objects[b].first);
  397. // }
  398. return ret;
  399. }
  400. int3 CGameInfoCallback::getMapSize() const
  401. {
  402. return int3(gs->map->width, gs->map->height, gs->map->twoLevel ? 2 : 1);
  403. }
  404. std::vector<const CGHeroInstance *> CGameInfoCallback::getAvailableHeroes(const CGObjectInstance * townOrTavern) const
  405. {
  406. ASSERT_IF_CALLED_WITH_PLAYER
  407. std::vector<const CGHeroInstance *> ret;
  408. //ERROR_RET_VAL_IF(!isOwnedOrVisited(townOrTavern), "Town or tavern must be owned or visited!", ret);
  409. //TODO: town needs to be owned, advmap tavern needs to be visited; to be reimplemented when visit tracking is done
  410. range::copy(gs->players[*player].availableHeroes, std::back_inserter(ret));
  411. vstd::erase_if(ret, [](const CGHeroInstance *h) { return h == nullptr; });
  412. return ret;
  413. }
  414. const TerrainTile * CGameInfoCallback::getTile( int3 tile, bool verbose) const
  415. {
  416. ERROR_VERBOSE_OR_NOT_RET_VAL_IF(!isVisible(tile), verbose, tile << " is not visible!", nullptr);
  417. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  418. return &gs->map->getTile(tile);
  419. }
  420. //TODO: typedef?
  421. std::shared_ptr<boost::multi_array<TerrainTile*, 3>> CGameInfoCallback::getAllVisibleTiles() const
  422. {
  423. assert(player.is_initialized());
  424. auto team = getPlayerTeam(player.get());
  425. size_t width = gs->map->width;
  426. size_t height = gs->map->height;
  427. size_t levels = (gs->map->twoLevel ? 2 : 1);
  428. boost::multi_array<TerrainTile*, 3> tileArray(boost::extents[width][height][levels]);
  429. for (size_t x = 0; x < width; x++)
  430. for (size_t y = 0; y < height; y++)
  431. for (size_t z = 0; z < levels; z++)
  432. {
  433. if (team->fogOfWarMap[x][y][z])
  434. tileArray[x][y][z] = &gs->map->getTile(int3(x, y, z));
  435. else
  436. tileArray[x][y][z] = nullptr;
  437. }
  438. return std::make_shared<boost::multi_array<TerrainTile*, 3>>(tileArray);
  439. }
  440. EBuildingState::EBuildingState CGameInfoCallback::canBuildStructure( const CGTownInstance *t, BuildingID ID )
  441. {
  442. ERROR_RET_VAL_IF(!canGetFullInfo(t), "Town is not owned!", EBuildingState::TOWN_NOT_OWNED);
  443. if(!t->town->buildings.count(ID))
  444. return EBuildingState::BUILDING_ERROR;
  445. const CBuilding * building = t->town->buildings.at(ID);
  446. if(t->hasBuilt(ID)) //already built
  447. return EBuildingState::ALREADY_PRESENT;
  448. //can we build it?
  449. if(vstd::contains(t->forbiddenBuildings, ID))
  450. return EBuildingState::FORBIDDEN; //forbidden
  451. auto possiblyNotBuiltTest = [&](BuildingID id) -> bool
  452. {
  453. return ((id == BuildingID::CAPITOL) ? true : !t->hasBuilt(id));
  454. };
  455. std::function<bool(BuildingID id)> allowedTest = [&](BuildingID id) -> bool
  456. {
  457. if (vstd::contains(t->forbiddenBuildings, id))
  458. {
  459. return false;
  460. }
  461. return t->genBuildingRequirements(id, true).satisfiable(allowedTest, possiblyNotBuiltTest);
  462. };
  463. if (!t->genBuildingRequirements(ID, true).satisfiable(allowedTest, possiblyNotBuiltTest))
  464. return EBuildingState::FORBIDDEN;
  465. if(ID == BuildingID::CAPITOL)
  466. {
  467. const PlayerState *ps = getPlayer(t->tempOwner, false);
  468. if(ps)
  469. {
  470. for(const CGTownInstance *t : ps->towns)
  471. {
  472. if(t->hasBuilt(BuildingID::CAPITOL))
  473. {
  474. return EBuildingState::HAVE_CAPITAL; //no more than one capitol
  475. }
  476. }
  477. }
  478. }
  479. else if(ID == BuildingID::SHIPYARD)
  480. {
  481. const TerrainTile *tile = getTile(t->bestLocation(), false);
  482. if(!tile || tile->terType != ETerrainType::WATER)
  483. return EBuildingState::NO_WATER; //lack of water
  484. }
  485. auto buildTest = [&](BuildingID id) -> bool
  486. {
  487. return t->hasBuilt(id);
  488. };
  489. if (!t->genBuildingRequirements(ID).test(buildTest))
  490. return EBuildingState::PREREQUIRES;
  491. if(t->builded >= VLC->modh->settings.MAX_BUILDING_PER_TURN)
  492. return EBuildingState::CANT_BUILD_TODAY; //building limit
  493. //checking resources
  494. if(!building->resources.canBeAfforded(getPlayer(t->tempOwner)->resources))
  495. return EBuildingState::NO_RESOURCES; //lack of res
  496. return EBuildingState::ALLOWED;
  497. }
  498. const CMapHeader * CGameInfoCallback::getMapHeader() const
  499. {
  500. return gs->map;
  501. }
  502. bool CGameInfoCallback::hasAccess(boost::optional<PlayerColor> playerId) const
  503. {
  504. return !player || gs->getPlayerRelations( *playerId, *player ) != PlayerRelations::ENEMIES;
  505. }
  506. EPlayerStatus::EStatus CGameInfoCallback::getPlayerStatus(PlayerColor player, bool verbose) const
  507. {
  508. const PlayerState *ps = gs->getPlayer(player, verbose);
  509. ERROR_VERBOSE_OR_NOT_RET_VAL_IF(!ps, verbose, "No such player!", EPlayerStatus::WRONG);
  510. return ps->status;
  511. }
  512. std::string CGameInfoCallback::getTavernRumor(const CGObjectInstance * townOrTavern) const
  513. {
  514. std::string text = "", extraText = "";
  515. if(gs->rumor.type == RumorState::TYPE_NONE)
  516. return text;
  517. auto rumor = gs->rumor.last[gs->rumor.type];
  518. switch(gs->rumor.type)
  519. {
  520. case RumorState::TYPE_SPECIAL:
  521. if(rumor.first == RumorState::RUMOR_GRAIL)
  522. extraText = VLC->generaltexth->arraytxt[158 + rumor.second];
  523. else
  524. extraText = VLC->generaltexth->capColors[rumor.second];
  525. text = boost::str(boost::format(VLC->generaltexth->allTexts[rumor.first]) % extraText);
  526. break;
  527. case RumorState::TYPE_MAP:
  528. text = gs->map->rumors[rumor.first].text;
  529. break;
  530. case RumorState::TYPE_RAND:
  531. text = VLC->generaltexth->tavernRumors[rumor.first];
  532. break;
  533. }
  534. return text;
  535. }
  536. PlayerRelations::PlayerRelations CGameInfoCallback::getPlayerRelations( PlayerColor color1, PlayerColor color2 ) const
  537. {
  538. return gs->getPlayerRelations(color1, color2);
  539. }
  540. bool CGameInfoCallback::canGetFullInfo(const CGObjectInstance *obj) const
  541. {
  542. return !obj || hasAccess(obj->tempOwner);
  543. }
  544. int CGameInfoCallback::getHeroCount( PlayerColor player, bool includeGarrisoned ) const
  545. {
  546. int ret = 0;
  547. const PlayerState *p = gs->getPlayer(player);
  548. ERROR_RET_VAL_IF(!p, "No such player!", -1);
  549. if(includeGarrisoned)
  550. return p->heroes.size();
  551. else
  552. for(auto & elem : p->heroes)
  553. if(!elem->inTownGarrison)
  554. ret++;
  555. return ret;
  556. }
  557. bool CGameInfoCallback::isOwnedOrVisited(const CGObjectInstance *obj) const
  558. {
  559. if(canGetFullInfo(obj))
  560. return true;
  561. const TerrainTile *t = getTile(obj->visitablePos()); //get entrance tile
  562. const CGObjectInstance *visitor = t->visitableObjects.back(); //visitong hero if present or the obejct itself at last
  563. return visitor->ID == Obj::HERO && canGetFullInfo(visitor); //owned or allied hero is a visitor
  564. }
  565. PlayerColor CGameInfoCallback::getCurrentPlayer() const
  566. {
  567. return gs->currentPlayer;
  568. }
  569. CGameInfoCallback::CGameInfoCallback()
  570. {
  571. }
  572. CGameInfoCallback::CGameInfoCallback(CGameState *GS, boost::optional<PlayerColor> Player)
  573. {
  574. gs = GS;
  575. player = Player;
  576. }
  577. const std::vector< std::vector< std::vector<ui8> > > & CPlayerSpecificInfoCallback::getVisibilityMap() const
  578. {
  579. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  580. return gs->getPlayerTeam(*player)->fogOfWarMap;
  581. }
  582. int CPlayerSpecificInfoCallback::howManyTowns() const
  583. {
  584. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  585. ERROR_RET_VAL_IF(!player, "Applicable only for player callbacks", -1);
  586. return CGameInfoCallback::howManyTowns(*player);
  587. }
  588. std::vector < const CGTownInstance *> CPlayerSpecificInfoCallback::getTownsInfo(bool onlyOur) const
  589. {
  590. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  591. std::vector < const CGTownInstance *> ret = std::vector < const CGTownInstance *>();
  592. for(const auto & i : gs->players)
  593. {
  594. for(const auto & town : i.second.towns)
  595. {
  596. if (i.first==player || (isVisible(town, player) && !onlyOur))
  597. {
  598. ret.push_back(town);
  599. }
  600. }
  601. } // for ( std::map<int, PlayerState>::iterator i=gs->players.begin() ; i!=gs->players.end();i++)
  602. return ret;
  603. }
  604. std::vector < const CGHeroInstance *> CPlayerSpecificInfoCallback::getHeroesInfo(bool onlyOur) const
  605. {
  606. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  607. std::vector < const CGHeroInstance *> ret;
  608. for(auto hero : gs->map->heroesOnMap)
  609. {
  610. // !player || // - why would we even get access to hero not owned by any player?
  611. if((hero->tempOwner == *player) ||
  612. (isVisible(hero->getPosition(false), player) && !onlyOur) )
  613. {
  614. ret.push_back(hero);
  615. }
  616. }
  617. return ret;
  618. }
  619. boost::optional<PlayerColor> CPlayerSpecificInfoCallback::getMyColor() const
  620. {
  621. return player;
  622. }
  623. int CPlayerSpecificInfoCallback::getHeroSerial(const CGHeroInstance * hero, bool includeGarrisoned) const
  624. {
  625. if (hero->inTownGarrison && !includeGarrisoned)
  626. return -1;
  627. size_t index = 0;
  628. auto & heroes = gs->players[*player].heroes;
  629. for (auto & heroe : heroes)
  630. {
  631. if (includeGarrisoned || !(heroe)->inTownGarrison)
  632. index++;
  633. if (heroe == hero)
  634. return index;
  635. }
  636. return -1;
  637. }
  638. int3 CPlayerSpecificInfoCallback::getGrailPos( double *outKnownRatio )
  639. {
  640. if (!player || CGObelisk::obeliskCount == 0)
  641. {
  642. *outKnownRatio = 0.0;
  643. }
  644. else
  645. {
  646. TeamID t = gs->getPlayerTeam(*player)->id;
  647. double visited = 0.0;
  648. if(CGObelisk::visited.count(t))
  649. visited = static_cast<double>(CGObelisk::visited[t]);
  650. *outKnownRatio = visited / CGObelisk::obeliskCount;
  651. }
  652. return gs->map->grailPos;
  653. }
  654. std::vector < const CGObjectInstance * > CPlayerSpecificInfoCallback::getMyObjects() const
  655. {
  656. std::vector < const CGObjectInstance * > ret;
  657. for(const CGObjectInstance * obj : gs->map->objects)
  658. {
  659. if(obj && obj->tempOwner == player)
  660. ret.push_back(obj);
  661. }
  662. return ret;
  663. }
  664. std::vector < const CGDwelling * > CPlayerSpecificInfoCallback::getMyDwellings() const
  665. {
  666. ASSERT_IF_CALLED_WITH_PLAYER
  667. std::vector < const CGDwelling * > ret;
  668. for(CGDwelling * dw : gs->getPlayer(*player)->dwellings)
  669. {
  670. ret.push_back(dw);
  671. }
  672. return ret;
  673. }
  674. std::vector <QuestInfo> CPlayerSpecificInfoCallback::getMyQuests() const
  675. {
  676. std::vector <QuestInfo> ret;
  677. for (auto quest : gs->getPlayer(*player)->quests)
  678. {
  679. ret.push_back (quest);
  680. }
  681. return ret;
  682. }
  683. int CPlayerSpecificInfoCallback::howManyHeroes(bool includeGarrisoned) const
  684. {
  685. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  686. ERROR_RET_VAL_IF(!player, "Applicable only for player callbacks", -1);
  687. return getHeroCount(*player,includeGarrisoned);
  688. }
  689. const CGHeroInstance* CPlayerSpecificInfoCallback::getHeroBySerial(int serialId, bool includeGarrisoned) const
  690. {
  691. ASSERT_IF_CALLED_WITH_PLAYER
  692. const PlayerState *p = getPlayer(*player);
  693. ERROR_RET_VAL_IF(!p, "No player info", nullptr);
  694. if (!includeGarrisoned)
  695. {
  696. for(ui32 i = 0; i < p->heroes.size() && i<=serialId; i++)
  697. if(p->heroes[i]->inTownGarrison)
  698. serialId++;
  699. }
  700. ERROR_RET_VAL_IF(serialId < 0 || serialId >= p->heroes.size(), "No player info", nullptr);
  701. return p->heroes[serialId];
  702. }
  703. const CGTownInstance* CPlayerSpecificInfoCallback::getTownBySerial(int serialId) const
  704. {
  705. ASSERT_IF_CALLED_WITH_PLAYER
  706. const PlayerState *p = getPlayer(*player);
  707. ERROR_RET_VAL_IF(!p, "No player info", nullptr);
  708. ERROR_RET_VAL_IF(serialId < 0 || serialId >= p->towns.size(), "No player info", nullptr);
  709. return p->towns[serialId];
  710. }
  711. int CPlayerSpecificInfoCallback::getResourceAmount(Res::ERes type) const
  712. {
  713. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  714. ERROR_RET_VAL_IF(!player, "Applicable only for player callbacks", -1);
  715. return getResource(*player, type);
  716. }
  717. TResources CPlayerSpecificInfoCallback::getResourceAmount() const
  718. {
  719. //boost::shared_lock<boost::shared_mutex> lock(*gs->mx);
  720. ERROR_RET_VAL_IF(!player, "Applicable only for player callbacks", TResources());
  721. return gs->players[*player].resources;
  722. }
  723. const TeamState * CGameInfoCallback::getTeam( TeamID teamID ) const
  724. {
  725. //rewritten by hand, AI calls this function a lot
  726. auto team = gs->teams.find(teamID);
  727. if (team != gs->teams.end())
  728. {
  729. const TeamState *ret = &team->second;
  730. if (!player.is_initialized()) //neutral (or invalid) player
  731. return ret;
  732. else
  733. {
  734. if (vstd::contains(ret->players, *player)) //specific player
  735. return ret;
  736. else
  737. {
  738. logGlobal->error("Illegal attempt to access team data!");
  739. return nullptr;
  740. }
  741. }
  742. }
  743. else
  744. {
  745. logGlobal->error("Cannot find info for team %d", teamID);
  746. return nullptr;
  747. }
  748. }
  749. const TeamState * CGameInfoCallback::getPlayerTeam( PlayerColor color ) const
  750. {
  751. auto player = gs->players.find(color);
  752. if (player != gs->players.end())
  753. {
  754. return getTeam (player->second.team);
  755. }
  756. else
  757. {
  758. return nullptr;
  759. }
  760. }
  761. const CGHeroInstance* CGameInfoCallback::getHeroWithSubid( int subid ) const
  762. {
  763. for(const CGHeroInstance *h : gs->map->heroesOnMap)
  764. if(h->subID == subid)
  765. return h;
  766. return nullptr;
  767. }
  768. PlayerColor CGameInfoCallback::getLocalPlayer() const
  769. {
  770. return getCurrentPlayer();
  771. }
  772. bool CGameInfoCallback::isInTheMap(const int3 &pos) const
  773. {
  774. return gs->map->isInTheMap(pos);
  775. }
  776. const CArtifactInstance * CGameInfoCallback::getArtInstance( ArtifactInstanceID aid ) const
  777. {
  778. return gs->map->artInstances[aid.num];
  779. }
  780. const CGObjectInstance * CGameInfoCallback::getObjInstance( ObjectInstanceID oid ) const
  781. {
  782. return gs->map->objects[oid.num];
  783. }
  784. std::vector<ObjectInstanceID> CGameInfoCallback::getVisibleTeleportObjects(std::vector<ObjectInstanceID> ids, PlayerColor player) const
  785. {
  786. vstd::erase_if(ids, [&](ObjectInstanceID id) -> bool
  787. {
  788. auto obj = getObj(id, false);
  789. return player != PlayerColor::UNFLAGGABLE && (!obj || !isVisible(obj->pos, player));
  790. });
  791. return ids;
  792. }
  793. std::vector<ObjectInstanceID> CGameInfoCallback::getTeleportChannelEntraces(TeleportChannelID id, PlayerColor player) const
  794. {
  795. return getVisibleTeleportObjects(gs->map->teleportChannels[id]->entrances, player);
  796. }
  797. std::vector<ObjectInstanceID> CGameInfoCallback::getTeleportChannelExits(TeleportChannelID id, PlayerColor player) const
  798. {
  799. return getVisibleTeleportObjects(gs->map->teleportChannels[id]->exits, player);
  800. }
  801. ETeleportChannelType CGameInfoCallback::getTeleportChannelType(TeleportChannelID id, PlayerColor player) const
  802. {
  803. std::vector<ObjectInstanceID> entrances = getTeleportChannelEntraces(id, player);
  804. std::vector<ObjectInstanceID> exits = getTeleportChannelExits(id, player);
  805. if((!entrances.size() || !exits.size()) // impassable if exits or entrances list are empty
  806. || (entrances.size() == 1 && entrances == exits)) // impassable if only entrance and only exit is same object. e.g bidirectional monolith
  807. {
  808. return ETeleportChannelType::IMPASSABLE;
  809. }
  810. auto intersection = vstd::intersection(entrances, exits);
  811. if(intersection.size() == entrances.size() && intersection.size() == exits.size())
  812. return ETeleportChannelType::BIDIRECTIONAL;
  813. else if(!intersection.size())
  814. return ETeleportChannelType::UNIDIRECTIONAL;
  815. else
  816. return ETeleportChannelType::MIXED;
  817. }
  818. bool CGameInfoCallback::isTeleportChannelImpassable(TeleportChannelID id, PlayerColor player) const
  819. {
  820. return ETeleportChannelType::IMPASSABLE == getTeleportChannelType(id, player);
  821. }
  822. bool CGameInfoCallback::isTeleportChannelBidirectional(TeleportChannelID id, PlayerColor player) const
  823. {
  824. return ETeleportChannelType::BIDIRECTIONAL == getTeleportChannelType(id, player);
  825. }
  826. bool CGameInfoCallback::isTeleportChannelUnidirectional(TeleportChannelID id, PlayerColor player) const
  827. {
  828. return ETeleportChannelType::UNIDIRECTIONAL == getTeleportChannelType(id, player);
  829. }
  830. bool CGameInfoCallback::isTeleportEntrancePassable(const CGTeleport * obj, PlayerColor player) const
  831. {
  832. return obj && obj->isEntrance() && !isTeleportChannelImpassable(obj->channel, player);
  833. }
  834. void IGameEventRealizer::showInfoDialog( InfoWindow *iw )
  835. {
  836. commitPackage(iw);
  837. }
  838. void IGameEventRealizer::showInfoDialog(const std::string &msg, PlayerColor player)
  839. {
  840. InfoWindow iw;
  841. iw.player = player;
  842. iw.text << msg;
  843. showInfoDialog(&iw);
  844. }
  845. void IGameEventRealizer::setObjProperty(ObjectInstanceID objid, int prop, si64 val)
  846. {
  847. SetObjectProperty sob;
  848. sob.id = objid;
  849. sob.what = prop;
  850. sob.val = static_cast<ui32>(val);
  851. commitPackage(&sob);
  852. }