|
OpenTTD Source 20260218-master-g2123fca5ea
|
Hides the direct accesses to the map array with map accessors. More...
#include "rail_type.h"#include "depot_type.h"#include "signal_func.h"#include "track_func.h"#include "tile_map.h"#include "water_map.h"#include "signal_type.h"Go to the source code of this file.
Enumerations | |
| enum class | RailTileType : uint8_t { Normal = 0 , Signals = 1 , Depot = 3 } |
| Different types of Rail-related tiles. More... | |
| enum class | RailGroundType : uint8_t { Barren = 0 , Grass = 1 , FenceNW = 2 , FenceSE = 3 , FenceSENW = 4 , FenceNE = 5 , FenceSW = 6 , FenceNESW = 7 , FenceVert1 = 8 , FenceVert2 = 9 , FenceHoriz1 = 10 , FenceHoriz2 = 11 , SnowOrDesert = 12 , HalfTileWater = 13 , HalfTileSnow = 14 } |
| The ground 'under' the rail. More... | |
Functions | |
| static RailTileType | GetRailTileType (Tile t) |
| Returns the RailTileType (normal with or without signals, waypoint or depot). | |
| static bool | IsPlainRail (Tile t) |
| Returns whether this is plain rails, with or without signals. | |
| static bool | IsPlainRailTile (Tile t) |
| Checks whether the tile is a rail tile or rail tile with signals. | |
| bool | HasSignals (Tile t) |
| Checks if a rail tile has signals. | |
| void | SetHasSignals (Tile tile, bool signals) |
| Add/remove the 'has signal' bit from the RailTileType. | |
| static bool | IsRailDepot (Tile t) |
| Is this rail tile a rail depot? | |
| static bool | IsRailDepotTile (Tile t) |
| Is this tile rail tile and a rail depot? | |
| RailType | GetRailType (Tile t) |
| Gets the rail type of the given tile. | |
| void | SetRailType (Tile t, RailType r) |
| Sets the rail type of the given tile. | |
| TrackBits | GetTrackBits (Tile tile) |
| Gets the track bits of the given tile. | |
| void | SetTrackBits (Tile t, TrackBits b) |
| Sets the track bits of the given tile. | |
| bool | HasTrack (Tile tile, Track track) |
| Returns whether the given track is present on the given tile. | |
| DiagDirection | GetRailDepotDirection (Tile t) |
| Returns the direction the depot is facing to. | |
| Track | GetRailDepotTrack (Tile t) |
| Returns the track of a depot, ignoring direction. | |
| TrackBits | GetRailReservationTrackBits (Tile t) |
| Returns the reserved track bits of the tile. | |
| void | SetTrackReservation (Tile t, TrackBits b) |
| Sets the reserved track bits of the tile. | |
| bool | TryReserveTrack (Tile tile, Track t) |
| Try to reserve a specific track on a tile. | |
| void | UnreserveTrack (Tile tile, Track t) |
| Lift the reservation of a specific track on a tile. | |
| bool | HasDepotReservation (Tile t) |
| Get the reservation state of the depot. | |
| void | SetDepotReservation (Tile t, bool b) |
| Set the reservation state of the depot. | |
| TrackBits | GetDepotReservationTrackBits (Tile t) |
| Get the reserved track bits for a depot. | |
| bool | IsPbsSignal (SignalType s) |
| Checks whether the given signal is a path based signal. | |
| SignalType | GetSignalType (Tile t, Track track) |
| Get the signal type for a track on a tile. | |
| void | SetSignalType (Tile t, Track track, SignalType s) |
| Set the signal type for a track on a tile. | |
| bool | IsPresignalEntry (Tile t, Track track) |
| Is the signal at the given track on a tile a presignal entry signal? | |
| bool | IsPresignalExit (Tile t, Track track) |
| Is the signal at the given track on a tile a presignal exit signal? | |
| bool | IsOnewaySignal (Tile t, Track track) |
| Is the signal at the given track on a tile a one way signal? | |
| void | CycleSignalSide (Tile t, Track track) |
| Cycle to the next signal side at the given track on a tile. | |
| SignalVariant | GetSignalVariant (Tile t, Track track) |
| Get the signal variant for a track on a tile. | |
| void | SetSignalVariant (Tile t, Track track, SignalVariant v) |
| Set the signal variant for a track on a tile. | |
| void | SetSignalStates (Tile tile, uint state) |
| Set the states of the signals (Along/AgainstTrackDir). | |
| uint | GetSignalStates (Tile tile) |
| Set the states of the signals (Along/AgainstTrackDir). | |
| SignalState | GetSingleSignalState (Tile t, uint8_t signalbit) |
| Get the state of a single signal. | |
| void | SetPresentSignals (Tile tile, uint signals) |
| Set whether the given signals are present (Along/AgainstTrackDir). | |
| uint | GetPresentSignals (Tile tile) |
| Get whether the given signals are present (Along/AgainstTrackDir). | |
| bool | IsSignalPresent (Tile t, uint8_t signalbit) |
| Checks whether the given signals is present. | |
| bool | HasSignalOnTrack (Tile tile, Track track) |
| Checks for the presence of signals (either way) on the given track on the given rail tile. | |
| bool | HasSignalOnTrackdir (Tile tile, Trackdir trackdir) |
| Checks for the presence of signals along the given trackdir on the given rail tile. | |
| SignalState | GetSignalStateByTrackdir (Tile tile, Trackdir trackdir) |
| Gets the state of the signal along the given trackdir. | |
| void | SetSignalStateByTrackdir (Tile tile, Trackdir trackdir, SignalState state) |
| Sets the state of the signal along the given trackdir. | |
| bool | HasPbsSignalOnTrackdir (Tile tile, Trackdir td) |
| Is a pbs signal present along the trackdir? | |
| bool | HasOnewaySignalBlockingTrackdir (Tile tile, Trackdir td) |
| Is a one-way signal blocking the trackdir? | |
| RailType | GetTileRailType (Tile tile) |
| Return the rail type of tile, or INVALID_RAILTYPE if this is no rail tile. | |
| void | SetRailGroundType (Tile t, RailGroundType rgt) |
| Set the ground type for rail tiles. | |
| RailGroundType | GetRailGroundType (Tile t) |
| Get the ground type for rail tiles. | |
| bool | IsSnowOrDesertRailGround (Tile t) |
| Is the given rail tile snowy or deserty. | |
| void | MakeRailNormal (Tile t, Owner o, TrackBits b, RailType r) |
| Make the given tile a normal rail. | |
| void | SetRailDepotExitDirection (Tile tile, DiagDirection dir) |
| Sets the exit direction of a rail depot. | |
| void | MakeRailDepot (Tile tile, Owner owner, DepotID depot_id, DiagDirection dir, RailType rail_type) |
| Make a rail depot. | |
Hides the direct accesses to the map array with map accessors.
Definition in file rail_map.h.
|
strong |
The ground 'under' the rail.
Definition at line 558 of file rail_map.h.
|
strong |
Different types of Rail-related tiles.
| Enumerator | |
|---|---|
| Normal | Normal rail tile without signals. |
| Signals | Normal rail tile with signals. |
| Depot | Depot (one entrance). |
Definition at line 23 of file rail_map.h.
Cycle to the next signal side at the given track on a tile.
For path based signals there are two options, for other signals there is a third option with both sides.
| t | The tile to update. |
| track | The track to update for. |
Definition at line 369 of file rail_map.h.
References GB(), GetSignalType(), IsPbsSignal(), Tile::m3(), SB(), TRACK_LOWER, and TRACK_RIGHT.
Referenced by CmdBuildSingleSignal().
Get the reserved track bits for a depot.
| t | the tile |
Definition at line 281 of file rail_map.h.
References GetRailDepotTrack(), HasDepotReservation(), TRACK_BIT_NONE, and TrackToTrackBits().
Referenced by FollowTrainReservation(), and GetReservedTrackbits().
|
inline |
Get whether the given signals are present (Along/AgainstTrackDir).
| tile | the tile to get the present signals for |
Definition at line 452 of file rail_map.h.
References GB(), and Tile::m3().
Referenced by AfterLoadCompanyStats(), CmdBuildSingleSignal(), CmdRemoveSingleSignal(), CmdSignalTrackHelper(), HasSignalOnTrack(), HasSignalOnTrackdir(), and IsSignalPresent().
|
inline |
Returns the direction the depot is facing to.
| t | the tile to get the depot facing from |
Definition at line 171 of file rail_map.h.
References GB(), and Tile::m5().
Referenced by CFollowTrackT< TRANSPORT_WATER, Ship, true >::CanEnterNewTile(), CmdBuildRailVehicle(), CmdBuildRailWagon(), CmdBuildTrainDepot(), DrawRailCatenary(), ExploreSegment(), CFollowTrackT< TRANSPORT_WATER, Ship, true >::ForcedReverse(), FreeTrainTrackReservation(), GetRailDepotTrack(), Train::GetVehicleTrackdir(), ReverseTrainDirection(), TicksToLeaveDepot(), TrainCanLeaveTile(), TryPathReserve(), UpdateSignalsInBuffer(), and VehicleEnter_Track().
Returns the track of a depot, ignoring direction.
| t | the tile to get the depot track from |
Definition at line 182 of file rail_map.h.
References DiagDirToDiagTrack(), and GetRailDepotDirection().
Referenced by AdvanceWagonsAfterSwap(), CmdConvertRail(), FixupTrainLengths(), and GetDepotReservationTrackBits().
|
inline |
Get the ground type for rail tiles.
| t | The tile to query. |
Definition at line 591 of file rail_map.h.
References GB(), and Tile::m4().
Referenced by CmdRemoveSingleRail(), DoDryUp(), DrawTrackBits(), DrawTrackDetails(), FloodHalftile(), GetEffectiveWaterClass(), GetFloodingBehaviour(), GetTerrainType(), IsSnowOrDesertRailGround(), IsWateredTile(), SetWaterClassDependingOnSurroundings(), and TestAutoslopeOnRailTile().
Returns the reserved track bits of the tile.
| t | the tile to query |
Definition at line 194 of file rail_map.h.
References GB(), HasBit(), IsPlainRailTile(), Tile::m2(), TRACK_BIT_NONE, TrackToOppositeTrack(), and TrackToTrackBits().
Referenced by CheckFlatLandRailStation(), CmdBuildRailWaypoint(), CmdBuildRoad(), CmdBuildSingleSignal(), CmdRemoveSingleRail(), DrawTrackBits(), GetReservedTrackbits(), TryReserveTrack(), UnreserveTrack(), and UpdateSignalsAroundSegment().
|
inlinestatic |
Returns the RailTileType (normal with or without signals, waypoint or depot).
| t | the tile to get the information from |
Definition at line 36 of file rail_map.h.
References GB(), IsTileType(), Tile::m5(), and Railway.
Referenced by CmdBuildRoad(), CmdConvertRail(), GetAxisForNewRailWaypoint(), GetRailTrackBitsUniversal(), GetSignalType(), HasSignalOnTrack(), HasSignalOnTrackdir(), HasSignals(), IsPlainRail(), IsPossibleCrossing(), IsRailDepot(), MoveWaypointsToBaseStations(), PlaceExtraDepotRail(), and SetSignalType().
Gets the rail type of the given tile.
| t | the tile to get the rail type from |
Definition at line 115 of file rail_map.h.
References GB(), and Tile::m8().
Referenced by AfterLoadCompanyStats(), AfterLoadGame(), CheckFlatLandRailStation(), CmdBuildBridge(), CmdBuildRailStation(), CmdBuildRailVehicle(), CmdBuildRailWagon(), CmdBuildRailWaypoint(), CmdBuildRoad(), CmdBuildSingleRail(), CmdBuildTrainDepot(), CmdConvertRail(), CmdRemoveSingleRail(), ConvertRailTypes(), DoClearBridge(), DoClearTunnel(), DrawBridgeMiddle(), DrawRailCatenaryRailway(), DrawTile_Road(), DrawTile_TunnelBridge(), DrawTrackBits(), Train::GetAccelerationType(), NIHRailType::GetBadges(), GetBridgeSpriteTableBaseOffset(), Train::GetCurveSpeedLimit(), Train::GetMaxTrackSpeed(), Train::GetPower(), Train::GetPoweredPartPower(), GetPylonBase(), GetRailTrackBitsUniversal(), GetSmallMapRoutesPixels(), CFollowTrackT< TRANSPORT_WATER, Ship, true >::GetSpeedLimit(), GetTileRailType(), StationScopeResolver::GetVariable(), GetWireBase(), IsCompatibleTrainStationTile(), MoveWaypointsToBaseStations(), RemoveFromRailBaseStation(), RemoveRoad(), SetDefaultRailGui(), TunnelBridgeClearCost(), and BuildVehicleWindow::UpdateFilterByTile().
|
inline |
Gets the state of the signal along the given trackdir.
Along meaning if you are currently driving on the given trackdir, this is the signal that is facing us (for which we stop when it's red).
| tile | The tile to query. |
| trackdir | The trackdir to query for. |
Definition at line 506 of file rail_map.h.
References GetSignalStates(), HasSignalOnTrack(), IsValidTrackdir(), SIGNAL_STATE_GREEN, SIGNAL_STATE_RED, SignalAlongTrackdir(), and TrackdirToTrack().
Referenced by CheckNextTrainTile(), ExploreSegment(), ExtendTrainReservation(), FreeTrainTrackReservation(), CYapfCostRailT< Types >::PfCalcCost(), CYapfReserveTrack< Types >::ReserveSingleTrack(), and UpdateSignalsAroundSegment().
|
inline |
Set the states of the signals (Along/AgainstTrackDir).
| tile | the tile to set the states for |
Definition at line 421 of file rail_map.h.
References GB(), and Tile::m4().
Referenced by CmdBuildSingleSignal(), GetSignalStateByTrackdir(), GetSingleSignalState(), and SetSignalStateByTrackdir().
|
inline |
Get the signal type for a track on a tile.
In horizontal and vertical orientation there may be two tracks on a tile with a signal.
| t | The tile to query. |
| track | The track to query for. |
Definition at line 304 of file rail_map.h.
References GB(), GetRailTileType(), Tile::m2(), Signals, TRACK_LOWER, and TRACK_RIGHT.
Referenced by CheckNextTrainTile(), CmdBuildSingleSignal(), CmdRemoveSingleSignal(), CmdSignalTrackHelper(), CycleSignalSide(), ExploreSegment(), FollowReservation(), FreeTrainTrackReservation(), GenericPlaceSignals(), HasPbsSignalOnTrackdir(), IsOnewaySignal(), IsPresignalEntry(), IsPresignalExit(), IsSafeWaitingPosition(), IsWaitingPositionFree(), CYapfCostRailT< Types >::PfCalcCost(), ReverseTrainDirection(), TrainController(), and UpdateSignalsAroundSegment().
|
inline |
Get the signal variant for a track on a tile.
In horizontal and vertical orientation there may be two tracks on a tile with a signal.
| t | The tile to query. |
| track | The track to query for. |
Definition at line 386 of file rail_map.h.
References GB(), Tile::m2(), TRACK_LOWER, and TRACK_RIGHT.
Referenced by CmdBuildSingleSignal(), and CmdSignalTrackHelper().
|
inline |
Get the state of a single signal.
| t | the tile to get the signal state for |
| signalbit | the signal |
Definition at line 432 of file rail_map.h.
References GetSignalStates(), and HasBit().
Return the rail type of tile, or INVALID_RAILTYPE if this is no rail tile.
Definition at line 37 of file rail.cpp.
References GetRailType(), GetTileType(), GetTunnelBridgeTransportType(), HasStationRail(), INVALID_RAILTYPE, IsLevelCrossing(), Railway, Road, Station, TRANSPORT_RAIL, and TunnelBridge.
Referenced by CFollowTrackT< TRANSPORT_WATER, Ship, true >::CanEnterNewTile(), CheckNextTrainTile(), ExtendTrainReservation(), CFollowTrackT< TRANSPORT_WATER, Ship, true >::Follow(), GetTrackTypes(), GetTrainForReservation(), IsSafeWaitingPosition(), IsWaitingPositionFree(), MaskWireBits(), Vehicle::ShowVisualEffect(), TrainCheckIfLineEnds(), TrainController(), and TryPathReserve().
Gets the track bits of the given tile.
| tile | the tile to get the track bits from |
Definition at line 136 of file rail_map.h.
References GB(), IsPlainRailTile(), and Tile::m5().
Referenced by AfterLoadCompanyStats(), ChangeOwnershipOfCompanyItems(), CheckFlatLandRailStation(), CheckTrackCombination(), CmdBuildRoad(), CmdBuildSingleRail(), CmdBuildSingleSignal(), CmdConvertRail(), CmdRemoveSingleRail(), DetermineNextTrainForceProceeding(), DoDryUp(), ExploreSegment(), FloodHalftile(), GetAxisForNewRailWaypoint(), GetRailTrackBitsUniversal(), HasTrack(), IsPossibleCrossing(), PlaceExtraDepotRail(), and CFollowTrackT< TRANSPORT_WATER, Ship, true >::QueryNewTileTrackStatus().
|
inline |
Get the reservation state of the depot.
| t | the depot tile |
Definition at line 257 of file rail_map.h.
References HasBit(), IsRailDepot(), and Tile::m5().
Referenced by CheckTrainStayInDepot(), GetDepotReservationTrackBits(), TryPathReserve(), and TryReserveRailTrack().
Is a one-way signal blocking the trackdir?
A one-way signal on the trackdir against will block, but signals on both trackdirs won't.
| tile | the tile to check |
| td | the trackdir to check |
true iff a one way signals blocks the trackdir. Definition at line 548 of file rail_map.h.
References HasSignalOnTrackdir(), IsOnewaySignal(), IsTileType(), Railway, ReverseTrackdir(), and TrackdirToTrack().
Referenced by ExtendTrainReservation(), FollowReservation(), GetTrainForReservation(), CYapfCostRailT< Types >::PfCalcCost(), and TrainController().
Is a pbs signal present along the trackdir?
| tile | the tile to check |
| td | the trackdir to check |
true iff there is a path based signal on the trackdir. Definition at line 535 of file rail_map.h.
References GetSignalType(), HasSignalOnTrackdir(), IsPbsSignal(), IsTileType(), Railway, and TrackdirToTrack().
Referenced by CheckNextTrainTile(), ExtendTrainReservation(), FreeTrainTrackReservation(), GetTrainForReservation(), IsSafeWaitingPosition(), CYapfReserveTrack< Types >::ReserveSingleTrack(), and TrainController().
Checks for the presence of signals (either way) on the given track on the given rail tile.
| tile | The tile to query. |
| track | The track to query for. |
true iff there is a signal in any direction. Definition at line 475 of file rail_map.h.
References GetPresentSignals(), GetRailTileType(), IsValidTrack(), SignalOnTrack(), and Signals.
Referenced by ChangeOwnershipOfCompanyItems(), CmdBuildSingleRail(), CmdBuildSingleSignal(), CmdRemoveSingleRail(), CmdRemoveSingleSignal(), CmdSignalTrackHelper(), DetermineNextTrainForceProceeding(), ExploreSegment(), GenericPlaceSignals(), and GetSignalStateByTrackdir().
Checks for the presence of signals along the given trackdir on the given rail tile.
Along meaning if you are currently driving on the given trackdir, this is the signal that is facing us (for which we stop when it's red).
| tile | The tile to query. |
| trackdir | The trackdir to query for. |
true iff there is a signal in the given direction. Definition at line 491 of file rail_map.h.
References GetPresentSignals(), GetRailTileType(), IsValidTrackdir(), SignalAlongTrackdir(), and Signals.
Referenced by CheckNextTrainTile(), CmdRemoveSingleSignal(), ExploreSegment(), FollowReservation(), FreeTrainTrackReservation(), HasOnewaySignalBlockingTrackdir(), HasPbsSignalOnTrackdir(), IsSafeWaitingPosition(), IsWaitingPositionFree(), CYapfCostRailT< Types >::PfCalcCost(), ReverseTrainDirection(), TrainController(), and UpdateSignalsAroundSegment().
|
inline |
Checks if a rail tile has signals.
| t | the tile to get the information from |
Definition at line 72 of file rail_map.h.
References GetRailTileType(), and Signals.
Referenced by AfterLoadCompanyStats(), AfterLoadGame(), ChangeOwnershipOfCompanyItems(), CheckFlatLandRailStation(), CmdBuildSingleRail(), CmdBuildSingleSignal(), DetermineNextTrainForceProceeding(), ExploreSegment(), and TrainController().
Returns whether the given track is present on the given tile.
| tile | the tile to check the track presence of |
| track | the track to search for on the tile |
Definition at line 160 of file rail_map.h.
References GetTrackBits(), and HasBit().
Referenced by CmdBuildSingleRail(), CmdBuildSingleSignal(), CmdRemoveSingleSignal(), CmdSignalTrackHelper(), TryReserveRailTrack(), TryReserveTrack(), UnreserveRailTrack(), and UnreserveTrack().
Is the signal at the given track on a tile a one way signal?
One-way signals can't be passed the 'wrong' way. In horizontal and vertical orientation there may be two tracks on a tile with a signal.
| t | The tile to query. |
| track | The track to query for. |
true iff it is an one way signal. Definition at line 358 of file rail_map.h.
References GetSignalType(), and SIGTYPE_PBS.
Referenced by ExploreSegment(), FreeTrainTrackReservation(), and HasOnewaySignalBlockingTrackdir().
|
inline |
Checks whether the given signal is a path based signal.
| s | The signal to check. |
true when it is a path based signal. Definition at line 292 of file rail_map.h.
References SIGTYPE_PBS, and SIGTYPE_PBS_ONEWAY.
Referenced by CheckNextTrainTile(), CmdBuildSingleSignal(), CmdRemoveSingleSignal(), CmdSignalTrackHelper(), CycleSignalSide(), ExploreSegment(), FollowReservation(), FreeTrainTrackReservation(), HasPbsSignalOnTrackdir(), IsSafeWaitingPosition(), IsWaitingPositionFree(), CYapfCostRailT< Types >::PfCalcCost(), CYapfCostRailT< Types >::ReservationCost(), ReverseTrainDirection(), and UpdateSignalsAroundSegment().
|
inlinestatic |
Returns whether this is plain rails, with or without signals.
Iow, if this tiles RailTileType is RailTileType::Normal or RailTileType::Signals.
| t | the tile to get the information from |
Definition at line 49 of file rail_map.h.
References GetRailTileType(), Normal, and Signals.
Referenced by AfterLoadCompanyStats(), AfterLoadGame(), CheckTrackCombination(), CmdBuildSingleRail(), CmdRemoveSingleRail(), DoDryUp(), DoFloodTile(), ExtendTrainReservation(), GetReservedTrackbits(), IsPlainRailTile(), IsWateredTile(), TryReserveRailTrack(), and UnreserveRailTrack().
|
inlinestatic |
Checks whether the tile is a rail tile or rail tile with signals.
| t | the tile to get the information from |
Definition at line 60 of file rail_map.h.
References IsPlainRail(), IsTileType(), and Railway.
Referenced by AfterLoadGame(), CheckFlatLandRailStation(), CmdBuildSingleSignal(), CmdConvertRail(), CmdRemoveSingleSignal(), CmdSignalTrackHelper(), DisasterTick_Big_Ufo(), FixOwnerOfRailTrack(), FloodHalftile(), GenericPlaceSignals(), GetRailReservationTrackBits(), GetTrackBits(), GrowTownWithBridge(), MaskWireBits(), CFollowTrackT< TRANSPORT_WATER, Ship, true >::QueryNewTileTrackStatus(), SetHasSignals(), SetTrackBits(), SetTrackReservation(), and TrainController().
Is the signal at the given track on a tile a presignal entry signal?
In horizontal and vertical orientation there may be two tracks on a tile with a signal.
| t | The tile to query. |
| track | The track to query for. |
true iff it is a presignal entry signal. Definition at line 333 of file rail_map.h.
References GetSignalType(), SIGTYPE_COMBO, and SIGTYPE_ENTRY.
Referenced by UpdateSignalsAroundSegment().
Is the signal at the given track on a tile a presignal exit signal?
In horizontal and vertical orientation there may be two tracks on a tile with a signal.
| t | The tile to query. |
| track | The track to query for. |
true iff it is a presignal exit signal. Definition at line 345 of file rail_map.h.
References GetSignalType(), SIGTYPE_COMBO, and SIGTYPE_EXIT.
Referenced by ExploreSegment(), and UpdateSignalsAroundSegment().
|
inlinestatic |
Is this rail tile a rail depot?
| t | the tile to get the information from |
Definition at line 95 of file rail_map.h.
References Depot, and GetRailTileType().
Referenced by AfterLoadGame(), DrawRailCatenary(), ExploreSegment(), GetReservedTrackbits(), HasDepotReservation(), IsRailDepotTile(), CYapfCostRailT< Types >::PfCalcCost(), SetDepotReservation(), TryReserveRailTrack(), UnreserveRailTrack(), and UpdateSignalsInBuffer().
|
inlinestatic |
Is this tile rail tile and a rail depot?
| t | the tile to get the information from |
Definition at line 105 of file rail_map.h.
References IsRailDepot(), IsTileType(), and Railway.
Referenced by AfterLoadGame(), CmdBuildTrainDepot(), CmdInsertOrder(), DeleteLastWagon(), FollowReservation(), FollowTrainReservation(), FreeTrainTrackReservation(), GetDepotIndex(), RailTypeScopeResolver::GetVariable(), IsDepotTile(), IsDepotTypeTile(), IsSafeWaitingPosition(), IsWaitingPositionFree(), CYapfCostRailT< Types >::PfCalcCost(), CYapfDestinationAnyDepotRailT< Types >::PfDetectDestination(), CYapfDestinationTileOrStationRailT< Types >::PfDetectDestination(), ReverseTrainDirection(), SetRailDepotExitDirection(), TrainCanLeaveTile(), and VehicleEnter_Track().
|
inline |
Checks whether the given signals is present.
| t | the tile to check on |
| signalbit | the signal |
Definition at line 463 of file rail_map.h.
References GetPresentSignals(), and HasBit().
|
inline |
Is the given rail tile snowy or deserty.
| t | The tile to query. |
true iff the tile is snowy or deserty. Definition at line 601 of file rail_map.h.
References GetRailGroundType(), and SnowOrDesert.
|
inline |
Make a rail depot.
| tile | Tile to make a depot on. |
| owner | New owner of the depot. |
| depot_id | New depot ID. |
| dir | Direction of the depot exit. |
| rail_type | Rail type of the depot. |
Definition at line 647 of file rail_map.h.
References Depot, Tile::m2(), Tile::m3(), Tile::m4(), Tile::m5(), Tile::m6(), Tile::m7(), Tile::m8(), Railway, SB(), SetDockingTile(), SetTileOwner(), SetTileType(), and to_underlying().
Referenced by CmdBuildTrainDepot().
Make the given tile a normal rail.
| t | The tile to convert. |
| o | The new owner. |
| b | The bits/tracks to set. |
| r | The new rail type. |
Definition at line 614 of file rail_map.h.
References Tile::m2(), Tile::m3(), Tile::m4(), Tile::m5(), Tile::m6(), Tile::m7(), Tile::m8(), Normal, Railway, SB(), SetDockingTile(), SetTileOwner(), SetTileType(), and to_underlying().
Referenced by AfterLoadGame(), CmdBuildSingleRail(), RemoveFromRailBaseStation(), and RemoveRoad().
|
inline |
Set the reservation state of the depot.
| t | the depot tile |
| b | the reservation state |
Definition at line 269 of file rail_map.h.
References AssignBit(), IsRailDepot(), and Tile::m5().
Referenced by AfterLoadGame(), CheckTrainStayInDepot(), TryPathReserve(), TryReserveRailTrack(), UnreserveRailTrack(), and VehicleEnterDepot().
|
inline |
Add/remove the 'has signal' bit from the RailTileType.
| tile | the tile to add/remove the signals to/from |
| signals | whether the rail tile should have signals or not |
Definition at line 83 of file rail_map.h.
References IsPlainRailTile(), Tile::m5(), Normal, SB(), Signals, and to_underlying().
Referenced by CmdBuildSingleSignal(), and CmdRemoveSingleSignal().
|
inline |
Set whether the given signals are present (Along/AgainstTrackDir).
| tile | the tile to set the present signals for |
| signals | the signals that have to be present |
Definition at line 442 of file rail_map.h.
References Tile::m3(), and SB().
Referenced by CmdBuildSingleSignal(), and CmdRemoveSingleSignal().
|
inline |
Sets the exit direction of a rail depot.
Definition at line 633 of file rail_map.h.
References IsRailDepotTile(), Tile::m5(), and SB().
Referenced by CmdBuildTrainDepot().
|
inline |
Set the ground type for rail tiles.
| t | The tile to update. |
| rgt | The new ground type. |
Definition at line 581 of file rail_map.h.
References Tile::m4(), SB(), and to_underlying().
Referenced by CmdBuildSingleRail(), DoDryUp(), FloodHalftile(), and TestAutoslopeOnRailTile().
Sets the rail type of the given tile.
| t | the tile to set the rail type of |
| r | the new rail type for the tile |
Definition at line 125 of file rail_map.h.
References Tile::m8(), and SB().
Referenced by AfterLoadGame(), CmdConvertRail(), ConvertRailTypes(), MakeRailBridgeRamp(), MakeRailStation(), MakeRailTunnel(), and MakeRailWaypoint().
|
inline |
Sets the state of the signal along the given trackdir.
| tile | The tile to update. |
| trackdir | The trackdir to update for. |
| state | The new signal state. |
Definition at line 520 of file rail_map.h.
References GetSignalStates(), SetSignalStates(), SIGNAL_STATE_GREEN, and SignalAlongTrackdir().
Referenced by ExtendTrainReservation(), FreeTrainTrackReservation(), CYapfReserveTrack< Types >::ReserveSingleTrack(), TrainController(), CYapfReserveTrack< Types >::TryReservePath(), and UpdateSignalsAroundSegment().
|
inline |
Set the states of the signals (Along/AgainstTrackDir).
| tile | the tile to set the states for |
| state | the new state |
Definition at line 411 of file rail_map.h.
References Tile::m4(), and SB().
Referenced by AfterLoadGame(), CmdBuildSingleSignal(), CmdRemoveSingleSignal(), and SetSignalStateByTrackdir().
|
inline |
Set the signal type for a track on a tile.
In horizontal and vertical orientation there may be two tracks on a tile with a signal.
| t | The tile to update. |
| track | The track to update for. |
| s | The new signal type. |
Definition at line 318 of file rail_map.h.
References GetRailTileType(), INVALID_TRACK, Tile::m2(), SB(), Signals, TRACK_LOWER, and TRACK_RIGHT.
Referenced by CmdBuildSingleSignal().
|
inline |
Set the signal variant for a track on a tile.
In horizontal and vertical orientation there may be two tracks on a tile with a signal.
| t | The tile to update. |
| track | The track to update for. |
| v | The new signal variant. |
Definition at line 399 of file rail_map.h.
References INVALID_TRACK, Tile::m2(), SB(), TRACK_LOWER, and TRACK_RIGHT.
Referenced by AfterLoadGame(), CmdBuildSingleSignal(), and CmdRemoveSingleSignal().
Sets the track bits of the given tile.
| t | the tile to set the track bits of |
| b | the new track bits for the tile |
Definition at line 147 of file rail_map.h.
References IsPlainRailTile(), Tile::m5(), and SB().
Referenced by CmdBuildSingleRail(), and CmdRemoveSingleRail().
Sets the reserved track bits of the tile.
| t | the tile to change |
| b | the track bits |
Definition at line 209 of file rail_map.h.
References AssignBit(), INVALID_TRACK, IsPlainRailTile(), Tile::m2(), RemoveFirstTrack(), SB(), TRACK_BIT_NONE, and TracksOverlap().
Referenced by AfterLoadGame(), CmdRemoveSingleRail(), RemoveRoad(), TryReserveTrack(), and UnreserveTrack().
Try to reserve a specific track on a tile.
| tile | the tile |
| t | the track to reserve |
Definition at line 225 of file rail_map.h.
References GetRailReservationTrackBits(), HasTrack(), SetTrackReservation(), TRACK_BIT_NONE, TracksOverlap(), and TrackToTrackBits().
Referenced by TryReserveRailTrack().
Lift the reservation of a specific track on a tile.
| tile | the tile |
| t | the track to free |
Definition at line 243 of file rail_map.h.
References GetRailReservationTrackBits(), HasTrack(), SetTrackReservation(), and TrackToTrackBits().
Referenced by UnreserveRailTrack().