2021-05-15 18:22:44 +02:00
|
|
|
/*
|
|
|
|
* AbstractGoal.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 "AbstractGoal.h"
|
2021-05-16 14:39:38 +02:00
|
|
|
#include "../AIGateway.h"
|
2023-08-19 23:22:31 +02:00
|
|
|
#include "../../../lib/constants/StringConstants.h"
|
2021-05-15 18:22:44 +02:00
|
|
|
|
2022-09-26 20:01:07 +02:00
|
|
|
namespace NKAI
|
|
|
|
{
|
|
|
|
|
2021-05-15 18:22:44 +02:00
|
|
|
using namespace Goals;
|
|
|
|
|
|
|
|
TSubgoal Goals::sptr(const AbstractGoal & tmp)
|
|
|
|
{
|
|
|
|
TSubgoal ptr;
|
|
|
|
ptr.reset(tmp.clone());
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2021-05-16 13:38:26 +02:00
|
|
|
TTask Goals::taskptr(const AbstractGoal & tmp)
|
|
|
|
{
|
|
|
|
TTask ptr;
|
|
|
|
|
2021-05-16 13:38:53 +02:00
|
|
|
if(!tmp.isElementar())
|
2021-05-16 13:38:26 +02:00
|
|
|
throw cannotFulfillGoalException(tmp.toString() + " is not elementar");
|
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
ptr.reset(tmp.clone()->asTask());
|
2021-05-16 13:38:26 +02:00
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
std::string AbstractGoal::toString() const
|
2021-05-15 18:22:44 +02:00
|
|
|
{
|
|
|
|
std::string desc;
|
|
|
|
switch(goalType)
|
|
|
|
{
|
|
|
|
case COLLECT_RES:
|
2023-03-09 15:36:46 +02:00
|
|
|
desc = "COLLECT RESOURCE " + GameConstants::RESOURCE_NAMES[resID] + " (" + std::to_string(value) + ")";
|
2021-05-15 18:22:44 +02:00
|
|
|
break;
|
|
|
|
case TRADE:
|
|
|
|
{
|
|
|
|
auto obj = cb->getObjInstance(ObjectInstanceID(objid));
|
|
|
|
if (obj)
|
|
|
|
desc = (boost::format("TRADE %d of %s at %s") % value % GameConstants::RESOURCE_NAMES[resID] % obj->getObjectName()).str();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GATHER_TROOPS:
|
|
|
|
desc = "GATHER TROOPS";
|
|
|
|
break;
|
|
|
|
case GET_ART_TYPE:
|
2023-03-27 13:56:39 +02:00
|
|
|
desc = "GET ARTIFACT OF TYPE " + VLC->artifacts()->getByIndex(aid)->getNameTranslated();
|
2021-05-15 18:22:44 +02:00
|
|
|
break;
|
|
|
|
case DIG_AT_TILE:
|
|
|
|
desc = "DIG AT TILE " + tile.toString();
|
|
|
|
break;
|
|
|
|
default:
|
2023-03-09 15:36:46 +02:00
|
|
|
return std::to_string(goalType);
|
2021-05-15 18:22:44 +02:00
|
|
|
}
|
2024-04-14 14:23:44 +02:00
|
|
|
|
|
|
|
if(hero)
|
2023-01-02 13:27:03 +02:00
|
|
|
desc += " (" + hero->getNameTranslated() + ")";
|
2024-04-14 14:23:44 +02:00
|
|
|
|
2021-05-15 18:22:44 +02:00
|
|
|
return desc;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AbstractGoal::operator==(const AbstractGoal & g) const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: find out why the following are not generated automatically on MVS?
|
|
|
|
bool TSubgoal::operator==(const TSubgoal & rhs) const
|
|
|
|
{
|
|
|
|
return *get() == *rhs.get(); //comparison for Goals is overloaded, so they don't need to be identical to match
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AbstractGoal::invalid() const
|
|
|
|
{
|
|
|
|
return goalType == EGoals::INVALID;
|
2022-09-26 20:01:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|