|
OpenTTD
|
Container for each entry point of a drive through road stop. More...
#include <roadstop_base.h>
Public Member Functions | |
| Entry () | |
| Create an entry. | |
| int | GetLength () const |
| Get the length of this drive through stop. More... | |
| int | GetOccupied () const |
| Get the amount of occupied space in this drive through stop. More... | |
| void | Leave (const RoadVehicle *rv) |
| Leave the road stop. More... | |
| void | Enter (const RoadVehicle *rv) |
| Enter the road stop. More... | |
| void | CheckIntegrity (const RoadStop *rs) const |
| Check the integrity of the data in this struct. More... | |
| void | Rebuild (const RoadStop *rs, int side=-1) |
| Rebuild, from scratch, the vehicles and other metadata on this stop. More... | |
Private Attributes | |
| int | length |
| The length of the stop in tile 'units'. | |
| int | occupied |
| The amount of occupied stop in tile 'units'. | |
Friends | |
| struct | RoadStop |
| Oh yeah, the road stop may play with me. | |
Container for each entry point of a drive through road stop.
Definition at line 34 of file roadstop_base.h.
| void RoadStop::Entry::CheckIntegrity | ( | const RoadStop * | rs | ) | const |
Check the integrity of the data in this struct.
| rs | the roadstop this entry is part of |
Definition at line 382 of file roadstop.cpp.
References HasBit(), RoadStop::RSSFB_BASE_ENTRY, and RoadStop::status.
Referenced by GetOccupied().
| void RoadStop::Entry::Enter | ( | const RoadVehicle * | rv | ) |
Enter the road stop.
| rv | the vehicle that enters the stop |
Definition at line 292 of file roadstop.cpp.
References GroundVehicleCache::cached_total_length, and GroundVehicle< T, Type >::gcache.
Referenced by RoadStop::Enter(), RoadStop::GetEntry(), and GetOccupied().
|
inline |
Get the length of this drive through stop.
Definition at line 49 of file roadstop_base.h.
References length.
Referenced by CYapfCostRoadT< Types >::OneTileCost().
|
inline |
Get the amount of occupied space in this drive through stop.
Definition at line 58 of file roadstop_base.h.
References CheckIntegrity(), Enter(), Leave(), occupied, and Rebuild().
Referenced by CYapfCostRoadT< Types >::OneTileCost().
| void RoadStop::Entry::Leave | ( | const RoadVehicle * | rv | ) |
Leave the road stop.
| rv | the vehicle that leaves the stop |
Definition at line 282 of file roadstop.cpp.
References GroundVehicleCache::cached_total_length, and GroundVehicle< T, Type >::gcache.
Referenced by RoadStop::GetEntry(), GetOccupied(), and RoadStop::Leave().
| void RoadStop::Entry::Rebuild | ( | const RoadStop * | rs, |
| int | side = -1 |
||
| ) |
Rebuild, from scratch, the vehicles and other metadata on this stop.
| rs | the roadstop this entry is part of |
| side | the side of the road stop to look at |
Definition at line 354 of file roadstop.cpp.
Referenced by GetOccupied().