-
Notifications
You must be signed in to change notification settings - Fork 4
/
micropather.h
396 lines (321 loc) · 12.4 KB
/
micropather.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
/*
Copyright (c) 2000-2009 Lee Thomason (www.grinninglizard.com)
Grinning Lizard Utilities.
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software for any
purpose, including commercial applications, and to alter it and
redistribute it freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product documentation
would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and
must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
#ifndef GRINNINGLIZARD_MICROPATHER_INCLUDED
#define GRINNINGLIZARD_MICROPATHER_INCLUDED
/** @mainpage MicroPather
MicroPather is a path finder and A* solver (astar or a-star) written in platform independent
C++ that can be easily integrated into existing code. MicroPather focuses on being a path
finding engine for video games but is a generic A* solver. MicroPather is open source, with
a license suitable for open source or commercial use.
An overview of using MicroPather is in the <A HREF="../readme.htm">readme</A> or
on the Grinning Lizard website: http://grinninglizard.com/micropather/
*/
#include <vector>
#include <float.h>
#ifdef _DEBUG
#ifndef DEBUG
#define DEBUG
#endif
#endif
#if defined( _DEBUG )
# if defined( _MSC_VER )
# define MPASSERT( x ) if ( !(x)) { _asm { int 3 } }
# else
# include <assert.h>
# define MPASSERT assert
# endif
#else
# define MPASSERT( x ) {}
#endif
#if defined(_MSC_VER) && (_MSC_VER >= 1400 )
#include <stdlib.h>
typedef uintptr_t MP_UPTR;
#elif defined (__GNUC__) && (__GNUC__ >= 3 )
#include <stdlib.h>
typedef uintptr_t MP_UPTR;
#else
// Assume not 64 bit pointers. Get a new compiler.
typedef unsigned MP_UPTR;
#endif
//#define MICROPATHER_STRESS
namespace micropather
{
/**
Used to pass the cost of states from the cliet application to MicroPather. This
structure is copied in a vector.
@sa AdjacentCost
*/
struct StateCost
{
void* state; ///< The state as a void*
float cost; ///< The cost to the state. Use FLT_MAX for infinite cost.
};
/**
A pure abstract class used to define a set of callbacks.
The client application inherits from
this class, and the methods will be called when MicroPather::Solve() is invoked.
The notion of a "state" is very important. It must have the following properties:
- Unique
- Unchanging (unless MicroPather::Reset() is called)
If the client application represents states as objects, then the state is usually
just the object cast to a void*. If the client application sees states as numerical
values, (x,y) for example, then state is an encoding of these values. MicroPather
never interprets or modifies the value of state.
*/
class Graph
{
public:
virtual ~Graph() {}
/**
Return the least possible cost between 2 states. For example, if your pathfinding
is based on distance, this is simply the straight distance between 2 points on the
map. If you pathfinding is based on minimum time, it is the minimal travel time
between 2 points given the best possible terrain.
*/
virtual float LeastCostEstimate( void* stateStart, void* stateEnd ) = 0;
/**
Return the exact cost from the given state to all its neighboring states. This
may be called multiple times, or cached by the solver. It *must* return the same
exact values for every call to MicroPather::Solve(). It should generally be a simple,
fast function with no callbacks into the pather.
*/
virtual void AdjacentCost( void* state, std::vector< micropather::StateCost > *adjacent ) = 0;
/**
This function is only used in DEBUG mode - it dumps output to stdout. Since void*
aren't really human readable, normally you print out some concise info (like "(1,2)")
without an ending newline.
*/
virtual void PrintStateInfo( void* state ) = 0;
};
class PathNode;
struct NodeCost
{
PathNode* node;
float cost;
};
/*
Every state (void*) is represented by a PathNode in MicroPather. There
can only be one PathNode for a given state.
*/
class PathNode
{
public:
void Init( unsigned _frame,
void* _state,
float _costFromStart,
float _estToGoal,
PathNode* _parent );
void Clear() {
memset( this, 0, sizeof( PathNode ) );
numAdjacent = -1;
cacheIndex = -1;
}
void InitSentinel() {
Clear();
Init( 0, 0, FLT_MAX, FLT_MAX, 0 );
prev = next = this;
}
void *state; // the client state
float costFromStart; // exact
float estToGoal; // estimated
float totalCost; // could be a function, but save some math.
PathNode* parent; // the parent is used to reconstruct the path
unsigned frame; // unique id for this path, so the solver can distinguish
// correct from stale values
int numAdjacent; // -1 is unknown & needs to be queried
int cacheIndex; // position in cache
PathNode *child[2]; // Binary search in the hash table. [left, right]
PathNode *next, *prev; // used by open queue
bool inOpen;
bool inClosed;
void Unlink() {
next->prev = prev;
prev->next = next;
next = prev = 0;
}
void AddBefore( PathNode* addThis ) {
addThis->next = this;
addThis->prev = prev;
prev->next = addThis;
prev = addThis;
}
#ifdef DEBUG
void CheckList()
{
MPASSERT( totalCost == FLT_MAX );
for( PathNode* it = next; it != this; it=it->next ) {
MPASSERT( it->prev == this || it->totalCost >= it->prev->totalCost );
MPASSERT( it->totalCost <= it->next->totalCost );
}
}
#endif
void CalcTotalCost() {
if ( costFromStart < FLT_MAX && estToGoal < FLT_MAX )
totalCost = costFromStart + estToGoal;
else
totalCost = FLT_MAX;
}
private:
void operator=( const PathNode& );
};
/* Memory manager for the PathNodes. */
class PathNodePool
{
public:
PathNodePool( unsigned allocate, unsigned typicalAdjacent );
~PathNodePool();
// Free all the memory except the first block. Resets all memory.
void Clear();
// Essentially:
// pNode = Find();
// if ( !pNode )
// pNode = New();
//
// Get the PathNode associated with this state. If the PathNode already
// exists (allocated and is on the current frame), it will be returned.
// Else a new PathNode is allocated and returned. The returned object
// is always fully initialized.
//
// NOTE: if the pathNode exists (and is current) all the initialization
// parameters are ignored.
PathNode* GetPathNode( unsigned frame,
void* _state,
float _costFromStart,
float _estToGoal,
PathNode* _parent );
// Store stuff in cache
bool PushCache( const NodeCost* nodes, int nNodes, int* start );
// Get neighbors from the cache
// Note - always access this with an offset. Can get re-allocated.
void GetCache( int start, int nNodes, NodeCost* nodes ) {
MPASSERT( start >= 0 && start < cacheCap );
MPASSERT( nNodes > 0 );
MPASSERT( start + nNodes <= cacheCap );
memcpy( nodes, &cache[start], sizeof(NodeCost)*nNodes );
}
// Return all the allocated states. Useful for visuallizing what
// the pather is doing.
void AllStates( unsigned frame, std::vector< void* >* stateVec );
private:
struct Block
{
Block* nextBlock;
PathNode pathNode[1];
};
unsigned Hash( void* voidval );
unsigned HashSize() const { return 1<<hashShift; }
unsigned HashMask() const { return ((1<<hashShift)-1); }
void AddPathNode( unsigned key, PathNode* p );
Block* NewBlock();
PathNode* Alloc();
PathNode** hashTable;
Block* firstBlock;
Block* blocks;
NodeCost* cache;
int cacheCap;
int cacheSize;
PathNode freeMemSentinel;
unsigned allocate; // how big a block of pathnodes to allocate at once
unsigned nAllocated; // number of pathnodes allocated (from Alloc())
unsigned nAvailable; // number available for allocation
unsigned hashShift;
unsigned totalCollide;
};
/**
Create a MicroPather object to solve for a best path. Detailed usage notes are
on the main page.
*/
class MicroPather
{
friend class micropather::PathNode;
public:
enum
{
SOLVED,
NO_SOLUTION,
START_END_SAME,
};
/**
Construct the pather, passing a pointer to the object that implements
the Graph callbacks.
@param graph The "map" that implements the Graph callbacks.
@param allocate How many states should be internally allocated at a time. This
can be hard to get correct. The higher the value, the more memory
MicroPather will use.
- If you have a small map (a few thousand states?) it may make sense
to pass in the maximum value. This will cache everything, and MicroPather
will only need one main memory allocation. For a chess board, allocate
would be set to 8x8 (64)
- If your map is large, something like 1/4 the number of possible
states is good. For example, Lilith3D normally has about 16,000
states, so 'allocate' should be about 4000.
- If your state space is huge, use a multiple (5-10x) of the normal
path. "Occasionally" call Reset() to free unused memory.
@param typicalAdjacent Used to determine cache size. The typical number of adjacent states
to a given state. (On a chessboard, 8.) Higher values use a little
more memory.
*/
MicroPather( Graph* graph, unsigned allocate = 250, unsigned typicalAdjacent=6 );
~MicroPather();
/**
Solve for the path from start to end.
@param startState Input, the starting state for the path.
@param endState Input, the ending state for the path.
@param path Output, a vector of states that define the path. Empty if not found.
@param totalCost Output, the cost of the path, if found.
@return Success or failure, expressed as SOLVED, NO_SOLUTION, or START_END_SAME.
*/
int Solve( void* startState, void* endState, std::vector< void* >* path, float* totalCost );
/**
Find all the states within a given cost from startState.
@param startState Input, the starting state for the path.
@param near All the states within 'maxCost' of 'startState', and cost to that state.
@param maxCost Input, the maximum cost that will be returned. (Higher values return
larger 'near' sets and take more time to compute.)
@return Success or failure, expressed as SOLVED or NO_SOLUTION.
*/
int SolveForNearStates( void* startState, std::vector< StateCost >* near, float maxCost );
/** Should be called whenever the cost between states or the connection between states changes.
Also frees overhead memory used by MicroPather, and calling will free excess memory.
*/
void Reset();
/**
Return the "checksum" of the last path returned by Solve(). Useful for debugging,
and a quick way to see if 2 paths are the same.
*/
MP_UPTR Checksum() { return checksum; }
// Debugging function to return all states that were used by the last "solve"
void StatesInPool( std::vector< void* >* stateVec );
private:
MicroPather( const MicroPather& ); // undefined and unsupported
void operator=( const MicroPather ); // undefined and unsupported
void GoalReached( PathNode* node, void* start, void* end, std::vector< void* > *path );
void GetNodeNeighbors( PathNode* node, std::vector< NodeCost >* neighborNode );
#ifdef DEBUG
//void DumpStats();
#endif
PathNodePool pathNodePool;
std::vector< StateCost > stateCostVec; // local to Solve, but put here to reduce memory allocation
std::vector< NodeCost > nodeCostVec; // local to Solve, but put here to reduce memory allocation
Graph* graph;
unsigned frame; // incremented with every solve, used to determine if cached data needs to be refreshed
MP_UPTR checksum; // the checksum of the last successful "Solve".
};
}; // namespace grinliz
#endif