OpenTTD
order_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 <http://www.gnu.org/licenses/>.
6  */
7 
10 #ifndef ORDER_BASE_H
11 #define ORDER_BASE_H
12 
13 #include "order_type.h"
14 #include "core/pool_type.hpp"
15 #include "core/bitmath_func.hpp"
16 #include "cargo_type.h"
17 #include "depot_type.h"
18 #include "station_type.h"
19 #include "vehicle_type.h"
20 #include "date_type.h"
21 
24 extern OrderPool _order_pool;
25 extern OrderListPool _orderlist_pool;
26 
27 /* If you change this, keep in mind that it is saved on 3 places:
28  * - Load_ORDR, all the global orders
29  * - Vehicle -> current_order
30  * - REF_ORDER (all REFs are currently limited to 16 bits!!)
31  */
32 struct Order : OrderPool::PoolItem<&_order_pool> {
33 private:
34  friend const struct SaveLoad *GetVehicleDescription(VehicleType vt);
35  friend void Load_VEHS();
36  friend const struct SaveLoad *GetOrderDescription();
37 
38  uint8 type;
39  uint8 flags;
40  DestinationID dest;
41 
43 
44  uint16 wait_time;
45  uint16 travel_time;
46  uint16 max_speed;
47 
48 public:
50 
51  Order() : flags(0), refit_cargo(CT_NO_REFIT), max_speed(UINT16_MAX) {}
52  ~Order();
53 
54  Order(uint32 packed);
55 
61  inline bool IsType(OrderType type) const { return this->GetType() == type; }
62 
67  inline OrderType GetType() const { return (OrderType)GB(this->type, 0, 4); }
68 
69  void Free();
70 
71  void MakeGoToStation(StationID destination);
73  void MakeGoToWaypoint(StationID destination);
74  void MakeLoading(bool ordered);
75  void MakeLeaveStation();
76  void MakeDummy();
77  void MakeConditional(VehicleOrderID order);
78  void MakeImplicit(StationID destination);
79 
84  inline bool IsGotoOrder() const
85  {
86  return IsType(OT_GOTO_WAYPOINT) || IsType(OT_GOTO_DEPOT) || IsType(OT_GOTO_STATION);
87  }
88 
94  inline DestinationID GetDestination() const { return this->dest; }
95 
101  inline void SetDestination(DestinationID destination) { this->dest = destination; }
102 
108  inline bool IsRefit() const { return this->refit_cargo < NUM_CARGO || this->refit_cargo == CT_AUTO_REFIT; }
109 
115  inline bool IsAutoRefit() const { return this->refit_cargo == CT_AUTO_REFIT; }
116 
122  inline CargoID GetRefitCargo() const { return this->refit_cargo; }
123 
124  void SetRefit(CargoID cargo);
125 
127  inline OrderLoadFlags GetLoadType() const { return (OrderLoadFlags)GB(this->flags, 4, 3); }
129  inline OrderUnloadFlags GetUnloadType() const { return (OrderUnloadFlags)GB(this->flags, 0, 3); }
131  inline OrderNonStopFlags GetNonStopType() const { return (OrderNonStopFlags)GB(this->type, 6, 2); }
133  inline OrderStopLocation GetStopLocation() const { return (OrderStopLocation)GB(this->type, 4, 2); }
135  inline OrderDepotTypeFlags GetDepotOrderType() const { return (OrderDepotTypeFlags)GB(this->flags, 0, 3); }
137  inline OrderDepotActionFlags GetDepotActionType() const { return (OrderDepotActionFlags)GB(this->flags, 4, 3); }
139  inline OrderConditionVariable GetConditionVariable() const { return (OrderConditionVariable)GB(this->dest, 11, 5); }
141  inline OrderConditionComparator GetConditionComparator() const { return (OrderConditionComparator)GB(this->type, 5, 3); }
143  inline VehicleOrderID GetConditionSkipToOrder() const { return this->flags; }
145  inline uint16 GetConditionValue() const { return GB(this->dest, 0, 11); }
146 
148  inline void SetLoadType(OrderLoadFlags load_type) { SB(this->flags, 4, 3, load_type); }
150  inline void SetUnloadType(OrderUnloadFlags unload_type) { SB(this->flags, 0, 3, unload_type); }
152  inline void SetNonStopType(OrderNonStopFlags non_stop_type) { SB(this->type, 6, 2, non_stop_type); }
154  inline void SetStopLocation(OrderStopLocation stop_location) { SB(this->type, 4, 2, stop_location); }
156  inline void SetDepotOrderType(OrderDepotTypeFlags depot_order_type) { SB(this->flags, 0, 3, depot_order_type); }
158  inline void SetDepotActionType(OrderDepotActionFlags depot_service_type) { SB(this->flags, 4, 3, depot_service_type); }
160  inline void SetConditionVariable(OrderConditionVariable condition_variable) { SB(this->dest, 11, 5, condition_variable); }
162  inline void SetConditionComparator(OrderConditionComparator condition_comparator) { SB(this->type, 5, 3, condition_comparator); }
164  inline void SetConditionSkipToOrder(VehicleOrderID order_id) { this->flags = order_id; }
166  inline void SetConditionValue(uint16 value) { SB(this->dest, 0, 11, value); }
167 
168  /* As conditional orders write their "skip to" order all over the flags, we cannot check the
169  * flags to find out if timetabling is enabled. However, as conditional orders are never
170  * autofilled we can be sure that any non-zero values for their wait_time and travel_time are
171  * explicitly set (but travel_time is actually unused for conditionals). */
172 
174  inline bool IsWaitTimetabled() const { return this->IsType(OT_CONDITIONAL) ? this->wait_time > 0 : HasBit(this->flags, 3); }
176  inline bool IsTravelTimetabled() const { return this->IsType(OT_CONDITIONAL) ? this->travel_time > 0 : HasBit(this->flags, 7); }
177 
179  inline uint16 GetTimetabledWait() const { return this->IsWaitTimetabled() ? this->wait_time : 0; }
181  inline uint16 GetTimetabledTravel() const { return this->IsTravelTimetabled() ? this->travel_time : 0; }
183  inline uint16 GetWaitTime() const { return this->wait_time; }
185  inline uint16 GetTravelTime() const { return this->travel_time; }
186 
192  inline uint16 GetMaxSpeed() const { return this->max_speed; }
193 
195  inline void SetWaitTimetabled(bool timetabled) { if (!this->IsType(OT_CONDITIONAL)) SB(this->flags, 3, 1, timetabled ? 1 : 0); }
197  inline void SetTravelTimetabled(bool timetabled) { if (!this->IsType(OT_CONDITIONAL)) SB(this->flags, 7, 1, timetabled ? 1 : 0); }
198 
203  inline void SetWaitTime(uint16 time) { this->wait_time = time; }
204 
209  inline void SetTravelTime(uint16 time) { this->travel_time = time; }
210 
216  inline void SetMaxSpeed(uint16 speed) { this->max_speed = speed; }
217 
218  bool ShouldStopAtStation(const Vehicle *v, StationID station) const;
219  bool CanLoadOrUnload() const;
220  bool CanLeaveWithCargo(bool has_cargo) const;
221 
222  TileIndex GetLocation(const Vehicle *v, bool airport = false) const;
223 
225  inline bool IsCompletelyTimetabled() const
226  {
227  if (!this->IsTravelTimetabled() && !this->IsType(OT_CONDITIONAL)) return false;
228  if (!this->IsWaitTimetabled() && this->IsType(OT_GOTO_STATION) &&
230  return false;
231  }
232  return true;
233  }
234 
235  void AssignOrder(const Order &other);
236  bool Equals(const Order &other) const;
237 
238  uint32 Pack() const;
239  uint16 MapOldOrder() const;
240  void ConvertFromOldSavegame();
241 };
242 
243 void InsertOrder(Vehicle *v, Order *new_o, VehicleOrderID sel_ord);
244 void DeleteOrder(Vehicle *v, VehicleOrderID sel_ord);
245 
250 struct OrderList : OrderListPool::PoolItem<&_orderlist_pool> {
251 private:
252  friend void AfterLoadVehicles(bool part_of_load);
253  friend const struct SaveLoad *GetOrderListDescription();
254 
255  StationID GetBestLoadableNext(const Vehicle *v, const Order *o1, const Order *o2) const;
256 
262 
265 
266 public:
269  : first(nullptr), num_orders(num_orders), num_manual_orders(0), num_vehicles(0), first_shared(nullptr),
270  timetable_duration(0), total_duration(0) { }
271 
277  OrderList(Order *chain, Vehicle *v) { this->Initialize(chain, v); }
278 
281 
282  void Initialize(Order *chain, Vehicle *v);
283 
288  inline Order *GetFirstOrder() const { return this->first; }
289 
290  Order *GetOrderAt(int index) const;
291 
296  inline Order *GetLastOrder() const { return this->GetOrderAt(this->num_orders - 1); }
297 
304  inline const Order *GetNext(const Order *curr) const { return (curr->next == nullptr) ? this->GetFirstOrder() : curr->next; }
305 
310  inline VehicleOrderID GetNumOrders() const { return this->num_orders; }
311 
316  inline VehicleOrderID GetNumManualOrders() const { return this->num_manual_orders; }
317 
318  StationIDStack GetNextStoppingStation(const Vehicle *v, const Order *first = nullptr, uint hops = 0) const;
319  const Order *GetNextDecisionNode(const Order *next, uint hops) const;
320 
321  void InsertOrderAt(Order *new_order, int index);
322  void DeleteOrderAt(int index);
323  void MoveOrder(int from, int to);
324 
329  inline bool IsShared() const { return this->num_vehicles > 1; };
330 
335  inline Vehicle *GetFirstSharedVehicle() const { return this->first_shared; }
336 
341  inline uint GetNumVehicles() const { return this->num_vehicles; }
342 
343  bool IsVehicleInSharedOrdersList(const Vehicle *v) const;
344  int GetPositionInSharedOrderList(const Vehicle *v) const;
345 
352  inline void AddVehicle(Vehicle *v) { ++this->num_vehicles; }
353 
354  void RemoveVehicle(Vehicle *v);
355 
356  bool IsCompleteTimetable() const;
357 
362  inline Ticks GetTimetableTotalDuration() const { return this->IsCompleteTimetable() ? this->timetable_duration : INVALID_TICKS; }
363 
368  inline Ticks GetTimetableDurationIncomplete() const { return this->timetable_duration; }
369 
374  inline Ticks GetTotalDuration() const { return this->total_duration; }
375 
380  void UpdateTimetableDuration(Ticks delta) { this->timetable_duration += delta; }
381 
386  void UpdateTotalDuration(Ticks delta) { this->total_duration += delta; }
387 
388  void FreeChain(bool keep_orderlist = false);
389 
390  void DebugCheckSanity() const;
391 };
392 
393 #define FOR_VEHICLE_ORDERS(v, order) for (order = (v->orders.list == nullptr) ? nullptr : v->orders.list->GetFirstOrder(); order != nullptr; order = order->next)
394 
395 #endif /* ORDER_BASE_H */
OrderConditionVariable
Variables (of a vehicle) to &#39;cause&#39; skipping on.
Definition: order_type.h:112
VehicleOrderID num_orders
NOSAVE: How many orders there are in the list.
Definition: order_base.h:258
uint16 DepotID
Type for the unique identifier of depots.
Definition: depot_type.h:13
uint16 GetTravelTime() const
Get the time in ticks a vehicle will probably take to reach the destination (timetabled or not)...
Definition: order_base.h:185
Minimal stack that uses a pool to avoid pointers.
Types related to orders.
bool IsGotoOrder() const
Is this a &#39;goto&#39; order with a real destination?
Definition: order_base.h:84
OrderConditionComparator GetConditionComparator() const
What is the comparator to use?
Definition: order_base.h:141
void SetConditionValue(uint16 value)
Set the value to base the skip on.
Definition: order_base.h:166
Ticks GetTimetableTotalDuration() const
Gets the total duration of the vehicles timetable or INVALID_TICKS is the timetable is not complete...
Definition: order_base.h:362
void UpdateTimetableDuration(Ticks delta)
Must be called if an order&#39;s timetable is changed to update internal book keeping.
Definition: order_base.h:380
VehicleOrderID GetConditionSkipToOrder() const
Get the order to skip to.
Definition: order_base.h:143
void SetWaitTime(uint16 time)
Set the time in ticks to wait at the destination.
Definition: order_base.h:203
static const VehicleOrderID INVALID_VEH_ORDER_ID
Invalid vehicle order index (sentinel)
Definition: order_type.h:21
OrderList(VehicleOrderID num_orders=INVALID_VEH_ORDER_ID)
Default constructor producing an invalid order list.
Definition: order_base.h:268
Ticks GetTotalDuration() const
Gets the known duration of the vehicles orders, timetabled or not.
Definition: order_base.h:374
void SetDepotOrderType(OrderDepotTypeFlags depot_order_type)
Set the cause to go to the depot.
Definition: order_base.h:156
static const Ticks INVALID_TICKS
Representation of an invalid number of ticks.
Definition: date_type.h:109
Maximal number of cargo types in a game.
Definition: cargo_type.h:64
void SetDepotActionType(OrderDepotActionFlags depot_service_type)
Set what we are going to do in the depot.
Definition: order_base.h:158
VehicleType
Available vehicle types.
Definition: vehicle_type.h:21
bool IsTravelTimetabled() const
Does this order have an explicit travel time set?
Definition: order_base.h:176
Vehicle data structure.
Definition: vehicle_base.h:210
void SetRefit(CargoID cargo)
Make this depot/station order also a refit order.
Definition: order_cmd.cpp:164
Only service the vehicle.
Definition: order_type.h:103
VehicleOrderID GetNumManualOrders() const
Get number of manually added orders in the order list.
Definition: order_base.h:316
Ticks total_duration
NOSAVE: Total (timetabled or not) duration of the order list.
Definition: order_base.h:264
Tindex index
Index of this pool item.
Definition: pool_type.hpp:189
Functions related to bit mathematics.
CargoID refit_cargo
Refit CargoID.
Definition: order_base.h:42
OrderNonStopFlags
Non-stop order flags.
Definition: order_type.h:72
void SetUnloadType(OrderUnloadFlags unload_type)
Set how the consist must be unloaded.
Definition: order_base.h:150
void SetConditionComparator(OrderConditionComparator condition_comparator)
Set the comparator to use.
Definition: order_base.h:162
~Order()
Clean everything up.
Definition: order_cmd.cpp:46
Automatically choose cargo type when doing auto refitting.
Definition: cargo_type.h:66
uint16 MapOldOrder() const
Pack this order into a 16 bits integer as close to the TTD representation as possible.
Definition: order_cmd.cpp:207
void SetConditionVariable(OrderConditionVariable condition_variable)
Set variable we have to compare.
Definition: order_base.h:160
Vehicle * GetFirstSharedVehicle() const
Get the first vehicle of this vehicle chain.
Definition: order_base.h:335
Types related to cargoes...
Definition of Pool, structure used to access PoolItems, and PoolItem, base structure for Vehicle...
TileIndex GetLocation(const Vehicle *v, bool airport=false) const
Returns a tile somewhat representing the order destination (not suitable for pathfinding).
Definition: order_cmd.cpp:668
bool CanLeaveWithCargo(bool has_cargo) const
A vehicle can leave the current station with cargo if:
Definition: order_cmd.cpp:2253
void SetMaxSpeed(uint16 speed)
Set the maxmimum speed in km-ish/h a vehicle is allowed to reach on the way to the destination...
Definition: order_base.h:216
Do not refit cargo of a vehicle (used in vehicle orders and auto-replace/auto-new).
Definition: cargo_type.h:67
static T SB(T &x, const uint8 s, const uint8 n, const U d)
Set n bits in x starting at bit s to d.
OrderDepotActionFlags GetDepotActionType() const
What are we going to do when in the depot.
Definition: order_base.h:137
The vehicle will stop at any station it passes except the destination.
Definition: order_type.h:75
Order * next
Pointer to next order. If nullptr, end of list.
Definition: order_base.h:49
bool IsAutoRefit() const
Is this order a auto-refit order.
Definition: order_base.h:115
void SetConditionSkipToOrder(VehicleOrderID order_id)
Get the order to skip to.
Definition: order_base.h:164
Ticks timetable_duration
NOSAVE: Total timetabled duration of the order list.
Definition: order_base.h:263
DestinationID dest
The destination of the order.
Definition: order_base.h:40
uint16 travel_time
How long in ticks the journey to this destination should take.
Definition: order_base.h:45
void MakeConditional(VehicleOrderID order)
Makes this order an conditional order.
Definition: order_cmd.cpp:142
bool ShouldStopAtStation(const Vehicle *v, StationID station) const
Check whether the given vehicle should stop at the given station based on this order and the non-stop...
Definition: order_cmd.cpp:2229
Shared order list linking together the linked list of orders and the list of vehicles sharing this or...
Definition: order_base.h:250
OrderDepotTypeFlags GetDepotOrderType() const
What caused us going to the depot?
Definition: order_base.h:135
Header files for depots (not hangars)
OrderConditionVariable GetConditionVariable() const
What variable do we have to compare?
Definition: order_base.h:139
Types related to stations.
uint8 type
The type of order + non-stop flags.
Definition: order_base.h:38
void SetNonStopType(OrderNonStopFlags non_stop_type)
Set whether we must stop at stations or not.
Definition: order_base.h:152
void MakeImplicit(StationID destination)
Makes this order an implicit order.
Definition: order_cmd.cpp:153
~OrderList()
Destructor.
Definition: order_base.h:280
bool IsRefit() const
Is this order a refit order.
Definition: order_base.h:108
void MakeDummy()
Makes this order a Dummy order.
Definition: order_cmd.cpp:132
bool IsType(OrderType type) const
Check whether this order is of the given type.
Definition: order_base.h:61
friend const struct SaveLoad * GetOrderDescription()
Saving and loading of orders.
Definition: order_sl.cpp:102
void DeleteOrder(Vehicle *v, VehicleOrderID sel_ord)
Delete an order but skip the parameter validation.
Definition: order_cmd.cpp:1043
VehicleOrderID num_manual_orders
NOSAVE: How many manually added orders are there in the list.
Definition: order_base.h:259
void MakeLoading(bool ordered)
Makes this order a Loading order.
Definition: order_cmd.cpp:114
OrderDepotActionFlags
Actions that can be performed when the vehicle enters the depot.
Definition: order_type.h:102
uint8 flags
Load/unload types, depot order/action types.
Definition: order_base.h:39
bool IsWaitTimetabled() const
Does this order have an explicit wait time set?
Definition: order_base.h:174
uint16 GetTimetabledTravel() const
Get the time in ticks a vehicle should take to reach the destination or 0 if it&#39;s not timetabled...
Definition: order_base.h:181
bool IsShared() const
Is this a shared order list?
Definition: order_base.h:329
Order * GetFirstOrder() const
Get the first order of the order chain.
Definition: order_base.h:288
OrderConditionComparator
Comparator for the skip reasoning.
Definition: order_type.h:127
OrderLoadFlags GetLoadType() const
How must the consist be loaded?
Definition: order_base.h:127
void SetWaitTimetabled(bool timetabled)
Set if the wait time is explicitly timetabled (unless the order is conditional).
Definition: order_base.h:195
bool Equals(const Order &other) const
Does this order have the same type, flags and destination?
Definition: order_cmd.cpp:174
Order * GetLastOrder() const
Get the last order of the order chain.
Definition: order_base.h:296
Order * first
First order of the order list.
Definition: order_base.h:257
Base class for all PoolItems.
Definition: pool_type.hpp:188
friend void Load_VEHS()
Loading of ancient vehicles.
Definition: vehicle_sl.cpp:892
Base class for all pools.
Definition: pool_type.hpp:82
OrderUnloadFlags GetUnloadType() const
How must the consist be unloaded?
Definition: order_base.h:129
const Order * GetNext(const Order *curr) const
Get the order after the given one or the first one, if the given one is the last one.
Definition: order_base.h:304
void SetLoadType(OrderLoadFlags load_type)
Set how the consist must be loaded.
Definition: order_base.h:148
OrderUnloadFlags
Flags related to the unloading order.
Definition: order_type.h:52
uint16 GetWaitTime() const
Get the time in ticks a vehicle will probably wait at the destination (timetabled or not)...
Definition: order_base.h:183
void AddVehicle(Vehicle *v)
Adds the given vehicle to this shared order list.
Definition: order_base.h:352
OrderStopLocation
Where to stop the trains.
Definition: order_type.h:83
uint16 GetTimetabledWait() const
Get the time in ticks a vehicle should wait at the destination or 0 if it&#39;s not timetabled.
Definition: order_base.h:179
Ticks GetTimetableDurationIncomplete() const
Gets the known duration of the vehicles timetable even if the timetable is not complete.
Definition: order_base.h:368
DestinationID GetDestination() const
Gets the destination of this order.
Definition: order_base.h:94
void MakeGoToDepot(DepotID destination, OrderDepotTypeFlags order, OrderNonStopFlags non_stop_type=ONSF_NO_STOP_AT_INTERMEDIATE_STATIONS, OrderDepotActionFlags action=ODATF_SERVICE_ONLY, CargoID cargo=CT_NO_REFIT)
Makes this order a Go To Depot order.
Definition: order_cmd.cpp:89
OrderStopLocation GetStopLocation() const
Where must we stop at the platform?
Definition: order_base.h:133
uint32 TileIndex
The index/ID of a Tile.
Definition: tile_type.h:78
OrderLoadFlags
Flags related to the loading order.
Definition: order_type.h:62
void MakeLeaveStation()
Makes this order a Leave Station order.
Definition: order_cmd.cpp:123
void InsertOrder(Vehicle *v, Order *new_o, VehicleOrderID sel_ord)
Insert a new order but skip the validation.
Definition: order_cmd.cpp:915
uint num_vehicles
NOSAVE: Number of vehicles that share this order list.
Definition: order_base.h:260
uint16 wait_time
How long in ticks to wait at the destination.
Definition: order_base.h:44
int32 Ticks
The type to store ticks in.
Definition: date_type.h:16
void Free()
&#39;Free&#39; the order
Definition: order_cmd.cpp:62
uint16 GetConditionValue() const
Get the value to base the skip on.
Definition: order_base.h:145
Types related to vehicles.
OrderList(Order *chain, Vehicle *v)
Create an order list with the given order chain for the given vehicle.
Definition: order_base.h:277
void SetTravelTimetabled(bool timetabled)
Set if the travel time is explicitly timetabled (unless the order is conditional).
Definition: order_base.h:197
static uint GB(const T x, const uint8 s, const uint8 n)
Fetch n bits from x, started at bit s.
void AfterLoadVehicles(bool part_of_load)
Called after load to update coordinates.
Definition: vehicle_sl.cpp:240
OrderType
Order types.
Definition: order_type.h:35
void AssignOrder(const Order &other)
Assign data to an order (from another order) This function makes sure that the index is maintained co...
Definition: order_cmd.cpp:272
The vehicle will not stop at any stations it passes except the destination.
Definition: order_type.h:74
void UpdateTotalDuration(Ticks delta)
Must be called if an order&#39;s timetable is changed to update internal book keeping.
Definition: order_base.h:386
void SetDestination(DestinationID destination)
Sets the destination of this order.
Definition: order_base.h:101
Types related to the dates in OpenTTD.
void MakeGoToWaypoint(StationID destination)
Makes this order a Go To Waypoint order.
Definition: order_cmd.cpp:103
SaveLoad type struct.
Definition: saveload.h:496
uint GetNumVehicles() const
Return the number of vehicles that share this orders list.
Definition: order_base.h:341
byte VehicleOrderID
The index of an order within its current vehicle (not pool related)
Definition: order_type.h:15
static bool HasBit(const T x, const uint8 y)
Checks if a bit in a value is set.
uint32 Pack() const
Pack this order into a 32 bits integer, or actually only the type, flags and destination.
Definition: order_cmd.cpp:197
OrderType GetType() const
Get the type of order of this order.
Definition: order_base.h:67
byte CargoID
Cargo slots to indicate a cargo type within a game.
Definition: cargo_type.h:20
uint16 GetMaxSpeed() const
Get the maxmimum speed in km-ish/h a vehicle is allowed to reach on the way to the destination...
Definition: order_base.h:192
void ConvertFromOldSavegame()
Converts this order from an old savegame&#39;s version; it moves all bits to the new location.
Definition: order_sl.cpp:23
friend const struct SaveLoad * GetVehicleDescription(VehicleType vt)
Saving and loading the current order of vehicles.
Definition: vehicle_sl.cpp:580
void SetTravelTime(uint16 time)
Set the time in ticks to take for travelling to the destination.
Definition: order_base.h:209
Vehicle * first_shared
NOSAVE: pointer to the first vehicle in the shared order chain.
Definition: order_base.h:261
uint16 max_speed
How fast the vehicle may go on the way to the destination.
Definition: order_base.h:46
void SetStopLocation(OrderStopLocation stop_location)
Set where we must stop at the platform.
Definition: order_base.h:154
OrderNonStopFlags GetNonStopType() const
At which stations must we stop?
Definition: order_base.h:131
bool IsCompletelyTimetabled() const
Checks if travel_time and wait_time apply to this order and if they are timetabled.
Definition: order_base.h:225
VehicleOrderID GetNumOrders() const
Get number of orders in the order list.
Definition: order_base.h:310
void MakeGoToStation(StationID destination)
Makes this order a Go To Station order.
Definition: order_cmd.cpp:74
OrderDepotTypeFlags
Reasons that could cause us to go to the depot.
Definition: order_type.h:93
CargoID GetRefitCargo() const
Get the cargo to to refit to.
Definition: order_base.h:122