mirror of
https://github.com/vcmi/vcmi.git
synced 2025-08-13 19:54:17 +02:00
Merge pull request #971 from kambala-decapitator/fix-warnings
Fix most project warnings
This commit is contained in:
@@ -204,7 +204,6 @@ std::shared_ptr<CCreatureSet> ArmyManager::getArmyAvailableToBuyAsCCreatureSet(
|
|||||||
TResources availableRes) const
|
TResources availableRes) const
|
||||||
{
|
{
|
||||||
std::vector<creInfo> creaturesInDwellings;
|
std::vector<creInfo> creaturesInDwellings;
|
||||||
int freeHeroSlots = GameConstants::ARMY_SIZE;
|
|
||||||
auto army = std::make_shared<TemporaryArmy>();
|
auto army = std::make_shared<TemporaryArmy>();
|
||||||
|
|
||||||
for(int i = dwelling->creatures.size() - 1; i >= 0; i--)
|
for(int i = dwelling->creatures.size() - 1; i >= 0; i--)
|
||||||
@@ -497,4 +496,4 @@ ArmyUpgradeInfo ArmyManager::calculateCreaturesUpgrade(
|
|||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@@ -41,6 +41,7 @@ struct ArmyUpgradeInfo
|
|||||||
class DLL_EXPORT IArmyManager //: public: IAbstractManager
|
class DLL_EXPORT IArmyManager //: public: IAbstractManager
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
virtual ~IArmyManager() = default;
|
||||||
virtual void update() = 0;
|
virtual void update() = 0;
|
||||||
virtual ui64 howManyReinforcementsCanBuy(const CCreatureSet * target, const CGDwelling * source) const = 0;
|
virtual ui64 howManyReinforcementsCanBuy(const CCreatureSet * target, const CGDwelling * source) const = 0;
|
||||||
virtual ui64 howManyReinforcementsCanBuy(
|
virtual ui64 howManyReinforcementsCanBuy(
|
||||||
|
@@ -129,8 +129,6 @@ void BuildAnalyzer::update()
|
|||||||
{
|
{
|
||||||
logAi->trace("Checking town %s", town->name);
|
logAi->trace("Checking town %s", town->name);
|
||||||
|
|
||||||
auto townInfo = town->town;
|
|
||||||
|
|
||||||
developmentInfos.push_back(TownDevelopmentInfo(town));
|
developmentInfos.push_back(TownDevelopmentInfo(town));
|
||||||
TownDevelopmentInfo & developmentInfo = developmentInfos.back();
|
TownDevelopmentInfo & developmentInfo = developmentInfos.back();
|
||||||
|
|
||||||
@@ -399,4 +397,4 @@ std::string BuildingInfo::toString() const
|
|||||||
+ ", creature: " + std::to_string(creatureGrows) + " x " + std::to_string(creatureLevel)
|
+ ", creature: " + std::to_string(creatureGrows) + " x " + std::to_string(creatureLevel)
|
||||||
+ " x " + creatureCost.toString()
|
+ " x " + creatureCost.toString()
|
||||||
+ ", daily: " + dailyIncome.toString();
|
+ ", daily: " + dailyIncome.toString();
|
||||||
}
|
}
|
||||||
|
@@ -63,7 +63,7 @@ void DangerHitMapAnalyzer::updateHitMap()
|
|||||||
auto & node = hitMap[pos.x][pos.y][pos.z];
|
auto & node = hitMap[pos.x][pos.y][pos.z];
|
||||||
|
|
||||||
if(tileDanger > node.maximumDanger.danger
|
if(tileDanger > node.maximumDanger.danger
|
||||||
|| tileDanger == node.maximumDanger.danger && node.maximumDanger.turn > turn)
|
|| (tileDanger == node.maximumDanger.danger && node.maximumDanger.turn > turn))
|
||||||
{
|
{
|
||||||
node.maximumDanger.danger = tileDanger;
|
node.maximumDanger.danger = tileDanger;
|
||||||
node.maximumDanger.turn = turn;
|
node.maximumDanger.turn = turn;
|
||||||
@@ -71,7 +71,7 @@ void DangerHitMapAnalyzer::updateHitMap()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(turn < node.fastestDanger.turn
|
if(turn < node.fastestDanger.turn
|
||||||
|| turn == node.fastestDanger.turn && node.fastestDanger.danger < tileDanger)
|
|| (turn == node.fastestDanger.turn && node.fastestDanger.danger < tileDanger))
|
||||||
{
|
{
|
||||||
node.fastestDanger.danger = tileDanger;
|
node.fastestDanger.danger = tileDanger;
|
||||||
node.fastestDanger.turn = turn;
|
node.fastestDanger.turn = turn;
|
||||||
@@ -101,8 +101,8 @@ uint64_t DangerHitMapAnalyzer::enemyCanKillOurHeroesAlongThePath(const AIPath &
|
|||||||
int turn = path.turn();
|
int turn = path.turn();
|
||||||
const HitMapNode & info = hitMap[tile.x][tile.y][tile.z];
|
const HitMapNode & info = hitMap[tile.x][tile.y][tile.z];
|
||||||
|
|
||||||
return info.fastestDanger.turn <= turn && !isSafeToVisit(path.targetHero, path.heroArmy, info.fastestDanger.danger)
|
return (info.fastestDanger.turn <= turn && !isSafeToVisit(path.targetHero, path.heroArmy, info.fastestDanger.danger))
|
||||||
|| info.maximumDanger.turn <= turn && !isSafeToVisit(path.targetHero, path.heroArmy, info.maximumDanger.danger);
|
|| (info.maximumDanger.turn <= turn && !isSafeToVisit(path.targetHero, path.heroArmy, info.maximumDanger.danger));
|
||||||
}
|
}
|
||||||
|
|
||||||
const HitMapNode & DangerHitMapAnalyzer::getObjectTreat(const CGObjectInstance * obj) const
|
const HitMapNode & DangerHitMapAnalyzer::getObjectTreat(const CGObjectInstance * obj) const
|
||||||
|
@@ -20,6 +20,7 @@
|
|||||||
class DLL_EXPORT IHeroManager //: public: IAbstractManager
|
class DLL_EXPORT IHeroManager //: public: IAbstractManager
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
virtual ~IHeroManager() = default;
|
||||||
virtual const std::map<HeroPtr, HeroRole> & getHeroRoles() const = 0;
|
virtual const std::map<HeroPtr, HeroRole> & getHeroRoles() const = 0;
|
||||||
virtual int selectBestSkill(const HeroPtr & hero, const std::vector<SecondarySkill> & skills) const = 0;
|
virtual int selectBestSkill(const HeroPtr & hero, const std::vector<SecondarySkill> & skills) const = 0;
|
||||||
virtual HeroRole getHeroRole(const HeroPtr & hero) const = 0;
|
virtual HeroRole getHeroRole(const HeroPtr & hero) const = 0;
|
||||||
@@ -31,6 +32,7 @@ public:
|
|||||||
class DLL_EXPORT ISecondarySkillRule
|
class DLL_EXPORT ISecondarySkillRule
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
virtual ~ISecondarySkillRule() = default;
|
||||||
virtual void evaluateScore(const CGHeroInstance * hero, SecondarySkill skill, float & score) const = 0;
|
virtual void evaluateScore(const CGHeroInstance * hero, SecondarySkill skill, float & score) const = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -52,11 +54,10 @@ private:
|
|||||||
static SecondarySkillEvaluator scountSkillsScores;
|
static SecondarySkillEvaluator scountSkillsScores;
|
||||||
|
|
||||||
CCallback * cb; //this is enough, but we downcast from CCallback
|
CCallback * cb; //this is enough, but we downcast from CCallback
|
||||||
const Nullkiller * ai;
|
|
||||||
std::map<HeroPtr, HeroRole> heroRoles;
|
std::map<HeroPtr, HeroRole> heroRoles;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
HeroManager(CCallback * CB, const Nullkiller * ai) : cb(CB), ai(ai) {}
|
HeroManager(CCallback * CB, const Nullkiller * ai) : cb(CB) {}
|
||||||
const std::map<HeroPtr, HeroRole> & getHeroRoles() const override;
|
const std::map<HeroPtr, HeroRole> & getHeroRoles() const override;
|
||||||
HeroRole getHeroRole(const HeroPtr & hero) const override;
|
HeroRole getHeroRole(const HeroPtr & hero) const override;
|
||||||
int selectBestSkill(const HeroPtr & hero, const std::vector<SecondarySkill> & skills) const override;
|
int selectBestSkill(const HeroPtr & hero, const std::vector<SecondarySkill> & skills) const override;
|
||||||
@@ -102,4 +103,4 @@ private:
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
void evaluateScore(const CGHeroInstance * hero, SecondarySkill skill, float & score) const override;
|
void evaluateScore(const CGHeroInstance * hero, SecondarySkill skill, float & score) const override;
|
||||||
};
|
};
|
||||||
|
@@ -149,7 +149,7 @@ bool ObjectClusterizer::shouldVisitObject(const CGObjectInstance * obj) const
|
|||||||
|
|
||||||
const int3 pos = obj->visitablePos();
|
const int3 pos = obj->visitablePos();
|
||||||
|
|
||||||
if(obj->ID != Obj::CREATURE_GENERATOR1 && vstd::contains(ai->memory->alreadyVisited, obj)
|
if((obj->ID != Obj::CREATURE_GENERATOR1 && vstd::contains(ai->memory->alreadyVisited, obj))
|
||||||
|| obj->wasVisited(ai->playerID))
|
|| obj->wasVisited(ai->playerID))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
@@ -53,8 +53,6 @@ Goals::TGoalVec BuildingBehavior::decompose() const
|
|||||||
|
|
||||||
for(auto & developmentInfo : developmentInfos)
|
for(auto & developmentInfo : developmentInfos)
|
||||||
{
|
{
|
||||||
auto town = developmentInfo.town;
|
|
||||||
|
|
||||||
for(auto & buildingInfo : developmentInfo.toBuild)
|
for(auto & buildingInfo : developmentInfo.toBuild)
|
||||||
{
|
{
|
||||||
if(goldPreasure < MAX_GOLD_PEASURE || buildingInfo.dailyIncome[Res::GOLD] > 0)
|
if(goldPreasure < MAX_GOLD_PEASURE || buildingInfo.dailyIncome[Res::GOLD] > 0)
|
||||||
|
@@ -106,10 +106,10 @@ void DefenceBehavior::evaluateDefence(Goals::TGoalVec & tasks, const CGTownInsta
|
|||||||
{
|
{
|
||||||
if(path.getHeroStrength() > treat.danger)
|
if(path.getHeroStrength() > treat.danger)
|
||||||
{
|
{
|
||||||
if(path.turn() <= treat.turn && dayOfWeek + treat.turn < 6 && isSafeToVisit(path.targetHero, path.heroArmy, treat.danger)
|
if((path.turn() <= treat.turn && dayOfWeek + treat.turn < 6 && isSafeToVisit(path.targetHero, path.heroArmy, treat.danger))
|
||||||
|| path.exchangeCount == 1 && path.turn() < treat.turn
|
|| (path.exchangeCount == 1 && path.turn() < treat.turn)
|
||||||
|| path.turn() < treat.turn - 1
|
|| path.turn() < treat.turn - 1
|
||||||
|| path.turn() < treat.turn && treat.turn >= 2)
|
|| (path.turn() < treat.turn && treat.turn >= 2))
|
||||||
{
|
{
|
||||||
logAi->debug(
|
logAi->debug(
|
||||||
"Hero %s can eliminate danger for town %s using path %s.",
|
"Hero %s can eliminate danger for town %s using path %s.",
|
||||||
@@ -217,7 +217,7 @@ void DefenceBehavior::evaluateDefence(Goals::TGoalVec & tasks, const CGTownInsta
|
|||||||
// dismiss creatures we are not able to pick to be able to hide in garrison
|
// dismiss creatures we are not able to pick to be able to hide in garrison
|
||||||
if(town->garrisonHero
|
if(town->garrisonHero
|
||||||
|| town->getUpperArmy()->stacksCount() == 0
|
|| town->getUpperArmy()->stacksCount() == 0
|
||||||
|| town->getUpperArmy()->getArmyStrength() < 500 && town->fortLevel() >= CGTownInstance::CITADEL)
|
|| (town->getUpperArmy()->getArmyStrength() < 500 && town->fortLevel() >= CGTownInstance::CITADEL))
|
||||||
{
|
{
|
||||||
tasks.push_back(
|
tasks.push_back(
|
||||||
Goals::sptr(Composition()
|
Goals::sptr(Composition()
|
||||||
@@ -228,7 +228,7 @@ void DefenceBehavior::evaluateDefence(Goals::TGoalVec & tasks, const CGTownInsta
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(treat.turn == 0 || path.turn() <= treat.turn && path.getHeroStrength() * SAFE_ATTACK_CONSTANT >= treat.danger)
|
if(treat.turn == 0 || (path.turn() <= treat.turn && path.getHeroStrength() * SAFE_ATTACK_CONSTANT >= treat.danger))
|
||||||
{
|
{
|
||||||
if(ai->nullkiller->arePathHeroesLocked(path))
|
if(ai->nullkiller->arePathHeroesLocked(path))
|
||||||
{
|
{
|
||||||
@@ -294,4 +294,4 @@ void DefenceBehavior::evaluateDefence(Goals::TGoalVec & tasks, const CGTownInsta
|
|||||||
}
|
}
|
||||||
|
|
||||||
logAi->debug("Found %d tasks", tasks.size());
|
logAi->debug("Found %d tasks", tasks.size());
|
||||||
}
|
}
|
||||||
|
@@ -55,7 +55,7 @@ const CGHeroInstance * getNearestHero(const CGTownInstance * town)
|
|||||||
if(shortestPath.nodes.size() > 1
|
if(shortestPath.nodes.size() > 1
|
||||||
|| shortestPath.turn() != 0
|
|| shortestPath.turn() != 0
|
||||||
|| shortestPath.targetHero->visitablePos().dist2dSQ(town->visitablePos()) > 4
|
|| shortestPath.targetHero->visitablePos().dist2dSQ(town->visitablePos()) > 4
|
||||||
|| town->garrisonHero && shortestPath.targetHero == town->garrisonHero.get())
|
|| (town->garrisonHero && shortestPath.targetHero == town->garrisonHero.get()))
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
|
||||||
return shortestPath.targetHero;
|
return shortestPath.targetHero;
|
||||||
@@ -76,13 +76,13 @@ bool needToRecruitHero(const CGTownInstance * startupTown)
|
|||||||
|
|
||||||
for(auto obj : ai->nullkiller->objectClusterizer->getNearbyObjects())
|
for(auto obj : ai->nullkiller->objectClusterizer->getNearbyObjects())
|
||||||
{
|
{
|
||||||
if(obj->ID == Obj::RESOURCE && obj->subID == Res::GOLD
|
if((obj->ID == Obj::RESOURCE && obj->subID == Res::GOLD)
|
||||||
|| obj->ID == Obj::TREASURE_CHEST
|
|| obj->ID == Obj::TREASURE_CHEST
|
||||||
|| obj->ID == Obj::CAMPFIRE
|
|| obj->ID == Obj::CAMPFIRE
|
||||||
|| obj->ID == Obj::WATER_WHEEL)
|
|| obj->ID == Obj::WATER_WHEEL)
|
||||||
{
|
{
|
||||||
auto path = paths->getPathInfo(obj->visitablePos());
|
auto path = paths->getPathInfo(obj->visitablePos());
|
||||||
if((path->accessible == CGPathNode::BLOCKVIS || path->accessible == CGPathNode::VISIT)
|
if((path->accessible == CGPathNode::BLOCKVIS || path->accessible == CGPathNode::VISITABLE)
|
||||||
&& path->reachable())
|
&& path->reachable())
|
||||||
{
|
{
|
||||||
treasureSourcesCount++;
|
treasureSourcesCount++;
|
||||||
@@ -162,7 +162,7 @@ Goals::TGoalVec StartupBehavior::decompose() const
|
|||||||
auto garrisonHeroScore = ai->nullkiller->heroManager->evaluateHero(garrisonHero);
|
auto garrisonHeroScore = ai->nullkiller->heroManager->evaluateHero(garrisonHero);
|
||||||
|
|
||||||
if(visitingHeroScore > garrisonHeroScore
|
if(visitingHeroScore > garrisonHeroScore
|
||||||
|| ai->nullkiller->heroManager->getHeroRole(garrisonHero) == HeroRole::SCOUT && ai->nullkiller->heroManager->getHeroRole(visitingHero) == HeroRole::MAIN)
|
|| (ai->nullkiller->heroManager->getHeroRole(garrisonHero) == HeroRole::SCOUT && ai->nullkiller->heroManager->getHeroRole(visitingHero) == HeroRole::MAIN))
|
||||||
{
|
{
|
||||||
if(canRecruitHero || ai->nullkiller->armyManager->howManyReinforcementsCanGet(visitingHero, garrisonHero) > 200)
|
if(canRecruitHero || ai->nullkiller->armyManager->howManyReinforcementsCanGet(visitingHero, garrisonHero) > 200)
|
||||||
{
|
{
|
||||||
|
@@ -122,7 +122,7 @@ uint64_t getCreatureBankArmyReward(const CGObjectInstance * target, const CGHero
|
|||||||
{
|
{
|
||||||
//No free slot, we might discard our weakest stack
|
//No free slot, we might discard our weakest stack
|
||||||
weakestStackPower = std::numeric_limits<ui64>().max();
|
weakestStackPower = std::numeric_limits<ui64>().max();
|
||||||
for (const auto stack : slots)
|
for (const auto & stack : slots)
|
||||||
{
|
{
|
||||||
vstd::amin(weakestStackPower, stack.second->getPower());
|
vstd::amin(weakestStackPower, stack.second->getPower());
|
||||||
}
|
}
|
||||||
@@ -645,7 +645,6 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
auto heroPtr = task->hero;
|
auto heroPtr = task->hero;
|
||||||
auto day = ai->cb->getDate(Date::DAY);
|
|
||||||
auto hero = heroPtr.get(ai->cb.get());
|
auto hero = heroPtr.get(ai->cb.get());
|
||||||
bool checkGold = evaluationContext.danger == 0;
|
bool checkGold = evaluationContext.danger == 0;
|
||||||
auto army = path.heroArmy;
|
auto army = path.heroArmy;
|
||||||
@@ -670,11 +669,8 @@ public:
|
|||||||
|
|
||||||
class ClusterEvaluationContextBuilder : public IEvaluationContextBuilder
|
class ClusterEvaluationContextBuilder : public IEvaluationContextBuilder
|
||||||
{
|
{
|
||||||
private:
|
|
||||||
const Nullkiller * ai;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ClusterEvaluationContextBuilder(const Nullkiller * ai) : ai(ai) {}
|
ClusterEvaluationContextBuilder(const Nullkiller * ai) {}
|
||||||
|
|
||||||
virtual void buildEvaluationContext(EvaluationContext & evaluationContext, Goals::TSubgoal task) const override
|
virtual void buildEvaluationContext(EvaluationContext & evaluationContext, Goals::TSubgoal task) const override
|
||||||
{
|
{
|
||||||
@@ -699,7 +695,6 @@ public:
|
|||||||
for(auto objInfo : objects)
|
for(auto objInfo : objects)
|
||||||
{
|
{
|
||||||
auto target = objInfo.first;
|
auto target = objInfo.first;
|
||||||
auto day = ai->cb->getDate(Date::DAY);
|
|
||||||
bool checkGold = objInfo.second.danger == 0;
|
bool checkGold = objInfo.second.danger == 0;
|
||||||
auto army = hero;
|
auto army = hero;
|
||||||
|
|
||||||
@@ -718,9 +713,6 @@ public:
|
|||||||
if(boost > 8)
|
if(boost > 8)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
const AIPath & pathToCenter = clusterGoal.getPathToCenter();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -61,6 +61,7 @@ struct DLL_EXPORT EvaluationContext
|
|||||||
class IEvaluationContextBuilder
|
class IEvaluationContextBuilder
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
virtual ~IEvaluationContextBuilder() = default;
|
||||||
virtual void buildEvaluationContext(EvaluationContext & evaluationContext, Goals::TSubgoal goal) const = 0;
|
virtual void buildEvaluationContext(EvaluationContext & evaluationContext, Goals::TSubgoal goal) const = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -558,7 +558,7 @@ bool AINodeStorage::selectNextActor()
|
|||||||
for(auto actor = actors.begin(); actor != actors.end(); actor++)
|
for(auto actor = actors.begin(); actor != actors.end(); actor++)
|
||||||
{
|
{
|
||||||
if(actor->get()->armyValue > currentActor->get()->armyValue
|
if(actor->get()->armyValue > currentActor->get()->armyValue
|
||||||
|| actor->get()->armyValue == currentActor->get()->armyValue && actor <= currentActor)
|
|| (actor->get()->armyValue == currentActor->get()->armyValue && actor <= currentActor))
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@@ -24,9 +24,6 @@ namespace AIPathfinding
|
|||||||
|
|
||||||
class SummonBoatAction : public VirtualBoatAction
|
class SummonBoatAction : public VirtualBoatAction
|
||||||
{
|
{
|
||||||
private:
|
|
||||||
const CGHeroInstance * hero;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
virtual void execute(const CGHeroInstance * hero) const override;
|
virtual void execute(const CGHeroInstance * hero) const override;
|
||||||
|
|
||||||
@@ -71,4 +68,4 @@ namespace AIPathfinding
|
|||||||
|
|
||||||
virtual const CGObjectInstance * targetObject() const override;
|
virtual const CGObjectInstance * targetObject() const override;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@@ -18,6 +18,8 @@ struct AIPathNode;
|
|||||||
class SpecialAction
|
class SpecialAction
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
virtual ~SpecialAction() = default;
|
||||||
|
|
||||||
virtual bool canAct(const AIPathNode * source) const
|
virtual bool canAct(const AIPathNode * source) const
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
@@ -39,4 +41,4 @@ public:
|
|||||||
virtual std::string toString() const = 0;
|
virtual std::string toString() const = 0;
|
||||||
|
|
||||||
virtual const CGObjectInstance * targetObject() const { return nullptr; }
|
virtual const CGObjectInstance * targetObject() const { return nullptr; }
|
||||||
};
|
};
|
||||||
|
@@ -269,8 +269,6 @@ ExchangeResult HeroExchangeMap::tryExchangeNoLock(const ChainActor * other)
|
|||||||
return result; // already inserted
|
return result; // already inserted
|
||||||
}
|
}
|
||||||
|
|
||||||
auto position = inserted.first;
|
|
||||||
|
|
||||||
auto differentMasks = (actor->chainMask & other->chainMask) == 0;
|
auto differentMasks = (actor->chainMask & other->chainMask) == 0;
|
||||||
|
|
||||||
if(!differentMasks) return result;
|
if(!differentMasks) return result;
|
||||||
@@ -461,15 +459,6 @@ CCreatureSet * DwellingActor::getDwellingCreatures(const CGDwelling * dwelling,
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
auto creature = creatureInfo.second.back().toCreature();
|
auto creature = creatureInfo.second.back().toCreature();
|
||||||
auto count = creatureInfo.first;
|
|
||||||
|
|
||||||
if(waitForGrowth)
|
|
||||||
{
|
|
||||||
const CGTownInstance * town = dynamic_cast<const CGTownInstance *>(dwelling);
|
|
||||||
|
|
||||||
count += town ? town->creatureGrowth(creature->level) : creature->growth;
|
|
||||||
}
|
|
||||||
|
|
||||||
dwellingCreatures->addToSlot(
|
dwellingCreatures->addToSlot(
|
||||||
dwellingCreatures->getSlotFor(creature),
|
dwellingCreatures->getSlotFor(creature),
|
||||||
creature->idNumber,
|
creature->idNumber,
|
||||||
@@ -487,4 +476,4 @@ TownGarrisonActor::TownGarrisonActor(const CGTownInstance * town, uint64_t chain
|
|||||||
std::string TownGarrisonActor::toString() const
|
std::string TownGarrisonActor::toString() const
|
||||||
{
|
{
|
||||||
return town->name;
|
return town->name;
|
||||||
}
|
}
|
||||||
|
@@ -75,7 +75,8 @@ public:
|
|||||||
TResources armyCost;
|
TResources armyCost;
|
||||||
std::shared_ptr<TurnInfo> tiCache;
|
std::shared_ptr<TurnInfo> tiCache;
|
||||||
|
|
||||||
ChainActor(){}
|
ChainActor() = default;
|
||||||
|
virtual ~ChainActor() = default;
|
||||||
|
|
||||||
virtual std::string toString() const;
|
virtual std::string toString() const;
|
||||||
ExchangeResult tryExchangeNoLock(const ChainActor * other) const { return tryExchangeNoLock(this, other); }
|
ExchangeResult tryExchangeNoLock(const ChainActor * other) const { return tryExchangeNoLock(this, other); }
|
||||||
@@ -168,4 +169,4 @@ private:
|
|||||||
public:
|
public:
|
||||||
TownGarrisonActor(const CGTownInstance * town, uint64_t chainMask);
|
TownGarrisonActor(const CGTownInstance * town, uint64_t chainMask);
|
||||||
virtual std::string toString() const override;
|
virtual std::string toString() const override;
|
||||||
};
|
};
|
||||||
|
@@ -126,7 +126,6 @@ namespace AIPathfinding
|
|||||||
const AIPathNode * destinationNode = nodeStorage->getAINode(destination.node);
|
const AIPathNode * destinationNode = nodeStorage->getAINode(destination.node);
|
||||||
auto questObj = dynamic_cast<const IQuestObject *>(destination.nodeObject);
|
auto questObj = dynamic_cast<const IQuestObject *>(destination.nodeObject);
|
||||||
auto questInfo = QuestInfo(questObj->quest, destination.nodeObject, destination.coord);
|
auto questInfo = QuestInfo(questObj->quest, destination.nodeObject, destination.coord);
|
||||||
auto nodeHero = pathfinderHelper->hero;
|
|
||||||
QuestAction questAction(questInfo);
|
QuestAction questAction(questInfo);
|
||||||
|
|
||||||
if(destination.nodeObject->ID == Obj::QUEST_GUARD && questObj->quest->missionType == CQuest::MISSION_NONE)
|
if(destination.nodeObject->ID == Obj::QUEST_GUARD && questObj->quest->missionType == CQuest::MISSION_NONE)
|
||||||
@@ -157,8 +156,6 @@ namespace AIPathfinding
|
|||||||
|
|
||||||
nodeStorage->updateAINode(destination.node, [&](AIPathNode * node)
|
nodeStorage->updateAINode(destination.node, [&](AIPathNode * node)
|
||||||
{
|
{
|
||||||
auto questInfo = QuestInfo(questObj->quest, destination.nodeObject, destination.coord);
|
|
||||||
|
|
||||||
node->specialAction.reset(new QuestAction(questAction));
|
node->specialAction.reset(new QuestAction(questAction));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@@ -19,10 +19,6 @@ AIhelper::AIhelper()
|
|||||||
armyManager.reset(new ArmyManager());
|
armyManager.reset(new ArmyManager());
|
||||||
}
|
}
|
||||||
|
|
||||||
AIhelper::~AIhelper()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
bool AIhelper::notifyGoalCompleted(Goals::TSubgoal goal)
|
bool AIhelper::notifyGoalCompleted(Goals::TSubgoal goal)
|
||||||
{
|
{
|
||||||
return resourceManager->notifyGoalCompleted(goal);
|
return resourceManager->notifyGoalCompleted(goal);
|
||||||
@@ -182,4 +178,4 @@ std::vector<SlotInfo>::iterator AIhelper::getWeakestCreature(std::vector<SlotInf
|
|||||||
std::vector<SlotInfo> AIhelper::getSortedSlots(const CCreatureSet * target, const CCreatureSet * source) const
|
std::vector<SlotInfo> AIhelper::getSortedSlots(const CCreatureSet * target, const CCreatureSet * source) const
|
||||||
{
|
{
|
||||||
return armyManager->getSortedSlots(target, source);
|
return armyManager->getSortedSlots(target, source);
|
||||||
}
|
}
|
||||||
|
@@ -36,7 +36,6 @@ class DLL_EXPORT AIhelper : public IResourceManager, public IBuildingManager, pu
|
|||||||
//TODO: vector<IAbstractManager>
|
//TODO: vector<IAbstractManager>
|
||||||
public:
|
public:
|
||||||
AIhelper();
|
AIhelper();
|
||||||
~AIhelper();
|
|
||||||
|
|
||||||
bool canAfford(const TResources & cost) const;
|
bool canAfford(const TResources & cost) const;
|
||||||
TResources reservedResources() const override;
|
TResources reservedResources() const override;
|
||||||
|
@@ -28,6 +28,7 @@ struct SlotInfo
|
|||||||
class DLL_EXPORT IArmyManager //: public: IAbstractManager
|
class DLL_EXPORT IArmyManager //: public: IAbstractManager
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
virtual ~IArmyManager() = default;
|
||||||
virtual void init(CPlayerSpecificInfoCallback * CB) = 0;
|
virtual void init(CPlayerSpecificInfoCallback * CB) = 0;
|
||||||
virtual void setAI(VCAI * AI) = 0;
|
virtual void setAI(VCAI * AI) = 0;
|
||||||
virtual bool canGetArmy(const CArmedInstance * target, const CArmedInstance * source) const = 0;
|
virtual bool canGetArmy(const CArmedInstance * target, const CArmedInstance * source) const = 0;
|
||||||
|
@@ -120,14 +120,12 @@ Goals::TSubgoal ResourceManager::collectResourcesForOurGoal(ResourceObjective &o
|
|||||||
return o.goal;
|
return o.goal;
|
||||||
}
|
}
|
||||||
|
|
||||||
float goalPriority = 10; //arbitrary, will be divided
|
for (const resPair p : missingResources)
|
||||||
for (const resPair & p : missingResources)
|
|
||||||
{
|
{
|
||||||
if (!income[p.first]) //prioritize resources with 0 income
|
if (!income[p.first]) //prioritize resources with 0 income
|
||||||
{
|
{
|
||||||
resourceType = p.first;
|
resourceType = p.first;
|
||||||
amountToCollect = p.second;
|
amountToCollect = p.second;
|
||||||
goalPriority /= amountToCollect; //need more resources -> lower priority
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -138,7 +136,7 @@ Goals::TSubgoal ResourceManager::collectResourcesForOurGoal(ResourceObjective &o
|
|||||||
std::map<Res::ERes, float> daysToEarn;
|
std::map<Res::ERes, float> daysToEarn;
|
||||||
for (auto it : missingResources)
|
for (auto it : missingResources)
|
||||||
daysToEarn[it.first] = (float)missingResources[it.first] / income[it.first];
|
daysToEarn[it.first] = (float)missingResources[it.first] / income[it.first];
|
||||||
auto incomeComparer = [&income](const timePair & lhs, const timePair & rhs) -> bool
|
auto incomeComparer = [](const timePair & lhs, const timePair & rhs) -> bool
|
||||||
{
|
{
|
||||||
//theoretically income can be negative, but that falls into this comparison
|
//theoretically income can be negative, but that falls into this comparison
|
||||||
return lhs.second < rhs.second;
|
return lhs.second < rhs.second;
|
||||||
@@ -146,12 +144,9 @@ Goals::TSubgoal ResourceManager::collectResourcesForOurGoal(ResourceObjective &o
|
|||||||
|
|
||||||
resourceType = boost::max_element(daysToEarn, incomeComparer)->first;
|
resourceType = boost::max_element(daysToEarn, incomeComparer)->first;
|
||||||
amountToCollect = missingResources[resourceType];
|
amountToCollect = missingResources[resourceType];
|
||||||
goalPriority /= daysToEarn[resourceType]; //more days - lower priority
|
|
||||||
}
|
}
|
||||||
if (resourceType == Res::GOLD)
|
|
||||||
goalPriority *= 1000;
|
|
||||||
|
|
||||||
//this is abstract goal and might take soem time to complete
|
//this is abstract goal and might take some time to complete
|
||||||
return Goals::sptr(Goals::CollectRes(resourceType, amountToCollect).setisAbstract(true));
|
return Goals::sptr(Goals::CollectRes(resourceType, amountToCollect).setisAbstract(true));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -35,6 +35,8 @@ struct ArtifactLocation;
|
|||||||
class IBattleCallback
|
class IBattleCallback
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
virtual ~IBattleCallback() = default;
|
||||||
|
|
||||||
bool waitTillRealize; //if true, request functions will return after they are realized by server
|
bool waitTillRealize; //if true, request functions will return after they are realized by server
|
||||||
bool unlockGsWhenWaiting;//if true after sending each request, gs mutex will be unlocked so the changes can be applied; NOTICE caller must have gs mx locked prior to any call to actiob callback!
|
bool unlockGsWhenWaiting;//if true after sending each request, gs mutex will be unlocked so the changes can be applied; NOTICE caller must have gs mx locked prior to any call to actiob callback!
|
||||||
//battle
|
//battle
|
||||||
|
@@ -197,6 +197,7 @@ if(CMAKE_COMPILER_IS_GNUCXX OR NOT WIN32) #so far all *nix compilers support suc
|
|||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-strict-aliasing -Wno-switch -Wno-sign-compare -Wno-unused-local-typedefs")
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-strict-aliasing -Wno-switch -Wno-sign-compare -Wno-unused-local-typedefs")
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-parameter -Wno-overloaded-virtual -Wno-type-limits -Wno-unknown-pragmas")
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-parameter -Wno-overloaded-virtual -Wno-type-limits -Wno-unknown-pragmas")
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-reorder")
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-reorder")
|
||||||
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-varargs") # fuzzylite - Operation.h
|
||||||
|
|
||||||
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-mismatched-tags -Wno-unknown-warning-option -Wno-missing-braces")
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-mismatched-tags -Wno-unknown-warning-option -Wno-missing-braces")
|
||||||
|
@@ -1083,11 +1083,10 @@ void CBattleInterface::stacksAreAttacked(std::vector<StackAttackedInfo> attacked
|
|||||||
|
|
||||||
std::array<int, 2> killedBySide = {0, 0};
|
std::array<int, 2> killedBySide = {0, 0};
|
||||||
|
|
||||||
int targets = 0, damage = 0;
|
int targets = 0;
|
||||||
for(const StackAttackedInfo & attackedInfo : attackedInfos)
|
for(const StackAttackedInfo & attackedInfo : attackedInfos)
|
||||||
{
|
{
|
||||||
++targets;
|
++targets;
|
||||||
damage += (int)attackedInfo.dmg;
|
|
||||||
|
|
||||||
ui8 side = attackedInfo.defender->side;
|
ui8 side = attackedInfo.defender->side;
|
||||||
killedBySide.at(side) += attackedInfo.amountKilled;
|
killedBySide.at(side) += attackedInfo.amountKilled;
|
||||||
|
@@ -155,6 +155,7 @@ typedef void (*BlitterWithRotationVal)(SDL_Surface *src,SDL_Rect srcRect, SDL_Su
|
|||||||
class ColorShifter
|
class ColorShifter
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
virtual ~ColorShifter() = default;
|
||||||
virtual SDL_Color shiftColor(SDL_Color clr) const = 0;
|
virtual SDL_Color shiftColor(SDL_Color clr) const = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -1286,7 +1286,7 @@ CExchangeWindow::CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2,
|
|||||||
int skill = hero->secSkills[g].first,
|
int skill = hero->secSkills[g].first,
|
||||||
level = hero->secSkills[g].second; // <1, 3>
|
level = hero->secSkills[g].second; // <1, 3>
|
||||||
secSkillAreas[b].push_back(std::make_shared<LRClickableAreaWTextComp>());
|
secSkillAreas[b].push_back(std::make_shared<LRClickableAreaWTextComp>());
|
||||||
secSkillAreas[b][g]->pos = genRect(32, 32, pos.x + 32 + g*36 + b*454 , pos.y + qeLayout ? 83 : 88);
|
secSkillAreas[b][g]->pos = genRect(32, 32, pos.x + 32 + g*36 + b*454 , pos.y + (qeLayout ? 83 : 88));
|
||||||
secSkillAreas[b][g]->baseType = 1;
|
secSkillAreas[b][g]->baseType = 1;
|
||||||
|
|
||||||
secSkillAreas[b][g]->type = skill;
|
secSkillAreas[b][g]->type = skill;
|
||||||
@@ -1301,12 +1301,12 @@ CExchangeWindow::CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2,
|
|||||||
heroAreas[b] = std::make_shared<CHeroArea>(257 + 228*b, 13, hero);
|
heroAreas[b] = std::make_shared<CHeroArea>(257 + 228*b, 13, hero);
|
||||||
|
|
||||||
specialtyAreas[b] = std::make_shared<LRClickableAreaWText>();
|
specialtyAreas[b] = std::make_shared<LRClickableAreaWText>();
|
||||||
specialtyAreas[b]->pos = genRect(32, 32, pos.x + 69 + 490*b, pos.y + qeLayout ? 41 : 45);
|
specialtyAreas[b]->pos = genRect(32, 32, pos.x + 69 + 490*b, pos.y + (qeLayout ? 41 : 45));
|
||||||
specialtyAreas[b]->hoverText = CGI->generaltexth->heroscrn[27];
|
specialtyAreas[b]->hoverText = CGI->generaltexth->heroscrn[27];
|
||||||
specialtyAreas[b]->text = hero->type->specDescr;
|
specialtyAreas[b]->text = hero->type->specDescr;
|
||||||
|
|
||||||
experienceAreas[b] = std::make_shared<LRClickableAreaWText>();
|
experienceAreas[b] = std::make_shared<LRClickableAreaWText>();
|
||||||
experienceAreas[b]->pos = genRect(32, 32, pos.x + 105 + 490*b, pos.y + qeLayout ? 41 : 45);
|
experienceAreas[b]->pos = genRect(32, 32, pos.x + 105 + 490*b, pos.y + (qeLayout ? 41 : 45));
|
||||||
experienceAreas[b]->hoverText = CGI->generaltexth->heroscrn[9];
|
experienceAreas[b]->hoverText = CGI->generaltexth->heroscrn[9];
|
||||||
experienceAreas[b]->text = CGI->generaltexth->allTexts[2];
|
experienceAreas[b]->text = CGI->generaltexth->allTexts[2];
|
||||||
boost::algorithm::replace_first(experienceAreas[b]->text, "%d", boost::lexical_cast<std::string>(hero->level));
|
boost::algorithm::replace_first(experienceAreas[b]->text, "%d", boost::lexical_cast<std::string>(hero->level));
|
||||||
@@ -1314,7 +1314,7 @@ CExchangeWindow::CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2,
|
|||||||
boost::algorithm::replace_first(experienceAreas[b]->text, "%d", boost::lexical_cast<std::string>(hero->exp));
|
boost::algorithm::replace_first(experienceAreas[b]->text, "%d", boost::lexical_cast<std::string>(hero->exp));
|
||||||
|
|
||||||
spellPointsAreas[b] = std::make_shared<LRClickableAreaWText>();
|
spellPointsAreas[b] = std::make_shared<LRClickableAreaWText>();
|
||||||
spellPointsAreas[b]->pos = genRect(32, 32, pos.x + 141 + 490*b, pos.y + qeLayout ? 41 : 45);
|
spellPointsAreas[b]->pos = genRect(32, 32, pos.x + 141 + 490*b, pos.y + (qeLayout ? 41 : 45));
|
||||||
spellPointsAreas[b]->hoverText = CGI->generaltexth->heroscrn[22];
|
spellPointsAreas[b]->hoverText = CGI->generaltexth->heroscrn[22];
|
||||||
spellPointsAreas[b]->text = CGI->generaltexth->allTexts[205];
|
spellPointsAreas[b]->text = CGI->generaltexth->allTexts[205];
|
||||||
boost::algorithm::replace_first(spellPointsAreas[b]->text, "%s", hero->name);
|
boost::algorithm::replace_first(spellPointsAreas[b]->text, "%s", hero->name);
|
||||||
|
@@ -27,6 +27,8 @@ struct CatapultAttack;
|
|||||||
class DLL_LINKAGE ServerCallback
|
class DLL_LINKAGE ServerCallback
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
virtual ~ServerCallback() = default;
|
||||||
|
|
||||||
virtual void complain(const std::string & problem) = 0;
|
virtual void complain(const std::string & problem) = 0;
|
||||||
virtual bool describeChanges() const = 0;
|
virtual bool describeChanges() const = 0;
|
||||||
|
|
||||||
|
@@ -386,6 +386,9 @@ class DLL_LINKAGE INodeStorage
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
using ELayer = EPathfindingLayer;
|
using ELayer = EPathfindingLayer;
|
||||||
|
|
||||||
|
virtual ~INodeStorage() = default;
|
||||||
|
|
||||||
virtual std::vector<CGPathNode *> getInitialNodes() = 0;
|
virtual std::vector<CGPathNode *> getInitialNodes() = 0;
|
||||||
|
|
||||||
virtual std::vector<CGPathNode *> calculateNeighbours(
|
virtual std::vector<CGPathNode *> calculateNeighbours(
|
||||||
@@ -448,6 +451,7 @@ public:
|
|||||||
PathfinderConfig(
|
PathfinderConfig(
|
||||||
std::shared_ptr<INodeStorage> nodeStorage,
|
std::shared_ptr<INodeStorage> nodeStorage,
|
||||||
std::vector<std::shared_ptr<IPathfindingRule>> rules);
|
std::vector<std::shared_ptr<IPathfindingRule>> rules);
|
||||||
|
virtual ~PathfinderConfig() = default;
|
||||||
|
|
||||||
virtual CPathfinderHelper * getOrCreatePathfinderHelper(const PathNodeInfo & source, CGameState * gs) = 0;
|
virtual CPathfinderHelper * getOrCreatePathfinderHelper(const PathNodeInfo & source, CGameState * gs) = 0;
|
||||||
};
|
};
|
||||||
|
@@ -201,12 +201,6 @@ Terrain::operator std::string() const
|
|||||||
Terrain::Terrain(const std::string & _name) : name(_name)
|
Terrain::Terrain(const std::string & _name) : name(_name)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
Terrain& Terrain::operator=(const Terrain & _name)
|
|
||||||
{
|
|
||||||
name = _name.name;
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
Terrain& Terrain::operator=(const std::string & _name)
|
Terrain& Terrain::operator=(const std::string & _name)
|
||||||
{
|
{
|
||||||
name = _name;
|
name = _name;
|
||||||
|
@@ -74,7 +74,6 @@ public:
|
|||||||
|
|
||||||
int id() const; //TODO: has to be completely removed
|
int id() const; //TODO: has to be completely removed
|
||||||
|
|
||||||
Terrain& operator=(const Terrain & _type);
|
|
||||||
Terrain& operator=(const std::string & _type);
|
Terrain& operator=(const std::string & _type);
|
||||||
|
|
||||||
DLL_LINKAGE friend bool operator==(const Terrain & l, const Terrain & r);
|
DLL_LINKAGE friend bool operator==(const Terrain & l, const Terrain & r);
|
||||||
|
@@ -25,10 +25,8 @@ SubscriptionRegistry<ApplyDamage> * ApplyDamage::getRegistry()
|
|||||||
}
|
}
|
||||||
|
|
||||||
CApplyDamage::CApplyDamage(const Environment * env_, BattleStackAttacked * pack_, std::shared_ptr<battle::Unit> target_)
|
CApplyDamage::CApplyDamage(const Environment * env_, BattleStackAttacked * pack_, std::shared_ptr<battle::Unit> target_)
|
||||||
: env(env_),
|
: pack(pack_),
|
||||||
pack(pack_),
|
|
||||||
target(target_)
|
target(target_)
|
||||||
|
|
||||||
{
|
{
|
||||||
initalDamage = pack->damageAmount;
|
initalDamage = pack->damageAmount;
|
||||||
}
|
}
|
||||||
|
@@ -28,12 +28,8 @@ public:
|
|||||||
private:
|
private:
|
||||||
int64_t initalDamage;
|
int64_t initalDamage;
|
||||||
|
|
||||||
const Environment * env;
|
|
||||||
BattleStackAttacked * pack;
|
BattleStackAttacked * pack;
|
||||||
std::shared_ptr<battle::Unit> target;
|
std::shared_ptr<battle::Unit> target;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -193,11 +193,7 @@ void Zone::fractalize()
|
|||||||
rmg::Area clearedTiles(dAreaFree);
|
rmg::Area clearedTiles(dAreaFree);
|
||||||
rmg::Area possibleTiles(dAreaPossible);
|
rmg::Area possibleTiles(dAreaPossible);
|
||||||
rmg::Area tilesToIgnore; //will be erased in this iteration
|
rmg::Area tilesToIgnore; //will be erased in this iteration
|
||||||
|
|
||||||
//the more treasure density, the greater distance between paths. Scaling is experimental.
|
|
||||||
int totalDensity = 0;
|
|
||||||
for(auto ti : treasureInfo)
|
|
||||||
totalDensity += ti.density;
|
|
||||||
const float minDistance = 10 * 10; //squared
|
const float minDistance = 10 * 10; //squared
|
||||||
|
|
||||||
if(type != ETemplateZoneType::JUNCTION)
|
if(type != ETemplateZoneType::JUNCTION)
|
||||||
|
@@ -5589,7 +5589,7 @@ bool CGameHandler::isAllowedExchange(ObjectInstanceID id1, ObjectInstanceID id2)
|
|||||||
auto topArmy = dialog->exchangingArmies.at(0);
|
auto topArmy = dialog->exchangingArmies.at(0);
|
||||||
auto bottomArmy = dialog->exchangingArmies.at(1);
|
auto bottomArmy = dialog->exchangingArmies.at(1);
|
||||||
|
|
||||||
if (topArmy == o1 && bottomArmy == o2 || bottomArmy == o1 && topArmy == o2)
|
if ((topArmy == o1 && bottomArmy == o2) || (bottomArmy == o1 && topArmy == o2))
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user