OpenTTD Source 20260108-master-g8ba1860eaa
station_base.h
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <https://www.gnu.org/licenses/old-licenses/gpl-2.0>.
6 */
7
10#ifndef STATION_BASE_H
11#define STATION_BASE_H
12
13#include "core/flatset_type.hpp"
14#include "core/random_func.hpp"
15#include "base_station_base.h"
16#include "newgrf_airport.h"
17#include "cargopacket.h"
18#include "industry_type.h"
20#include "newgrf_storage.h"
21#include "bitmap_type.h"
22
23static const uint8_t INITIAL_STATION_RATING = 175;
24static const uint8_t MAX_STATION_RATING = 255;
25
33class FlowStat {
34public:
35 typedef std::map<uint32_t, StationID> SharesMap;
36
37 static const SharesMap empty_sharesmap;
38
44 inline FlowStat() {NOT_REACHED();}
45
52 inline FlowStat(StationID st, uint flow, bool restricted = false)
53 {
54 assert(flow > 0);
55 this->shares[flow] = st;
56 this->unrestricted = restricted ? 0 : flow;
57 }
58
67 inline void AppendShare(StationID st, uint flow, bool restricted = false)
68 {
69 assert(flow > 0);
70 this->shares[(--this->shares.end())->first + flow] = st;
71 if (!restricted) this->unrestricted += flow;
72 }
73
74 uint GetShare(StationID st) const;
75
76 void ChangeShare(StationID st, int flow);
77
78 void RestrictShare(StationID st);
79
80 void ReleaseShare(StationID st);
81
82 void ScaleToMonthly(uint runtime);
83
89 inline const SharesMap *GetShares() const { return &this->shares; }
90
95 inline uint GetUnrestricted() const { return this->unrestricted; }
96
102 inline void SwapShares(FlowStat &other)
103 {
104 this->shares.swap(other.shares);
105 std::swap(this->unrestricted, other.unrestricted);
106 }
107
116 inline StationID GetViaWithRestricted(bool &is_restricted) const
117 {
118 assert(!this->shares.empty());
119 uint rand = RandomRange((--this->shares.end())->first);
120 is_restricted = rand >= this->unrestricted;
121 return this->shares.upper_bound(rand)->second;
122 }
123
131 inline StationID GetVia() const
132 {
133 assert(!this->shares.empty());
134 return this->unrestricted > 0 ?
135 this->shares.upper_bound(RandomRange(this->unrestricted))->second :
136 StationID::Invalid();
137 }
138
139 StationID GetVia(StationID excluded, StationID excluded2 = StationID::Invalid()) const;
140
141 void Invalidate();
142
143private:
144 SharesMap shares{};
145 uint unrestricted = 0;
146};
147
149class FlowStatMap : public std::map<StationID, FlowStat> {
150public:
151 uint GetFlow() const;
152 uint GetFlowVia(StationID via) const;
153 uint GetFlowFrom(StationID from) const;
154 uint GetFlowFromVia(StationID from, StationID via) const;
155
156 void AddFlow(StationID origin, StationID via, uint amount);
157 void PassOnFlow(StationID origin, StationID via, uint amount);
158 std::vector<StationID> DeleteFlows(StationID via);
159 void RestrictFlows(StationID via);
160 void ReleaseFlows(StationID via);
162};
163
169 enum class State : uint8_t {
174 Acceptance = 0,
175
184 Rating = 1,
185
190 EverAccepted = 2,
191
196 LastMonth = 3,
197
202 CurrentMonth = 4,
203
208 AcceptedBigtick = 5,
209 };
210 using States = EnumBitSet<State, uint8_t>;
211
215
216 bool IsEmpty() const
217 {
218 return this->cargo.TotalCount() == 0 && this->flows.empty();
219 }
220 };
221
223 NodeID node = INVALID_NODE;
224 LinkGraphID link_graph = LinkGraphID::Invalid();
225
227
233 uint8_t time_since_pickup = 255;
234
235 uint8_t rating = INITIAL_STATION_RATING;
236
246 uint8_t last_speed = 0;
247
252 uint8_t last_age = 255;
253
254 uint8_t amount_fract = 0;
255
261 bool HasVehicleEverTriedLoading() const { return this->last_speed != 0; }
262
267 inline bool HasRating() const
268 {
270 }
271
277 inline StationID GetVia(StationID source) const
278 {
279 if (!this->HasData()) return StationID::Invalid();
280
281 FlowStatMap::const_iterator flow_it(this->GetData().flows.find(source));
282 return flow_it != this->GetData().flows.end() ? flow_it->second.GetVia() : StationID::Invalid();
283 }
284
293 inline StationID GetVia(StationID source, StationID excluded, StationID excluded2 = StationID::Invalid()) const
294 {
295 if (!this->HasData()) return StationID::Invalid();
296
297 FlowStatMap::const_iterator flow_it(this->GetData().flows.find(source));
298 return flow_it != this->GetData().flows.end() ? flow_it->second.GetVia(excluded, excluded2) : StationID::Invalid();
299 }
300
305 [[debug_inline]] inline bool HasData() const { return this->data != nullptr; }
306
310 void ClearData() { this->data.reset(); }
311
317 [[debug_inline]] inline const GoodsEntryData &GetData() const
318 {
319 assert(this->HasData());
320 return *this->data;
321 }
322
328 [[debug_inline]] inline GoodsEntryData &GetData()
329 {
330 assert(this->HasData());
331 return *this->data;
332 }
333
339 {
340 if (!this->HasData()) this->data = std::make_unique<GoodsEntryData>();
341 return *this->data;
342 }
343
344 uint8_t ConvertState() const;
345
351 inline uint AvailableCount() const
352 {
353 return this->HasData() ? this->GetData().cargo.AvailableCount() : 0;
354 }
355
361 inline uint TotalCount() const
362 {
363 return this->HasData() ? this->GetData().cargo.TotalCount() : 0;
364 }
365
366private:
367 std::unique_ptr<GoodsEntryData> data = nullptr;
368};
369
371struct Airport : public TileArea {
372 Airport() : TileArea(INVALID_TILE, 0, 0) {}
373
375 uint8_t type = 0;
376 uint8_t layout = 0;
378
380
386 const AirportSpec *GetSpec() const
387 {
388 if (this->tile == INVALID_TILE) return &AirportSpec::dummy;
389 return AirportSpec::Get(this->type);
390 }
391
398 const AirportFTAClass *GetFTA() const
399 {
400 return this->GetSpec()->fsm;
401 }
402
404 inline bool HasHangar() const
405 {
406 return !this->GetSpec()->depots.empty();
407 }
408
418 {
419 const AirportSpec *as = this->GetSpec();
420 switch (this->rotation) {
421 case DIR_N: return this->tile + ToTileIndexDiff(tidc);
422
423 case DIR_E: return this->tile + TileDiffXY(tidc.y, as->size_x - 1 - tidc.x);
424
425 case DIR_S: return this->tile + TileDiffXY(as->size_x - 1 - tidc.x, as->size_y - 1 - tidc.y);
426
427 case DIR_W: return this->tile + TileDiffXY(as->size_y - 1 - tidc.y, tidc.x);
428
429 default: NOT_REACHED();
430 }
431 }
432
439 inline TileIndex GetHangarTile(uint hangar_num) const
440 {
441 for (const auto &depot : this->GetSpec()->depots) {
442 if (depot.hangar_num == hangar_num) {
443 return this->GetRotatedTileFromOffset(depot.ti);
444 }
445 }
446 NOT_REACHED();
447 }
448
456 {
457 const AirportSpec *as = this->GetSpec();
459 return ChangeDir(htt->dir, DirDifference(this->rotation, as->layouts[0].rotation));
460 }
461
468 inline uint GetHangarNum(TileIndex tile) const
469 {
471 return htt->hangar_num;
472 }
473
475 inline uint GetNumHangars() const
476 {
477 uint num = 0;
478 uint counted = 0;
479 for (const auto &depot : this->GetSpec()->depots) {
480 if (!HasBit(counted, depot.hangar_num)) {
481 num++;
482 SetBit(counted, depot.hangar_num);
483 }
484 }
485 return num;
486 }
487
488private:
496 {
497 for (const auto &depot : this->GetSpec()->depots) {
498 if (this->GetRotatedTileFromOffset(depot.ti) == tile) {
499 return &depot;
500 }
501 }
502 NOT_REACHED();
503 }
504};
505
507 uint distance = 0;
508 Industry *industry = nullptr;
509
510 bool operator== (const IndustryListEntry &other) const { return this->distance == other.distance && this->industry == other.industry; };
511};
512
514 bool operator() (const IndustryListEntry &lhs, const IndustryListEntry &rhs) const;
515};
516
517typedef std::set<IndustryListEntry, IndustryCompare> IndustryList;
518
520struct Station final : SpecializedStation<Station, false> {
521public:
522 RoadStop *GetPrimaryRoadStop(RoadStopType type) const
523 {
524 return type == RoadStopType::Bus ? bus_stops : truck_stops;
525 }
526
527 RoadStop *GetPrimaryRoadStop(const struct RoadVehicle *v) const;
528
529 RoadStop *bus_stops = nullptr;
533
537
538 IndustryType indtype = IT_INVALID;
539
541
542 StationHadVehicleOfType had_vehicle_of_type{};
543
544 uint8_t time_since_load = 0;
545 uint8_t time_since_unload = 0;
546
547 uint8_t last_vehicle_type = 0;
548 std::list<Vehicle *> loading_vehicles{};
549 std::array<GoodsEntry, NUM_CARGO> goods;
550 CargoTypes always_accepted{};
551
552 IndustryList industries_near{};
553 Industry *industry = nullptr;
554
556 ~Station() override;
557
558 void AddFacility(StationFacility new_facility_bit, TileIndex facil_xy);
559
560 void MarkTilesDirty(bool cargo_change) const;
561
562 void UpdateVirtCoord() override;
563
564 void MoveSign(TileIndex new_xy) override;
565
566 void AfterStationTileSetChange(bool adding, StationType type);
567
568 uint GetPlatformLength(TileIndex tile, DiagDirection dir) const override;
569 uint GetPlatformLength(TileIndex tile) const override;
570 void RecomputeCatchment(bool no_clear_nearby_lists = false);
571 static void RecomputeCatchmentForAll();
572
573 uint GetCatchmentRadius() const;
574 Rect GetCatchmentRect() const;
575 bool CatchmentCoversTown(TownID t) const;
576 void AddIndustryToDeliver(Industry *ind, TileIndex tile);
579
580 inline bool TileIsInCatchment(TileIndex tile) const
581 {
582 return this->catchment_tiles.HasTile(tile);
583 }
584
585 inline bool TileBelongsToRailStation(TileIndex tile) const override
586 {
587 return IsRailStationTile(tile) && GetStationIndex(tile) == this->index;
588 }
589
590 inline bool TileBelongsToRoadStop(TileIndex tile) const
591 {
592 return IsStationRoadStopTile(tile) && GetStationIndex(tile) == this->index;
593 }
594
595 inline bool TileBelongsToAirport(TileIndex tile) const
596 {
597 return IsAirportTile(tile) && GetStationIndex(tile) == this->index;
598 }
599
600 uint32_t GetNewGRFVariable(const ResolverObject &object, uint8_t variable, uint8_t parameter, bool &available) const override;
601
602 TileArea GetTileArea(StationType type) const override;
603};
604
607private:
608 const Station *st = nullptr;
609
610public:
616 {
617 if (!st->TileBelongsToAirport(this->tile)) ++(*this);
618 }
619
620 inline TileIterator& operator ++() override
621 {
623 while (this->tile != INVALID_TILE && !st->TileBelongsToAirport(this->tile)) {
625 }
626 return *this;
627 }
628
629 std::unique_ptr<TileIterator> Clone() const override
630 {
631 return std::make_unique<AirportTileIterator>(*this);
632 }
633};
634
635void RebuildStationKdtree();
636
644template <typename Func>
645void ForAllStationsAroundTiles(const TileArea &ta, Func func)
646{
647 /* There are no stations, so we will never find anything. */
648 if (Station::GetNumItems() == 0) return;
649
650 /* Not using, or don't have a nearby stations list, so we need to scan. */
651 FlatSet<StationID> seen_stations;
652
653 /* Scan an area around the building covering the maximum possible station
654 * to find the possible nearby stations. */
656 TileArea ta_ext = TileArea(ta).Expand(max_c);
657 for (TileIndex tile : ta_ext) {
658 if (!IsTileType(tile, MP_STATION)) continue;
659 seen_stations.insert(GetStationIndex(tile));
660 }
661
662 for (StationID stationid : seen_stations) {
663 Station *st = Station::GetIfValid(stationid);
664 if (st == nullptr) continue; /* Waypoint */
665
666 /* Check if station is attached to an industry */
667 if (!_settings_game.station.serve_neutral_industries && st->industry != nullptr) continue;
668
669 /* Test if the tile is within the station's catchment */
670 for (TileIndex tile : ta) {
671 if (st->TileIsInCatchment(tile)) {
672 if (func(st, tile)) break;
673 }
674 }
675 }
676}
677
678#endif /* STATION_BASE_H */
Base classes/functions for base stations.
Bitmap functions.
constexpr T SetBit(T &x, const uint8_t y)
Set a bit in a variable.
constexpr bool HasBit(const T x, const uint8_t y)
Checks if a bit in a value is set.
Base class for cargo packets.
Iterator to iterate over all tiles belonging to an airport.
std::unique_ptr< TileIterator > Clone() const override
Allocate a new iterator that is a copy of this one.
TileIterator & operator++() override
Move ourselves to the next tile in the rectangle on the map.
const Station * st
The station the airport is a part of.
AirportTileIterator(const Station *st)
Construct the iterator.
constexpr bool Test(Tvalue_type value) const
Test if the value-th bit is set.
Represents a tile area containing containing individually set tiles.
Definition bitmap_type.h:18
bool HasTile(TileIndex tile) const
Test if a tile is part of the tile area.
Definition bitmap_type.h:99
Enum-as-bit-set wrapper.
Flat set implementation that uses a sorted vector for storage.
std::pair< const_iterator, bool > insert(const Tkey &key)
Insert a key into the set, if it does not already exist.
Flow descriptions by origin stations.
uint GetFlow() const
Get the sum of all flows from this FlowStatMap.
void PassOnFlow(StationID origin, StationID via, uint amount)
Pass on some flow, remembering it as invalid, for later subtraction from locally consumed flow.
std::vector< StationID > DeleteFlows(StationID via)
Delete all flows at a station for specific cargo and destination.
void AddFlow(StationID origin, StationID via, uint amount)
Add some flow from "origin", going via "via".
uint GetFlowFrom(StationID from) const
Get the sum of flows from a specific station from this FlowStatMap.
void FinalizeLocalConsumption(StationID self)
Subtract invalid flows from locally consumed flow.
void ReleaseFlows(StationID via)
Release all flows at a station for specific cargo and destination.
uint GetFlowFromVia(StationID from, StationID via) const
Get the flow from a specific station via a specific other station.
uint GetFlowVia(StationID via) const
Get the sum of flows via a specific station from this FlowStatMap.
void RestrictFlows(StationID via)
Restrict all flows at a station for specific cargo and destination.
Flow statistics telling how much flow should be sent along a link.
static const SharesMap empty_sharesmap
Static instance of FlowStat::SharesMap.
void ScaleToMonthly(uint runtime)
Scale all shares from link graph's runtime to monthly values.
void RestrictShare(StationID st)
Restrict a flow by moving it to the end of the map and decreasing the amount of unrestricted flow.
uint GetShare(StationID st) const
Get flow for a station.
void SwapShares(FlowStat &other)
Swap the shares maps, and thus the content of this FlowStat with the other one.
uint GetUnrestricted() const
Return total amount of unrestricted shares.
StationID GetVia() const
Get a station a package can be routed to.
StationID GetViaWithRestricted(bool &is_restricted) const
Get a station a package can be routed to.
const SharesMap * GetShares() const
Get the actual shares as a const pointer so that they can be iterated over.
SharesMap shares
Shares of flow to be sent via specified station (or consumed locally).
void ReleaseShare(StationID st)
Release ("unrestrict") a flow by moving it to the begin of the map and increasing the amount of unres...
void ChangeShare(StationID st, int flow)
Change share for specified station.
void AppendShare(StationID st, uint flow, bool restricted=false)
Add some flow to the end of the shares map.
FlowStat()
Invalid constructor.
void Invalidate()
Reduce all flows to minimum capacity so that they don't get in the way of link usage statistics too m...
uint unrestricted
Limit for unrestricted shares.
FlowStat(StationID st, uint flow, bool restricted=false)
Create a FlowStat with an initial entry.
Iterator to iterate over a tile area (rectangle) of the map.
TileIterator & operator++() override
Move ourselves to the next tile in the rectangle on the map.
CargoList that is used for stations.
uint TotalCount() const
Returns total count of cargo at the station, including cargo which is already reserved for loading.
uint AvailableCount() const
Returns sum of cargo still available for loading at the station.
Base class for tile iterators.
TileIndex tile
The current tile we are at.
DirDiff DirDifference(Direction d0, Direction d1)
Calculate the difference between two directions.
Direction ChangeDir(Direction d, DirDiff delta)
Change a direction by a given difference.
Direction
Defines the 8 directions on the map.
@ INVALID_DIR
Flag for an invalid direction.
@ DIR_N
North.
@ DIR_S
South.
@ DIR_W
West.
@ DIR_E
East.
DiagDirection
Enumeration for diagonal directions.
Flat set container implementation.
void MarkTilesDirty(bool cargo_change) const
Marks the tiles of the station as dirty.
Definition station.cpp:247
Types related to the industry.
Declaration of link graph types used for cargo distribution.
TileIndexDiff ToTileIndexDiff(TileIndexDiffC tidc)
Return the offset between two tiles from a TileIndexDiffC struct.
Definition map_func.h:452
TileIndexDiff TileDiffXY(int x, int y)
Calculates an offset for the given coordinate(-offset).
Definition map_func.h:401
NewGRF handling of airports.
Functionality related to the temporary and persistent storage arrays for NewGRFs.
Pseudo random number generator.
uint32_t RandomRange(uint32_t limit, const std::source_location location=std::source_location::current())
Pick a random number between 0 and limit - 1, inclusive.
GameSettings _settings_game
Game settings of a running game or the scenario editor.
Definition settings.cpp:61
void ForAllStationsAroundTiles(const TileArea &ta, Func func)
Call a function on all stations that have any part of the requested area within their catchment.
bool IsStationRoadStopTile(Tile t)
Is tile t a road stop station?
bool IsAirportTile(Tile t)
Is this tile a station tile and an airport tile?
bool IsRailStationTile(Tile t)
Is this tile a station tile and a rail station?
StationID GetStationIndex(Tile t)
Get StationID from a tile.
Definition station_map.h:28
RoadStopType
Types of RoadStops.
@ Bus
A standard stop for buses.
StationHadVehicleOfType
The vehicles that may have visited a station.
StationFacility
The facilities a station might be having.
StationType
Station types.
static constexpr uint MAX_CATCHMENT
Maximum catchment for airports with "modified catchment" enabled.
static constexpr uint CA_UNMODIFIED
Catchment for all stations with "modified catchment" disabled.
Finite sTate mAchine (FTA) of an airport.
Definition airport.h:159
Defines the data structure for an airport.
std::vector< AirportTileLayout > layouts
List of layouts composing the airport.
static const AirportSpec dummy
The dummy airport.
const struct AirportFTAClass * fsm
the finite statemachine for the default airports
uint8_t size_y
size of airport in y direction
uint8_t size_x
size of airport in x direction
static const AirportSpec * Get(uint8_t type)
Retrieve airport spec for the given airport.
std::span< const HangarTileTable > depots
Position of the depots on the airports.
All airport-related information.
AirportBlocks blocks
stores which blocks on the airport are taken. was 16 bit earlier on, then 32
TileIndex GetRotatedTileFromOffset(TileIndexDiffC tidc) const
Add the tileoffset to the base tile of this airport but rotate it first.
bool HasHangar() const
Check if this airport has at least one hangar.
uint GetHangarNum(TileIndex tile) const
Get the hangar number of the hangar at a specific tile.
Direction rotation
How this airport is rotated.
uint8_t type
Type of this airport,.
Direction GetHangarExitDirection(TileIndex tile) const
Get the exit direction of the hangar at a specific tile.
PersistentStorage * psa
Persistent storage for NewGRF airports.
uint GetNumHangars() const
Get the number of hangars on this airport.
const AirportFTAClass * GetFTA() const
Get the finite-state machine for this airport or the finite-state machine for the dummy airport in ca...
TileIndex GetHangarTile(uint hangar_num) const
Get the first tile of the given hangar.
const HangarTileTable * GetHangarDataByTile(TileIndex tile) const
Retrieve hangar information of a hangar at a given tile.
const AirportSpec * GetSpec() const
Get the AirportSpec that from the airport type of this airport.
uint8_t layout
Airport layout number.
StationSettings station
settings related to station management
FlowStatMap flows
Planned flows through this station.
StationCargoList cargo
The cargo packets of cargo waiting in this station.
Stores station stats for a single cargo.
uint max_waiting_cargo
Max cargo from this station waiting at any station.
bool HasRating() const
Does this cargo have a rating at this station?
StationID GetVia(StationID source, StationID excluded, StationID excluded2=StationID::Invalid()) const
Get the best next hop for a cargo packet from station source, optionally excluding one or two station...
void ClearData()
Clear optional cargo packet/flow data.
uint8_t last_speed
Maximum speed (up to 255) of the last vehicle that tried to load this cargo.
uint TotalCount() const
Returns total count of cargo at the station, including cargo which is already reserved for loading.
uint8_t last_age
Age in years (up to 255) of the last vehicle that tried to load this cargo.
uint8_t time_since_pickup
Number of rating-intervals (up to 255) since the last vehicle tried to load this cargo.
std::unique_ptr< GoodsEntryData > data
Optional cargo packet and flow data.
States status
Status of this cargo, see State.
NodeID node
ID of node in link graph referring to this goods entry.
State
Status of this cargo for the station.
@ LastMonth
Set when cargo was delivered for final delivery last month.
@ Acceptance
Set when the station accepts the cargo currently for final deliveries.
@ EverAccepted
Set when a vehicle ever delivered cargo to the station for final delivery.
@ Rating
This indicates whether a cargo has a rating at the station.
@ AcceptedBigtick
Set when cargo was delivered for final delivery during the current STATION_ACCEPTANCE_TICKS interval.
@ CurrentMonth
Set when cargo was delivered for final delivery this month.
const GoodsEntryData & GetData() const
Get optional cargo packet/flow data.
uint8_t amount_fract
Fractional part of the amount in the cargo list.
LinkGraphID link_graph
Link graph this station belongs to.
bool HasVehicleEverTriedLoading() const
Reports whether a vehicle has ever tried to load the cargo at this station.
uint8_t rating
Station rating for this cargo.
bool HasData() const
Test if this goods entry has optional cargo packet/flow data.
GoodsEntryData & GetOrCreateData()
Get optional cargo packet/flow data.
GoodsEntryData & GetData()
Get non-const optional cargo packet/flow data.
uint AvailableCount() const
Returns sum of cargo still available for loading at the station.
uint8_t ConvertState() const
Convert GoodsEntry status to the form required for NewGRF variables.
StationID GetVia(StationID source) const
Get the best next hop for a cargo packet from station source.
A list of all hangar tiles in an airport.
Direction dir
Direction of the exit.
uint8_t hangar_num
The hangar to which this tile belongs.
Defines the internal data of a functional industry.
Definition industry.h:62
Represents the covered area of e.g.
TileIndex tile
The base tile of the area.
OrthogonalTileArea & Expand(int rad)
Expand a tile area by rad tiles in each direction, keeping within map bounds.
Definition tilearea.cpp:123
Class for pooled persistent storage of data.
static size_t GetNumItems()
Returns number of valid items in the pool.
const Tindex index
Index of this pool item.
Specification of a rectangle with absolute coordinates of all edges.
Interface for SpriteGroup-s to access the gamestate.
A Stop for a Road Vehicle.
Buses, trucks and trams belong to this class.
Definition roadveh.h:98
Class defining several overloaded accessors so we don't have to cast base stations that often.
static Station * GetIfValid(auto index)
Returns station if the index is a valid index for this station type.
bool modified_catchment
different-size catchment areas
bool serve_neutral_industries
company stations can serve industries with attached neutral stations
Station data structure.
TileArea GetTileArea(StationType type) const override
Get the tile area for a given station type.
uint GetPlatformLength(TileIndex tile, DiagDirection dir) const override
Determines the REMAINING length of a platform, starting at (and including) the given tile.
Definition station.cpp:289
~Station() override
Clean up a station by clearing vehicle orders, invalidating windows and removing link stats.
Definition station.cpp:84
RoadStop * bus_stops
All the road stops.
bool CatchmentCoversTown(TownID t) const
Test if the given town ID is covered by our catchment area.
Definition station.cpp:452
TileArea ship_station
Tile area the ship 'station' part covers.
IndustryType indtype
Industry type to get the name from.
IndustryList industries_near
Cached list of industries near the station that can accept cargo,.
TileArea docking_station
Tile area the docking tiles cover.
CargoTypes always_accepted
Bitmask of always accepted cargo types (by houses, HQs, industry tiles when industry doesn't accept c...
Rect GetCatchmentRect() const
Determines catchment rectangle of this station.
Definition station.cpp:366
Industry * industry
NOSAVE: Associated industry for neutral stations. (Rebuilt on load from Industry->st)
void MoveSign(TileIndex new_xy) override
Move the station main coordinate somewhere else.
static void RecomputeCatchmentForAll()
Recomputes catchment of all stations.
Definition station.cpp:534
std::array< GoodsEntry, NUM_CARGO > goods
Goods at this station.
void RemoveFromAllNearbyLists()
Remove this station from the nearby stations lists of nearby towns and industries.
Definition station.cpp:427
TileArea bus_station
Tile area the bus 'station' part covers.
bool TileBelongsToRailStation(TileIndex tile) const override
Check whether a specific tile belongs to this station.
BitmapTileArea catchment_tiles
NOSAVE: Set of individual tiles covered by catchment area.
void RecomputeCatchment(bool no_clear_nearby_lists=false)
Recompute tiles covered in our catchment area.
Definition station.cpp:466
uint GetCatchmentRadius() const
Determines the catchment radius of the station.
Definition station.cpp:343
void AfterStationTileSetChange(bool adding, StationType type)
After adding/removing tiles to station, update some station-related stuff.
Airport airport
Tile area the airport covers.
void UpdateVirtCoord() override
Update the virtual coords needed to draw the station sign.
TileArea truck_station
Tile area the truck 'station' part covers.
void AddIndustryToDeliver(Industry *ind, TileIndex tile)
Add nearby industry to station's industries_near list if it accepts cargo.
Definition station.cpp:389
void RemoveIndustryToDeliver(Industry *ind)
Remove nearby industry from station's industries_near list.
Definition station.cpp:415
RoadStop * truck_stops
All the truck stops.
void AddFacility(StationFacility new_facility_bit, TileIndex facil_xy)
Called when new facility is built on the station.
Definition station.cpp:230
A pair-construct of a TileIndexDiff.
Definition map_type.h:31
int16_t x
The x value of the coordinate.
Definition map_type.h:32
int16_t y
The y value of the coordinate.
Definition map_type.h:33
static bool IsTileType(Tile tile, TileType type)
Checks if a tile is a given tiletype.
Definition tile_map.h:150
constexpr TileIndex INVALID_TILE
The very nice invalid tile marker.
Definition tile_type.h:95
@ MP_STATION
A tile of a station.
Definition tile_type.h:53
OrthogonalTileArea TileArea
Shorthand for the much more common orthogonal tile area.