OpenTTD
|
Data Structures | |
struct | TILE |
Public Types | |
typedef Types::Tpf | Tpf |
the pathfinder class (derived from THIS class) | |
typedef Types::TrackFollower | TrackFollower |
typedef Types::NodeList::Titem | Node |
this will be our node type | |
typedef Node::Key | Key |
key to hash tables | |
typedef Node::CachedData | CachedData |
Public Member Functions | |
int | SlopeCost (TileIndex tile, Trackdir td) |
int | CurveCost (Trackdir td1, Trackdir td2) |
int | SwitchCost (TileIndex tile1, TileIndex tile2, DiagDirection exitdir) |
int | OneTileCost (TileIndex &tile, Trackdir trackdir) |
Return one tile cost (base cost + level crossing penalty). More... | |
bool | IsAnyStationTileReserved (TileIndex tile, Trackdir trackdir, int skipped) |
Check for a reserved station platform. More... | |
int | ReservationCost (Node &n, TileIndex tile, Trackdir trackdir, int skipped) |
The cost for reserved tiles, including skipped ones. More... | |
int | SignalCost (Node &n, TileIndex tile, Trackdir trackdir) |
int | PlatformLengthPenalty (int platform_length) |
void | SetMaxCost (int max_cost) |
bool | PfCalcCost (Node &n, const TrackFollower *tf) |
Called by YAPF to calculate the cost from the origin to the given node. More... | |
bool | CanUseGlobalCache (Node &n) const |
void | ConnectNodeToCachedData (Node &n, CachedData &ci) |
void | DisableCache (bool disable) |
Data Fields | |
bool | m_stopped_on_first_two_way_signal |
Protected Member Functions | |
Tpf & | Yapf () |
to access inherited path finder | |
Protected Attributes | |
int | m_max_cost |
CBlobT< int > | m_sig_look_ahead_costs |
bool | m_disable_cache |
Static Protected Attributes | |
static const int | s_max_segment_cost = 10000 |
Additional Inherited Members | |
![]() | |
static bool | stSlopeCost (TileIndex tile, Trackdir td) |
Does the given track direction on the given tile yield an uphill penalty? More... | |
Definition at line 18 of file yapf_costrail.hpp.
|
inline |
Check for a reserved station platform.
Definition at line 153 of file yapf_costrail.hpp.
References HasStationReservation(), ReverseTrackdir(), TileOffsByDiagDir(), and TrackdirToExitdir().
|
inline |
Return one tile cost (base cost + level crossing penalty).
Definition at line 128 of file yapf_costrail.hpp.
References GetTileType(), IsDiagonalTrackdir(), IsLevelCrossing(), MP_ROAD, CYapfCostRailT< Types >::Yapf(), YAPF_TILE_CORNER_LENGTH, and YAPF_TILE_LENGTH.
|
inline |
Called by YAPF to calculate the cost from the origin to the given node.
Calculates only the cost of given node, adds it to the parent node cost and stores the result into Node::m_cost member
Definition at line 279 of file yapf_costrail.hpp.
|
inline |
The cost for reserved tiles, including skipped ones.
Definition at line 163 of file yapf_costrail.hpp.
References CBlobT< T >::Size().
|
protected |
Definition at line 65 of file yapf_costrail.hpp.