diff options
author | matthijs <matthijs@openttd.org> | 2005-04-07 19:19:16 +0000 |
---|---|---|
committer | matthijs <matthijs@openttd.org> | 2005-04-07 19:19:16 +0000 |
commit | da3621c1804e6da9cefd712da9d0dd48fff61add (patch) | |
tree | 034da873c7ef2d41762a674839ff36339133a41e /npf.h | |
parent | 9c3813e21374c71da7c1c49cf52d68546815c1b0 (diff) | |
download | openttd-da3621c1804e6da9cefd712da9d0dd48fff61add.tar.xz |
(svn r2165) - Codechange: [NPF] Properly enummed NPF hash size, it is easily changable now.
- Codechange: [NPF] Improved the NPF hash calculation slightly.
- Codechange: [NPF] Increased hash size, should speed up somewhat.
Diffstat (limited to 'npf.h')
-rw-r--r-- | npf.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -8,6 +8,13 @@ //#define NPF_DEBUG //#define NPF_MARKROUTE //Mark the routes considered by the pathfinder by //mowing grass +enum { + NPF_HASH_BITS = 12, /* The size of the hash used in pathfinding. Just changing this value should be sufficient to change the hash size. Should be an even value. */ + /* Do no change below values */ + NPF_HASH_SIZE = 1 << NPF_HASH_BITS, + NPF_HASH_HALFBITS = NPF_HASH_BITS / 2, + NPF_HASH_HALFMASK = (1 << NPF_HASH_HALFBITS) - 1 +}; typedef struct NPFFindStationOrTileData { /* Meant to be stored in AyStar.targetdata */ TileIndex dest_coords; /* An indication of where the station is, for heuristic purposes, or the target tile */ |