2005-11-18 23:41:03 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file train.h Base for the train class. */
|
2007-04-04 03:21:14 +00:00
|
|
|
|
2005-11-18 23:41:03 +00:00
|
|
|
#ifndef TRAIN_H
|
|
|
|
#define TRAIN_H
|
|
|
|
|
2010-01-16 22:30:04 +00:00
|
|
|
#include "newgrf_engine.h"
|
|
|
|
#include "cargotype.h"
|
|
|
|
#include "rail.h"
|
|
|
|
#include "engine_base.h"
|
|
|
|
#include "rail_map.h"
|
2010-03-06 12:41:18 +00:00
|
|
|
#include "ground_vehicle.hpp"
|
2005-11-18 23:41:03 +00:00
|
|
|
|
2009-05-22 22:22:46 +00:00
|
|
|
struct Train;
|
2005-11-18 23:41:03 +00:00
|
|
|
|
2011-01-29 21:37:11 +00:00
|
|
|
/** Rail vehicle flags. */
|
2009-05-22 22:33:05 +00:00
|
|
|
enum VehicleRailFlags {
|
2011-01-29 21:37:11 +00:00
|
|
|
VRF_REVERSING = 0,
|
|
|
|
VRF_POWEREDWAGON = 3, ///< Wagon is powered.
|
|
|
|
VRF_REVERSE_DIRECTION = 4, ///< Reverse the visible direction of the 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.
|
2009-05-22 22:33:05 +00:00
|
|
|
};
|
|
|
|
|
2010-06-21 17:35:27 +00:00
|
|
|
/** Modes for ignoring signals. */
|
|
|
|
enum TrainForceProceeding {
|
|
|
|
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 stucked.
|
|
|
|
};
|
|
|
|
typedef SimpleTinyEnumT<TrainForceProceeding, byte> TrainForceProceedingByte;
|
|
|
|
|
2009-05-22 22:22:46 +00:00
|
|
|
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);
|
|
|
|
|
|
|
|
int GetTrainStopLocation(StationID station_id, TileIndex tile, const Train *v, int *station_ahead, int *station_length);
|
|
|
|
|
2009-05-22 22:55:41 +00:00
|
|
|
/** Variables that are cached to improve performance and such */
|
2010-03-06 12:42:53 +00:00
|
|
|
struct TrainCache {
|
2009-05-22 22:55:41 +00:00
|
|
|
/* 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. */
|
2010-01-30 10:41:15 +00:00
|
|
|
bool cached_tilt; ///< train can tilt; feature provides a bonus in curves
|
2009-05-22 22:55:41 +00:00
|
|
|
|
2010-12-14 21:33:53 +00:00
|
|
|
byte user_def_data; ///< Cached property 0x25. Can be set by Callback 0x36.
|
|
|
|
|
2009-06-01 13:14:56 +00:00
|
|
|
/* cached max. speed / acceleration data */
|
|
|
|
int cached_max_curve_speed; ///< max consist speed limited by curves
|
2009-05-22 22:55:41 +00:00
|
|
|
};
|
|
|
|
|
2009-05-22 22:22:46 +00:00
|
|
|
/**
|
2009-05-26 23:24:34 +00:00
|
|
|
* 'Train' is either a loco or a wagon.
|
2009-05-22 22:22:46 +00:00
|
|
|
*/
|
2010-03-06 12:41:18 +00:00
|
|
|
struct Train : public GroundVehicle<Train, VEH_TRAIN> {
|
2009-05-22 22:55:41 +00:00
|
|
|
TrainCache tcache;
|
|
|
|
|
2009-05-22 22:33:05 +00:00
|
|
|
/* Link between the two ends of a multiheaded engine */
|
|
|
|
Train *other_multiheaded_part;
|
|
|
|
|
2011-02-05 16:20:55 +00:00
|
|
|
uint16 crash_anim_pos; ///< Crash animation counter.
|
2009-05-22 22:33:05 +00:00
|
|
|
|
|
|
|
uint16 flags;
|
|
|
|
TrackBitsByte track;
|
2010-06-21 17:35:27 +00:00
|
|
|
TrainForceProceedingByte force_proceed;
|
2009-05-22 22:33:05 +00:00
|
|
|
RailTypeByte railtype;
|
|
|
|
RailTypes compatible_railtypes;
|
|
|
|
|
2010-01-09 14:43:08 +00:00
|
|
|
/** Ticks waiting in front of a signal, ticks being stuck or a counter for forced proceeding through signals. */
|
|
|
|
uint16 wait_counter;
|
|
|
|
|
2009-06-02 19:12:28 +00:00
|
|
|
/** We don't want GCC to zero our struct! It already is zeroed and has an index! */
|
2011-01-21 14:43:38 +00:00
|
|
|
Train() : GroundVehicleBase() {}
|
2009-05-22 22:22:46 +00:00
|
|
|
/** We want to 'destruct' the right class. */
|
|
|
|
virtual ~Train() { this->PreDestructor(); }
|
|
|
|
|
2010-03-06 12:44:30 +00:00
|
|
|
friend struct GroundVehicle<Train, VEH_TRAIN>; // GroundVehicle needs to use the acceleration functions defined at Train.
|
|
|
|
|
2009-05-22 22:22:46 +00:00
|
|
|
void MarkDirty();
|
|
|
|
void UpdateDeltaXY(Direction direction);
|
|
|
|
ExpensesType GetExpenseType(bool income) const { return income ? EXPENSES_TRAIN_INC : EXPENSES_TRAIN_RUN; }
|
|
|
|
void PlayLeaveStationSound() const;
|
2009-07-01 22:22:01 +00:00
|
|
|
bool IsPrimaryVehicle() const { return this->IsFrontEngine(); }
|
2011-11-01 16:51:47 +00:00
|
|
|
SpriteID GetImage(Direction direction, EngineImageType image_type) const;
|
2011-01-26 17:31:07 +00:00
|
|
|
int GetDisplaySpeed() const { return this->gcache.last_speed; }
|
2010-11-06 12:53:31 +00:00
|
|
|
int GetDisplayMaxSpeed() const { return this->vcache.cached_max_speed; }
|
2009-05-22 22:22:46 +00:00
|
|
|
Money GetRunningCost() const;
|
2009-07-17 22:00:13 +00:00
|
|
|
int GetDisplayImageWidth(Point *offset = NULL) const;
|
2009-12-13 17:13:20 +00:00
|
|
|
bool IsInDepot() const;
|
|
|
|
bool IsStoppedInDepot() const;
|
2009-05-22 22:22:46 +00:00
|
|
|
bool Tick();
|
|
|
|
void OnNewDay();
|
2009-12-04 20:29:46 +00:00
|
|
|
uint Crash(bool flooded = false);
|
2009-05-22 22:22:46 +00:00
|
|
|
Trackdir GetVehicleTrackdir() const;
|
|
|
|
TileIndex GetOrderStationLocation(StationID station);
|
|
|
|
bool FindClosestDepot(TileIndex *location, DestinationID *destination, bool *reverse);
|
2009-07-01 22:22:01 +00:00
|
|
|
|
2009-07-17 13:54:06 +00:00
|
|
|
void ReserveTrackUnderConsist() const;
|
2010-01-15 18:23:52 +00:00
|
|
|
|
|
|
|
int GetCurveSpeedLimit() const;
|
|
|
|
|
|
|
|
void ConsistChanged(bool same_length);
|
|
|
|
|
2010-08-15 19:59:48 +00:00
|
|
|
void RailtypeChanged();
|
|
|
|
|
2010-01-16 22:16:28 +00:00
|
|
|
int UpdateSpeed();
|
|
|
|
|
2010-01-15 18:23:52 +00:00
|
|
|
void UpdateAcceleration();
|
2009-07-02 12:10:39 +00:00
|
|
|
|
2010-01-16 22:30:04 +00:00
|
|
|
int GetCurrentMaxSpeed() const;
|
|
|
|
|
2009-07-02 12:10:39 +00:00
|
|
|
/**
|
|
|
|
* Get the next real (non-articulated part and non rear part of dualheaded engine) vehicle in the consist.
|
|
|
|
* @return Next vehicle in the consist.
|
|
|
|
*/
|
|
|
|
FORCEINLINE Train *GetNextUnit() const
|
|
|
|
{
|
|
|
|
Train *v = this->GetNextVehicle();
|
|
|
|
if (v != NULL && v->IsRearDualheaded()) v = v->GetNextVehicle();
|
2007-09-05 10:33:42 +00:00
|
|
|
|
2009-07-02 12:10:39 +00:00
|
|
|
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.
|
|
|
|
*/
|
|
|
|
FORCEINLINE Train *GetPrevUnit()
|
|
|
|
{
|
|
|
|
Train *v = this->GetPrevVehicle();
|
|
|
|
if (v != NULL && v->IsRearDualheaded()) v = v->GetPrevVehicle();
|
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|
2010-01-16 22:30:04 +00:00
|
|
|
|
2011-11-21 20:51:43 +00:00
|
|
|
/**
|
|
|
|
* 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() != NULL ? this->Next()->gcache.cached_veh_length + 1 : 0) / 2;
|
|
|
|
}
|
2010-01-16 22:30:04 +00:00
|
|
|
|
2010-02-10 21:06:05 +00:00
|
|
|
protected: // These functions should not be called outside acceleration code.
|
2010-01-16 22:30:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
FORCEINLINE uint16 GetPower() const
|
|
|
|
{
|
|
|
|
/* Power is not added for articulated parts */
|
|
|
|
if (!this->IsArticulatedPart() && HasPowerOnRail(this->railtype, GetRailType(this->tile))) {
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
FORCEINLINE uint16 GetPoweredPartPower(const Train *head) const
|
|
|
|
{
|
2010-08-15 18:35:57 +00:00
|
|
|
/* For powered wagons the engine defines the type of engine (i.e. railtype) */
|
|
|
|
if (HasBit(this->flags, VRF_POWEREDWAGON) && HasPowerOnRail(head->railtype, GetRailType(this->tile))) {
|
2010-12-14 21:33:53 +00:00
|
|
|
return RailVehInfo(this->gcache.first_engine)->pow_wag_power;
|
2010-01-16 22:30:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows to know the weight value that this vehicle will use.
|
|
|
|
* @return Weight value from the engine in tonnes.
|
|
|
|
*/
|
|
|
|
FORCEINLINE uint16 GetWeight() const
|
|
|
|
{
|
|
|
|
uint16 weight = (CargoSpec::Get(this->cargo_type)->weight * this->cargo.Count() * FreightWagonMult(this->cargo_type)) / 16;
|
|
|
|
|
|
|
|
/* 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)) {
|
2010-12-14 21:33:53 +00:00
|
|
|
weight += RailVehInfo(this->gcache.first_engine)->pow_wag_weight;
|
2010-01-16 22:30:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return weight;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows to know the tractive effort value that this vehicle will use.
|
|
|
|
* @return Tractive effort value from the engine.
|
|
|
|
*/
|
|
|
|
FORCEINLINE byte GetTractiveEffort() const
|
|
|
|
{
|
|
|
|
return GetVehicleProperty(this, PROP_TRAIN_TRACTIVE_EFFORT, RailVehInfo(this->engine_type)->tractive_effort);
|
|
|
|
}
|
|
|
|
|
2010-08-02 14:49:23 +00:00
|
|
|
/**
|
|
|
|
* Gets the area used for calculating air drag.
|
2010-11-07 13:35:07 +00:00
|
|
|
* @return Area of the engine in m^2.
|
2010-08-02 14:49:23 +00:00
|
|
|
*/
|
|
|
|
FORCEINLINE byte GetAirDragArea() const
|
|
|
|
{
|
2010-11-07 13:35:07 +00:00
|
|
|
/* Air drag is higher in tunnels due to the limited cross-section. */
|
|
|
|
return (this->track == TRACK_BIT_WORMHOLE && this->vehstatus & VS_HIDDEN) ? 28 : 14;
|
2010-08-02 14:49:23 +00:00
|
|
|
}
|
|
|
|
|
2010-08-02 14:52:51 +00:00
|
|
|
/**
|
|
|
|
* Gets the air drag coefficient of this vehicle.
|
|
|
|
* @return Air drag value from the engine.
|
|
|
|
*/
|
|
|
|
FORCEINLINE byte GetAirDrag() const
|
|
|
|
{
|
|
|
|
return RailVehInfo(this->engine_type)->air_drag;
|
|
|
|
}
|
|
|
|
|
2010-01-16 22:30:04 +00:00
|
|
|
/**
|
|
|
|
* Checks the current acceleration status of this vehicle.
|
|
|
|
* @return Acceleration status.
|
|
|
|
*/
|
2010-01-17 23:03:43 +00:00
|
|
|
FORCEINLINE AccelStatus GetAccelerationStatus() const
|
2010-01-16 22:30:04 +00:00
|
|
|
{
|
2010-01-17 23:03:43 +00:00
|
|
|
return (this->vehstatus & VS_STOPPED) || HasBit(this->flags, VRF_REVERSING) || HasBit(this->flags, VRF_TRAIN_STUCK) ? AS_BRAKE : AS_ACCEL;
|
2010-01-16 22:30:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculates the current speed of this vehicle.
|
2010-11-07 13:35:07 +00:00
|
|
|
* @return Current speed in km/h-ish.
|
2010-01-16 22:30:04 +00:00
|
|
|
*/
|
|
|
|
FORCEINLINE uint16 GetCurrentSpeed() const
|
|
|
|
{
|
2010-11-07 13:35:07 +00:00
|
|
|
return this->cur_speed;
|
2010-01-16 22:30:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the rolling friction coefficient of this vehicle.
|
2010-11-07 13:35:07 +00:00
|
|
|
* @return Rolling friction coefficient in [1e-4].
|
2010-01-16 22:30:04 +00:00
|
|
|
*/
|
|
|
|
FORCEINLINE uint32 GetRollingFriction() const
|
|
|
|
{
|
2011-01-04 18:12:28 +00:00
|
|
|
/* Rolling friction for steel on steel is between 0.1% and 0.2%.
|
2010-11-07 13:35:07 +00:00
|
|
|
* The friction coefficient increases with speed in a way that
|
|
|
|
* it doubles at 512 km/h, triples at 1024 km/h and so on. */
|
2011-01-04 18:12:28 +00:00
|
|
|
return 15 * (512 + this->GetCurrentSpeed()) / 512;
|
2010-01-16 22:30:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows to know the acceleration type of a vehicle.
|
|
|
|
* @return Acceleration type of the vehicle.
|
|
|
|
*/
|
|
|
|
FORCEINLINE int GetAccelerationType() const
|
|
|
|
{
|
|
|
|
return GetRailTypeInfo(this->railtype)->acceleration_type;
|
|
|
|
}
|
2010-01-28 20:54:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the slope steepness used by this vehicle.
|
|
|
|
* @return Slope steepness used by the vehicle.
|
|
|
|
*/
|
|
|
|
FORCEINLINE uint32 GetSlopeSteepness() const
|
|
|
|
{
|
2010-11-07 13:35:07 +00:00
|
|
|
return _settings_game.vehicle.train_slope_steepness;
|
2010-01-28 20:54:29 +00:00
|
|
|
}
|
2010-03-06 12:27:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the maximum speed allowed by the track for this vehicle.
|
|
|
|
* @return Maximum speed allowed.
|
|
|
|
*/
|
|
|
|
FORCEINLINE uint16 GetMaxTrackSpeed() const
|
|
|
|
{
|
|
|
|
return GetRailTypeInfo(GetRailType(this->tile))->max_speed;
|
|
|
|
}
|
2010-03-06 12:52:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the vehicle is at a tile that can be sloped.
|
|
|
|
* @return True if the tile can be sloped.
|
|
|
|
*/
|
|
|
|
FORCEINLINE 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;
|
|
|
|
}
|
2011-01-21 17:35:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Trains can always use the faster algorithm because they
|
|
|
|
* have always the same direction as the track under them.
|
|
|
|
* @return false
|
|
|
|
*/
|
2011-11-04 10:18:13 +00:00
|
|
|
FORCEINLINE bool HasToUseGetSlopePixelZ()
|
2011-01-21 17:35:17 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2009-07-02 12:10:39 +00:00
|
|
|
};
|
2008-08-16 14:02:20 +00:00
|
|
|
|
2009-07-02 12:10:39 +00:00
|
|
|
#define FOR_ALL_TRAINS(var) FOR_ALL_VEHICLES_OF_TYPE(Train, var)
|
2008-08-16 14:02:20 +00:00
|
|
|
|
2005-11-18 23:41:03 +00:00
|
|
|
#endif /* TRAIN_H */
|