OpenTTD Source  20241108-master-g80f628063a
pbs.h File Reference

PBS support routines. More...

#include "tile_type.h"
#include "direction_type.h"
#include "track_type.h"
#include "vehicle_type.h"

Go to the source code of this file.

Data Structures

struct  PBSTileInfo
 This struct contains information about the end of a reserved path. More...
 

Functions

TrackBits GetReservedTrackbits (TileIndex t)
 Get the reserved trackbits for any tile, regardless of type. More...
 
void SetRailStationPlatformReservation (TileIndex start, DiagDirection dir, bool b)
 Set the reservation for a complete station platform. More...
 
bool TryReserveRailTrack (TileIndex tile, Track t, bool trigger_stations=true)
 Try to reserve a specific track on a tile. More...
 
void UnreserveRailTrack (TileIndex tile, Track t)
 Lift the reservation of a specific track on a tile. More...
 
PBSTileInfo FollowTrainReservation (const Train *v, Vehicle **train_on_res=nullptr)
 Follow a train reservation to the last tile. More...
 
bool IsSafeWaitingPosition (const Train *v, TileIndex tile, Trackdir trackdir, bool include_line_end, bool forbid_90deg=false)
 Determine whether a certain track on a tile is a safe position to end a path. More...
 
bool IsWaitingPositionFree (const Train *v, TileIndex tile, Trackdir trackdir, bool forbid_90deg=false)
 Check if a safe position is free. More...
 
TrainGetTrainForReservation (TileIndex tile, Track track)
 Find the train which has reserved a specific path. More...
 
bool HasReservedTracks (TileIndex tile, TrackBits tracks)
 Check whether some of tracks is reserved on a tile. More...
 

Detailed Description

PBS support routines.

Definition in file pbs.h.

Function Documentation

◆ FollowTrainReservation()

◆ GetReservedTrackbits()

TrackBits GetReservedTrackbits ( TileIndex  t)

◆ GetTrainForReservation()

◆ HasReservedTracks()

bool HasReservedTracks ( TileIndex  tile,
TrackBits  tracks 
)
inline

Check whether some of tracks is reserved on a tile.

Parameters
tilethe tile
tracksthe tracks to test
Returns
true if at least on of tracks is reserved

Definition at line 58 of file pbs.h.

References GetReservedTrackbits(), and TRACK_BIT_NONE.

Referenced by DeleteLastWagon(), ExtendTrainReservation(), FollowReservation(), GetTrainForReservation(), and TryPathReserve().

◆ IsSafeWaitingPosition()

bool IsSafeWaitingPosition ( const Train v,
TileIndex  tile,
Trackdir  trackdir,
bool  include_line_end,
bool  forbid_90deg 
)

Determine whether a certain track on a tile is a safe position to end a path.

Parameters
vthe vehicle to test for
tileThe tile
trackdirThe trackdir to test
include_line_endShould end-of-line tiles be considered safe?
forbid_90degDon't allow trains to make 90 degree turns
Returns
True if it is a safe position

Definition at line 380 of file pbs.cpp.

References HasSignalOnTrackdir(), IsRailDepotTile(), IsTileType(), and MP_RAILWAY.

Referenced by ExtendTrainReservation(), FollowTrainReservation(), and CYapfDestinationAnySafeTileRailT< Types >::PfDetectDestination().

◆ IsWaitingPositionFree()

bool IsWaitingPositionFree ( const Train v,
TileIndex  tile,
Trackdir  trackdir,
bool  forbid_90deg 
)

Check if a safe position is free.

Parameters
vthe vehicle to test for
tileThe tile
trackdirThe trackdir to test
forbid_90degDon't allow trains to make 90 degree turns
Returns
True if the position is free

Definition at line 426 of file pbs.cpp.

References GetReservedTrackbits(), HasSignalOnTrackdir(), IsRailDepotTile(), IsTileType(), MP_RAILWAY, TrackdirToTrack(), and TrackOverlapsTracks().

Referenced by ExtendTrainReservation(), CYapfDestinationAnySafeTileRailT< Types >::PfDetectDestination(), and CYapfReserveTrack< Types >::TryReservePath().

◆ SetRailStationPlatformReservation()

void SetRailStationPlatformReservation ( TileIndex  start,
DiagDirection  dir,
bool  b 
)

Set the reservation for a complete station platform.

Precondition
IsRailStationTile(start)
Parameters
startstarting tile of the platform
dirthe direction in which to follow the platform
bthe state the reservation should be set to

Definition at line 57 of file pbs.cpp.

References DiagDirToAxis(), GetRailStationAxis(), IsCompatibleTrainStationTile(), IsRailStationTile(), MarkTileDirtyByTile(), SetRailStationReservation(), TileAdd(), and TileOffsByDiagDir().

Referenced by ClearPathReservation(), FreeTrainReservation(), and RestoreTrainReservation().

◆ TryReserveRailTrack()

◆ UnreserveRailTrack()