2021-05-16 13:57:26 +02:00
|
|
|
/*
|
|
|
|
* QuestAction.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 "QuestAction.h"
|
2021-05-16 14:39:38 +02:00
|
|
|
#include "../../AIGateway.h"
|
2021-05-16 13:57:26 +02:00
|
|
|
#include "../../Goals/CompleteQuest.h"
|
|
|
|
|
2022-09-26 20:01:07 +02:00
|
|
|
namespace NKAI
|
|
|
|
{
|
|
|
|
|
2021-05-16 13:57:26 +02:00
|
|
|
namespace AIPathfinding
|
|
|
|
{
|
2024-03-31 17:39:00 +02:00
|
|
|
bool QuestAction::canAct(const Nullkiller * ai, const AIPathNode * node) const
|
2024-03-17 09:34:54 +02:00
|
|
|
{
|
2024-03-31 17:39:00 +02:00
|
|
|
return canAct(ai, node->actor->hero);
|
2024-03-17 09:34:54 +02:00
|
|
|
}
|
|
|
|
|
2024-03-31 17:39:00 +02:00
|
|
|
bool QuestAction::canAct(const Nullkiller * ai, const AIPathNodeInfo & node) const
|
2024-03-28 13:39:15 +02:00
|
|
|
{
|
2024-03-31 17:39:00 +02:00
|
|
|
return canAct(ai, node.targetHero);
|
2024-03-28 13:39:15 +02:00
|
|
|
}
|
|
|
|
|
2024-03-31 17:39:00 +02:00
|
|
|
bool QuestAction::canAct(const Nullkiller * ai, const CGHeroInstance * hero) const
|
2021-05-16 13:57:26 +02:00
|
|
|
{
|
|
|
|
if(questInfo.obj->ID == Obj::BORDER_GATE || questInfo.obj->ID == Obj::BORDERGUARD)
|
|
|
|
{
|
2024-03-17 09:34:54 +02:00
|
|
|
return dynamic_cast<const IQuestObject *>(questInfo.obj)->checkQuest(hero);
|
2021-05-16 13:57:26 +02:00
|
|
|
}
|
|
|
|
|
2024-04-14 14:23:44 +02:00
|
|
|
auto notActivated = !questInfo.obj->wasVisited(ai->playerID)
|
|
|
|
&& !questInfo.quest->activeForPlayers.count(hero->getOwner());
|
|
|
|
|
|
|
|
return notActivated
|
2024-03-17 09:34:54 +02:00
|
|
|
|| questInfo.quest->checkQuest(hero);
|
2021-05-16 13:57:26 +02:00
|
|
|
}
|
|
|
|
|
2024-03-31 17:39:00 +02:00
|
|
|
Goals::TSubgoal QuestAction::decompose(const Nullkiller * ai, const CGHeroInstance * hero) const
|
2021-05-16 13:57:26 +02:00
|
|
|
{
|
|
|
|
return Goals::sptr(Goals::CompleteQuest(questInfo));
|
|
|
|
}
|
|
|
|
|
2024-03-31 17:39:00 +02:00
|
|
|
void QuestAction::execute(AIGateway * ai, const CGHeroInstance * hero) const
|
2021-05-16 13:57:26 +02:00
|
|
|
{
|
|
|
|
ai->moveHeroToTile(questInfo.obj->visitablePos(), hero);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string QuestAction::toString() const
|
|
|
|
{
|
|
|
|
return "Complete Quest";
|
|
|
|
}
|
2022-09-26 20:01:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|