|
OpenTTD Source 20260414-master-g8a7bc482ad
|
Public Types | |
| typedef Types::Tpf | Tpf |
| the pathfinder class (derived from THIS class) | |
| typedef Types::NodeList::Item | Node |
| this will be our node type | |
| typedef Node::Key | Key |
| key to hash tables | |
| typedef Types::TrackFollower | TrackFollower |
| TrackFollower. Need to typedef for gcc 2.95. | |
Public Member Functions | |
| Tpf & | Yapf () |
| Access the inherited path finder. | |
| bool | PfDetectDestination (Node &n) |
| Called by YAPF to detect if node ends in the desired destination. | |
| bool | PfDetectDestination (TileIndex tile, Trackdir td) |
| Called by YAPF to detect if node ends in the desired destination. | |
| bool | PfCalcEstimate (Node &n) |
| Called by YAPF to calculate cost estimate. | |
| Public Member Functions inherited from CYapfDestinationRailBase | |
| void | SetDestination (const Train *v, bool override_rail_type=false) |
| bool | IsCompatibleRailType (RailType rt) |
| RailTypes | GetCompatibleRailTypes () const |
Additional Inherited Members | |
| Protected Attributes inherited from CYapfDestinationRailBase | |
| RailTypes | compatible_railtypes |
Definition at line 73 of file yapf_destrail.hpp.
| typedef Node::Key CYapfDestinationAnySafeTileRailT< Types >::Key |
key to hash tables
Definition at line 77 of file yapf_destrail.hpp.
| typedef Types::NodeList::Item CYapfDestinationAnySafeTileRailT< Types >::Node |
this will be our node type
Definition at line 76 of file yapf_destrail.hpp.
| typedef Types::Tpf CYapfDestinationAnySafeTileRailT< Types >::Tpf |
the pathfinder class (derived from THIS class)
Definition at line 75 of file yapf_destrail.hpp.
| typedef Types::TrackFollower CYapfDestinationAnySafeTileRailT< Types >::TrackFollower |
TrackFollower. Need to typedef for gcc 2.95.
Definition at line 78 of file yapf_destrail.hpp.
|
inline |
Called by YAPF to calculate cost estimate.
Calculates distance to the destination adds it to the actual cost from origin and stores the sum to the Node::estimate.
| n | The node to start from. |
true iff the cost could be estimated. Definition at line 100 of file yapf_destrail.hpp.
|
inline |
Called by YAPF to detect if node ends in the desired destination.
| n | The current node. |
true iff the destination has been reached. Definition at line 87 of file yapf_destrail.hpp.
References PfDetectDestination().
Referenced by PfDetectDestination().
|
inline |
Called by YAPF to detect if node ends in the desired destination.
| tile | The reached tile. |
| td | The reached track direction. |
true iff the destination has been reached. Definition at line 93 of file yapf_destrail.hpp.
References IsSafeWaitingPosition(), IsWaitingPositionFree(), and Yapf().
|
inline |
Access the inherited path finder.
Definition at line 81 of file yapf_destrail.hpp.
Referenced by PfDetectDestination().