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

PBS support routines. More...

#include "stdafx.h"
#include "viewport_func.h"
#include "vehicle_func.h"
#include "newgrf_station.h"
#include "pathfinder/follow_track.hpp"
#include "safeguards.h"

Go to the source code of this file.

Data Structures

struct  FindTrainOnTrackInfo
 Helper struct for finding the best matching vehicle on a specific track. 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)
 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...
 
static PBSTileInfo FollowReservation (Owner o, RailTypes rts, TileIndex tile, Trackdir trackdir, bool ignore_oneway=false)
 Follow a reservation starting from a specific tile to the end.
 
static VehicleFindTrainOnTrackEnum (Vehicle *v, void *data)
 Callback for Has/FindVehicleOnPos to find a train on a specific track.
 
PBSTileInfo FollowTrainReservation (const Train *v, Vehicle **train_on_res)
 Follow a train reservation to the last tile. More...
 
TrainGetTrainForReservation (TileIndex tile, Track track)
 Find the train which has reserved a specific path. More...
 
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. More...
 
bool IsWaitingPositionFree (const Train *v, TileIndex tile, Trackdir trackdir, bool forbid_90deg)
 Check if a safe position is free. More...
 

Detailed Description

PBS support routines.

Definition in file pbs.cpp.

Function Documentation

◆ FollowTrainReservation()

◆ GetReservedTrackbits()

TrackBits GetReservedTrackbits ( TileIndex  t)

◆ GetTrainForReservation()

◆ 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()