MetaTile Struct Reference
#include <map.h>
List of all members.
Detailed Description
A meta tile stores additional information about a location on a tile map.
This is information that doesn't need to be repeated for each tile in each layer of the map.
Definition at line 51 of file map.h.
|
Public Member Functions |
| MetaTile () |
| Constructor.
|
Public Attributes |
int | Fcost |
| Estimation of total path cost.
|
int | Gcost |
| Cost from start to this location.
|
int | Hcost |
| Estimated cost to goal.
|
int | whichList |
| No list, open list or closed list.
|
int | parentX |
| X coordinate of parent tile.
|
int | parentY |
| Y coordinate of parent tile.
|
unsigned char | blockmask |
| Blocking properties of this tile.
|
Constructor & Destructor Documentation
MetaTile::MetaTile |
( |
|
) |
[inline] |
Constructor.
Definition at line 56 of file map.h.
Member Data Documentation
Estimation of total path cost.
Definition at line 59 of file map.h.
Cost from start to this location.
Definition at line 60 of file map.h.
Estimated cost to goal.
Definition at line 61 of file map.h.
No list, open list or closed list.
Definition at line 62 of file map.h.
X coordinate of parent tile.
Definition at line 63 of file map.h.
Y coordinate of parent tile.
Definition at line 64 of file map.h.
Blocking properties of this tile.
Definition at line 65 of file map.h.
The documentation for this struct was generated from the following file: