mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-11 13:10:45 +00:00
437 lines
16 KiB
C
437 lines
16 KiB
C
/*
|
|
* This file is part of OpenTTD.
|
|
* 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.
|
|
* 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.
|
|
* 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/>.
|
|
*/
|
|
|
|
/** @file train.h Base for the train class. */
|
|
|
|
#ifndef TRAIN_H
|
|
#define TRAIN_H
|
|
|
|
#include "core/enum_type.hpp"
|
|
|
|
#include "newgrf_engine.h"
|
|
#include "cargotype.h"
|
|
#include "rail.h"
|
|
#include "engine_base.h"
|
|
#include "rail_map.h"
|
|
#include "ground_vehicle.hpp"
|
|
|
|
struct Train;
|
|
|
|
/** Rail vehicle flags. */
|
|
enum VehicleRailFlags {
|
|
VRF_REVERSING = 0,
|
|
VRF_WAITING_RESTRICTION = 1, ///< Train is waiting due to a routing restriction, only valid when VRF_TRAIN_STUCK is also set.
|
|
VRF_HAVE_SLOT = 2, ///< Train has 1 or more slots
|
|
VRF_POWEREDWAGON = 3, ///< Wagon is powered.
|
|
VRF_REVERSE_DIRECTION = 4, ///< Reverse the visible direction of the vehicle.
|
|
VRF_HAS_HIT_RV = 5, ///< Train has hit road vehicle
|
|
VRF_EL_ENGINE_ALLOWED_NORMAL_RAIL = 6, ///< Electric train engine is allowed to run on normal rail. */
|
|
VRF_TOGGLE_REVERSE = 7, ///< Used for vehicle var 0xFE bit 8 (toggled each time the train is reversed, accurate for first vehicle only).
|
|
VRF_TRAIN_STUCK = 8, ///< Train can't get a path reservation.
|
|
VRF_LEAVING_STATION = 9, ///< Train is just leaving a station.
|
|
VRF_BREAKDOWN_BRAKING = 10,///< used to mark a train that is braking because it is broken down
|
|
VRF_BREAKDOWN_POWER = 11,///< used to mark a train in which the power of one (or more) of the engines is reduced because of a breakdown
|
|
VRF_BREAKDOWN_SPEED = 12,///< used to mark a train that has a reduced maximum speed because of a breakdown
|
|
VRF_BREAKDOWN_STOPPED = 13,///< used to mark a train that is stopped because of a breakdown
|
|
VRF_NEED_REPAIR = 14,///< used to mark a train that has a reduced maximum speed because of a critical breakdown
|
|
VRF_TOO_HEAVY = 15,
|
|
VRF_BEYOND_PLATFORM_END = 16,
|
|
VRF_NOT_YET_IN_PLATFORM = 17,
|
|
VRF_ADVANCE_IN_PLATFORM = 18,
|
|
VRF_CONSIST_BREAKDOWN = 19,///< one or more vehicles in this consist have a breakdown of some sort (breakdown_ctr != 0)
|
|
VRF_CONSIST_SPEED_REDUCTION = 20,///< one or more vehicles in this consist may be in a depot or on a bridge (may be false positive but not false negative)
|
|
VRF_PENDING_SPEED_RESTRICTION = 21,///< This vehicle has one or more pending speed restriction changes
|
|
|
|
VRF_IS_BROKEN = (1 << VRF_BREAKDOWN_POWER) | (1 << VRF_BREAKDOWN_SPEED) | (1 << VRF_BREAKDOWN_STOPPED), ///< Bitmask of all flags that indicate a broken train (braking is not included)
|
|
};
|
|
|
|
/** Modes for ignoring signals. */
|
|
enum TrainForceProceeding : byte {
|
|
TFP_NONE = 0, ///< Normal operation.
|
|
TFP_STUCK = 1, ///< Proceed till next signal, but ignore being stuck till then. This includes force leaving depots.
|
|
TFP_SIGNAL = 2, ///< Ignore next signal, after the signal ignore being stuck.
|
|
};
|
|
|
|
/** Flags for Train::ConsistChanged */
|
|
enum ConsistChangeFlags {
|
|
CCF_LENGTH = 0x01, ///< Allow vehicles to change length.
|
|
CCF_CAPACITY = 0x02, ///< Allow vehicles to change capacity.
|
|
|
|
CCF_TRACK = 0, ///< Valid changes while vehicle is driving, and possibly changing tracks.
|
|
CCF_LOADUNLOAD = 0, ///< Valid changes while vehicle is loading/unloading.
|
|
CCF_AUTOREFIT = CCF_CAPACITY, ///< Valid changes for autorefitting in stations.
|
|
CCF_REFIT = CCF_LENGTH | CCF_CAPACITY, ///< Valid changes for refitting in a depot.
|
|
CCF_ARRANGE = CCF_LENGTH | CCF_CAPACITY, ///< Valid changes for arranging the consist in a depot.
|
|
CCF_SAVELOAD = CCF_LENGTH, ///< Valid changes when loading a savegame. (Everything that is not stored in the save.)
|
|
};
|
|
DECLARE_ENUM_AS_BIT_SET(ConsistChangeFlags)
|
|
|
|
byte FreightWagonMult(CargoID cargo);
|
|
|
|
void CheckTrainsLengths();
|
|
|
|
void FreeTrainTrackReservation(const Train *v, TileIndex origin = INVALID_TILE, Trackdir orig_td = INVALID_TRACKDIR);
|
|
bool TryPathReserve(Train *v, bool mark_as_stuck = false, bool first_tile_okay = false);
|
|
|
|
void DeleteVisibleTrain(Train *v);
|
|
|
|
void CheckBreakdownFlags(Train *v);
|
|
void GetTrainSpriteSize(EngineID engine, uint &width, uint &height, int &xoffs, int &yoffs, EngineImageType image_type);
|
|
|
|
/** Variables that are cached to improve performance and such */
|
|
struct TrainCache {
|
|
/* Cached wagon override spritegroup */
|
|
const struct SpriteGroup *cached_override;
|
|
|
|
/* cached values, recalculated on load and each time a vehicle is added to/removed from the consist. */
|
|
bool cached_tilt; ///< train can tilt; feature provides a bonus in curves
|
|
uint8 cached_num_engines; ///< total number of engines, including rear ends of multiheaded engines
|
|
|
|
byte user_def_data; ///< Cached property 0x25. Can be set by Callback 0x36.
|
|
|
|
/* cached max. speed / acceleration data */
|
|
int cached_max_curve_speed; ///< max consist speed limited by curves
|
|
};
|
|
|
|
/**
|
|
* 'Train' is either a loco or a wagon.
|
|
*/
|
|
struct Train FINAL : public GroundVehicle<Train, VEH_TRAIN> {
|
|
TrainCache tcache;
|
|
|
|
/* Link between the two ends of a multiheaded engine */
|
|
Train *other_multiheaded_part;
|
|
|
|
uint32 flags;
|
|
|
|
uint16 crash_anim_pos; ///< Crash animation counter.
|
|
|
|
TrackBits track;
|
|
TrainForceProceeding force_proceed;
|
|
RailType railtype;
|
|
byte critical_breakdown_count; ///< Counter for the number of critical breakdowns since last service
|
|
RailTypes compatible_railtypes;
|
|
|
|
/** Ticks waiting in front of a signal, ticks being stuck or a counter for forced proceeding through signals. */
|
|
uint16 wait_counter;
|
|
|
|
uint16 reverse_distance;
|
|
uint16 tunnel_bridge_signal_num;
|
|
uint16 speed_restriction;
|
|
|
|
/** We don't want GCC to zero our struct! It already is zeroed and has an index! */
|
|
Train() : GroundVehicleBase() {}
|
|
/** We want to 'destruct' the right class. */
|
|
virtual ~Train() { this->PreDestructor(); }
|
|
|
|
friend struct GroundVehicle<Train, VEH_TRAIN>; // GroundVehicle needs to use the acceleration functions defined at Train.
|
|
|
|
void MarkDirty();
|
|
void UpdateDeltaXY();
|
|
ExpensesType GetExpenseType(bool income) const { return income ? EXPENSES_TRAIN_INC : EXPENSES_TRAIN_RUN; }
|
|
void PlayLeaveStationSound() const;
|
|
bool IsPrimaryVehicle() const { return this->IsFrontEngine(); }
|
|
void GetImage(Direction direction, EngineImageType image_type, VehicleSpriteSeq *result) const;
|
|
int GetDisplaySpeed() const { return this->gcache.last_speed; }
|
|
int GetDisplayMaxSpeed() const { return this->vcache.cached_max_speed; }
|
|
Money GetRunningCost() const;
|
|
int GetDisplayImageWidth(Point *offset = nullptr) const;
|
|
bool IsInDepot() const { return this->track == TRACK_BIT_DEPOT; }
|
|
bool Tick();
|
|
void OnNewDay();
|
|
uint Crash(bool flooded = false);
|
|
Money CalculateCurrentOverallValue() const;
|
|
Trackdir GetVehicleTrackdir() const;
|
|
TileIndex GetOrderStationLocation(StationID station);
|
|
bool FindClosestDepot(TileIndex *location, DestinationID *destination, bool *reverse);
|
|
|
|
void ReserveTrackUnderConsist() const;
|
|
|
|
int GetCurveSpeedLimit() const;
|
|
|
|
void ConsistChanged(ConsistChangeFlags allowed_changes);
|
|
|
|
int UpdateSpeed();
|
|
|
|
void UpdateAcceleration();
|
|
|
|
int GetCurrentMaxSpeed() const;
|
|
|
|
/**
|
|
* Get the next real (non-articulated part and non rear part of dualheaded engine) vehicle in the consist.
|
|
* @return Next vehicle in the consist.
|
|
*/
|
|
inline Train *GetNextUnit() const
|
|
{
|
|
Train *v = this->GetNextVehicle();
|
|
if (v != nullptr && v->IsRearDualheaded()) v = v->GetNextVehicle();
|
|
|
|
return v;
|
|
}
|
|
|
|
/**
|
|
* Get the previous real (non-articulated part and non rear part of dualheaded engine) vehicle in the consist.
|
|
* @return Previous vehicle in the consist.
|
|
*/
|
|
inline Train *GetPrevUnit()
|
|
{
|
|
Train *v = this->GetPrevVehicle();
|
|
if (v != nullptr && v->IsRearDualheaded()) v = v->GetPrevVehicle();
|
|
|
|
return v;
|
|
}
|
|
|
|
/* Get the last vehicle of a chain
|
|
* @return pointer the last vehicle in a chain
|
|
*/
|
|
inline Train *GetLastUnit() {
|
|
Train *tmp = this;
|
|
while (tmp->GetNextUnit()) {
|
|
tmp = tmp->GetNextUnit();
|
|
}
|
|
return tmp;
|
|
}
|
|
|
|
/**
|
|
* Calculate the offset from this vehicle's center to the following center taking the vehicle lengths into account.
|
|
* @return Offset from center to center.
|
|
*/
|
|
int CalcNextVehicleOffset() const
|
|
{
|
|
/* For vehicles with odd lengths the part before the center will be one unit
|
|
* longer than the part after the center. This means we have to round up the
|
|
* length of the next vehicle but may not round the length of the current
|
|
* vehicle. */
|
|
return this->gcache.cached_veh_length / 2 + (this->Next() != nullptr ? this->Next()->gcache.cached_veh_length + 1 : 0) / 2;
|
|
}
|
|
|
|
const Train *GetStationLoadingVehicle() const
|
|
{
|
|
const Train *v = this->First();
|
|
while (v && HasBit(v->flags, VRF_BEYOND_PLATFORM_END)) v = v->Next();
|
|
return v;
|
|
}
|
|
|
|
Train *GetStationLoadingVehicle()
|
|
{
|
|
return const_cast<Train *>(const_cast<const Train *>(this)->GetStationLoadingVehicle());
|
|
}
|
|
|
|
inline uint16 GetCargoWeight(uint cargo_amount) const
|
|
{
|
|
if (cargo_amount > 0) {
|
|
return (CargoSpec::Get(this->cargo_type)->weight * cargo_amount * FreightWagonMult(this->cargo_type)) / 16;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
protected: // These functions should not be called outside acceleration code.
|
|
/**
|
|
* Gets the speed a broken down train (low speed breakdown) is limited to.
|
|
* @note This value is not cached, because changing cached_max_speed would have unwanted consequences (e.g. in the GUI).
|
|
* @param v The front engine of the vehicle.
|
|
* @return The speed the train is limited to.
|
|
*/
|
|
inline uint16 GetBreakdownSpeed() const
|
|
{
|
|
assert(this->IsFrontEngine());
|
|
uint16 speed = UINT16_MAX;
|
|
|
|
for (const Train *w = this; w != nullptr; w = w->Next()) {
|
|
if (w->breakdown_ctr == 1 && w->breakdown_type == BREAKDOWN_LOW_SPEED) {
|
|
speed = min(speed, w->breakdown_severity);
|
|
}
|
|
}
|
|
return speed;
|
|
}
|
|
|
|
/**
|
|
* Allows to know the power value that this vehicle will use.
|
|
* @return Power value from the engine in HP, or zero if the vehicle is not powered.
|
|
*/
|
|
inline uint16 GetPower() const
|
|
{
|
|
/* Power is not added for articulated parts */
|
|
if (!this->IsArticulatedPart() && (this->IsVirtual() || HasPowerOnRail(this->railtype, GetRailTypeByTrackBit(this->tile, this->track)))) {
|
|
uint16 power = GetVehicleProperty(this, PROP_TRAIN_POWER, RailVehInfo(this->engine_type)->power);
|
|
/* Halve power for multiheaded parts */
|
|
if (this->IsMultiheaded()) power /= 2;
|
|
return power;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* Returns a value if this articulated part is powered.
|
|
* @return Power value from the articulated part in HP, or zero if it is not powered.
|
|
*/
|
|
inline uint16 GetPoweredPartPower(const Train *head) const
|
|
{
|
|
/* For powered wagons the engine defines the type of engine (i.e. railtype) */
|
|
if (HasBit(this->flags, VRF_POWEREDWAGON) && (head->IsVirtual() || HasPowerOnRail(head->railtype, GetRailTypeByTrackBit(this->tile, this->track)))) {
|
|
return RailVehInfo(this->gcache.first_engine)->pow_wag_power;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
inline uint16 GetWeightWithoutCargo() const
|
|
{
|
|
uint16 weight = 0;
|
|
|
|
/* Vehicle weight is not added for articulated parts. */
|
|
if (!this->IsArticulatedPart()) {
|
|
weight += GetVehicleProperty(this, PROP_TRAIN_WEIGHT, RailVehInfo(this->engine_type)->weight);
|
|
}
|
|
|
|
/* Powered wagons have extra weight added. */
|
|
if (HasBit(this->flags, VRF_POWEREDWAGON)) {
|
|
weight += RailVehInfo(this->gcache.first_engine)->pow_wag_weight;
|
|
}
|
|
|
|
return weight;
|
|
}
|
|
|
|
/**
|
|
* Allows to know the weight value that this vehicle will use.
|
|
* @return Weight value from the engine in tonnes.
|
|
*/
|
|
inline uint16 GetWeight() const
|
|
{
|
|
return this->GetWeightWithoutCargo() + this->GetCargoWeight(this->cargo.StoredCount());
|
|
}
|
|
|
|
/**
|
|
* Allows to know the tractive effort value that this vehicle will use.
|
|
* @return Tractive effort value from the engine.
|
|
*/
|
|
inline byte GetTractiveEffort() const
|
|
{
|
|
return GetVehicleProperty(this, PROP_TRAIN_TRACTIVE_EFFORT, RailVehInfo(this->engine_type)->tractive_effort);
|
|
}
|
|
|
|
/**
|
|
* Gets the area used for calculating air drag.
|
|
* @return Area of the engine in m^2.
|
|
*/
|
|
inline byte GetAirDragArea() const
|
|
{
|
|
/* Air drag is higher in tunnels due to the limited cross-section. */
|
|
return (this->track & TRACK_BIT_WORMHOLE && this->vehstatus & VS_HIDDEN) ? 28 : 14;
|
|
}
|
|
|
|
/**
|
|
* Gets the air drag coefficient of this vehicle.
|
|
* @return Air drag value from the engine.
|
|
*/
|
|
inline byte GetAirDrag() const
|
|
{
|
|
return RailVehInfo(this->engine_type)->air_drag;
|
|
}
|
|
|
|
/**
|
|
* Checks the current acceleration status of this vehicle.
|
|
* @return Acceleration status.
|
|
*/
|
|
inline AccelStatus GetAccelerationStatus() const
|
|
{
|
|
return ((this->vehstatus & VS_STOPPED) || HasBit(this->flags, VRF_REVERSING) || HasBit(this->flags, VRF_TRAIN_STUCK) || HasBit(this->flags, VRF_BREAKDOWN_BRAKING)) ? AS_BRAKE : AS_ACCEL;
|
|
}
|
|
|
|
/**
|
|
* Calculates the current speed of this vehicle.
|
|
* @return Current speed in km/h-ish.
|
|
*/
|
|
inline uint16 GetCurrentSpeed() const
|
|
{
|
|
return this->cur_speed;
|
|
}
|
|
|
|
/**
|
|
* Returns the rolling friction coefficient of this vehicle.
|
|
* @return Rolling friction coefficient in [1e-4].
|
|
*/
|
|
inline uint32 GetRollingFriction() const
|
|
{
|
|
/* Rolling friction for steel on steel is between 0.1% and 0.2%.
|
|
* The friction coefficient increases with speed in a way that
|
|
* it doubles at 512 km/h, triples at 1024 km/h and so on. */
|
|
return 15 * (512 + this->GetCurrentSpeed()) / 512;
|
|
}
|
|
|
|
/**
|
|
* Allows to know the acceleration type of a vehicle.
|
|
* @return Acceleration type of the vehicle.
|
|
*/
|
|
inline int GetAccelerationType() const
|
|
{
|
|
return GetRailTypeInfo(this->railtype)->acceleration_type;
|
|
}
|
|
|
|
/**
|
|
* Returns the slope steepness used by this vehicle.
|
|
* @return Slope steepness used by the vehicle.
|
|
*/
|
|
inline uint32 GetSlopeSteepness() const
|
|
{
|
|
return _settings_game.vehicle.train_slope_steepness;
|
|
}
|
|
|
|
/**
|
|
* Gets the maximum speed allowed by the track for this vehicle.
|
|
* @return Maximum speed allowed.
|
|
*/
|
|
inline uint16 GetMaxTrackSpeed() const
|
|
{
|
|
return GetRailTypeInfo(GetRailTypeByTrackBit(this->tile, this->track))->max_speed;
|
|
}
|
|
|
|
/**
|
|
* Checks if the vehicle is at a tile that can be sloped.
|
|
* @return True if the tile can be sloped.
|
|
*/
|
|
inline bool TileMayHaveSlopedTrack() const
|
|
{
|
|
/* Any track that isn't TRACK_BIT_X or TRACK_BIT_Y cannot be sloped. */
|
|
return this->track == TRACK_BIT_X || this->track == TRACK_BIT_Y;
|
|
}
|
|
|
|
/**
|
|
* Trains can always use the faster algorithm because they
|
|
* have always the same direction as the track under them.
|
|
* @return false
|
|
*/
|
|
inline bool HasToUseGetSlopePixelZ()
|
|
{
|
|
return false;
|
|
}
|
|
};
|
|
|
|
|
|
CommandCost CmdMoveRailVehicle(TileIndex, DoCommandFlag , uint32, uint32, const char *);
|
|
CommandCost CmdMoveVirtualRailVehicle(TileIndex, DoCommandFlag, uint32, uint32, const char*);
|
|
|
|
Train* CmdBuildVirtualRailVehicle(EngineID, StringID &error, uint32 user);
|
|
|
|
int GetTileMarginInFrontOfTrain(const Train *v, int x_pos, int y_pos);
|
|
|
|
inline int GetTileMarginInFrontOfTrain(const Train *v)
|
|
{
|
|
return GetTileMarginInFrontOfTrain(v, v->x_pos, v->y_pos);
|
|
}
|
|
|
|
int GetTrainStopLocation(StationID station_id, TileIndex tile, Train *v, int *station_ahead, int *station_length, int x_pos, int y_pos);
|
|
|
|
inline int GetTrainStopLocation(StationID station_id, TileIndex tile, Train *v, int *station_ahead, int *station_length)
|
|
{
|
|
return GetTrainStopLocation(station_id, tile, v, station_ahead, station_length, v->x_pos, v->y_pos);
|
|
}
|
|
|
|
#endif /* TRAIN_H */
|