mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-02 22:05:43 +02:00
Do not add duplicate objectives to GatherArmy pool (or any other, if it ever exist)
This commit is contained in:
parent
273802c92c
commit
b687688f5a
@ -48,6 +48,11 @@ Goals::TSubgoal AIhelper::whatToDo() const
|
|||||||
return resourceManager->whatToDo();
|
return resourceManager->whatToDo();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool AIhelper::containsObjective(Goals::TSubgoal goal) const
|
||||||
|
{
|
||||||
|
return resourceManager->containsObjective(goal);
|
||||||
|
}
|
||||||
|
|
||||||
bool AIhelper::hasTasksLeft() const
|
bool AIhelper::hasTasksLeft() const
|
||||||
{
|
{
|
||||||
return resourceManager->hasTasksLeft();
|
return resourceManager->hasTasksLeft();
|
||||||
|
@ -41,6 +41,7 @@ public:
|
|||||||
|
|
||||||
Goals::TSubgoal whatToDo(TResources &res, Goals::TSubgoal goal) override;
|
Goals::TSubgoal whatToDo(TResources &res, Goals::TSubgoal goal) override;
|
||||||
Goals::TSubgoal whatToDo() const override; //peek highest-priority goal
|
Goals::TSubgoal whatToDo() const override; //peek highest-priority goal
|
||||||
|
bool containsObjective(Goals::TSubgoal goal) const;
|
||||||
bool hasTasksLeft() const override;
|
bool hasTasksLeft() const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -1330,13 +1330,19 @@ TGoalVec GatherArmy::getAllPossibleSubgoals()
|
|||||||
{
|
{
|
||||||
ui32 val = std::min<ui32>(value, howManyReinforcementsCanBuy(hero, t));
|
ui32 val = std::min<ui32>(value, howManyReinforcementsCanBuy(hero, t));
|
||||||
if (val)
|
if (val)
|
||||||
ret.push_back(sptr(Goals::BuyArmy(t, val).sethero(hero)));
|
{
|
||||||
|
auto goal = sptr(Goals::BuyArmy(t, val).sethero(hero));
|
||||||
|
if (!ah->containsObjective(goal)) //avoid loops caused by reserving same objective twice
|
||||||
|
ret.push_back(goal);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//build dwelling
|
//build dwelling
|
||||||
auto bid = ai->canBuildAnyStructure(t, std::vector<BuildingID>(unitsSource, unitsSource + ARRAY_COUNT(unitsSource)), 8 - cb->getDate(Date::DAY_OF_WEEK));
|
auto bid = ai->canBuildAnyStructure(t, std::vector<BuildingID>(unitsSource, unitsSource + ARRAY_COUNT(unitsSource)), 8 - cb->getDate(Date::DAY_OF_WEEK));
|
||||||
if (bid != BuildingID::NONE)
|
if (bid != BuildingID::NONE)
|
||||||
{
|
{
|
||||||
ret.push_back(sptr(BuildThis(bid, t).setpriority(priority)));
|
auto goal = sptr(BuildThis(bid, t).setpriority(priority));
|
||||||
|
if (!ah->containsObjective(goal)) //avoid loops caused by reserving same objective twice
|
||||||
|
ret.push_back(goal);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -191,6 +191,17 @@ Goals::TSubgoal ResourceManager::whatToDo(TResources &res, Goals::TSubgoal goal)
|
|||||||
return collectResourcesForOurGoal(ro); //fallback, ever needed?
|
return collectResourcesForOurGoal(ro); //fallback, ever needed?
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ResourceManager::containsObjective(Goals::TSubgoal goal) const
|
||||||
|
{
|
||||||
|
//TODO: unit tests for once
|
||||||
|
for (auto objective : queue)
|
||||||
|
{
|
||||||
|
if (objective.goal == goal)
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
bool ResourceManager::notifyGoalCompleted(Goals::TSubgoal goal)
|
bool ResourceManager::notifyGoalCompleted(Goals::TSubgoal goal)
|
||||||
{
|
{
|
||||||
if (goal->invalid())
|
if (goal->invalid())
|
||||||
|
@ -51,6 +51,7 @@ public:
|
|||||||
|
|
||||||
virtual Goals::TSubgoal whatToDo() const = 0;//get highest-priority goal
|
virtual Goals::TSubgoal whatToDo() const = 0;//get highest-priority goal
|
||||||
virtual Goals::TSubgoal whatToDo(TResources &res, Goals::TSubgoal goal) = 0;
|
virtual Goals::TSubgoal whatToDo(TResources &res, Goals::TSubgoal goal) = 0;
|
||||||
|
virtual bool containsObjective(Goals::TSubgoal goal) const = 0;
|
||||||
virtual bool hasTasksLeft() const = 0;
|
virtual bool hasTasksLeft() const = 0;
|
||||||
private:
|
private:
|
||||||
virtual bool notifyGoalCompleted(Goals::TSubgoal goal) = 0;
|
virtual bool notifyGoalCompleted(Goals::TSubgoal goal) = 0;
|
||||||
@ -80,6 +81,7 @@ public:
|
|||||||
|
|
||||||
Goals::TSubgoal whatToDo() const override; //peek highest-priority goal
|
Goals::TSubgoal whatToDo() const override; //peek highest-priority goal
|
||||||
Goals::TSubgoal whatToDo(TResources &res, Goals::TSubgoal goal); //can we afford this goal or need to CollectRes?
|
Goals::TSubgoal whatToDo(TResources &res, Goals::TSubgoal goal); //can we afford this goal or need to CollectRes?
|
||||||
|
bool containsObjective(Goals::TSubgoal goal) const;
|
||||||
bool hasTasksLeft() const override;
|
bool hasTasksLeft() const override;
|
||||||
|
|
||||||
protected: //not-const actions only for AI
|
protected: //not-const actions only for AI
|
||||||
|
Loading…
x
Reference in New Issue
Block a user