TDME2 1.9.121
|
Path finding class. More...
#include <tdme/utilities/PathFinding.h>
Classes | |
struct | PathFindingNode |
Path finding node. More... | |
Public Member Functions | |
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. More... | |
~PathFinding () | |
Destructor. More... | |
float | getStepSize () |
void | reset () |
Clear caches. More... | |
string | toId (float x, float y, float z) |
Return string representation of given x,y,z for path finding id. More... | |
float | alignPositionComponent (float value) |
Align position component. More... | |
int | getIntegerPositionComponent (float value) |
Returns integer position component. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
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. More... | |
const vector< Vector3 > | generateDirectPath (const Vector3 &start, const Vector3 &end) |
Generate direct path from start to end. More... | |
Static Public Member Functions | |
static string | toId (float x, float y, float z, float stepSize) |
Return string representation of given x,y,z for path finding id. More... | |
static float | alignPositionComponent (float value, float stepSize) |
Align position component. More... | |
static int | getIntegerPositionComponent (float value, float stepSize) |
Returns integer position component. More... | |
static string | toIdInt (int x, int y, int z) |
Return string representation of given x,z integer flow map position representation for path finding id. More... | |
Static Public Attributes | |
static constexpr bool | VERBOSE { true } |
Private Member Functions | |
float | computeDistance (const PathFindingNode &a, const PathFindingNode &b) |
Computes non square rooted distance between a and b. More... | |
float | computeDistanceToEnd (const PathFindingNode &node) |
Computes minimal non square rooted distance between node and end point. More... | |
bool | equals (const PathFindingNode &a, float bX, float bY, float bZ) |
Returns if nodes are equals. More... | |
bool | equalsLastNode (const PathFindingNode &a, const PathFindingNode &b) |
Returns if nodes are equals for (last node test) More... | |
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. More... | |
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. More... | |
void | step (const PathFindingNode &node, float stepSize, float scaleActorBoundingVolumes, const unordered_set< string > *nodesToTest, bool flowMapRequest) |
Processes one step in AStar path finding. More... | |
Private Attributes | |
World * | world { nullptr } |
PathFindingCustomTest * | customTest { nullptr } |
bool | sloping |
int | stepsMax |
float | actorHeight |
float | stepSize |
float | stepSizeLast |
float | actorStepUpMax |
uint16_t | skipOnCollisionTypeIds |
uint16_t | collisionTypeIds |
int | maxTries |
float | flowMapStepSize |
float | flowMapScaleActorBoundingVolumes |
PathFindingNode | end |
unordered_map< string, PathFindingNode > | openNodes |
unordered_map< string, PathFindingNode > | closedNodes |
BoundingVolume * | actorBoundingVolume { nullptr } |
BoundingVolume * | actorBoundingVolumeSlopeTest { nullptr } |
unordered_map< string, float > | walkableCache |
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.
world | world |
sloping | sloping |
stepsMax | steps max |
actorHeight | actor height |
stepSize | step size |
stepSizeLast | step size last |
actorStepUpMax | actor step up max |
skipOnCollisionTypeIds | skip cells with given collision type ids |
maxTries | max tries |
flowMapStepSize | flow map step size |
flowMapScaleActorBoundingVolumes | flow map scale actor bounding volumes |
Definition at line 47 of file PathFinding.cpp.
~PathFinding | ( | ) |
Destructor.
Definition at line 77 of file PathFinding.cpp.
|
inline |
Align position component.
value | value which is usually a position vector 3 position component |
Definition at line 140 of file PathFinding.h.
|
inlinestatic |
Align position component.
value | value which is usually a position vector 3 position component |
stepSize | step size |
Definition at line 132 of file PathFinding.h.
|
inlineprivate |
Computes non square rooted distance between a and b.
a | node a |
b | node b |
Definition at line 319 of file PathFinding.h.
|
inlineprivate |
Computes minimal non square rooted distance between node and end point.
node | node |
Definition at line 328 of file PathFinding.h.
FlowMap * createFlowMap | ( | const vector< Vector3 > & | endPositions, |
const Vector3 & | center, | ||
float | depth, | ||
float | width, | ||
const uint16_t | collisionTypeIds, | ||
const vector< Vector3 > & | path = vector<Vector3>() , |
||
bool | complete = true , |
||
PathFindingCustomTest * | customTest = nullptr |
||
) |
Create flow map.
endPositions | end positions |
center | flow map center |
depth | flow map depth |
width | flow map width |
collisionTypeIds | collision type ids |
path | path to test along |
complete | complete |
customTest | custom test |
Definition at line 719 of file PathFinding.cpp.
|
inlineprivate |
Returns if nodes are equals.
a | a |
bX | b x coordinate |
bY | b y coordinate |
bZ | b z coordinate |
Definition at line 340 of file PathFinding.h.
|
inlineprivate |
Returns if nodes are equals for (last node test)
a | a |
lastNode | b |
Definition at line 350 of file PathFinding.h.
|
inline |
Finds path to given end position for flow maps.
startPosition | start position |
endPosition | end position |
collisionTypeIds | collision type ids |
path | path from actor to target |
alternativeEndSteps | alternative end steps |
maxTriesOverride | max tries override or -1 for default |
customTest | custom test |
Definition at line 206 of file PathFinding.h.
|
inline |
Finds path to given end position.
startPosition | start position |
endPosition | end position |
collisionTypeIds | collision type ids |
path | path from actor to target |
alternativeEndSteps | alternative end steps |
maxTriesOverride | max tries override or -1 for default |
customTest | custom test |
Definition at line 190 of file PathFinding.h.
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.
startPosition | start position |
endPosition | end position |
stepSize | step size |
scaleActorBoundingVolumes | scale actor bounding volumes |
collisionTypeIds | collision type ids |
path | path from actor to target |
alternativeEndSteps | alternative end steps |
maxTriesOverride | max tries override or -1 for default |
customTest | custom test |
Definition at line 313 of file PathFinding.cpp.
Generate direct path from start to end.
start | start |
end | end |
Definition at line 1075 of file PathFinding.cpp.
|
inline |
Returns integer position component.
value | value |
Definition at line 159 of file PathFinding.h.
|
inlinestatic |
Returns integer position component.
value | value |
stepSize | step size |
Definition at line 150 of file PathFinding.h.
|
inline |
Definition at line 84 of file PathFinding.h.
|
private |
Checks if a cell is slope walkable.
x | x |
y | y |
z | z |
successorX | x |
successorY | y |
successorZ | z |
stepSize | step size |
scaleActorBoundingVolumes | scale actor bounding volumes |
collisionTypeIds | collision type ids or 0 for default |
Definition at line 104 of file PathFinding.cpp.
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.
x | x |
y | y |
z | z |
height | y stepped up |
stepSize | step size |
scaleActorBoundingVolumes | scale actor bounding volumes |
flowMapRequest | flow map request |
collisionTypeIds | collision type ids or 0 for default |
ignoreStepUpMax | ignore step up max |
Definition at line 152 of file PathFinding.cpp.
|
private |
Checks if a cell is walkable.
x | x |
y | y |
z | z |
height | y stepped up |
stepSize | step size |
scaleActorBoundingVolumes | scale actor bounding volumes |
flowMapRequest | flow map request |
collisionTypeIds | collision type ids or 0 for default |
ignoreStepUpMax | ignore step up max |
Definition at line 80 of file PathFinding.cpp.
|
inline |
Clear caches.
Definition at line 91 of file PathFinding.h.
|
private |
Processes one step in AStar path finding.
node | node |
stepSize | step size |
scaleActorBoundingVolumes | scale actor bounding volumes |
nodesToTest | nodes to test or nullptr, applies to flow cost map generation |
flowMapRequest | flow map request |
Definition at line 192 of file PathFinding.cpp.
|
inline |
Return string representation of given x,y,z for path finding id.
x | x |
y | y |
z | z |
stepSize | step size |
Definition at line 103 of file PathFinding.h.
|
inlinestatic |
Return string representation of given x,y,z for path finding id.
x | x |
y | y |
z | z |
Definition at line 114 of file PathFinding.h.
|
inlinestatic |
Return string representation of given x,z integer flow map position representation for path finding id.
x | x |
y | y |
z | z |
Definition at line 170 of file PathFinding.h.
|
private |
Definition at line 412 of file PathFinding.h.
|
private |
Definition at line 413 of file PathFinding.h.
|
private |
Definition at line 400 of file PathFinding.h.
|
private |
Definition at line 403 of file PathFinding.h.
|
private |
Definition at line 411 of file PathFinding.h.
|
private |
Definition at line 405 of file PathFinding.h.
|
private |
Definition at line 397 of file PathFinding.h.
|
private |
Definition at line 409 of file PathFinding.h.
|
private |
Definition at line 408 of file PathFinding.h.
|
private |
Definition at line 407 of file PathFinding.h.
|
private |
Definition at line 406 of file PathFinding.h.
|
private |
Definition at line 410 of file PathFinding.h.
|
private |
Definition at line 404 of file PathFinding.h.
|
private |
Definition at line 398 of file PathFinding.h.
|
private |
Definition at line 401 of file PathFinding.h.
|
private |
Definition at line 402 of file PathFinding.h.
|
private |
Definition at line 399 of file PathFinding.h.
|
staticconstexpr |
Definition at line 46 of file PathFinding.h.
|
private |
Definition at line 414 of file PathFinding.h.
|
private |
Definition at line 396 of file PathFinding.h.