OpenTTD Source 20241224-master-gf74b0cf984
order_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 ORDER_TYPE_H
11#define ORDER_TYPE_H
12
13#include "core/enum_type.hpp"
14
15typedef uint8_t VehicleOrderID;
16typedef uint32_t OrderID;
17typedef uint16_t OrderListID;
18typedef uint16_t DestinationID;
19
24
26static const OrderID INVALID_ORDER = 0xFFFFFF;
27
32static const uint IMPLICIT_ORDER_ONLY_CAP = 32;
33
35enum OrderType : uint8_t {
36 OT_BEGIN = 0,
37 OT_NOTHING = 0,
38 OT_GOTO_STATION = 1,
39 OT_GOTO_DEPOT = 2,
40 OT_LOADING = 3,
41 OT_LEAVESTATION = 4,
42 OT_DUMMY = 5,
43 OT_GOTO_WAYPOINT = 6,
44 OT_CONDITIONAL = 7,
45 OT_IMPLICIT = 8,
46 OT_END
47};
48
58
68
79
89
98
109
110
124
139
140
156
167
177
179enum CloneOptions : uint8_t {
180 CO_SHARE = 0,
181 CO_COPY = 1,
182 CO_UNSHARE = 2
183};
184
185struct Order;
186struct OrderList;
187
188#endif /* ORDER_TYPE_H */
Type (helpers) for enums.
#define DECLARE_ENUM_AS_BIT_SET(enum_type)
Operators to allow to work with enum as with type safe bit set in C++.
Definition enum_type.hpp:35
OrderDepotActionFlags
Actions that can be performed when the vehicle enters the depot.
Definition order_type.h:102
@ ODATFB_UNBUNCH
Service the vehicle and then unbunch it.
Definition order_type.h:106
@ ODATFB_NEAREST_DEPOT
Send the vehicle to the nearest depot.
Definition order_type.h:105
@ ODATFB_HALT
Service the vehicle and then halt it.
Definition order_type.h:104
@ ODATF_SERVICE_ONLY
Only service the vehicle.
Definition order_type.h:103
OrderConditionComparator
Comparator for the skip reasoning.
Definition order_type.h:128
@ OCC_LESS_EQUALS
Skip if the value is less or equal to the limit.
Definition order_type.h:132
@ OCC_EQUALS
Skip if both values are equal.
Definition order_type.h:129
@ OCC_NOT_EQUALS
Skip if both values are not equal.
Definition order_type.h:130
@ OCC_MORE_THAN
Skip if the value is more than the limit.
Definition order_type.h:133
@ OCC_IS_TRUE
Skip if the variable is true.
Definition order_type.h:135
@ OCC_LESS_THAN
Skip if the value is less than the limit.
Definition order_type.h:131
@ OCC_MORE_EQUALS
Skip if the value is more or equal to the limit.
Definition order_type.h:134
@ OCC_IS_FALSE
Skip if the variable is false.
Definition order_type.h:136
ModifyOrderFlags
Enumeration for the data to set in CmdModifyOrder.
Definition order_type.h:144
@ MOF_COND_VARIABLE
A conditional variable changes.
Definition order_type.h:150
@ MOF_LOAD
Passes an OrderLoadType.
Definition order_type.h:148
@ MOF_UNLOAD
Passes an OrderUnloadType.
Definition order_type.h:147
@ MOF_STOP_LOCATION
Passes an OrderStopLocation.
Definition order_type.h:146
@ MOF_COND_DESTINATION
Change the destination of a conditional order.
Definition order_type.h:153
@ MOF_COND_COMPARATOR
A comparator changes.
Definition order_type.h:151
@ MOF_COND_VALUE
The value to set the condition to.
Definition order_type.h:152
@ MOF_DEPOT_ACTION
Selects the OrderDepotAction.
Definition order_type.h:149
@ MOF_NON_STOP
Passes an OrderNonStopFlags.
Definition order_type.h:145
OrderLoadFlags
Flags related to the loading order.
Definition order_type.h:62
@ OLFB_FULL_LOAD
Full load all cargoes of the consist.
Definition order_type.h:64
@ OLFB_NO_LOAD
Do not load anything.
Definition order_type.h:66
@ OLF_LOAD_IF_POSSIBLE
Load as long as there is cargo that fits in the train.
Definition order_type.h:63
@ OLF_FULL_LOAD_ANY
Full load a single cargo of the consist.
Definition order_type.h:65
OrderStopLocation
Where to stop the trains.
Definition order_type.h:83
@ OSL_PLATFORM_MIDDLE
Stop at the middle of the platform.
Definition order_type.h:85
@ OSL_PLATFORM_FAR_END
Stop at the far end of the platform.
Definition order_type.h:86
@ OSL_PLATFORM_NEAR_END
Stop at the near end of the platform.
Definition order_type.h:84
OrderConditionVariable
Variables (of a vehicle) to 'cause' skipping on.
Definition order_type.h:113
@ OCV_AGE
Skip based on the age.
Definition order_type.h:117
@ OCV_UNCONDITIONALLY
Always skip.
Definition order_type.h:119
@ OCV_MAX_SPEED
Skip based on the maximum speed.
Definition order_type.h:116
@ OCV_LOAD_PERCENTAGE
Skip based on the amount of load.
Definition order_type.h:114
@ OCV_REQUIRES_SERVICE
Skip when the vehicle requires service.
Definition order_type.h:118
@ OCV_RELIABILITY
Skip based on the reliability.
Definition order_type.h:115
@ OCV_REMAINING_LIFETIME
Skip based on the remaining lifetime.
Definition order_type.h:120
@ OCV_MAX_RELIABILITY
Skip based on the maximum reliability.
Definition order_type.h:121
uint8_t VehicleOrderID
The index of an order within its current vehicle (not pool related)
Definition order_type.h:15
OrderUnloadFlags
Flags related to the unloading order.
Definition order_type.h:52
@ OUFB_TRANSFER
Transfer all cargo onto the platform.
Definition order_type.h:55
@ OUFB_NO_UNLOAD
Totally no unloading will be done.
Definition order_type.h:56
@ OUF_UNLOAD_IF_POSSIBLE
Unload all cargo that the station accepts.
Definition order_type.h:53
@ OUFB_UNLOAD
Force unloading all cargo onto the platform, possibly not getting paid.
Definition order_type.h:54
static const OrderID INVALID_ORDER
Invalid order (sentinel)
Definition order_type.h:26
static const VehicleOrderID MAX_VEH_ORDER_ID
Last valid VehicleOrderID.
Definition order_type.h:23
OrderNonStopFlags
Non-stop order flags.
Definition order_type.h:72
@ ONSF_NO_STOP_AT_ANY_STATION
The vehicle will not stop at any stations it passes including the destination.
Definition order_type.h:76
@ ONSF_NO_STOP_AT_DESTINATION_STATION
The vehicle will stop at any station it passes except the destination.
Definition order_type.h:75
@ ONSF_STOP_EVERYWHERE
The vehicle will stop at any station it passes and the destination.
Definition order_type.h:73
@ ONSF_NO_STOP_AT_INTERMEDIATE_STATIONS
The vehicle will not stop at any stations it passes except the destination.
Definition order_type.h:74
OrderDepotTypeFlags
Reasons that could cause us to go to the depot.
Definition order_type.h:93
@ ODTFB_PART_OF_ORDERS
This depot order is because of a regular order.
Definition order_type.h:96
@ ODTFB_SERVICE
This depot order is because of the servicing limit.
Definition order_type.h:95
@ ODTF_MANUAL
Manually initiated order.
Definition order_type.h:94
OrderDepotAction
Depot action to switch to when doing a MOF_DEPOT_ACTION.
Definition order_type.h:160
@ DA_SERVICE
Service only if needed.
Definition order_type.h:162
@ DA_STOP
Go to the depot and stop there.
Definition order_type.h:163
@ DA_ALWAYS_GO
Always go to the depot.
Definition order_type.h:161
@ DA_UNBUNCH
Go to the depot and unbunch.
Definition order_type.h:164
static const VehicleOrderID INVALID_VEH_ORDER_ID
Invalid vehicle order index (sentinel)
Definition order_type.h:21
static const uint IMPLICIT_ORDER_ONLY_CAP
Maximum number of orders in implicit-only lists before we start searching harder for duplicates.
Definition order_type.h:32
ModifyTimetableFlags
Enumeration for the data to set in CmdChangeTimetable.
Definition order_type.h:171
@ MTF_TRAVEL_TIME
Set travel time.
Definition order_type.h:173
@ MTF_WAIT_TIME
Set wait time.
Definition order_type.h:172
@ MTF_TRAVEL_SPEED
Set max travel speed.
Definition order_type.h:174
CloneOptions
Clone actions.
Definition order_type.h:179
OrderType
Order types.
Definition order_type.h:35
Shared order list linking together the linked list of orders and the list of vehicles sharing this or...
Definition order_base.h:259