OpenTTD
vehicle_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 VEHICLE_TYPE_H
11 #define VEHICLE_TYPE_H
12 
13 #include "core/enum_type.hpp"
14 
16 typedef uint32 VehicleID;
17 
18 static const int GROUND_ACCELERATION = 9800;
19 
21 enum VehicleType : byte {
22  VEH_BEGIN,
23 
24  VEH_TRAIN = VEH_BEGIN,
28 
30 
33 
34  VEH_END,
35  VEH_INVALID = 0xFF,
36 };
39 template <> struct EnumPropsT<VehicleType> : MakeEnumPropsT<VehicleType, byte, VEH_TRAIN, VEH_END, VEH_INVALID, 3> {};
40 
41 struct Vehicle;
42 struct Train;
43 struct RoadVehicle;
44 struct Ship;
45 struct Aircraft;
46 struct EffectVehicle;
47 struct DisasterVehicle;
48 
51 {
53 };
54 
55 static const VehicleID INVALID_VEHICLE = 0xFFFFF;
56 
59  // Original PathFinder (OPF) used to be 0
60  VPF_NPF = 1,
61  VPF_YAPF = 2,
62 };
63 
66  DEPOT_SERVICE = (1U << 28),
67  DEPOT_MASS_SEND = (1U << 29),
68  DEPOT_DONT_CANCEL = (1U << 30),
69  DEPOT_LOCATE_HANGAR = (1U << 31),
70  DEPOT_COMMAND_MASK = 0xFU << 28,
71 };
72 
73 static const uint MAX_LENGTH_VEHICLE_NAME_CHARS = 32;
74 
76 static const uint VEHICLE_LENGTH = 8;
77 
80  AM_ORIGINAL,
81  AM_REALISTIC,
82 };
83 
86  EIT_ON_MAP = 0x00,
87  EIT_IN_DEPOT = 0x10,
88  EIT_IN_DETAILS = 0x11,
89  EIT_IN_LIST = 0x12,
90  EIT_PURCHASE = 0x20,
91  EIT_PREVIEW = 0x21,
92 };
93 
94 #endif /* VEHICLE_TYPE_H */
Helper template class that makes basic properties of given enumeration type visible from outsize...
Definition: enum_type.hpp:62
Last company-ownable type.
Definition: vehicle_type.h:29
Non-existing type of vehicle.
Definition: vehicle_type.h:35
Yet Another PathFinder.
Definition: vehicle_type.h:61
Don&#39;t cancel current goto depot command if any.
Definition: vehicle_type.h:68
Train vehicle type.
Definition: vehicle_type.h:24
Vehicle drawn in viewport.
Definition: vehicle_type.h:86
Ship vehicle type.
Definition: vehicle_type.h:26
static const int GROUND_ACCELERATION
Acceleration due to gravity, 9.8 m/s^2.
Definition: vehicle_type.h:18
VehicleType
Available vehicle types.
Definition: vehicle_type.h:21
Aircraft, helicopters, rotors and their shadows belong to this class.
Definition: aircraft.h:74
Vehicle data structure.
Definition: vehicle_base.h:210
A special vehicle is one of the following:
Vehicle drawn in purchase list, autoreplace gui, ...
Definition: vehicle_type.h:90
static const VehicleID INVALID_VEHICLE
Constant representing a non-existing vehicle.
Definition: vehicle_type.h:55
Vehicle drawn in depot.
Definition: vehicle_type.h:87
EngineImageType
Visualisation contexts of vehicles and engines.
Definition: vehicle_type.h:85
Find another airport if the target one lacks a hangar.
Definition: vehicle_type.h:69
Type (helpers) for enums.
DepotCommand
Flags to add to p1 for goto depot commands.
Definition: vehicle_type.h:65
Vehicle drawn in vehicle details, refit window, ...
Definition: vehicle_type.h:88
Buses, trucks and trams belong to this class.
Definition: roadveh.h:107
static const uint MAX_LENGTH_VEHICLE_NAME_CHARS
The maximum length of a vehicle name in characters including &#39;\0&#39;.
Definition: vehicle_type.h:73
uint32 VehicleID
The type all our vehicle IDs have.
Definition: vehicle_type.h:16
Tells that it&#39;s a mass send to depot command (type in VLW flag)
Definition: vehicle_type.h:67
static const uint VEHICLE_LENGTH
The length of a vehicle in tile units.
Definition: vehicle_type.h:76
Informative template class exposing basic enumeration properties used by several other templates belo...
Definition: enum_type.hpp:48
Vehicle drawn in preview window, news, ...
Definition: vehicle_type.h:91
Disaster vehicle type.
Definition: vehicle_type.h:32
New PathFinder.
Definition: vehicle_type.h:60
All ships have this type.
Definition: ship.h:26
&#39;Train&#39; is either a loco or a wagon.
Definition: train.h:85
Effect vehicle type (smoke, explosions, sparks, bubbles)
Definition: vehicle_type.h:31
The vehicle will leave the depot right after arrival (service only)
Definition: vehicle_type.h:66
Vehicle drawn in vehicle list, group list, ...
Definition: vehicle_type.h:89
VehiclePathFinders
Pathfinding option states.
Definition: vehicle_type.h:58
AccelerationModel
Vehicle acceleration models.
Definition: vehicle_type.h:79
Disasters, like submarines, skyrangers and their shadows, belong to this class.
VehicleType type
Type of vehicle.
Definition: vehicle_type.h:52
Base vehicle class.
Definition: vehicle_type.h:50
Aircraft vehicle type.
Definition: vehicle_type.h:27
#define DECLARE_POSTFIX_INCREMENT(enum_type)
Some enums need to have allowed incrementing (i.e.
Definition: enum_type.hpp:14
Road vehicle type.
Definition: vehicle_type.h:25