4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
10 /** @file train.h Base for the train class. */
15 #include "core/enum_type.hpp"
17 #include "newgrf_engine.h"
18 #include "cargotype.h"
20 #include "engine_base.h"
22 #include "ground_vehicle.hpp"
26 /** Rail vehicle flags. */
27 enum VehicleRailFlags
{
29 VRF_WAITING_RESTRICTION
= 1, ///< Train is waiting due to a routing restriction, only valid when VRF_TRAIN_STUCK is also set.
30 VRF_HAVE_SLOT
= 2, ///< Train has 1 or more slots
31 VRF_POWEREDWAGON
= 3, ///< Wagon is powered.
32 VRF_REVERSE_DIRECTION
= 4, ///< Reverse the visible direction of the vehicle.
34 VRF_EL_ENGINE_ALLOWED_NORMAL_RAIL
= 6, ///< Electric train engine is allowed to run on normal rail. */
35 VRF_TOGGLE_REVERSE
= 7, ///< Used for vehicle var 0xFE bit 8 (toggled each time the train is reversed, accurate for first vehicle only).
36 VRF_TRAIN_STUCK
= 8, ///< Train can't get a path reservation.
37 VRF_LEAVING_STATION
= 9, ///< Train is just leaving a station.
40 /** Modes for ignoring signals. */
41 enum TrainForceProceeding
{
42 TFP_NONE
= 0, ///< Normal operation.
43 TFP_STUCK
= 1, ///< Proceed till next signal, but ignore being stuck till then. This includes force leaving depots.
44 TFP_SIGNAL
= 2, ///< Ignore next signal, after the signal ignore being stuck.
46 typedef SimpleTinyEnumT
<TrainForceProceeding
, byte
> TrainForceProceedingByte
;
48 /** Flags for Train::ConsistChanged */
49 enum ConsistChangeFlags
{
50 CCF_LENGTH
= 0x01, ///< Allow vehicles to change length.
51 CCF_CAPACITY
= 0x02, ///< Allow vehicles to change capacity.
53 CCF_TRACK
= 0, ///< Valid changes while vehicle is driving, and possibly changing tracks.
54 CCF_LOADUNLOAD
= 0, ///< Valid changes while vehicle is loading/unloading.
55 CCF_AUTOREFIT
= CCF_CAPACITY
, ///< Valid changes for autorefitting in stations.
56 CCF_REFIT
= CCF_LENGTH
| CCF_CAPACITY
, ///< Valid changes for refitting in a depot.
57 CCF_ARRANGE
= CCF_LENGTH
| CCF_CAPACITY
, ///< Valid changes for arranging the consist in a depot.
58 CCF_SAVELOAD
= CCF_LENGTH
, ///< Valid changes when loading a savegame. (Everything that is not stored in the save.)
60 DECLARE_ENUM_AS_BIT_SET(ConsistChangeFlags
)
62 byte
FreightWagonMult(CargoID cargo
);
64 void CheckTrainsLengths();
66 void FreeTrainTrackReservation(const Train
*v
, TileIndex origin
= INVALID_TILE
, Trackdir orig_td
= INVALID_TRACKDIR
);
67 bool TryPathReserve(Train
*v
, bool mark_as_stuck
= false, bool first_tile_okay
= false);
69 int GetTrainStopLocation(StationID station_id
, TileIndex tile
, const Train
*v
, int *station_ahead
, int *station_length
);
71 void GetTrainSpriteSize(EngineID engine
, uint
&width
, uint
&height
, int &xoffs
, int &yoffs
, EngineImageType image_type
);
73 /** Variables that are cached to improve performance and such */
75 /* Cached wagon override spritegroup */
76 const struct SpriteGroup
*cached_override
;
78 /* cached values, recalculated on load and each time a vehicle is added to/removed from the consist. */
79 bool cached_tilt
; ///< train can tilt; feature provides a bonus in curves
81 byte user_def_data
; ///< Cached property 0x25. Can be set by Callback 0x36.
83 /* cached max. speed / acceleration data */
84 int cached_max_curve_speed
; ///< max consist speed limited by curves
88 * 'Train' is either a loco or a wagon.
90 struct Train FINAL
: public GroundVehicle
<Train
, VEH_TRAIN
> {
93 /* Link between the two ends of a multiheaded engine */
94 Train
*other_multiheaded_part
;
98 uint16 crash_anim_pos
; ///< Crash animation counter.
101 TrainForceProceedingByte force_proceed
;
102 RailTypeByte railtype
;
103 RailTypes compatible_railtypes
;
105 /** Ticks waiting in front of a signal, ticks being stuck or a counter for forced proceeding through signals. */
108 uint16 tunnel_bridge_signal_num
;
110 uint16 reverse_distance
;
112 /** We don't want GCC to zero our struct! It already is zeroed and has an index! */
113 Train() : GroundVehicleBase() {}
114 /** We want to 'destruct' the right class. */
115 virtual ~Train() { this->PreDestructor(); }
117 friend struct GroundVehicle
<Train
, VEH_TRAIN
>; // GroundVehicle needs to use the acceleration functions defined at Train.
120 void UpdateDeltaXY(Direction direction
);
121 ExpensesType
GetExpenseType(bool income
) const { return income
? EXPENSES_TRAIN_INC
: EXPENSES_TRAIN_RUN
; }
122 void PlayLeaveStationSound() const;
123 bool IsPrimaryVehicle() const { return this->IsFrontEngine(); }
124 void GetImage(Direction direction
, EngineImageType image_type
, VehicleSpriteSeq
*result
) const;
125 int GetDisplaySpeed() const { return this->gcache
.last_speed
; }
126 int GetDisplayMaxSpeed() const { return this->vcache
.cached_max_speed
; }
127 Money
GetRunningCost() const;
128 int GetDisplayImageWidth(Point
*offset
= nullptr) const;
129 bool IsInDepot() const { return this->track
== TRACK_BIT_DEPOT
; }
132 uint
Crash(bool flooded
= false);
133 Money
CalculateCurrentOverallValue() const;
134 Trackdir
GetVehicleTrackdir() const;
135 TileIndex
GetOrderStationLocation(StationID station
);
136 bool FindClosestDepot(TileIndex
*location
, DestinationID
*destination
, bool *reverse
);
138 void ReserveTrackUnderConsist() const;
140 int GetCurveSpeedLimit() const;
142 void ConsistChanged(ConsistChangeFlags allowed_changes
);
146 void UpdateAcceleration();
148 int GetCurrentMaxSpeed() const;
151 * Get the next real (non-articulated part and non rear part of dualheaded engine) vehicle in the consist.
152 * @return Next vehicle in the consist.
154 inline Train
*GetNextUnit() const
156 Train
*v
= this->GetNextVehicle();
157 if (v
!= nullptr && v
->IsRearDualheaded()) v
= v
->GetNextVehicle();
163 * Get the previous real (non-articulated part and non rear part of dualheaded engine) vehicle in the consist.
164 * @return Previous vehicle in the consist.
166 inline Train
*GetPrevUnit()
168 Train
*v
= this->GetPrevVehicle();
169 if (v
!= nullptr && v
->IsRearDualheaded()) v
= v
->GetPrevVehicle();
174 /* Get the last vehicle of a chain
175 * @return pointer the last vehicle in a chain
177 inline Train
*GetLastUnit() {
179 while ( tmp
->GetNextUnit() ) tmp
= tmp
->GetNextUnit();
184 * Calculate the offset from this vehicle's center to the following center taking the vehicle lengths into account.
185 * @return Offset from center to center.
187 int CalcNextVehicleOffset() const
189 /* For vehicles with odd lengths the part before the center will be one unit
190 * longer than the part after the center. This means we have to round up the
191 * length of the next vehicle but may not round the length of the current
193 return this->gcache
.cached_veh_length
/ 2 + (this->Next() != nullptr ? this->Next()->gcache
.cached_veh_length
+ 1 : 0) / 2;
197 * Allows to know the weight value that this vehicle will use.
198 * @return Empty weight value from the engine in tonnes.
200 inline uint16
GetEmptyWeight() const
204 /* Vehicle weight is not added for articulated parts. */
205 if (!this->IsArticulatedPart()) {
206 weight
+= GetVehicleProperty(this, PROP_TRAIN_WEIGHT
, RailVehInfo(this->engine_type
)->weight
);
209 /* Powered wagons have extra weight added. */
210 if (HasBit(this->flags
, VRF_POWEREDWAGON
)) {
211 weight
+= RailVehInfo(this->gcache
.first_engine
)->pow_wag_weight
;
214 return weight
* (this->IsWagon() ? FreightWagonMult(this->cargo_type
) : 1);
218 * Allows to know the weight value that this vehicle will use.
219 * @return Loaded weight value from the engine in tonnes.
221 inline uint16
GetLoadedWeight() const
223 uint16 weight
= (CargoSpec::Get(this->cargo_type
)->weight
* this->cargo_cap
) / 16;
225 /* Vehicle weight is not added for articulated parts. */
226 if (!this->IsArticulatedPart()) {
227 weight
+= GetVehicleProperty(this, PROP_TRAIN_WEIGHT
, RailVehInfo(this->engine_type
)->weight
);
230 /* Powered wagons have extra weight added. */
231 if (HasBit(this->flags
, VRF_POWEREDWAGON
)) {
232 weight
+= RailVehInfo(this->gcache
.first_engine
)->pow_wag_weight
;
235 return weight
* (this->IsWagon() ? FreightWagonMult(this->cargo_type
) : 1);
239 * Returns the rolling friction coefficient of this vehicle.
240 * @return Rolling friction coefficient in [1e-4].
242 inline uint32
GetRollingFriction() const
244 /* Roughly 1000 * 9.81 * 0.002
245 * 1000 for tonnes to kg
247 * 0.0017 for track to wheel friction
252 protected: // These functions should not be called outside acceleration code.
255 * Allows to know the power value that this vehicle will use.
256 * @return Power value from the engine in HP, or zero if the vehicle is not powered.
258 inline uint16
GetPower() const
260 /* Power is not added for articulated parts */
261 bool is_articulated_part
= this->IsArticulatedPart();
262 bool has_power_on_rail
= HasPowerOnRail(this->railtype
, GetRailType(this->tile
));
263 bool is_virtual
= this->IsVirtual();
265 if (!is_articulated_part
&& (has_power_on_rail
|| is_virtual
)) {
266 uint16 power
= GetVehicleProperty(this, PROP_TRAIN_POWER
, RailVehInfo(this->engine_type
)->power
);
267 /* Halve power for multiheaded parts */
268 if (this->IsMultiheaded()) power
/= 2;
276 * Returns a value if this articulated part is powered.
277 * @return Power value from the articulated part in HP, or zero if it is not powered.
279 inline uint16
GetPoweredPartPower(const Train
*head
) const
281 /* For powered wagons the engine defines the type of engine (i.e. railtype) */
282 bool is_powered_wagon
= HasBit(this->flags
, VRF_POWEREDWAGON
);
283 bool has_power_on_rail
= HasPowerOnRail(head
->railtype
, GetRailType(this->tile
));
284 bool is_virtual
= this->IsVirtual();
286 if (is_powered_wagon
&& (has_power_on_rail
|| is_virtual
)) {
287 return RailVehInfo(this->gcache
.first_engine
)->pow_wag_power
;
294 * Allows to know the weight value that this vehicle will use.
295 * @return Weight value from the engine in tonnes.
297 inline uint16
GetWeight() const
299 uint16 weight
= (CargoSpec::Get(this->cargo_type
)->weight
* this->cargo
.StoredCount()) / 16;
301 /* Vehicle weight is not added for articulated parts. */
302 if (!this->IsArticulatedPart()) {
303 weight
+= GetVehicleProperty(this, PROP_TRAIN_WEIGHT
, RailVehInfo(this->engine_type
)->weight
);
306 /* Powered wagons have extra weight added. */
307 if (HasBit(this->flags
, VRF_POWEREDWAGON
)) {
308 weight
+= RailVehInfo(this->gcache
.first_engine
)->pow_wag_weight
;
311 return weight
* (this->IsWagon() ? FreightWagonMult(this->cargo_type
) : 1);
315 * Allows to know the tractive effort value that this vehicle will use.
316 * @return Tractive effort value from the engine.
318 inline byte
GetTractiveEffort() const
320 return GetVehicleProperty(this, PROP_TRAIN_TRACTIVE_EFFORT
, RailVehInfo(this->engine_type
)->tractive_effort
);
324 * Gets the area used for calculating air drag.
325 * @return Area of the engine in m^2.
327 inline byte
GetAirDragArea() const
329 /* Air drag is higher in tunnels due to the limited cross-section. */
330 return (this->track
== TRACK_BIT_WORMHOLE
&& this->vehstatus
& VS_HIDDEN
) ? 28 : 14;
334 * Gets the air drag coefficient of this vehicle.
335 * @return Air drag value from the engine.
337 inline byte
GetAirDrag() const
339 return RailVehInfo(this->engine_type
)->air_drag
;
343 * Checks the current acceleration status of this vehicle.
344 * @return Acceleration status.
346 inline AccelStatus
GetAccelerationStatus() const
348 return (this->vehstatus
& VS_STOPPED
) || HasBit(this->flags
, VRF_REVERSING
) || HasBit(this->flags
, VRF_TRAIN_STUCK
) ? AS_BRAKE
: AS_ACCEL
;
352 * Calculates the current speed of this vehicle.
353 * @return Current speed in km/h-ish.
355 inline uint16
GetCurrentSpeed() const
357 return this->cur_speed
;
361 * Allows to know the acceleration type of a vehicle.
362 * @return Acceleration type of the vehicle.
364 inline int GetAccelerationType() const
366 return GetRailTypeInfo(this->railtype
)->acceleration_type
;
370 * Returns the slope steepness used by this vehicle.
371 * @return Slope steepness used by the vehicle.
373 inline uint32
GetSlopeSteepness() const
375 return _settings_game
.vehicle
.train_slope_steepness
;
379 * Gets the maximum speed allowed by the track for this vehicle.
380 * @return Maximum speed allowed.
382 inline uint16
GetMaxTrackSpeed() const
384 return GetRailTypeInfo(GetRailType(this->tile
))->max_speed
;
388 * Checks if the vehicle is at a tile that can be sloped.
389 * @return True if the tile can be sloped.
391 inline bool TileMayHaveSlopedTrack() const
393 /* Any track that isn't TRACK_BIT_X or TRACK_BIT_Y cannot be sloped. */
394 return this->track
== TRACK_BIT_X
|| this->track
== TRACK_BIT_Y
;
398 * Trains can always use the faster algorithm because they
399 * have always the same direction as the track under them.
402 inline bool HasToUseGetSlopePixelZ()
409 CommandCost
CmdMoveRailVehicle(TileIndex
, DoCommandFlag
, uint32
, uint32
, const char *);
410 CommandCost
CmdMoveVirtualRailVehicle(TileIndex
, DoCommandFlag
, uint32
, uint32
, const char*);
412 Train
* CmdBuildVirtualRailWagon(const Engine
*);
413 Train
* CmdBuildVirtualRailVehicle(EngineID
, bool lax_engine_check
, StringID
&error
);
415 #define FOR_ALL_TRAINS(var) FOR_ALL_VEHICLES_OF_TYPE(Train, var)