OpenTTD Source  20241108-master-g80f628063a
base_consist.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 BASE_CONSIST_H
11 #define BASE_CONSIST_H
12 
13 #include "order_type.h"
14 #include "timer/timer_game_tick.h"
15 
17 struct BaseConsist {
18  std::string name;
19 
20  /* Used for timetabling. */
24 
28 
29  uint16_t service_interval;
30 
33 
34  uint16_t vehicle_flags;
35 
36  virtual ~BaseConsist() = default;
37 
38  void CopyConsistPropertiesFrom(const BaseConsist *src);
39  void ResetDepotUnbunching();
40 };
41 
42 #endif /* BASE_CONSIST_H */
uint64_t TickCounter
The type that the tick counter is stored in.
int32_t Ticks
The type to store ticks in.
Types related to orders.
uint8_t VehicleOrderID
The index of an order within its current vehicle (not pool related)
Definition: order_type.h:15
Various front vehicle properties that are preserved when autoreplacing, using order-backup or switchi...
Definition: base_consist.h:17
std::string name
Name of vehicle.
Definition: base_consist.h:18
TimerGameTick::Ticks current_order_time
How many ticks have passed since this order started.
Definition: base_consist.h:21
TimerGameTick::TickCounter depot_unbunching_next_departure
When the vehicle will next try to leave its unbunching depot.
Definition: base_consist.h:26
VehicleOrderID cur_real_order_index
The index to the current real (non-implicit) order.
Definition: base_consist.h:31
TimerGameTick::Ticks round_trip_time
How many ticks for a single circumnavigation of the orders.
Definition: base_consist.h:27
TimerGameTick::TickCounter depot_unbunching_last_departure
When the vehicle last left its unbunching depot.
Definition: base_consist.h:25
VehicleOrderID cur_implicit_order_index
The index to the current implicit order.
Definition: base_consist.h:32
TimerGameTick::TickCounter timetable_start
At what tick of TimerGameTick::counter the vehicle should start its timetable.
Definition: base_consist.h:23
TimerGameTick::Ticks lateness_counter
How many ticks late (or early if negative) this vehicle is.
Definition: base_consist.h:22
uint16_t service_interval
The interval for (automatic) servicing; either in days or %.
Definition: base_consist.h:29
void CopyConsistPropertiesFrom(const BaseConsist *src)
Copy properties of other BaseConsist.
uint16_t vehicle_flags
Used for gradual loading and other miscellaneous things (.
Definition: base_consist.h:34
void ResetDepotUnbunching()
Resets all the data used for depot unbunching.
Definition of the tick-based game-timer.