123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442 |
- /*
- * CBattleInfoEssentials.cpp, part of VCMI engine
- *
- * Authors: listed in file AUTHORS in main folder
- *
- * License: GNU General Public License v2.0 or later
- * Full text of license available in license.txt file, in main folder
- *
- */
- #include "StdInc.h"
- #include "CBattleInfoEssentials.h"
- #include "../CStack.h"
- #include "BattleInfo.h"
- #include "CObstacleInstance.h"
- #include "../constants/EntityIdentifiers.h"
- #include "../entities/building/TownFortifications.h"
- #include "../gameState/InfoAboutArmy.h"
- #include "../mapObjects/CGTownInstance.h"
- VCMI_LIB_NAMESPACE_BEGIN
- bool CBattleInfoEssentials::duringBattle() const
- {
- return getBattle() != nullptr;
- }
- TerrainId CBattleInfoEssentials::battleTerrainType() const
- {
- RETURN_IF_NOT_BATTLE(TerrainId());
- return getBattle()->getTerrainType();
- }
- BattleField CBattleInfoEssentials::battleGetBattlefieldType() const
- {
- RETURN_IF_NOT_BATTLE(BattleField::NONE);
- return getBattle()->getBattlefieldType();
- }
- int32_t CBattleInfoEssentials::battleGetEnchanterCounter(BattleSide side) const
- {
- RETURN_IF_NOT_BATTLE(0);
- return getBattle()->getEnchanterCounter(side);
- }
- std::vector<std::shared_ptr<const CObstacleInstance>> CBattleInfoEssentials::battleGetAllObstacles(std::optional<BattleSide> perspective) const
- {
- std::vector<std::shared_ptr<const CObstacleInstance> > ret;
- RETURN_IF_NOT_BATTLE(ret);
- if(!perspective)
- {
- //if no particular perspective request, use default one
- perspective = std::make_optional(battleGetMySide());
- }
- else
- {
- if(!!getPlayerID() && *perspective != battleGetMySide())
- logGlobal->warn("Unauthorized obstacles access attempt, assuming massive spell");
- }
- for(const auto & obstacle : getBattle()->getAllObstacles())
- {
- if(battleIsObstacleVisibleForSide(*(obstacle), *perspective))
- ret.push_back(obstacle);
- }
- return ret;
- }
- std::shared_ptr<const CObstacleInstance> CBattleInfoEssentials::battleGetObstacleByID(uint32_t ID) const
- {
- std::shared_ptr<const CObstacleInstance> ret;
- RETURN_IF_NOT_BATTLE(std::shared_ptr<const CObstacleInstance>());
- for(auto obstacle : getBattle()->getAllObstacles())
- {
- if(obstacle->uniqueID == ID)
- return obstacle;
- }
- logGlobal->error("Invalid obstacle ID %d", ID);
- return std::shared_ptr<const CObstacleInstance>();
- }
- bool CBattleInfoEssentials::battleIsObstacleVisibleForSide(const CObstacleInstance & coi, BattleSide side) const
- {
- RETURN_IF_NOT_BATTLE(false);
- return side == BattleSide::ALL_KNOWING || coi.visibleForSide(side, battleHasNativeStack(side));
- }
- bool CBattleInfoEssentials::battleHasNativeStack(BattleSide side) const
- {
- RETURN_IF_NOT_BATTLE(false);
- for(const auto * s : battleGetAllStacks())
- {
- if(s->unitSide() == side && s->isNativeTerrain(getBattle()->getTerrainType()))
- return true;
- }
- return false;
- }
- TStacks CBattleInfoEssentials::battleGetAllStacks(bool includeTurrets) const
- {
- return battleGetStacksIf([=](const CStack * s)
- {
- return !s->isGhost() && (includeTurrets || !s->isTurret());
- });
- }
- TStacks CBattleInfoEssentials::battleGetStacksIf(const TStackFilter & predicate) const
- {
- RETURN_IF_NOT_BATTLE(TStacks());
- return getBattle()->getStacksIf(std::move(predicate));
- }
- battle::Units CBattleInfoEssentials::battleGetUnitsIf(const battle::UnitFilter & predicate) const
- {
- RETURN_IF_NOT_BATTLE(battle::Units());
- return getBattle()->getUnitsIf(predicate);
- }
- const battle::Unit * CBattleInfoEssentials::battleGetUnitByID(uint32_t ID) const
- {
- RETURN_IF_NOT_BATTLE(nullptr);
- //TODO: consider using map ID -> Unit
- auto ret = battleGetUnitsIf([=](const battle::Unit * unit)
- {
- return unit->unitId() == ID;
- });
- if(ret.empty())
- return nullptr;
- else
- return ret[0];
- }
- const battle::Unit * CBattleInfoEssentials::battleActiveUnit() const
- {
- RETURN_IF_NOT_BATTLE(nullptr);
- auto id = getBattle()->getActiveStackID();
- if(id >= 0)
- return battleGetUnitByID(static_cast<uint32_t>(id));
- else
- return nullptr;
- }
- uint32_t CBattleInfoEssentials::battleNextUnitId() const
- {
- return getBattle()->nextUnitId();
- }
- const CGTownInstance * CBattleInfoEssentials::battleGetDefendedTown() const
- {
- RETURN_IF_NOT_BATTLE(nullptr);
- return getBattle()->getDefendedTown();
- }
- BattleSide CBattleInfoEssentials::battleGetMySide() const
- {
- RETURN_IF_NOT_BATTLE(BattleSide::INVALID);
- if(!getPlayerID() || getPlayerID()->isSpectator())
- return BattleSide::ALL_KNOWING;
- if(*getPlayerID() == getBattle()->getSidePlayer(BattleSide::ATTACKER))
- return BattleSide::LEFT_SIDE;
- if(*getPlayerID() == getBattle()->getSidePlayer(BattleSide::DEFENDER))
- return BattleSide::RIGHT_SIDE;
- logGlobal->error("Cannot find player %s in battle!", getPlayerID()->toString());
- return BattleSide::INVALID;
- }
- const CStack* CBattleInfoEssentials::battleGetStackByID(int ID, bool onlyAlive) const
- {
- RETURN_IF_NOT_BATTLE(nullptr);
- auto stacks = battleGetStacksIf([=](const CStack * s)
- {
- return s->unitId() == ID && (!onlyAlive || s->alive());
- });
- if(stacks.empty())
- return nullptr;
- else
- return stacks[0];
- }
- bool CBattleInfoEssentials::battleDoWeKnowAbout(BattleSide side) const
- {
- RETURN_IF_NOT_BATTLE(false);
- auto p = battleGetMySide();
- return p == BattleSide::ALL_KNOWING || p == side;
- }
- si8 CBattleInfoEssentials::battleTacticDist() const
- {
- RETURN_IF_NOT_BATTLE(0);
- return getBattle()->getTacticDist();
- }
- BattleSide CBattleInfoEssentials::battleGetTacticsSide() const
- {
- RETURN_IF_NOT_BATTLE(BattleSide::NONE);
- return getBattle()->getTacticsSide();
- }
- const CGHeroInstance * CBattleInfoEssentials::battleGetFightingHero(BattleSide side) const
- {
- RETURN_IF_NOT_BATTLE(nullptr);
- if(side != BattleSide::DEFENDER && side != BattleSide::ATTACKER)
- {
- logGlobal->error("FIXME: %s wrong argument!", __FUNCTION__);
- return nullptr;
- }
- if(!battleDoWeKnowAbout(side))
- {
- logGlobal->error("FIXME: %s access check ", __FUNCTION__);
- return nullptr;
- }
- return getBattle()->getSideHero(side);
- }
- const CArmedInstance * CBattleInfoEssentials::battleGetArmyObject(BattleSide side) const
- {
- RETURN_IF_NOT_BATTLE(nullptr);
- if(side != BattleSide::DEFENDER && side != BattleSide::ATTACKER)
- {
- logGlobal->error("FIXME: %s wrong argument!", __FUNCTION__);
- return nullptr;
- }
- if(!battleDoWeKnowAbout(side))
- {
- logGlobal->error("FIXME: %s access check!", __FUNCTION__);
- return nullptr;
- }
- return getBattle()->getSideArmy(side);
- }
- InfoAboutHero CBattleInfoEssentials::battleGetHeroInfo(BattleSide side) const
- {
- const auto * hero = getBattle()->getSideHero(side);
- if(!hero)
- {
- return InfoAboutHero();
- }
- InfoAboutHero::EInfoLevel infoLevel = battleDoWeKnowAbout(side) ? InfoAboutHero::EInfoLevel::DETAILED : InfoAboutHero::EInfoLevel::BASIC;
- return InfoAboutHero(hero, infoLevel);
- }
- int32_t CBattleInfoEssentials::battleCastSpells(BattleSide side) const
- {
- RETURN_IF_NOT_BATTLE(-1);
- return getBattle()->getCastSpells(side);
- }
- const IBonusBearer * CBattleInfoEssentials::getBonusBearer() const
- {
- return getBattle()->getBonusBearer();
- }
- bool CBattleInfoEssentials::battleCanFlee(const PlayerColor & player) const
- {
- RETURN_IF_NOT_BATTLE(false);
- const BattleSide side = playerToSide(player);
- if(side == BattleSide::NONE)
- return false;
- const CGHeroInstance * myHero = battleGetFightingHero(side);
- //current player have no hero
- if(!myHero)
- return false;
- //eg. one of heroes is wearing shakles of war
- if(myHero->hasBonusOfType(BonusType::BATTLE_NO_FLEEING) && battleHasHero(otherSide(side)))
- return false;
- //we are besieged defender
- if(side == BattleSide::DEFENDER && getBattle()->getDefendedTown() != nullptr)
- {
- const auto * town = battleGetDefendedTown();
- if(!town->hasBuilt(BuildingSubID::ESCAPE_TUNNEL))
- return false;
- }
- return true;
- }
- BattleSide CBattleInfoEssentials::playerToSide(const PlayerColor & player) const
- {
- RETURN_IF_NOT_BATTLE(BattleSide::NONE);
- if(getBattle()->getSidePlayer(BattleSide::ATTACKER) == player)
- return BattleSide::ATTACKER;
- if(getBattle()->getSidePlayer(BattleSide::DEFENDER) == player)
- return BattleSide::DEFENDER;
- logGlobal->warn("Cannot find side for player %s", player.toString());
- return BattleSide::INVALID;
- }
- PlayerColor CBattleInfoEssentials::sideToPlayer(BattleSide side) const
- {
- RETURN_IF_NOT_BATTLE(PlayerColor::CANNOT_DETERMINE);
- return getBattle()->getSidePlayer(side);
- }
- BattleSide CBattleInfoEssentials::otherSide(BattleSide side)
- {
- if(side == BattleSide::ATTACKER)
- return BattleSide::DEFENDER;
- else
- return BattleSide::ATTACKER;
- }
- PlayerColor CBattleInfoEssentials::otherPlayer(const PlayerColor & player) const
- {
- RETURN_IF_NOT_BATTLE(PlayerColor::CANNOT_DETERMINE);
- auto side = playerToSide(player);
- if(side == BattleSide::NONE)
- return PlayerColor::CANNOT_DETERMINE;
- return getBattle()->getSidePlayer(otherSide(side));
- }
- bool CBattleInfoEssentials::playerHasAccessToHeroInfo(const PlayerColor & player, const CGHeroInstance * h) const
- {
- RETURN_IF_NOT_BATTLE(false);
- const auto side = playerToSide(player);
- if(side != BattleSide::NONE)
- {
- auto opponentSide = otherSide(side);
- if(getBattle()->getSideHero(opponentSide) == h)
- return true;
- }
- return false;
- }
- TownFortifications CBattleInfoEssentials::battleGetFortifications() const
- {
- RETURN_IF_NOT_BATTLE(TownFortifications());
- return getBattle()->getDefendedTown() ? getBattle()->getDefendedTown()->fortificationsLevel() : TownFortifications();
- }
- bool CBattleInfoEssentials::battleCanSurrender(const PlayerColor & player) const
- {
- RETURN_IF_NOT_BATTLE(false);
- const auto side = playerToSide(player);
- if(side == BattleSide::NONE)
- return false;
- bool iAmSiegeDefender = (side == BattleSide::DEFENDER && getBattle()->getDefendedTown() != nullptr);
- //conditions like for fleeing (except escape tunnel presence) + enemy must have a hero
- return battleCanFlee(player) && !iAmSiegeDefender && battleHasHero(otherSide(side));
- }
- bool CBattleInfoEssentials::battleHasHero(BattleSide side) const
- {
- RETURN_IF_NOT_BATTLE(false);
- return getBattle()->getSideHero(side) != nullptr;
- }
- EWallState CBattleInfoEssentials::battleGetWallState(EWallPart partOfWall) const
- {
- RETURN_IF_NOT_BATTLE(EWallState::NONE);
- if(battleGetFortifications().wallsHealth == 0)
- return EWallState::NONE;
- return getBattle()->getWallState(partOfWall);
- }
- EGateState CBattleInfoEssentials::battleGetGateState() const
- {
- RETURN_IF_NOT_BATTLE(EGateState::NONE);
- if(battleGetFortifications().wallsHealth == 0)
- return EGateState::NONE;
- return getBattle()->getGateState();
- }
- bool CBattleInfoEssentials::battleIsGatePassable() const
- {
- RETURN_IF_NOT_BATTLE(true);
- if(battleGetFortifications().wallsHealth == 0)
- return true;
- return battleGetGateState() == EGateState::OPENED || battleGetGateState() == EGateState::DESTROYED;
- }
- PlayerColor CBattleInfoEssentials::battleGetOwner(const battle::Unit * unit) const
- {
- RETURN_IF_NOT_BATTLE(PlayerColor::CANNOT_DETERMINE);
- PlayerColor initialOwner = getBattle()->getSidePlayer(unit->unitSide());
- if(unit->isHypnotized())
- return otherPlayer(initialOwner);
- else
- return initialOwner;
- }
- const CGHeroInstance * CBattleInfoEssentials::battleGetOwnerHero(const battle::Unit * unit) const
- {
- RETURN_IF_NOT_BATTLE(nullptr);
- const auto side = playerToSide(battleGetOwner(unit));
- if(side == BattleSide::NONE)
- return nullptr;
- return getBattle()->getSideHero(side);
- }
- bool CBattleInfoEssentials::battleMatchOwner(const battle::Unit * attacker, const battle::Unit * defender, const boost::logic::tribool positivness) const
- {
- RETURN_IF_NOT_BATTLE(false);
- if(boost::logic::indeterminate(positivness))
- return true;
- else if(attacker->unitId() == defender->unitId())
- return (bool)positivness;
- else
- return battleMatchOwner(battleGetOwner(attacker), defender, positivness);
- }
- bool CBattleInfoEssentials::battleMatchOwner(const PlayerColor & attacker, const battle::Unit * defender, const boost::logic::tribool positivness) const
- {
- RETURN_IF_NOT_BATTLE(false);
- PlayerColor initialOwner = getBattle()->getSidePlayer(defender->unitSide());
- return boost::logic::indeterminate(positivness) || (attacker == initialOwner) == (bool)positivness;
- }
- VCMI_LIB_NAMESPACE_END
|