|
OpenTTD Source 20251116-master-g21329071df
|
Station data structure. More...
#include <station_base.h>
Public Member Functions | |
| RoadStop * | GetPrimaryRoadStop (RoadStopType type) const |
| RoadStop * | GetPrimaryRoadStop (const struct RoadVehicle *v) const |
| Station (TileIndex tile=INVALID_TILE) | |
| ~Station () | |
| Clean up a station by clearing vehicle orders, invalidating windows and removing link stats. | |
| void | AddFacility (StationFacility new_facility_bit, TileIndex facil_xy) |
| Called when new facility is built on the station. | |
| void | MarkTilesDirty (bool cargo_change) const |
| Marks the tiles of the station as dirty. | |
| void | UpdateVirtCoord () override |
| Update the virtual coords needed to draw the station sign. | |
| void | MoveSign (TileIndex new_xy) override |
| Move the station main coordinate somewhere else. | |
| void | AfterStationTileSetChange (bool adding, StationType type) |
| After adding/removing tiles to station, update some station-related stuff. | |
| uint | GetPlatformLength (TileIndex tile, DiagDirection dir) const override |
| Determines the REMAINING length of a platform, starting at (and including) the given tile. | |
| uint | GetPlatformLength (TileIndex tile) const override |
| Obtain the length of a platform. | |
| void | RecomputeCatchment (bool no_clear_nearby_lists=false) |
| Recompute tiles covered in our catchment area. | |
| uint | GetCatchmentRadius () const |
| Determines the catchment radius of the station. | |
| Rect | GetCatchmentRect () const |
| Determines catchment rectangle of this station. | |
| bool | CatchmentCoversTown (TownID t) const |
| Test if the given town ID is covered by our catchment area. | |
| void | AddIndustryToDeliver (Industry *ind, TileIndex tile) |
| Add nearby industry to station's industries_near list if it accepts cargo. | |
| void | RemoveIndustryToDeliver (Industry *ind) |
| Remove nearby industry from station's industries_near list. | |
| void | RemoveFromAllNearbyLists () |
| Remove this station from the nearby stations lists of nearby towns and industries. | |
| bool | TileIsInCatchment (TileIndex tile) const |
| bool | TileBelongsToRailStation (TileIndex tile) const override |
| Check whether a specific tile belongs to this station. | |
| bool | TileBelongsToRoadStop (TileIndex tile) const |
| bool | TileBelongsToAirport (TileIndex tile) const |
| uint32_t | GetNewGRFVariable (const ResolverObject &object, uint8_t variable, uint8_t parameter, bool &available) const override |
| TileArea | GetTileArea (StationType type) const override |
| Get the tile area for a given station type. | |
Public Member Functions inherited from SpecializedStation< Station, false > | |
| SpecializedStation (TileIndex tile) | |
| Set station type correctly. | |
Public Member Functions inherited from BaseStation | |
| BaseStation (TileIndex tile) | |
| Initialize the base station. | |
| virtual uint32_t | GetNewGRFVariable (const struct ResolverObject &object, uint8_t variable, uint8_t parameter, bool &available) const =0 |
| Helper function to get a NewGRF variable that isn't implemented by the base class. | |
| const std::string & | GetCachedName () const |
| bool | IsInUse () const |
| Check whether the base station currently is in use; in use means that it is not scheduled for deletion and that it still has some facilities left. | |
| uint8_t | GetRoadStopRandomBits (TileIndex tile) const |
| uint8_t | GetRoadStopAnimationFrame (TileIndex tile) const |
| void | SetRoadStopRandomBits (TileIndex tile, uint8_t random_bits) |
| bool | SetRoadStopAnimationFrame (TileIndex tile, uint8_t frame) |
| void | RemoveRoadStopTileData (TileIndex tile) |
Public Member Functions inherited from Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_station_pool > | |
| void * | operator new (size_t size) |
| Allocates space for new Titem. | |
| void * | operator new (size_t size, Tindex index) |
| Allocates space for new Titem with given index. | |
| void * | operator new (size_t, void *ptr) |
| Allocates space for new Titem at given memory address. | |
| void | operator delete (void *p, size_t size) |
| Marks Titem as free. | |
Static Public Member Functions | |
| static void | RecomputeCatchmentForAll () |
| Recomputes catchment of all stations. | |
Static Public Member Functions inherited from SpecializedStation< Station, false > | |
| static bool | IsExpected (const BaseStation *st) |
| Helper for checking whether the given station is of this type. | |
| static bool | IsValidID (auto index) |
| Tests whether given index is a valid index for station of this type. | |
| static Station * | Get (auto index) |
| Gets station with given index. | |
| static Station * | GetIfValid (auto index) |
| Returns station if the index is a valid index for this station type. | |
| static Station * | GetByTile (TileIndex tile) |
| Get the station belonging to a specific tile. | |
| static Station * | From (BaseStation *st) |
| Converts a BaseStation to SpecializedStation with type checking. | |
| static const Station * | From (const BaseStation *st) |
| Converts a const BaseStation to const SpecializedStation with type checking. | |
| static Pool::IterateWrapper< Station > | Iterate (size_t from=0) |
| Returns an iterable ensemble of all valid stations of type T. | |
Static Public Member Functions inherited from BaseStation | |
| static BaseStation * | GetByTile (TileIndex tile) |
| Get the base station belonging to a specific tile. | |
| static void | PostDestructor (size_t index) |
| Invalidating of the JoinStation window has to be done after removing item from the pool. | |
Static Public Member Functions inherited from Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_station_pool > | |
| static bool | CanAllocateItem (size_t n=1) |
| Helper functions so we can use PoolItem::Function() instead of _poolitem_pool.Function() | |
| static bool | CleaningPool () |
| Returns current state of pool cleaning - yes or no. | |
| static bool | IsValidID (auto index) |
| Tests whether given index can be used to get valid (non-nullptr) Titem. | |
| static Titem * | Get (auto index) |
| Returns Titem with given index. | |
| static Titem * | GetIfValid (auto index) |
| Returns Titem with given index. | |
| static size_t | GetPoolSize () |
| Returns first unused index. | |
| static size_t | GetNumItems () |
| Returns number of valid items in the pool. | |
| static void | PostDestructor (size_t index) |
| Dummy function called after destructor of each member. | |
| static Pool::IterateWrapper< Titem > | Iterate (size_t from=0) |
| Returns an iterable ensemble of all valid Titem. | |
Data Fields | |
| RoadStop * | bus_stops = nullptr |
| All the road stops. | |
| TileArea | bus_station {} |
| Tile area the bus 'station' part covers. | |
| RoadStop * | truck_stops = nullptr |
| All the truck stops. | |
| TileArea | truck_station {} |
| Tile area the truck 'station' part covers. | |
| Airport | airport {} |
| Tile area the airport covers. | |
| TileArea | ship_station {} |
| Tile area the ship 'station' part covers. | |
| TileArea | docking_station {} |
| Tile area the docking tiles cover. | |
| IndustryType | indtype = IT_INVALID |
| Industry type to get the name from. | |
| BitmapTileArea | catchment_tiles {} |
| NOSAVE: Set of individual tiles covered by catchment area. | |
| StationHadVehicleOfType | had_vehicle_of_type {} |
| uint8_t | time_since_load = 0 |
| uint8_t | time_since_unload = 0 |
| uint8_t | last_vehicle_type = 0 |
| std::list< Vehicle * > | loading_vehicles {} |
| std::array< GoodsEntry, NUM_CARGO > | goods |
| Goods at this station. | |
| CargoTypes | always_accepted {} |
| Bitmask of always accepted cargo types (by houses, HQs, industry tiles when industry doesn't accept cargo) | |
| IndustryList | industries_near {} |
| Cached list of industries near the station that can accept cargo,. | |
| Industry * | industry = nullptr |
| NOSAVE: Associated industry for neutral stations. (Rebuilt on load from Industry->st) | |
Data Fields inherited from BaseStation | |
| TileIndex | xy = INVALID_TILE |
| Base tile of the station. | |
| TrackedViewportSign | sign {} |
| NOSAVE: Dimensions of sign. | |
| uint8_t | delete_ctr = 0 |
| Delete counter. If greater than 0 then it is decremented until it reaches 0; the waypoint is then is deleted. | |
| std::string | name {} |
| Custom name. | |
| StringID | string_id = INVALID_STRING_ID |
| Default name (town area) of station. | |
| std::string | cached_name |
| NOSAVE: Cache of the resolved name of the station, if not using a custom name. | |
| Town * | town = nullptr |
| The town this station is associated with. | |
| Owner | owner = INVALID_OWNER |
| The owner of this station. | |
| StationFacilities | facilities {} |
| The facilities that this station has. | |
| std::vector< SpecMapping< StationSpec > > | speclist {} |
| List of rail station specs of this station. | |
| std::vector< SpecMapping< RoadStopSpec > > | roadstop_speclist {} |
| List of road stop specs of this station. | |
| TimerGameCalendar::Date | build_date {} |
| Date of construction. | |
| uint16_t | random_bits = 0 |
| Random bits assigned to this station. | |
| StationRandomTriggers | waiting_random_triggers |
| Waiting triggers (NewGRF), shared by all station parts/tiles, road stops, ... essentially useless and broken by design. | |
| StationAnimationTriggers | cached_anim_triggers |
| NOSAVE: Combined animation trigger bitmask, used to determine if trigger processing should happen. | |
| StationAnimationTriggers | cached_roadstop_anim_triggers |
| NOSAVE: Combined animation trigger bitmask for road stops, used to determine if trigger processing should happen. | |
| CargoTypes | cached_cargo_triggers {} |
| NOSAVE: Combined cargo trigger bitmask. | |
| CargoTypes | cached_roadstop_cargo_triggers {} |
| NOSAVE: Combined cargo trigger bitmask for road stops. | |
| TileArea | train_station {INVALID_TILE, 0, 0} |
| Tile area the train 'station' part covers. | |
| StationRect | rect {} |
| NOSAVE: Station spread out rectangle maintained by StationRect::xxx() functions. | |
| std::vector< RoadStopTileData > | custom_roadstop_tile_data {} |
| List of custom road stop tile data. | |
Data Fields inherited from Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_station_pool > | |
| Tindex | index |
| Index of this pool item. | |
Additional Inherited Members | |
Public Types inherited from Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_station_pool > | |
| typedef struct Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache > | Pool |
| Type of the pool this item is going to be part of. | |
Static Public Attributes inherited from SpecializedStation< Station, false > | |
| static constexpr StationFacilities | EXPECTED_FACIL |
| Specialized type. | |
Station data structure.
Definition at line 500 of file station_base.h.
| Station::Station | ( | TileIndex | tile = INVALID_TILE | ) |
Definition at line 64 of file station.cpp.
| Station::~Station | ( | ) |
Clean up a station by clearing vehicle orders, invalidating windows and removing link stats.
Aircraft-Hangar orders need special treatment here, as the hangars are actually part of a station (tiletype is STATION), but the order type is OT_GOTO_DEPOT.
Definition at line 84 of file station.cpp.
References airport, Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_station_pool >::CleaningPool(), CloseWindowById(), DeleteStationNews(), LinkGraphSchedule::Dequeue(), SpecializedStation< Station, false >::Get(), Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_link_graph_pool >::GetIfValid(), goods, Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_station_pool >::index, Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem< Tpool >::index, LinkGraphSchedule::instance, TimerGameConst< struct Economy >::INVALID_DATE, CargoPacket::InvalidateAllFrom(), InvalidateWindowClassesData(), InvalidateWindowData(), Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_vehicle_pool >::Iterate(), TrackedViewportSign::kdtree_valid, NUM_CARGO, BaseStation::owner, OWNER_NONE, Airport::psa, Kdtree< T, TxyFunc, CoordT, DistT >::Remove(), RemoveFromAllNearbyLists(), LinkGraph::RemoveNode(), RemoveOrderFromAllVehicles(), RerouteCargo(), BaseStation::sign, LinkGraph::Size(), WC_STATION_LIST, and WC_STATION_VIEW.
| void Station::AddFacility | ( | StationFacility | new_facility_bit, |
| TileIndex | facil_xy | ||
| ) |
Called when new facility is built on the station.
If it is the first facility it initializes also 'xy' and 'random_bits' members
Definition at line 230 of file station.cpp.
References _current_company, BaseStation::build_date, TimerGameCalendar::date, BaseStation::facilities, MoveSign(), BaseBitSet< Timpl, Tvalue_type, Tstorage, Tmask >::None(), BaseStation::owner, Random, BaseStation::random_bits, BaseBitSet< Timpl, Tvalue_type, Tstorage, Tmask >::Set(), SetWindowClassesDirty(), and WC_VEHICLE_ORDERS.
Referenced by CmdBuildAirport(), CmdBuildDock(), CmdBuildRailStation(), and CmdBuildRoadStop().
Add nearby industry to station's industries_near list if it accepts cargo.
For industries that are already on the list update distance if it's closer.
Definition at line 389 of file station.cpp.
References DistanceMax(), industries_near, Industry::IsCargoAccepted(), and BaseStation::xy.
Referenced by RecomputeCatchment().
| void Station::AfterStationTileSetChange | ( | bool | adding, |
| StationType | type | ||
| ) |
After adding/removing tiles to station, update some station-related stuff.
| adding | True if adding tiles, false if removing them. |
| type | StationType being modified. |
Definition at line 737 of file station_cmd.cpp.
References DeleteStationIfEmpty(), DirtyCompanyInfrastructureWindows(), Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_station_pool >::index, InvalidateWindowData(), BaseStation::owner, RecomputeCatchment(), SetWindowWidgetDirty(), UpdateStationAcceptance(), UpdateVirtCoord(), WC_SELECT_STATION, WC_STATION_LIST, WC_STATION_VIEW, WID_SV_ROADVEHS, WID_SV_SHIPS, and WID_SV_TRAINS.
Referenced by CmdBuildAirport(), CmdBuildDock(), CmdBuildRailStation(), CmdBuildRoadStop(), RemoveAirport(), RemoveDock(), and RemoveRoadStop().
| bool Station::CatchmentCoversTown | ( | TownID | t | ) | const |
Test if the given town ID is covered by our catchment area.
This is used when removing a house tile to determine if it was the last house tile within our catchment.
| t | TownID to test. |
Definition at line 452 of file station.cpp.
References catchment_tiles, GetTownIndex(), INVALID_TILE, IsTileType(), and MP_HOUSE.
Referenced by RemoveNearbyStations().
| uint Station::GetCatchmentRadius | ( | ) | const |
Determines the catchment radius of the station.
Definition at line 343 of file station.cpp.
References _settings_game, airport, bus_stops, CA_BUS, CA_DOCK, CA_NONE, CA_TRAIN, CA_TRUCK, CA_UNMODIFIED, AirportSpec::catchment, Airport::GetSpec(), INVALID_TILE, StationSettings::modified_catchment, ship_station, GameSettings::station, OrthogonalTileArea::tile, BaseStation::train_station, and truck_stops.
Referenced by GetCatchmentRect().
| Rect Station::GetCatchmentRect | ( | ) | const |
Determines catchment rectangle of this station.
Definition at line 366 of file station.cpp.
References GetCatchmentRadius(), Map::MaxX(), Map::MaxY(), and BaseStation::rect.
Referenced by RecomputeCatchment().
|
override |
Definition at line 412 of file newgrf_station.cpp.
|
overridevirtual |
Obtain the length of a platform.
| tile | A tile that contains the platform in question |
Implements BaseStation.
Definition at line 267 of file station.cpp.
References GetRailStationAxis(), IsCompatibleTrainStationTile(), TileBelongsToRailStation(), and TileOffsByAxis().
|
overridevirtual |
Determines the REMAINING length of a platform, starting at (and including) the given tile.
| tile | the tile from which to start searching. Must be a rail station tile |
| dir | The direction in which to search. |
Implements BaseStation.
Definition at line 289 of file station.cpp.
References DIAGDIR_END, IsCompatibleTrainStationTile(), IsRailStationTile(), and TileOffsByDiagDir().
Referenced by GetTrainStopLocation(), and UpdateLoadUnloadTicks().
|
inline |
Definition at line 502 of file station_base.h.
|
overridevirtual |
Get the tile area for a given station type.
| type | the type of the area |
Implements BaseStation.
Definition at line 414 of file station_cmd.cpp.
References airport, bus_station, docking_station, BaseStation::train_station, and truck_station.
|
overridevirtual |
Move the station main coordinate somewhere else.
| new_xy | new tile location of the sign |
Reimplemented from BaseStation.
Definition at line 450 of file station_cmd.cpp.
References Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_station_pool >::index, Kdtree< T, TxyFunc, CoordT, DistT >::Insert(), Kdtree< T, TxyFunc, CoordT, DistT >::Remove(), and BaseStation::xy.
Referenced by AddFacility().
| void Station::RecomputeCatchment | ( | bool | no_clear_nearby_lists = false | ) |
Recompute tiles covered in our catchment area.
This will additionally recompute nearby towns and industries.
| no_clear_nearby_lists | If Station::RemoveFromAllNearbyLists does not need to be called. |
Definition at line 466 of file station.cpp.
References _settings_game, AddIndustryToDeliver(), CA_NONE, catchment_tiles, OrthogonalTileArea::Expand(), Industry::GetByTile(), GetCatchmentRect(), GetIndustryIndex(), GetStationIndex(), GetTileCatchmentRadius(), Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_station_pool >::index, Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem< Tpool >::index, industries_near, industry, BitmapTileArea::Initialize(), INVALID_TILE, IsTileType(), Industry::location, MP_HOUSE, MP_INDUSTRY, MP_STATION, Industry::neutral_station, BaseStation::rect, RemoveFromAllNearbyLists(), BitmapTileArea::Reset(), StationSettings::serve_neutral_industries, BitmapTileArea::SetTile(), GameSettings::station, Industry::stations_near, Town::stations_near, and TileXY().
Referenced by AfterStationTileSetChange(), and RemoveRailStation().
|
static |
Recomputes catchment of all stations.
This will additionally recompute nearby stations for all towns and industries.
Definition at line 534 of file station.cpp.
References SpecializedStation< Station, false >::Iterate(), Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_industry_pool >::Iterate(), and Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_town_pool >::Iterate().
Referenced by AfterLoadGame(), and CheckCaches().
| void Station::RemoveFromAllNearbyLists | ( | ) |
Remove this station from the nearby stations lists of nearby towns and industries.
Definition at line 427 of file station.cpp.
References catchment_tiles, Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_town_pool >::Get(), Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_industry_pool >::Get(), GetIndustryIndex(), GetTileType(), GetTownIndex(), FlatSet< Tkey, Tcompare >::insert(), MP_HOUSE, and MP_INDUSTRY.
Referenced by RecomputeCatchment(), and ~Station().
| void Station::RemoveIndustryToDeliver | ( | Industry * | ind | ) |
Remove nearby industry from station's industries_near list.
| ind | Industry |
Definition at line 415 of file station.cpp.
References industries_near.
|
inline |
Definition at line 575 of file station_base.h.
|
inlineoverridevirtual |
Check whether a specific tile belongs to this station.
| tile | the tile to check |
Implements BaseStation.
Definition at line 565 of file station_base.h.
References GetStationIndex(), Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_station_pool >::index, and IsRailStationTile().
Referenced by GetPlatformLength(), and MarkTilesDirty().
|
inline |
Definition at line 570 of file station_base.h.
|
inline |
Definition at line 560 of file station_base.h.
|
overridevirtual |
Update the virtual coords needed to draw the station sign.
Implements BaseStation.
Definition at line 430 of file station_cmd.cpp.
References Airport, AT_OILRIG, BaseStation::facilities, GetString(), Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_station_pool >::index, Kdtree< T, TxyFunc, CoordT, DistT >::Insert(), TrackedViewportSign::kdtree_valid, RemapCoords2(), Kdtree< T, TxyFunc, CoordT, DistT >::Remove(), SetWindowDirty(), BaseStation::sign, BaseBitSet< Timpl, Tvalue_type, Tstorage, Tmask >::Test(), TILE_SIZE, TileX(), TileY(), TrackedViewportSign::UpdatePosition(), WC_STATION_VIEW, Coord2D< T >::x, BaseStation::xy, and Coord2D< T >::y.
Referenced by AfterStationTileSetChange(), and CmdRenameStation().
| Airport Station::airport {} |
Tile area the airport covers.
Definition at line 514 of file station_base.h.
Referenced by AircraftController(), AircraftEventHandler_AtTerminal(), AircraftEventHandler_InHangar(), AircraftGetEntryPoint(), AircraftNextAirportPos_and_Order(), AirportFindFreeTerminal(), AirportGetNearestTown(), AirportHasBlock(), AirportSetBlocks(), AirportTileScopeResolver::AirportTileScopeResolver(), CanVehicleUseStation(), CheckOrders(), CmdBuildAirport(), CmdInsertOrder(), CmdOpenCloseAirport(), DisasterTick_Zeppeliner(), Aircraft::FindClosestDepot(), FindNearestHangar(), FloodVehicleProc(), FloodVehicles(), FreeTerminal(), GetCatchmentRadius(), Order::GetLocation(), NIHAirport::GetPSA(), GetTargetAirportIfValid(), GetTileArea(), GetTileCatchmentRadius(), AirportScopeResolver::GetVariable(), AirportTileScopeResolver::GetVariable(), GetVehiclePosOnBuild(), HandleCrashedAircraft(), IsHangar(), MapAircraftMovementState(), MaybeCrashAirplane(), StationViewWindow::OnPaint(), Vehicle::PreDestructor(), RemoveAirport(), NIHAirport::Resolve(), AirportScopeResolver::StorePSA(), UpdateAirplanesOnNewStation(), and ~Station().
| CargoTypes Station::always_accepted {} |
Bitmask of always accepted cargo types (by houses, HQs, industry tiles when industry doesn't accept cargo)
Definition at line 530 of file station_base.h.
Referenced by DeliverGoods(), and UpdateStationAcceptance().
| TileArea Station::bus_station {} |
Tile area the bus 'station' part covers.
Definition at line 510 of file station_base.h.
Referenced by CmdBuildRoadStop(), GetTileArea(), and RemoveRoadStop().
| RoadStop* Station::bus_stops = nullptr |
All the road stops.
Definition at line 509 of file station_base.h.
Referenced by AfterLoadGame(), FindRoadStopSpot(), GetCatchmentRadius(), and RemoveRoadStop().
| BitmapTileArea Station::catchment_tiles {} |
NOSAVE: Set of individual tiles covered by catchment area.
Definition at line 520 of file station_base.h.
Referenced by CatchmentCoversTown(), CheckSubsidised(), GetAcceptanceAroundStation(), RecomputeCatchment(), RemoveFromAllNearbyLists(), and TriggerWatchedCargoCallbacks().
| TileArea Station::docking_station {} |
Tile area the docking tiles cover.
Definition at line 516 of file station_base.h.
Referenced by CheckForDockingTile(), GetTileArea(), and RemoveDock().
| std::array<GoodsEntry, NUM_CARGO> Station::goods |
Goods at this station.
Definition at line 529 of file station_base.h.
Referenced by LinkGraphOverlay::AddLinks(), LinkGraph::AddNode(), StationViewWindow::BuildCargoList(), CalcPercentVehicleFilled(), Vehicle::CancelReservation(), DeleteStaleLinks(), DeliverGoods(), StationViewWindow::DrawCargoRatings(), StationViewWindow::DrawEntries(), CompanyStationsWindow::DrawWidget(), StationViewWindow::EstimateDestinations(), GetAcceptanceMask(), GetEmptyMask(), HandleStationRefit(), IncreaseStats(), LoadUnloadVehicle(), MaybeCrashAirplane(), LinkGraph::Merge(), ReturnCargoAction::operator()(), FinalizeRefitAction::operator()(), PrepareUnload(), StationViewWindow::RecalcDestinations(), LinkRefresher::RefreshStats(), LinkGraph::RemoveNode(), RerouteCargo(), StationResolverObject::ResolveReal(), StationHandleBigTick(), CompanyStationsWindow::StationRatingMaxSorter(), CompanyStationsWindow::StationRatingMinSorter(), StationResolverObject::StationResolverObject(), CompanyStationsWindow::StationWaitingAvailableSorter(), CompanyStationsWindow::StationWaitingTotalSorter(), TriggerWatchedCargoCallbacks(), TruncateCargo(), UpdateStationAcceptance(), UpdateStationRating(), LinkGraphJob::~LinkGraphJob(), and ~Station().
| StationHadVehicleOfType Station::had_vehicle_of_type {} |
Definition at line 522 of file station_base.h.
| IndustryType Station::indtype = IT_INVALID |
Industry type to get the name from.
Definition at line 518 of file station_base.h.
Referenced by GenerateStationName().
| IndustryList Station::industries_near {} |
Cached list of industries near the station that can accept cargo,.
Definition at line 532 of file station_base.h.
Referenced by AddCargoDelivery(), AddIndustryToDeliver(), CheckSubsidised(), DeliverGoodsToIndustry(), PopulateStationsNearby(), RecomputeCatchment(), and RemoveIndustryToDeliver().
| Industry* Station::industry = nullptr |
NOSAVE: Associated industry for neutral stations. (Rebuilt on load from Industry->st)
Definition at line 533 of file station_base.h.
Referenced by ForAllStationsAroundTiles(), and RecomputeCatchment().
| uint8_t Station::last_vehicle_type = 0 |
Definition at line 527 of file station_base.h.
| std::list<Vehicle *> Station::loading_vehicles {} |
Definition at line 528 of file station_base.h.
| TileArea Station::ship_station {} |
Tile area the ship 'station' part covers.
Definition at line 515 of file station_base.h.
Referenced by CmdBuildDock(), GetCatchmentRadius(), ProcessOrders(), and RemoveDock().
| uint8_t Station::time_since_load = 0 |
Definition at line 524 of file station_base.h.
| uint8_t Station::time_since_unload = 0 |
Definition at line 525 of file station_base.h.
| TileArea Station::truck_station {} |
Tile area the truck 'station' part covers.
Definition at line 512 of file station_base.h.
Referenced by CmdBuildRoadStop(), GetTileArea(), and RemoveRoadStop().
| RoadStop* Station::truck_stops = nullptr |
All the truck stops.
Definition at line 511 of file station_base.h.
Referenced by AfterLoadGame(), FindRoadStopSpot(), GetCatchmentRadius(), and RemoveRoadStop().