2021-05-16 13:38:53 +02:00
|
|
|
/*
|
|
|
|
* BuildThis.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 "Composition.h"
|
2021-05-16 14:39:38 +02:00
|
|
|
#include "../AIGateway.h"
|
2021-05-16 13:38:53 +02:00
|
|
|
#include "../AIUtility.h"
|
2023-08-19 23:22:31 +02:00
|
|
|
#include "../../../lib/constants/StringConstants.h"
|
2021-05-16 13:38:53 +02:00
|
|
|
|
|
|
|
|
2022-09-26 20:01:07 +02:00
|
|
|
namespace NKAI
|
|
|
|
{
|
|
|
|
|
2021-05-16 13:38:53 +02:00
|
|
|
using namespace Goals;
|
|
|
|
|
|
|
|
bool Composition::operator==(const Composition & other) const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Composition::toString() const
|
|
|
|
{
|
|
|
|
std::string result = "Composition";
|
|
|
|
|
2023-06-04 15:02:02 +02:00
|
|
|
for(auto step : subtasks)
|
2021-05-16 13:38:53 +02:00
|
|
|
{
|
2023-06-04 15:02:02 +02:00
|
|
|
result += "[";
|
|
|
|
for(auto goal : step)
|
|
|
|
{
|
|
|
|
if(goal->isElementar())
|
|
|
|
result += goal->toString() + " => ";
|
|
|
|
else
|
|
|
|
result += goal->toString() + ", ";
|
|
|
|
}
|
|
|
|
result += "] ";
|
2021-05-16 13:38:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-05-16 14:39:38 +02:00
|
|
|
void Composition::accept(AIGateway * ai)
|
2021-05-16 13:38:53 +02:00
|
|
|
{
|
2023-06-04 15:02:02 +02:00
|
|
|
for(auto task : subtasks.back())
|
|
|
|
{
|
|
|
|
if(task->isElementar())
|
|
|
|
{
|
|
|
|
taskptr(*task)->accept(ai);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-05-16 13:38:53 +02:00
|
|
|
}
|
|
|
|
|
2024-03-31 17:39:00 +02:00
|
|
|
TGoalVec Composition::decompose(const Nullkiller * ai) const
|
2021-05-16 13:38:53 +02:00
|
|
|
{
|
2023-06-04 15:02:02 +02:00
|
|
|
TGoalVec result;
|
|
|
|
|
|
|
|
for(const TGoalVec & step : subtasks)
|
|
|
|
vstd::concatenate(result, step);
|
|
|
|
|
|
|
|
return result;
|
2021-05-16 13:38:53 +02:00
|
|
|
}
|
|
|
|
|
2023-06-04 15:02:02 +02:00
|
|
|
Composition & Composition::addNextSequence(const TGoalVec & taskSequence)
|
2021-05-16 13:38:53 +02:00
|
|
|
{
|
2023-06-04 15:02:02 +02:00
|
|
|
subtasks.push_back(taskSequence);
|
|
|
|
|
|
|
|
return *this;
|
2021-05-16 13:38:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Composition & Composition::addNext(TSubgoal goal)
|
|
|
|
{
|
2021-05-16 13:56:42 +02:00
|
|
|
if(goal->goalType == COMPOSITION)
|
|
|
|
{
|
|
|
|
Composition & other = dynamic_cast<Composition &>(*goal);
|
|
|
|
|
|
|
|
vstd::concatenate(subtasks, other.subtasks);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-06-04 15:02:02 +02:00
|
|
|
subtasks.push_back({goal});
|
2021-05-16 13:56:42 +02:00
|
|
|
}
|
2021-05-16 13:38:53 +02:00
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2023-06-04 15:02:02 +02:00
|
|
|
Composition & Composition::addNext(const AbstractGoal & goal)
|
|
|
|
{
|
|
|
|
return addNext(sptr(goal));
|
|
|
|
}
|
|
|
|
|
2021-05-16 13:38:53 +02:00
|
|
|
bool Composition::isElementar() const
|
|
|
|
{
|
2023-06-04 15:02:02 +02:00
|
|
|
return subtasks.back().front()->isElementar();
|
2022-09-06 20:14:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int Composition::getHeroExchangeCount() const
|
|
|
|
{
|
2023-06-04 15:02:02 +02:00
|
|
|
auto result = 0;
|
|
|
|
|
|
|
|
for(auto task : subtasks.back())
|
|
|
|
{
|
|
|
|
if(task->isElementar())
|
|
|
|
{
|
|
|
|
result += taskptr(*task)->getHeroExchangeCount();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2022-09-26 20:01:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|