1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-18 17:40:48 +02:00
vcmi/AI/Nullkiller/Pathfinding/Rules/AIPreviousNodeRule.h

40 lines
876 B
C
Raw Normal View History

2021-05-15 18:22:44 +02:00
/*
* AIPreviousNodeRule.h, 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
*
*/
#pragma once
#include "../AINodeStorage.h"
2021-05-16 14:39:38 +02:00
#include "../../AIGateway.h"
2021-05-15 18:22:44 +02:00
#include "../../../../CCallback.h"
#include "../../../../lib/mapping/CMap.h"
#include "../../../../lib/mapObjects/MapObjects.h"
2022-09-26 20:01:07 +02:00
namespace NKAI
{
2021-05-15 18:22:44 +02:00
namespace AIPathfinding
{
class AIPreviousNodeRule : public MovementToDestinationRule
{
private:
std::shared_ptr<AINodeStorage> nodeStorage;
public:
AIPreviousNodeRule(std::shared_ptr<AINodeStorage> nodeStorage);
virtual void process(
const PathNodeInfo & source,
CDestinationNodeInfo & destination,
const PathfinderConfig * pathfinderConfig,
CPathfinderHelper * pathfinderHelper) const override;
};
}
2022-09-26 20:01:07 +02:00
}