21 typedef typename Types::Tpf
Tpf;
23 typedef typename Types::NodeList::Item
Node;
24 typedef typename Node::Key
Key;
29 CYapfCostRoadT() : max_cost(0) {};
34 return *
static_cast<Tpf *
>(
this);
51 return Yapf().PfGetSettings().road_slope_penalty;
72 cost +=
Yapf().PfGetSettings().road_crossing_penalty;
82 cost +=
Yapf().PfGetSettings().road_stop_penalty;
92 cost +=
Yapf().PfGetSettings().road_stop_bay_occupied_penalty * (!rs->
IsFreeBay(0) + !rs->
IsFreeBay(1)) / 2;
108 inline void SetMaxCost(
int max_cost)
110 this->max_cost = max_cost;
116 int segment_cost = 0;
121 int parent_cost = (n.parent !=
nullptr) ? n.parent->cost : 0;
125 segment_cost +=
Yapf().OneTileCost(tile, trackdir);
129 if (
Yapf().PfDetectDestinationTile(tile, trackdir))
break;
133 if (this->max_cost > 0 && (parent_cost + segment_cost) > this->max_cost) {
145 if (!F.Follow(tile, trackdir))
break;
153 if (F.new_tile == n.key.tile && new_td == n.key.td)
return false;
157 tiles += F.tiles_skipped + 1;
160 segment_cost +=
Yapf().SlopeCost(tile, F.new_tile, trackdir);
165 int max_speed = F.GetSpeedLimit(&min_speed);
166 if (max_speed < max_veh_speed) segment_cost +=
YAPF_TILE_LENGTH * (max_veh_speed - max_speed) * (4 + F.tiles_skipped) / max_veh_speed;
167 if (min_speed > max_veh_speed) segment_cost +=
YAPF_TILE_LENGTH * (min_speed - max_veh_speed);
176 n.segment_last_tile = tile;
177 n.segment_last_td = trackdir;
180 n.cost = parent_cost + segment_cost;
186template <
class Types>
189 typedef typename Types::Tpf
Tpf;
190 typedef typename Types::TrackFollower TrackFollower;
191 typedef typename Types::NodeList::Item
Node;
192 typedef typename Node::Key
Key;
197 return *
static_cast<Tpf *
>(
this);
221template <
class Types>
224 typedef typename Types::Tpf
Tpf;
225 typedef typename Types::TrackFollower TrackFollower;
226 typedef typename Types::NodeList::Item
Node;
227 typedef typename Node::Key
Key;
232 StationID dest_station;
252 this->dest_station = StationID::Invalid();
258 const Station *GetDestinationStation()
const
260 return this->dest_station != StationID::Invalid() ?
Station::GetIfValid(this->dest_station) : nullptr;
267 return *
static_cast<Tpf *
>(
this);
280 if (this->dest_station != StationID::Invalid()) {
287 return tile == this->dest_tile &&
HasTrackdir(this->dest_trackdirs, td);
298 n.estimate = n.cost +
OctileDistanceCost(n.segment_last_tile, n.segment_last_td, this->dest_tile);
299 assert(n.estimate >= n.parent->estimate);
306template <
class Types>
309 typedef typename Types::Tpf
Tpf;
310 typedef typename Types::TrackFollower TrackFollower;
311 typedef typename Types::NodeList::Item
Node;
312 typedef typename Node::Key
Key;
318 return *
static_cast<Tpf *
>(
this);
326 TrackFollower F(
Yapf().GetVehicle());
327 if (F.Follow(old_node.segment_last_tile, old_node.segment_last_td)) {
328 Yapf().AddMultipleNodes(&old_node, F);
341 return pf.ChooseRoadTrack(v, tile, enterdir, path_found, path_cache);
362 Yapf().SetOrigin(src_tile, src_trackdirs);
363 Yapf().SetDestination(v);
366 path_found =
Yapf().FindPath(v);
371 if (node !=
nullptr) {
373 for (
Node *n = node; n->parent !=
nullptr; n = n->parent) steps++;
377 while (node->parent !=
nullptr) {
380 path_cache.emplace_back(node->GetTrackdir(), node->GetTile());
385 Node &best_next_node = *node;
386 assert(best_next_node.GetTile() == tile);
387 next_trackdir = best_next_node.GetTrackdir();
391 const Station *st =
Yapf().GetDestinationStation();
393 const RoadStop *stop = st->GetPrimaryRoadStop(v);
401 auto it = std::find_if(std::begin(path_cache), std::end(path_cache), [&non_cached_area](
const auto &pc) {
return !non_cached_area.
Contains(pc.tile); });
402 path_cache.erase(std::begin(path_cache), it);
406 return next_trackdir;
412 if (dst_tile == v->
tile) {
420 Yapf().SetDestination(v);
423 uint dist = UINT_MAX;
426 if (!
Yapf().FindPath(v))
return dist;
429 if (node !=
nullptr) {
432 dist = node->GetCostEstimate();
460 return pf.FindNearestDepot(v, tile, td, max_distance);
475 Yapf().SetMaxCost(max_distance);
486template <
class Tpf_,
template <
class Types>
class Tdestination>
491 typedef CFollowTrackRoad TrackFollower;
492 typedef CRoadNodeList NodeList;
497 typedef Tdestination<Types> PfDestination;
508 Trackdir td_ret = CYapfRoad::stChooseRoadTrack(v, tile, enterdir, path_found, path_cache);
522 return CYapfRoadAnyDepot::stFindNearestDepot(v, tile, trackdir, max_distance);
constexpr uint8_t FindFirstBit(T x)
Search the first set bit in a value.
constexpr T KillFirstBit(T value)
Clear the first bit in an integer.
CYapfBaseT - A-star type path finder base class.
bool PfCalcCost(Node &n, const TrackFollower *follower)
Called by YAPF to calculate the cost from the origin to the given node.
Types::TrackFollower TrackFollower
track follower helper
Types::NodeList::Item Node
this will be our node type
Node::Key Key
key to hash tables
Tpf & Yapf()
Access the inherited path finder.
int OneTileCost(TileIndex tile, Trackdir trackdir)
Return one tile cost.
Types::Tpf Tpf
pathfinder (derived from THIS class)
bool PfDetectDestinationTile(TileIndex tile, Trackdir td)
Called by YAPF to detect if node ends in the desired destination.
Tpf & Yapf()
Access the inherited path finder.
Types::NodeList::Item Node
this will be our node type
bool PfCalcEstimate(Node &n)
Called by YAPF to calculate cost estimate.
bool PfDetectDestination(Node &n)
Called by YAPF to detect if node ends in the desired destination.
Node::Key Key
key to hash tables
Types::Tpf Tpf
the pathfinder class (derived from THIS class)
bool PfCalcEstimate(Node &n)
Called by YAPF to calculate cost estimate.
Types::Tpf Tpf
the pathfinder class (derived from THIS class)
Node::Key Key
key to hash tables
Tpf & Yapf()
Access the inherited path finder.
Types::NodeList::Item Node
this will be our node type
bool PfDetectDestinationTile(TileIndex tile, Trackdir td)
Called by YAPF to detect if node ends in the desired destination.
bool PfDetectDestination(Node &n)
Called by YAPF to detect if node ends in the desired destination.
Types::NodeList::Item Node
this will be our node type
FindDepotData FindNearestDepot(const RoadVehicle *v, TileIndex tile, Trackdir td, int max_distance)
Find the best depot for a road vehicle.
Tpf & Yapf()
Access the inherited path finder.
void PfFollowNode(Node &old_node)
Called by YAPF to move from the given node to the next tile.
Node::Key Key
key to hash tables
char TransportTypeChar() const
Return debug report character to identify the transportation type.
bool SetOriginFromVehiclePos(const RoadVehicle *v)
Return true if the valid origin (tile/trackdir) was set from the current vehicle position.
Types::Tpf Tpf
the pathfinder class (derived from THIS class)
YAPF origin provider base class - used when origin is one tile / multiple trackdirs.
CYapfSegmentCostCacheNoneT - the formal only yapf cost cache provider that implements PfNodeCacheFetc...
YAPF template that uses Ttypes template argument to determine all YAPF components (base classes) from...
DiagDirection ReverseDiagDir(DiagDirection d)
Returns the reverse direction of the given DiagDirection.
DiagDirection
Enumeration for diagonal directions.
TrackStatus GetTileTrackStatus(TileIndex tile, TransportType mode, RoadTramType sub_mode, DiagDirection side)
Returns information about trackdirs and signal states.
int GetSlopePixelZ(int x, int y, bool ground_vehicle)
Return world Z coordinate of a given point of a tile.
static uint TileY(TileIndex tile)
Get the Y component of a tile.
static uint TileX(TileIndex tile)
Get the X component of a tile.
TileIndexDiff TileOffsByDiagDir(DiagDirection dir)
Convert a DiagDirection to a TileIndexDiff.
static const uint MAX_MAP_SIZE
Maximal map size = 4096.
TrackdirBits GetTrackdirBitsForRoad(TileIndex tile, RoadTramType rtt)
Wrapper around GetTileTrackStatus() and TrackStatusToTrackdirBits(), as for single tram bits GetTileT...
TileIndex CalcClosestStationTile(StationID station, TileIndex tile, StationType station_type)
Calculates the tile of given station that is closest to a given tile for this we assume the station i...
static const int YAPF_TILE_CORNER_LENGTH
Length (penalty) of a corner with YAPF.
static const int YAPF_ROADVEH_PATH_CACHE_SEGMENTS
Maximum segments of road vehicle path cache.
static const int YAPF_ROADVEH_PATH_CACHE_DESTINATION_LIMIT
Distance from destination road stops to not cache any further.
static const int YAPF_TILE_LENGTH
Length (penalty) of one tile with YAPF.
static bool IsRoadDepotTile(Tile t)
Return whether a tile is a road depot tile.
DiagDirection GetRoadDepotDirection(Tile t)
Get the direction of the exit of a road depot.
bool IsLevelCrossing(Tile t)
Return whether a tile is a level crossing.
Base class for roadstops.
A number of safeguards to prevent using unsafe methods.
StationType GetStationType(Tile t)
Get the station type of this tile.
bool IsRoadWaypoint(Tile t)
Is the station at t a road waypoint?
bool IsDriveThroughStopTile(Tile t)
Is tile t a drive through road stop station or waypoint?
StationID GetStationIndex(Tile t)
Get StationID from a tile.
RoadStopType GetRoadStopType(Tile t)
Get the road stop type of this tile.
StationType
Station types.
@ Bus
Road stop for busses.
@ Truck
Road stop for trucks.
@ RoadWaypoint
Waypoint for trucks and busses.
Definition of base types and functions in a cross-platform compatible way.
Helper container to find a depot.
uint16_t GetMaxSpeed() const
Get the maxmimum speed in km-ish/h a vehicle is allowed to reach on the way to the destination.
DestinationID GetDestination() const
Gets the destination of this order.
bool IsType(OrderType type) const
Check whether this order is of the given type.
bool Contains(TileIndex tile) const
Does this tile area contain a tile?
OrthogonalTileArea & Expand(int rad)
Expand a tile area by rad tiles in each direction, keeping within map bounds.
Container for each entry point of a drive through road stop.
int GetOccupied() const
Get the amount of occupied space in this drive through stop.
int GetLength() const
Get the length of this drive through stop.
A Stop for a Road Vehicle.
bool IsFreeBay(uint nr) const
Checks whether the given bay is free in this road stop.
RoadStop * GetNextRoadStop(const struct RoadVehicle *v) const
Get the next road stop accessible by this vehicle.
TileIndex xy
Position on the map.
const Entry & GetEntry(DiagDirection dir) const
Get the drive through road stop entry struct for the given direction.
static bool IsDriveThroughRoadStopContinuation(TileIndex rs, TileIndex next)
Checks whether the 'next' tile is still part of the road same drive through stop 'rs' in the same dir...
static RoadStop * GetByTile(TileIndex tile, RoadStopType type)
Find a roadstop at given tile.
Buses, trucks and trams belong to this class.
bool IsBus() const
Check whether a roadvehicle is a bus.
int GetDisplayMaxSpeed() const override
Gets the maximum speed in km-ish/h that can be sent into string parameters for string processing.
Trackdir GetVehicleTrackdir() const override
Returns the Trackdir on which the vehicle is currently located.
RoadType roadtype
NOSAVE: Roadtype of this vehicle.
static Station * GetIfValid(auto index)
TileArea bus_station
Tile area the bus 'station' part covers.
TileArea truck_station
Tile area the truck 'station' part covers.
bool HasArticulatedPart() const
Check if an engine has an articulated part.
Order current_order
The current order (+ status, like: loading).
TileIndex tile
Current tile index.
TileIndex dest_tile
Heading for this tile.
static bool IsTileType(Tile tile, TileType type)
Checks if a tile is a given tiletype.
static TileType GetTileType(Tile tile)
Get the tiletype of a given tile.
StrongType::Typedef< uint32_t, struct TileIndexTag, StrongType::Compare, StrongType::Integer, StrongType::Compatible< int32_t >, StrongType::Compatible< int64_t > > TileIndex
The index/ID of a Tile.
constexpr TileIndex INVALID_TILE
The very nice invalid tile marker.
static constexpr uint TILE_SIZE
Tile size in world coordinates.
@ Station
A tile of a station or airport.
@ Road
A tile with road and/or tram tracks.
OrthogonalTileArea TileArea
Shorthand for the much more common orthogonal tile area.
TrackdirBits TrackStatusToTrackdirBits(TrackStatus ts)
Returns the present-trackdir-information of a TrackStatus.
TrackdirBits DiagdirReachesTrackdirs(DiagDirection diagdir)
Returns all trackdirs that can be reached when entering a tile from a given (diagonal) direction.
bool IsDiagonalTrackdir(Trackdir trackdir)
Checks if a given Trackdir is diagonal.
bool HasTrackdir(TrackdirBits trackdirs, Trackdir trackdir)
Checks whether a TrackdirBits has a given Trackdir.
Trackdir DiagDirToDiagTrackdir(DiagDirection diagdir)
Maps a (4-way) direction to the diagonal trackdir that runs in that direction.
TrackdirBits TrackdirToTrackdirBits(Trackdir trackdir)
Maps a Trackdir to the corresponding TrackdirBits value.
DiagDirection TrackdirToExitdir(Trackdir trackdir)
Maps a trackdir to the (4-way) direction the tile is exited when following that trackdir.
Trackdir
Enumeration for tracks and directions.
@ INVALID_TRACKDIR
Flag for an invalid trackdir.
TrackdirBits
Allow incrementing of Trackdir variables.
@ TRACKDIR_BIT_NONE
No track build.
@ INVALID_TRACKDIR_BIT
Flag for an invalid trackdirbit value.
@ TRANSPORT_ROAD
Transport by road vehicle.
Base includes/functions for YAPF.
int OctileDistanceCost(TileIndex start_tile, Trackdir start_td, TileIndex destination_tile)
Calculates the octile distance cost between a starting tile / trackdir and a destination tile.
Node tailored for road pathfinding.
FindDepotData YapfRoadVehicleFindNearestDepot(const RoadVehicle *v, int max_distance)
Used when user sends road vehicle to the nearest depot or if road vehicle needs servicing using YAPF.
Trackdir YapfRoadVehicleChooseTrack(const RoadVehicle *v, TileIndex tile, DiagDirection enterdir, TrackdirBits trackdirs, bool &path_found, RoadVehPathCache &path_cache)
Finds the best path for given road vehicle using YAPF.
@ Station
station encountered (could be a target next time)
@ RoadVehicle
Default zoom level for the road vehicle view.