OpenTTD Source  13.2.1
station_type.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 <http://www.gnu.org/licenses/>.
6  */
7 
10 #ifndef STATION_TYPE_H
11 #define STATION_TYPE_H
12 
13 #include "core/smallstack_type.hpp"
14 #include "tilearea_type.h"
15 #include <set>
16 
17 typedef uint16 StationID;
18 typedef uint16 RoadStopID;
19 
20 struct BaseStation;
21 struct Station;
22 struct RoadStop;
23 struct StationSpec;
24 struct Waypoint;
25 
26 static const StationID NEW_STATION = 0xFFFE;
27 static const StationID INVALID_STATION = 0xFFFF;
28 
30 
33  STATION_RAIL,
34  STATION_AIRPORT,
35  STATION_TRUCK,
36  STATION_BUS,
37  STATION_OILRIG,
38  STATION_DOCK,
39  STATION_BUOY,
40  STATION_WAYPOINT,
41 };
42 
44 enum RoadStopType : byte {
48 };
49 
51 enum StationFacility : byte {
52  FACIL_NONE = 0,
53  FACIL_TRAIN = 1 << 0,
54  FACIL_TRUCK_STOP = 1 << 1,
55  FACIL_BUS_STOP = 1 << 2,
56  FACIL_AIRPORT = 1 << 3,
57  FACIL_DOCK = 1 << 4,
58  FACIL_WAYPOINT = 1 << 7,
59 };
61 
62 
64  HVOT_NONE = 0,
65  HVOT_TRAIN = 1 << 1,
66  HVOT_BUS = 1 << 2,
67  HVOT_TRUCK = 1 << 3,
68  HVOT_AIRCRAFT = 1 << 4,
69  HVOT_SHIP = 1 << 5,
70 
71  HVOT_WAYPOINT = 1 << 6,
72 };
74 
75 
77  CA_NONE = 0,
78  CA_BUS = 3,
79  CA_TRUCK = 3,
80  CA_TRAIN = 4,
81  CA_DOCK = 5,
82 
84 
86 };
87 
88 static const uint MAX_LENGTH_STATION_NAME_CHARS = 32;
89 
91  bool operator() (const Station *lhs, const Station *rhs) const;
92 };
93 
95 typedef std::set<Station *, StationCompare> StationList;
96 
103 public:
108  StationFinder(const TileArea &area) : TileArea(area) {}
109  const StationList *GetStations();
110 };
111 
112 #endif /* STATION_TYPE_H */
CA_UNMODIFIED
@ CA_UNMODIFIED
Catchment for all stations with "modified catchment" disabled.
Definition: station_type.h:83
SmallStack
Minimal stack that uses a pool to avoid pointers.
Definition: smallstack_type.hpp:136
StationFinder
Structure contains cached list of stations nearby.
Definition: station_type.h:101
HVOT_NONE
@ HVOT_NONE
Station has seen no vehicles.
Definition: station_type.h:64
RoadStopType
RoadStopType
Types of RoadStops.
Definition: station_type.h:44
ROADSTOP_TRUCK
@ ROADSTOP_TRUCK
A standard stop for trucks.
Definition: station_type.h:46
CA_NONE
@ CA_NONE
Catchment when the station has no facilities.
Definition: station_type.h:77
FACIL_TRUCK_STOP
@ FACIL_TRUCK_STOP
Station with truck stops.
Definition: station_type.h:54
Station
Station data structure.
Definition: station_base.h:454
Waypoint
Representation of a waypoint.
Definition: waypoint_base.h:16
FACIL_NONE
@ FACIL_NONE
The station has no facilities at all.
Definition: station_type.h:52
StationType
StationType
Station types.
Definition: station_type.h:32
MAX_CATCHMENT
@ MAX_CATCHMENT
Maximum catchment for airports with "modified catchment" enabled.
Definition: station_type.h:85
FACIL_BUS_STOP
@ FACIL_BUS_STOP
Station with bus stops.
Definition: station_type.h:55
StationFinder::stations
StationList stations
List of stations nearby.
Definition: station_type.h:102
HVOT_WAYPOINT
@ HVOT_WAYPOINT
Station is a waypoint (NewGRF only!)
Definition: station_type.h:71
ROADSTOP_END
@ ROADSTOP_END
End of valid types.
Definition: station_type.h:47
HVOT_TRUCK
@ HVOT_TRUCK
Station has seen a truck.
Definition: station_type.h:67
OrthogonalTileArea
Represents the covered area of e.g.
Definition: tilearea_type.h:18
HVOT_TRAIN
@ HVOT_TRAIN
Station has seen a train.
Definition: station_type.h:65
HVOT_SHIP
@ HVOT_SHIP
Station has seen a ship.
Definition: station_type.h:69
CA_BUS
@ CA_BUS
Catchment for bus stops with "modified catchment" enabled.
Definition: station_type.h:78
CA_TRUCK
@ CA_TRUCK
Catchment for truck stops with "modified catchment" enabled.
Definition: station_type.h:79
HVOT_AIRCRAFT
@ HVOT_AIRCRAFT
Station has seen an aircraft.
Definition: station_type.h:68
FACIL_DOCK
@ FACIL_DOCK
Station with a dock.
Definition: station_type.h:57
StationFinder::GetStations
const StationList * GetStations()
Run a tile loop to find stations around a tile, on demand.
Definition: station_cmd.cpp:3938
StationList
std::set< Station *, StationCompare > StationList
List of stations.
Definition: station_type.h:95
StationFacility
StationFacility
The facilities a station might be having.
Definition: station_type.h:51
FACIL_WAYPOINT
@ FACIL_WAYPOINT
Station is a waypoint.
Definition: station_type.h:58
CA_DOCK
@ CA_DOCK
Catchment for docks with "modified catchment" enabled.
Definition: station_type.h:81
MAX_LENGTH_STATION_NAME_CHARS
static const uint MAX_LENGTH_STATION_NAME_CHARS
The maximum length of a station name in characters including '\0'.
Definition: station_type.h:88
tilearea_type.h
ROADSTOP_BUS
@ ROADSTOP_BUS
A standard stop for buses.
Definition: station_type.h:45
StationSpec
Station specification.
Definition: newgrf_station.h:113
FACIL_TRAIN
@ FACIL_TRAIN
Station with train station.
Definition: station_type.h:53
BaseStation
Base class for all station-ish types.
Definition: base_station_base.h:52
DECLARE_ENUM_AS_BIT_SET
DECLARE_ENUM_AS_BIT_SET(GenderEthnicity) enum CompanyManagerFaceVariable
Bitgroups of the CompanyManagerFace variable.
Definition: company_manager_face.h:29
CA_TRAIN
@ CA_TRAIN
Catchment for train stations with "modified catchment" enabled.
Definition: station_type.h:80
StationHadVehicleOfType
StationHadVehicleOfType
The vehicles that may have visited a station.
Definition: station_type.h:63
RoadStop
A Stop for a Road Vehicle.
Definition: roadstop_base.h:22
smallstack_type.hpp
FACIL_AIRPORT
@ FACIL_AIRPORT
Station with an airport.
Definition: station_type.h:56
CatchmentArea
CatchmentArea
The different catchment areas used.
Definition: station_type.h:76
HVOT_BUS
@ HVOT_BUS
Station has seen a bus.
Definition: station_type.h:66
StationCompare
Definition: station_type.h:90
StationFinder::StationFinder
StationFinder(const TileArea &area)
Constructs StationFinder.
Definition: station_type.h:108