10#include "../../stdafx.h"
11#include "../../ship.h"
12#include "../../vehicle_func.h"
17#include "../water_regions.h"
19#include "../../safeguards.h"
21constexpr int NUMBER_OR_WATER_REGIONS_LOOKAHEAD = 4;
22constexpr int MAX_SHIP_PF_NODES = (NUMBER_OR_WATER_REGIONS_LOOKAHEAD + 1) * WATER_REGION_NUMBER_OF_TILES * 4;
24constexpr int SHIP_LOST_PATH_LENGTH = 8;
29 typedef typename Types::Tpf
Tpf;
30 typedef typename Types::TrackFollower TrackFollower;
31 typedef typename Types::NodeList::Item
Node;
32 typedef typename Node::Key
Key;
39 bool has_intermediate_dest =
false;
44 void SetDestination(
const Ship *v)
51 this->dest_station = StationID::Invalid();
59 this->has_intermediate_dest =
true;
61 this->intermediate_dest_region_patch = water_region_patch;
68 return *
static_cast<Tpf*
>(
this);
75 return this->PfDetectDestinationTile(n.GetTile(), n.GetTrackdir());
80 if (this->has_intermediate_dest) {
97 const TileIndex destination_tile = this->has_intermediate_dest ? this->intermediate_dest_tile : this->dest_tile;
104 n.estimate = n.cost +
OctileDistanceCost(n.GetTile(), n.GetTrackdir(), destination_tile);
105 assert(n.estimate >= n.parent->estimate);
111template <
class Types>
114 typedef typename Types::Tpf
Tpf;
115 typedef typename Types::TrackFollower TrackFollower;
116 typedef typename Types::NodeList::Item
Node;
117 typedef typename Node::Key
Key;
123 return *
static_cast<Tpf*
>(
this);
126 std::vector<WaterRegionDesc> water_region_corridor;
136 TrackFollower F(
Yapf().GetVehicle());
137 if (F.Follow(old_node.key.tile, old_node.key.td)) {
138 if (this->water_region_corridor.empty()
139 || std::ranges::find(this->water_region_corridor,
GetWaterRegionInfo(F.new_tile)) != this->water_region_corridor.end()) {
140 Yapf().AddMultipleNodes(&old_node, F);
148 this->water_region_corridor.clear();
149 for (
const WaterRegionPatchDesc &path_entry : path) this->water_region_corridor.push_back(path_entry);
169 TrackFollower follower(v);
170 if (follower.Follow(tile, dir)) {
172 const TrackdirBits dirs_without_90_degree = dirs & ~TrackdirCrossesTrackdirs(dir);
183 for (
int i = 0; i < path_length; ++i) {
186 path_cache.push_back(tile_dir.second);
192 std::reverse(std::begin(path_cache), std::end(path_cache));
194 const Trackdir result = path_cache.back().trackdir;
195 path_cache.pop_back();
200 bool &path_found, ShipPathCache &path_cache,
Trackdir &best_origin_dir)
202 const std::vector<WaterRegionPatchDesc> high_level_path =
YapfShipFindWaterRegionPath(v, tile, NUMBER_OR_WATER_REGIONS_LOOKAHEAD + 1);
203 if (high_level_path.empty()) {
212 for (
int attempt = 0; attempt < 2; ++attempt) {
213 Tpf pf(MAX_SHIP_PF_NODES);
216 pf.SetOrigin(v->
tile, forward_dirs | reverse_dirs);
217 pf.SetDestination(v);
218 const bool is_intermediate_destination =
static_cast<int>(high_level_path.size()) >= NUMBER_OR_WATER_REGIONS_LOOKAHEAD + 1;
219 if (is_intermediate_destination) pf.SetIntermediateDestination(high_level_path.back());
223 if (attempt > 0) pf.RestrictSearch(high_level_path);
226 path_found = pf.FindPath(v);
227 Node *node = pf.GetBestNode();
228 if (attempt == 0 && !path_found)
continue;
231 if (!path_found)
return CreateRandomPath(v, path_cache, SHIP_LOST_PATH_LENGTH);
239 while (node->parent) {
242 const bool node_water_patch_on_high_level_path = std::ranges::find(high_level_path, node_water_patch) != high_level_path.end();
243 const bool add_full_path = !is_intermediate_destination && node_water_patch != end_water_patch;
247 if (add_full_path || !node_water_patch_on_high_level_path || node_water_patch == start_water_patch) {
248 path_cache.push_back(node->GetTrackdir());
254 assert(node->GetTile() == v->
tile);
257 best_origin_dir = node->GetTrackdir();
268 const Trackdir result = path_cache.back().trackdir;
269 path_cache.pop_back();
272 if (start_water_patch == end_water_patch) path_cache.clear();
289 bool path_found =
false;
290 ShipPathCache dummy_cache;
293 if (trackdir ==
nullptr) {
298 (void)ChooseShipTrack(v, v->
tile, forward_dirs, reverse_dirs, path_found, dummy_cache, best_origin_dir);
299 return path_found && best_origin_dir == reverse_dir;
304 (void)ChooseShipTrack(v, v->
tile,
TRACKDIR_BIT_NONE, reverse_dirs, path_found, dummy_cache, best_origin_dir);
312template <
class Types>
315 typedef typename Types::Tpf
Tpf;
316 typedef typename Types::TrackFollower TrackFollower;
317 typedef typename Types::NodeList::Item
Node;
318 typedef typename Node::Key
Key;
323 return *
static_cast<Tpf*
>(
this);
334 return Yapf().PfGetSettings().ship_curve90_penalty;
337 return Yapf().PfGetSettings().ship_curve45_penalty;
350 const bool odd_x =
TileX(tile) & 1;
351 const bool odd_y =
TileY(tile) & 1;
369 c += this->CurveCost(n.parent->GetTrackdir(), n.GetTrackdir());
375 return v->type == VEH_SHIP && !v->vehstatus.Test(VehState::Hidden);
389 if (speed_frac > 0) c +=
YAPF_TILE_LENGTH * (1 + tf->tiles_skipped) * speed_frac / (256 - speed_frac);
392 n.cost = n.parent->cost + c;
401template <
class Tpf_,
class Ttrack_follower,
class Tnode_list>
418struct CYapfShip :
CYapfT<CYapfShip_TypesT<CYapfShip, CFollowTrackWater, CShipNodeListExitDir>> {
419 explicit CYapfShip(
int max_nodes) { this->max_search_nodes = max_nodes; }
427 const Trackdir td_ret = CYapfShip::ChooseShipTrack(v, tile, origin_dirs,
TRACKDIR_BIT_NONE, path_found, path_cache, best_origin_dir);
433 return CYapfShip::CheckShipReverse(v, trackdir);
debug_inline constexpr bool HasBit(const T x, const uint8_t y)
Checks if a bit in a value is set.
constexpr uint CountBits(T value)
Counts the number of set bits in a variable.
CYapfBaseT - A-star type path finder base class.
Cost Provider module of YAPF for ships.
Node::Key Key
key to hash tables.
bool PfCalcCost(Node &n, const TrackFollower *tf)
Called by YAPF to calculate the cost from the origin to the given node.
static bool IsPreferredShipDirection(TileIndex tile, Trackdir td)
Whether the provided direction is a preferred direction for a given tile.
Types::NodeList::Item Node
this will be our node type.
Tpf & Yapf()
to access inherited path finder
Types::Tpf Tpf
the pathfinder class (derived from THIS class).
Types::Tpf Tpf
the pathfinder class (derived from THIS class).
bool PfCalcEstimate(Node &n)
Called by YAPF to calculate cost estimate.
Types::NodeList::Item Node
this will be our node type.
bool PfDetectDestination(Node &n)
Called by YAPF to detect if node ends in the desired destination.
Node::Key Key
key to hash tables.
Tpf & Yapf()
To access inherited path finder.
Node Follower module of YAPF for ships.
static std::pair< TileIndex, Trackdir > GetRandomFollowUpTileTrackdir(const Ship *v, TileIndex tile, Trackdir dir)
Returns a random tile/trackdir that can be reached from the current tile/trackdir,...
char TransportTypeChar() const
Return debug report character to identify the transportation type.
void PfFollowNode(Node &old_node)
Called by YAPF to move from the given node to the next tile.
static Trackdir GetRandomTrackdir(TrackdirBits trackdirs)
Returns a random trackdir out of a set of trackdirs.
Node::Key Key
key to hash tables.
static Trackdir CreateRandomPath(const Ship *v, ShipPathCache &path_cache, int path_length)
Creates a random path, avoids 90 degree turns.
Types::NodeList::Item Node
this will be our node type.
Types::Tpf Tpf
the pathfinder class (derived from THIS class).
void RestrictSearch(const std::vector< WaterRegionPatchDesc > &path)
Restricts the search by creating corridor or water regions through which the ship is allowed to trave...
static bool CheckShipReverse(const Ship *v, Trackdir *trackdir)
Check whether a ship should reverse to reach its destination.
Tpf & Yapf()
to access inherited path finder
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...
Hash table based node list multi-container class.
Iterate over all vehicles on a tile.
DiagDirection ReverseDiagDir(DiagDirection d)
Returns the reverse direction of the given DiagDirection.
DiagDirection
Enumeration for diagonal directions.
TrackStatus GetTileTrackStatus(TileIndex tile, TransportType mode, uint sub_mode, DiagDirection side)
Returns information about trackdirs and signal states.
static debug_inline uint TileY(TileIndex tile)
Get the Y component of a tile.
static debug_inline uint TileX(TileIndex tile)
Get the X component of a tile.
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_TILE_LENGTH
Length (penalty) of one tile with YAPF.
uint32_t RandomRange(uint32_t limit, const std::source_location location=std::source_location::current())
Pick a random number between 0 and limit - 1, inclusive.
bool IsShipDestinationTile(TileIndex tile, StationID station)
Test if a tile is a docking tile for the given station.
WaterClass GetEffectiveWaterClass(TileIndex tile)
Determine the effective WaterClass for a ship travelling on a tile.
Config struct of YAPF for ships.
CYapfSegmentCostCacheNoneT< Types > PfCache
Segment cost cache provider.
CYapfShip_TypesT< Tpf_, Ttrack_follower, Tnode_list > Types
Shortcut for this struct type.
CYapfFollowShipT< Types > PfFollow
Node follower.
CYapfBaseT< Types > PfBase
Pathfinder components (modules).
CYapfOriginTileT< Types > PfOrigin
Origin provider.
Ttrack_follower TrackFollower
Track follower helper class.
CYapfDestinationTileWaterT< Types > PfDestination
Destination/distance provider.
CYapfCostShipT< Types > PfCost
Cost provider.
DestinationID GetDestination() const
Gets the destination of this order.
bool IsType(OrderType type) const
Check whether this order is of the given type.
Information about a ship vehicle.
uint8_t ocean_speed_frac
Fraction of maximum speed for ocean tiles.
uint8_t canal_speed_frac
Fraction of maximum speed for canal/river tiles.
All ships have this type.
TrackBits state
The "track" the ship is following.
Trackdir GetVehicleTrackdir() const override
Returns the Trackdir on which the vehicle is currently located.
Direction direction
facing
Vehicle * first
NOSAVE: pointer to the first vehicle in the chain.
Order current_order
The current order (+ status, like: loading)
TileIndex tile
Current tile index.
TileIndex dest_tile
Heading for this tile.
Describes a single interconnected patch of water within a particular water region.
Trackdir RemoveFirstTrackdir(TrackdirBits *trackdirs)
Removes first Trackdir from TrackdirBits and returns it.
Track TrackdirToTrack(Trackdir trackdir)
Returns the Track that a given Trackdir represents.
DiagDirection VehicleExitDir(Direction direction, TrackBits track)
Determine the side in which the vehicle will leave the tile.
TrackdirBits TrackStatusToTrackdirBits(TrackStatus ts)
Returns the present-trackdir-information of a TrackStatus.
Trackdir NextTrackdir(Trackdir trackdir)
Maps a trackdir to the trackdir that you will end up on if you go straight ahead.
Trackdir ReverseTrackdir(Trackdir trackdir)
Maps a trackdir to the reverse trackdir.
bool IsValidTrackdir(Trackdir trackdir)
Checks if a Trackdir is valid for non-road vehicles.
Trackdir FindFirstTrackdir(TrackdirBits trackdirs)
Returns first Trackdir from TrackdirBits or INVALID_TRACKDIR.
TrackdirBits TrackdirCrossesTrackdirs(Trackdir trackdir)
Maps a trackdir to all trackdirs that make 90 deg turns with it.
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.
TrackdirBits TrackdirToTrackdirBits(Trackdir trackdir)
Maps a Trackdir to the corresponding TrackdirBits value.
Trackdir
Enumeration for tracks and directions.
@ TRACKDIR_X_NE
X-axis and direction to north-east.
@ INVALID_TRACKDIR
Flag for an invalid trackdir.
@ TRACKDIR_Y_SE
Y-axis and direction to south-east.
@ TRACKDIR_X_SW
X-axis and direction to south-west.
@ TRACKDIR_Y_NW
Y-axis and direction to north-west.
TrackdirBits
Allow incrementing of Trackdir variables.
@ TRACKDIR_BIT_LEFT_S
Track left, direction south.
@ TRACKDIR_BIT_LOWER_E
Track lower, direction east.
@ TRACKDIR_BIT_NONE
No track build.
@ TRACKDIR_BIT_RIGHT_N
Track right, direction north.
@ TRACKDIR_BIT_UPPER_W
Track upper, direction west.
@ INVALID_TRACKDIR_BIT
Flag for an invalid trackdirbit value.
Track
These are used to specify a single track.
@ INVALID_TRACK
Flag for an invalid track.
@ TRANSPORT_WATER
Transport over water.
bool IsDockingTile(Tile t)
Checks whether the tile is marked as a dockling tile.
WaterRegionDesc GetWaterRegionInfo(TileIndex tile)
Returns basic water region information for the provided tile.
WaterRegionPatchDesc GetWaterRegionPatchInfo(TileIndex tile)
Returns basic water region patch information for the provided tile.
TileIndex GetWaterRegionCenterTile(const WaterRegionDesc &water_region)
Returns the center tile of a particular water region.
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 ship pathfinding.
bool YapfShipCheckReverse(const Ship *v, Trackdir *trackdir)
Returns true if it is better to reverse the ship before leaving depot using YAPF.
Track YapfShipChooseTrack(const Ship *v, TileIndex tile, bool &path_found, ShipPathCache &path_cache)
Ship controller helper - path finder invoker.
std::vector< WaterRegionPatchDesc > YapfShipFindWaterRegionPath(const Ship *v, TileIndex start_tile, int max_returned_path_length)
Finds a path at the water region level.
Implementation of YAPF for water regions, which are used for finding intermediate ship destinations.