dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
pathfind.h
Go to the documentation of this file.
1
2#ifndef PATHFIND_H
3#define PATHFIND_H
4
15 struct TILEMAP_COORDS coords;
17 uint8_t f;
19 uint8_t g;
21 uint8_t h;
23 int8_t dir;
24};
25
26#define PATHFIND_ERROR_FARTHER -2
27
28#define PATHFIND_ERROR_CLOSED -3
29
34#define PATHFIND_FLAGS_TGT_OCCUPIED 0x01
35
36#ifdef PATHFIND_TRACE
37# define pathfind_trace_printf( lvl, ... ) debug_printf( lvl, __VA_ARGS__ )
38#else
45# define pathfind_trace_printf( ... )
46#endif /* PATHFIND_TRACE */
47
48#define pathfind_cmp_eq( a, b ) (((a)->coords.x == (b)->coords.x) && (((a)->coords.y == (b)->coords.y)))
49
50int8_t pathfind_start(
51 struct MOBILE* mover, uint8_t tgt_x, uint8_t tgt_y, uint8_t steps,
52 uint8_t flags, struct DSEKAI_STATE* state );
53
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)
68 /* dsekai_pathfind */
70
71#endif /* !PATHFIND_H */
72
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