5#include <unordered_map>
6#include <unordered_set>
24using std::unordered_map;
25using std::unordered_set;
103 inline string toId(
float x,
float y,
float z) {
117 result.reserve(
sizeof(value) * 3);
118 value =
static_cast<int>(Math::ceil(x /
stepSize));
119 result.append((
char*)&value,
sizeof(value));
120 value =
static_cast<int>(Math::ceil(y / 0.1f));
121 result.append((
char*)&value,
sizeof(value));
122 value =
static_cast<int>(Math::ceil(z /
stepSize));
123 result.append((
char*)&value,
sizeof(value));
170 inline static string toIdInt(
int x,
int y,
int z) {
172 result.reserve(
sizeof(x) * 3);
173 result.append((
char*)&x,
sizeof(x));
174 result.append((
char*)&y,
sizeof(y));
175 result.append((
char*)&z,
sizeof(z));
238 bool isWalkable(
float x,
float y,
float z,
float& height,
float stepSize,
float scaleActorBoundingVolumes,
bool flowMapRequest, uint16_t
collisionTypeIds = 0,
bool ignoreStepUpMax =
false);
393 void step(
const PathFindingNode& node,
float stepSize,
float scaleActorBoundingVolumes,
const unordered_set<string>* nodesToTest,
bool flowMapRequest);
Dynamic physics world class.
Bounding volume interface.
float computeLengthSquared() const
Vector3 clone() const
Clones the vector.
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Vector3 & setY(float y)
Set Y.
BoundingVolume * actorBoundingVolume
const vector< Vector3 > generateDirectPath(const Vector3 &start, const Vector3 &end)
Generate direct path from start to end.
FlowMap * createFlowMap(const vector< Vector3 > &endPositions, const Vector3 ¢er, float depth, float width, const uint16_t collisionTypeIds, const vector< Vector3 > &path=vector< Vector3 >(), bool complete=true, PathFindingCustomTest *customTest=nullptr)
Create flow map.
bool isWalkable(float x, float y, float z, float &height, float stepSize, float scaleActorBoundingVolumes, bool flowMapRequest, uint16_t collisionTypeIds=0, bool ignoreStepUpMax=false)
Checks if a cell is walkable.
PathFindingCustomTest * customTest
bool findFlowMapPath(const Vector3 &startPosition, const Vector3 &endPosition, const uint16_t collisionTypeIds, vector< Vector3 > &path, int alternativeEndSteps=0, int maxTriesOverride=-1, PathFindingCustomTest *customTest=nullptr)
Finds path to given end position for flow maps.
static string toIdInt(int x, int y, int z)
Return string representation of given x,z integer flow map position representation for path finding i...
uint16_t skipOnCollisionTypeIds
PathFinding(World *world, bool sloping=false, int stepsMax=1000, float actorHeight=2.0f, float stepSize=0.5f, float stepSizeLast=0.75f, float actorStepUpMax=0.25f, uint16_t skipOnCollisionTypeIds=0, int maxTries=5, float flowMapStepSize=0.5f, float flowMapScaleActorBoundingVolumes=1.0f)
Public constructor.
unordered_map< string, float > walkableCache
bool isSlopeWalkableInternal(float x, float y, float z, float successorX, float successorY, float successorZ, float stepSize, float scaleActorBoundingVolumes, bool flowMapRequest, uint16_t collisionTypeIds=0)
Checks if a cell is slope walkable.
void step(const PathFindingNode &node, float stepSize, float scaleActorBoundingVolumes, const unordered_set< string > *nodesToTest, bool flowMapRequest)
Processes one step in AStar path finding.
float computeDistanceToEnd(const PathFindingNode &node)
Computes minimal non square rooted distance between node and end point.
~PathFinding()
Destructor.
bool isWalkableInternal(float x, float y, float z, float &height, float stepSize, float scaleActorBoundingVolumes, bool flowMapRequest, uint16_t collisionTypeIds=0, bool ignoreStepUpMax=false)
Checks if a cell is walkable.
float computeDistance(const PathFindingNode &a, const PathFindingNode &b)
Computes non square rooted distance between a and b.
uint16_t collisionTypeIds
static constexpr bool VERBOSE
bool findPath(const Vector3 &startPosition, const Vector3 &endPosition, const uint16_t collisionTypeIds, vector< Vector3 > &path, int alternativeEndSteps=0, int maxTriesOverride=-1, PathFindingCustomTest *customTest=nullptr)
Finds path to given end position.
static int getIntegerPositionComponent(float value, float stepSize)
Returns integer position component.
unordered_map< string, PathFindingNode > closedNodes
bool findPathCustom(const Vector3 &startPosition, const Vector3 &endPosition, float stepSize, float scaleActorBoundingVolumes, const uint16_t collisionTypeIds, vector< Vector3 > &path, int alternativeEndSteps=0, int maxTriesOverride=-1, PathFindingCustomTest *customTest=nullptr)
Finds path to given end position.
bool equals(const PathFindingNode &a, float bX, float bY, float bZ)
Returns if nodes are equals.
float flowMapScaleActorBoundingVolumes
bool equalsLastNode(const PathFindingNode &a, const PathFindingNode &b)
Returns if nodes are equals for (last node test)
void reset()
Clear caches.
string toId(float x, float y, float z)
Return string representation of given x,y,z for path finding id.
static string toId(float x, float y, float z, float stepSize)
Return string representation of given x,y,z for path finding id.
unordered_map< string, PathFindingNode > openNodes
float alignPositionComponent(float value)
Align position component.
int getIntegerPositionComponent(float value)
Returns integer position component.
BoundingVolume * actorBoundingVolumeSlopeTest
static float alignPositionComponent(float value, float stepSize)
Align position component.
Path finding custom test interface.
int y
Integer position along y axis.
int z
Integer position along z axis.
int x
Integer position along x axis.
float costsAll
Estimated costs to the end plus calculated costs from start to this node.
float costsEstimated
Estimated costs to get to the end.
string previousNodeId
Previous node.
float costsReachPoint
Calculated costs up to this point (from all previous nodes up to this node) to get to this coordinate...
Vector3 position
Position.