26#define PATHFIND_ERROR_FARTHER -2
28#define PATHFIND_ERROR_CLOSED -3
34#define PATHFIND_FLAGS_TGT_OCCUPIED 0x01
37# define pathfind_trace_printf( lvl, ... ) debug_printf( lvl, __VA_ARGS__ )
45# define pathfind_trace_printf( ... )
48#define pathfind_cmp_eq( a, b ) (((a)->coords.x == (b)->coords.x) && (((a)->coords.y == (b)->coords.y)))
51 struct MOBILE* mover, uint8_t tgt_x, uint8_t tgt_y, uint8_t steps,
67#define pathfind_test_dir( x, y, dir_move, state, t ) (TILEMAP_ERROR_BLOCKED != tilemap_collide( x, y, dir_move, t ) && (NULL == mobile_get_facing( x, y, dir_move, state )) ? 1 : MOBILE_ERROR_BLOCKED)
General/shared state of the running engine in memory.
Definition: engines.h:196
A moving/interactive object in the world.
Definition: mobile.h:248
Definition: pathfind.h:14
uint8_t g
Distance from node to pathfinding start.
Definition: pathfind.h:19
uint8_t f
Total node cost.
Definition: pathfind.h:17
uint8_t h
Estimated distance from node to pathfinding target.
Definition: pathfind.h:21
int8_t dir
Direction of this node from its parent.
Definition: pathfind.h:23
X/Y coordinates of a tile on the current map.
Definition: tmstruct.h:33