2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2007-12-27 13:35:39 +00:00
|
|
|
/** @file vehicle_base.h Base class for all vehicles. */
|
2007-04-04 04:08:47 +00:00
|
|
|
|
2007-12-27 13:35:39 +00:00
|
|
|
#ifndef VEHICLE_BASE_H
|
|
|
|
#define VEHICLE_BASE_H
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-12-19 23:26:02 +00:00
|
|
|
#include "vehicle_type.h"
|
2007-12-18 20:38:16 +00:00
|
|
|
#include "track_type.h"
|
2007-12-21 22:50:51 +00:00
|
|
|
#include "cargo_type.h"
|
2007-12-25 23:42:52 +00:00
|
|
|
#include "direction_type.h"
|
2007-12-23 10:56:02 +00:00
|
|
|
#include "gfx_type.h"
|
|
|
|
#include "command_type.h"
|
2007-12-26 13:50:40 +00:00
|
|
|
#include "date_type.h"
|
2008-09-30 20:51:04 +00:00
|
|
|
#include "company_base.h"
|
|
|
|
#include "company_type.h"
|
2009-05-22 15:39:22 +00:00
|
|
|
#include "core/pool_type.hpp"
|
2008-03-30 23:24:18 +00:00
|
|
|
#include "order_base.h"
|
2007-06-22 11:58:59 +00:00
|
|
|
#include "cargopacket.h"
|
2007-06-21 16:17:47 +00:00
|
|
|
#include "texteff.hpp"
|
2008-03-28 16:34:50 +00:00
|
|
|
#include "group_type.h"
|
2008-03-28 18:00:38 +00:00
|
|
|
#include "engine_type.h"
|
2008-04-27 20:09:29 +00:00
|
|
|
#include "order_func.h"
|
2008-05-07 09:07:19 +00:00
|
|
|
#include "transport_type.h"
|
2007-02-13 10:26:53 +00:00
|
|
|
|
2005-05-02 23:59:11 +00:00
|
|
|
enum VehStatus {
|
2006-08-22 14:38:37 +00:00
|
|
|
VS_HIDDEN = 0x01,
|
|
|
|
VS_STOPPED = 0x02,
|
|
|
|
VS_UNCLICKABLE = 0x04,
|
|
|
|
VS_DEFPAL = 0x08,
|
|
|
|
VS_TRAIN_SLOWING = 0x10,
|
|
|
|
VS_SHADOW = 0x20,
|
2005-05-02 23:59:11 +00:00
|
|
|
VS_AIRCRAFT_BROKEN = 0x40,
|
2006-08-22 14:38:37 +00:00
|
|
|
VS_CRASHED = 0x80,
|
2005-05-02 23:59:11 +00:00
|
|
|
};
|
|
|
|
|
2007-02-28 17:18:36 +00:00
|
|
|
enum VehicleFlags {
|
|
|
|
VF_LOADING_FINISHED,
|
|
|
|
VF_CARGO_UNLOADING,
|
2007-02-28 17:59:05 +00:00
|
|
|
VF_BUILT_AS_PROTOTYPE,
|
2008-11-18 23:53:37 +00:00
|
|
|
VF_TIMETABLE_STARTED, ///< Whether the vehicle has started running on the timetable yet.
|
|
|
|
VF_AUTOFILL_TIMETABLE, ///< Whether the vehicle should fill in the timetable automatically.
|
|
|
|
VF_AUTOFILL_PRES_WAIT_TIME, ///< Whether non-destructive auto-fill should preserve waiting times
|
2006-12-02 16:56:32 +00:00
|
|
|
};
|
|
|
|
|
2009-05-23 09:10:56 +00:00
|
|
|
/** Cached oftenly queried (NewGRF) values */
|
|
|
|
struct VehicleCache {
|
|
|
|
uint8 cache_valid; ///< Whether the caches are valid
|
|
|
|
uint32 cached_var40; ///< Cache for NewGRF var 40
|
|
|
|
uint32 cached_var41; ///< Cache for NewGRF var 41
|
|
|
|
uint32 cached_var42; ///< Cache for NewGRF var 42
|
|
|
|
uint32 cached_var43; ///< Cache for NewGRF var 43
|
|
|
|
};
|
|
|
|
|
2009-05-22 15:13:50 +00:00
|
|
|
typedef Pool<Vehicle, VehicleID, 512, 64000> VehiclePool;
|
|
|
|
extern VehiclePool _vehicle_pool;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-09-07 22:06:52 +00:00
|
|
|
/* Some declarations of functions, so we can make them friendly */
|
2007-08-30 13:09:44 +00:00
|
|
|
struct SaveLoad;
|
2007-09-07 22:06:52 +00:00
|
|
|
extern const SaveLoad *GetVehicleDescription(VehicleType vt);
|
|
|
|
struct LoadgameState;
|
|
|
|
extern bool LoadOldVehicle(LoadgameState *ls, int num);
|
2009-05-22 15:13:50 +00:00
|
|
|
extern bool AfterLoadGame();
|
|
|
|
extern void FixOldVehicles();
|
2007-08-30 13:09:44 +00:00
|
|
|
|
2009-05-22 15:13:50 +00:00
|
|
|
struct Vehicle : VehiclePool::PoolItem<&_vehicle_pool>, BaseVehicle {
|
2007-08-30 13:09:44 +00:00
|
|
|
private:
|
2008-04-21 08:35:27 +00:00
|
|
|
Vehicle *next; ///< pointer to the next vehicle in the chain
|
|
|
|
Vehicle *previous; ///< NOSAVE: pointer to the previous vehicle in the chain
|
|
|
|
Vehicle *first; ///< NOSAVE: pointer to the first vehicle in the chain
|
2008-08-17 19:56:17 +00:00
|
|
|
|
|
|
|
Vehicle *next_shared; ///< pointer to the next vehicle that shares the order
|
|
|
|
Vehicle *previous_shared; ///< NOSAVE: pointer to the previous vehicle in the shared order chain
|
2007-08-30 13:09:44 +00:00
|
|
|
public:
|
2008-04-21 08:35:27 +00:00
|
|
|
friend const SaveLoad *GetVehicleDescription(VehicleType vt); ///< So we can use private/protected variables in the saveload code
|
2009-05-22 15:13:50 +00:00
|
|
|
friend bool AfterLoadGame();
|
|
|
|
friend void FixOldVehicles();
|
2009-01-23 02:35:17 +00:00
|
|
|
friend void AfterLoadVehicles(bool part_of_load); ///< So we can set the previous and first pointers while loading
|
2008-04-21 08:35:27 +00:00
|
|
|
friend bool LoadOldVehicle(LoadgameState *ls, int num); ///< So we can set the proper next pointer while loading
|
2007-08-30 13:09:44 +00:00
|
|
|
|
2008-01-12 19:58:06 +00:00
|
|
|
char *name; ///< Name of vehicle
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-21 08:35:27 +00:00
|
|
|
TileIndex tile; ///< Current tile index
|
2008-12-20 11:51:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Heading for this tile.
|
|
|
|
* For airports and train stations this tile does not necessarily belong to the destination station,
|
|
|
|
* but it can be used for heuristical purposes to estimate the distance.
|
|
|
|
*/
|
|
|
|
TileIndex dest_tile;
|
2008-04-21 08:35:27 +00:00
|
|
|
|
|
|
|
Money profit_this_year; ///< Profit this year << 8, low 8 bits are fract
|
|
|
|
Money profit_last_year; ///< Profit last year << 8, low 8 bits are fract
|
2009-06-29 19:55:36 +00:00
|
|
|
Money value; ///< Value of the vehicle
|
|
|
|
|
|
|
|
CargoPayment *cargo_payment; ///< The cargo payment we're currently in
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-21 08:35:27 +00:00
|
|
|
/* Used for timetabling. */
|
|
|
|
uint32 current_order_time; ///< How many ticks have passed since this order started.
|
|
|
|
int32 lateness_counter; ///< How many ticks late (or early if negative) this vehicle is.
|
|
|
|
|
|
|
|
/* Boundaries for the current position in the world and a next hash link.
|
|
|
|
* NOSAVE: All of those can be updated with VehiclePositionChanged() */
|
2009-03-11 17:26:58 +00:00
|
|
|
Rect coord;
|
2009-06-09 17:20:06 +00:00
|
|
|
Vehicle *next_hash, **prev_hash;
|
|
|
|
Vehicle *next_new_hash, **prev_new_hash;
|
2008-04-21 08:35:27 +00:00
|
|
|
Vehicle **old_new_hash;
|
|
|
|
|
2009-02-09 02:57:15 +00:00
|
|
|
SpriteID colourmap; // NOSAVE: cached colour mapping
|
2008-04-21 08:35:27 +00:00
|
|
|
|
|
|
|
/* Related to age and service time */
|
|
|
|
Year build_year;
|
|
|
|
Date age; // Age in days
|
|
|
|
Date max_age; // Maximum age
|
|
|
|
Date date_of_last_service;
|
|
|
|
Date service_interval;
|
|
|
|
uint16 reliability;
|
|
|
|
uint16 reliability_spd_dec;
|
|
|
|
byte breakdown_ctr;
|
|
|
|
byte breakdown_delay;
|
|
|
|
byte breakdowns_since_last_service;
|
|
|
|
byte breakdown_chance;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-08-22 14:38:37 +00:00
|
|
|
int32 x_pos; // coordinates
|
2005-01-25 21:43:57 +00:00
|
|
|
int32 y_pos;
|
2004-08-09 17:04:08 +00:00
|
|
|
byte z_pos;
|
2007-01-10 18:56:51 +00:00
|
|
|
DirectionByte direction; // facing
|
2006-08-22 14:38:37 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
OwnerByte owner; // which company owns the vehicle?
|
2006-08-22 14:38:37 +00:00
|
|
|
byte spritenum; // currently displayed sprite index
|
|
|
|
// 0xfd == custom sprite, 0xfe == custom second head sprite
|
|
|
|
// 0xff == reserved for another custom sprite
|
|
|
|
uint16 cur_image; // sprite number for this vehicle
|
2008-04-01 14:03:20 +00:00
|
|
|
byte x_extent; // x-extent of vehicle bounding box
|
|
|
|
byte y_extent; // y-extent of vehicle bounding box
|
|
|
|
byte z_extent; // z-extent of vehicle bounding box
|
2006-08-22 14:38:37 +00:00
|
|
|
int8 x_offs; // x offset for vehicle sprite
|
|
|
|
int8 y_offs; // y offset for vehicle sprite
|
2005-05-06 16:13:44 +00:00
|
|
|
EngineID engine_type;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-06-21 16:17:47 +00:00
|
|
|
TextEffectID fill_percent_te_id; // a text-effect id to a loading indicator object
|
2008-04-21 08:35:27 +00:00
|
|
|
UnitID unitnumber; // unit number, for display purposes only
|
|
|
|
|
|
|
|
uint16 max_speed; ///< maximum speed
|
|
|
|
uint16 cur_speed; ///< current speed
|
|
|
|
byte subspeed; ///< fractional speed
|
|
|
|
byte acceleration; ///< used by train & aircraft
|
|
|
|
uint32 motion_counter;
|
|
|
|
byte progress;
|
2007-06-21 16:17:47 +00:00
|
|
|
|
2007-04-04 04:08:47 +00:00
|
|
|
/* for randomized variational spritegroups
|
|
|
|
* bitmask used to resolve them; parts of it get reseeded when triggers
|
|
|
|
* of corresponding spritegroups get matched */
|
2004-11-17 08:52:47 +00:00
|
|
|
byte random_bits;
|
2008-04-21 08:35:27 +00:00
|
|
|
byte waiting_triggers; ///< triggers to be yet matched
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-26 22:55:27 +00:00
|
|
|
StationID last_station_visited;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-04-21 08:35:27 +00:00
|
|
|
CargoID cargo_type; ///< type of cargo this vehicle is carrying
|
2006-05-19 10:04:03 +00:00
|
|
|
byte cargo_subtype; ///< Used for livery refits (NewGRF variations)
|
2008-04-21 08:35:27 +00:00
|
|
|
uint16 cargo_cap; ///< total capacity
|
2007-06-22 11:58:59 +00:00
|
|
|
CargoList cargo; ///< The cargo this vehicle is carrying
|
|
|
|
|
2008-02-13 19:24:40 +00:00
|
|
|
byte day_counter; ///< Increased by one for each day
|
|
|
|
byte tick_counter; ///< Increased by one for each tick
|
|
|
|
byte running_ticks; ///< Number of ticks this vehicle was not stopped this day
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-21 08:35:27 +00:00
|
|
|
byte vehstatus; ///< Status
|
|
|
|
Order current_order; ///< The current order (+ status, like: loading)
|
|
|
|
VehicleOrderID cur_order_index; ///< The index to the current order
|
2005-01-15 19:06:22 +00:00
|
|
|
|
2009-01-03 13:52:06 +00:00
|
|
|
union {
|
|
|
|
OrderList *list; ///< Pointer to the order list for this vehicle
|
|
|
|
Order *old; ///< Only used during conversion of old save games
|
|
|
|
} orders;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-21 08:35:27 +00:00
|
|
|
byte vehicle_flags; ///< Used for gradual loading and other miscellaneous things (@see VehicleFlags enum)
|
2004-08-09 17:04:08 +00:00
|
|
|
uint16 load_unload_time_rem;
|
2007-05-19 09:40:18 +00:00
|
|
|
|
2008-04-21 08:35:27 +00:00
|
|
|
GroupID group_id; ///< Index of group Pool array
|
2007-06-20 19:17:22 +00:00
|
|
|
|
2008-04-21 08:35:27 +00:00
|
|
|
byte subtype; ///< subtype (Filled with values from EffectVehicles/TrainSubTypes/AircraftSubTypes)
|
2007-10-28 15:40:18 +00:00
|
|
|
|
2009-05-23 09:10:56 +00:00
|
|
|
VehicleCache vcache; ///< Cache of often used calculated values
|
2007-08-03 19:36:00 +00:00
|
|
|
|
|
|
|
/** Create a new vehicle */
|
2009-05-30 20:13:12 +00:00
|
|
|
Vehicle(VehicleType type = VEH_INVALID);
|
2007-08-03 19:36:00 +00:00
|
|
|
|
2007-08-05 17:43:04 +00:00
|
|
|
/** Destroy all stuff that (still) needs the virtual functions to work properly */
|
|
|
|
void PreDestructor();
|
2007-08-03 19:36:00 +00:00
|
|
|
/** We want to 'destruct' the right class. */
|
|
|
|
virtual ~Vehicle();
|
|
|
|
|
2007-01-13 18:55:54 +00:00
|
|
|
void BeginLoading();
|
|
|
|
void LeaveStation();
|
2007-04-29 21:24:08 +00:00
|
|
|
|
2007-05-07 16:21:34 +00:00
|
|
|
/**
|
|
|
|
* Handle the loading of the vehicle; when not it skips through dummy
|
|
|
|
* orders and does nothing in all other cases.
|
|
|
|
* @param mode is the non-first call for this vehicle in this tick?
|
|
|
|
*/
|
|
|
|
void HandleLoading(bool mode = false);
|
|
|
|
|
2007-04-29 21:24:08 +00:00
|
|
|
/**
|
|
|
|
* Get a string 'representation' of the vehicle type.
|
|
|
|
* @return the string representation.
|
|
|
|
*/
|
2009-01-10 00:31:47 +00:00
|
|
|
virtual const char *GetTypeString() const { return "base vehicle"; }
|
2007-04-29 22:33:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Marks the vehicles to be redrawn and updates cached variables
|
2007-09-09 10:13:17 +00:00
|
|
|
*
|
|
|
|
* This method marks the area of the vehicle on the screen as dirty.
|
|
|
|
* It can be use to repaint the vehicle.
|
|
|
|
*
|
|
|
|
* @ingroup dirty
|
2007-04-29 22:33:51 +00:00
|
|
|
*/
|
|
|
|
virtual void MarkDirty() {}
|
2007-05-01 16:35:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the x and y offsets and the size of the sprite used
|
|
|
|
* for this vehicle.
|
|
|
|
* @param direction the direction the vehicle is facing
|
|
|
|
*/
|
|
|
|
virtual void UpdateDeltaXY(Direction direction) {}
|
2007-05-02 09:29:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the expense type associated to this vehicle type
|
|
|
|
* @param income whether this is income or (running) expenses of the vehicle
|
|
|
|
*/
|
2007-05-02 09:39:11 +00:00
|
|
|
virtual ExpensesType GetExpenseType(bool income) const { return EXPENSES_OTHER; }
|
2007-05-02 09:29:41 +00:00
|
|
|
|
2007-05-07 15:58:05 +00:00
|
|
|
/**
|
|
|
|
* Play the sound associated with leaving the station
|
|
|
|
*/
|
|
|
|
virtual void PlayLeaveStationSound() const {}
|
2007-06-01 12:03:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether this is the primary vehicle in the chain.
|
|
|
|
*/
|
|
|
|
virtual bool IsPrimaryVehicle() const { return false; }
|
|
|
|
|
2007-07-01 19:11:47 +00:00
|
|
|
/**
|
|
|
|
* Gets the sprite to show for the given direction
|
|
|
|
* @param direction the direction the vehicle is facing
|
|
|
|
* @return the sprite for the given vehicle in the given direction
|
|
|
|
*/
|
2008-04-21 20:50:58 +00:00
|
|
|
virtual SpriteID GetImage(Direction direction) const { return 0; }
|
2007-07-01 19:24:54 +00:00
|
|
|
|
2009-05-31 12:03:14 +00:00
|
|
|
/**
|
|
|
|
* Invalidates cached NewGRF variables
|
|
|
|
* @see InvalidateNewGRFCacheOfChain
|
|
|
|
*/
|
|
|
|
FORCEINLINE void InvalidateNewGRFCache()
|
|
|
|
{
|
|
|
|
this->vcache.cache_valid = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invalidates cached NewGRF variables of all vehicles in the chain (after the current vehicle)
|
|
|
|
* @see InvalidateNewGRFCache
|
|
|
|
*/
|
|
|
|
FORCEINLINE void InvalidateNewGRFCacheOfChain()
|
|
|
|
{
|
|
|
|
for (Vehicle *u = this; u != NULL; u = u->Next()) {
|
|
|
|
u->InvalidateNewGRFCache();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-26 20:43:22 +00:00
|
|
|
/**
|
2009-02-01 17:14:39 +00:00
|
|
|
* Gets the speed in km-ish/h that can be sent into SetDParam for string processing.
|
2007-08-26 20:43:22 +00:00
|
|
|
* @return the vehicle's speed
|
|
|
|
*/
|
|
|
|
virtual int GetDisplaySpeed() const { return 0; }
|
|
|
|
|
2007-08-28 06:46:33 +00:00
|
|
|
/**
|
2009-02-01 17:14:39 +00:00
|
|
|
* Gets the maximum speed in km-ish/h that can be sent into SetDParam for string processing.
|
2007-08-28 06:46:33 +00:00
|
|
|
* @return the vehicle's maximum speed
|
|
|
|
*/
|
|
|
|
virtual int GetDisplayMaxSpeed() const { return 0; }
|
|
|
|
|
2007-08-29 21:27:16 +00:00
|
|
|
/**
|
|
|
|
* Gets the running cost of a vehicle
|
|
|
|
* @return the vehicle's running cost
|
|
|
|
*/
|
|
|
|
virtual Money GetRunningCost() const { return 0; }
|
|
|
|
|
2007-08-29 21:49:08 +00:00
|
|
|
/**
|
|
|
|
* Check whether the vehicle is in the depot.
|
|
|
|
* @return true if and only if the vehicle is in the depot.
|
|
|
|
*/
|
|
|
|
virtual bool IsInDepot() const { return false; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether the vehicle is in the depot *and* stopped.
|
|
|
|
* @return true if and only if the vehicle is in the depot and stopped.
|
|
|
|
*/
|
|
|
|
virtual bool IsStoppedInDepot() const { return this->IsInDepot() && (this->vehstatus & VS_STOPPED) != 0; }
|
|
|
|
|
2007-07-01 19:24:54 +00:00
|
|
|
/**
|
|
|
|
* Calls the tick handler of the vehicle
|
2009-05-22 13:53:14 +00:00
|
|
|
* @return is this vehicle still valid?
|
2007-07-01 19:24:54 +00:00
|
|
|
*/
|
2009-05-22 13:53:14 +00:00
|
|
|
virtual bool Tick() { return true; };
|
2007-08-02 21:19:07 +00:00
|
|
|
|
2008-02-01 22:02:14 +00:00
|
|
|
/**
|
|
|
|
* Calls the new day handler of the vehicle
|
|
|
|
*/
|
|
|
|
virtual void OnNewDay() {};
|
|
|
|
|
2009-08-08 18:45:12 +00:00
|
|
|
/**
|
|
|
|
* Update vehicle sprite- and position caches
|
|
|
|
* @param moved Was the vehicle moved?
|
|
|
|
* @param turned Did the vehicle direction change?
|
|
|
|
*/
|
|
|
|
inline void UpdateViewport(bool moved, bool turned)
|
|
|
|
{
|
|
|
|
extern void VehicleMove(Vehicle *v, bool update_viewport);
|
|
|
|
|
|
|
|
if (turned) this->UpdateDeltaXY(this->direction);
|
|
|
|
SpriteID old_image = this->cur_image;
|
|
|
|
this->cur_image = this->GetImage(this->direction);
|
|
|
|
if (moved || this->cur_image != old_image) VehicleMove(this, true);
|
|
|
|
}
|
|
|
|
|
2009-05-22 18:17:20 +00:00
|
|
|
/**
|
|
|
|
* Returns the Trackdir on which the vehicle is currently located.
|
|
|
|
* Works for trains and ships.
|
|
|
|
* Currently works only sortof for road vehicles, since they have a fuzzy
|
|
|
|
* concept of being "on" a trackdir. Dunno really what it returns for a road
|
|
|
|
* vehicle that is halfway a tile, never really understood that part. For road
|
|
|
|
* vehicles that are at the beginning or end of the tile, should just return
|
|
|
|
* the diagonal trackdir on which they are driving. I _think_.
|
|
|
|
* For other vehicles types, or vehicles with no clear trackdir (such as those
|
|
|
|
* in depots), returns 0xFF.
|
|
|
|
* @return the trackdir of the vehicle
|
|
|
|
*/
|
|
|
|
virtual Trackdir GetVehicleTrackdir() const { return INVALID_TRACKDIR; }
|
|
|
|
|
2007-08-29 21:27:16 +00:00
|
|
|
/**
|
|
|
|
* Gets the running cost of a vehicle that can be sent into SetDParam for string processing.
|
|
|
|
* @return the vehicle's running cost
|
|
|
|
*/
|
|
|
|
Money GetDisplayRunningCost() const { return (this->GetRunningCost() >> 8); }
|
|
|
|
|
2008-02-20 17:06:58 +00:00
|
|
|
/**
|
|
|
|
* Gets the profit vehicle had this year. It can be sent into SetDParam for string processing.
|
|
|
|
* @return the vehicle's profit this year
|
|
|
|
*/
|
|
|
|
Money GetDisplayProfitThisYear() const { return (this->profit_this_year >> 8); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the profit vehicle had last year. It can be sent into SetDParam for string processing.
|
|
|
|
* @return the vehicle's profit last year
|
|
|
|
*/
|
|
|
|
Money GetDisplayProfitLastYear() const { return (this->profit_last_year >> 8); }
|
|
|
|
|
2007-08-30 13:03:56 +00:00
|
|
|
/**
|
|
|
|
* Set the next vehicle of this vehicle.
|
|
|
|
* @param next the next vehicle. NULL removes the next vehicle.
|
|
|
|
*/
|
2007-08-30 21:11:12 +00:00
|
|
|
void SetNext(Vehicle *next);
|
2007-08-30 13:03:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the next vehicle of this vehicle.
|
|
|
|
* @note articulated parts are also counted as vehicles.
|
|
|
|
* @return the next vehicle or NULL when there isn't a next vehicle.
|
|
|
|
*/
|
|
|
|
inline Vehicle *Next() const { return this->next; }
|
2007-08-30 21:11:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the previous vehicle of this vehicle.
|
|
|
|
* @note articulated parts are also counted as vehicles.
|
|
|
|
* @return the previous vehicle or NULL when there isn't a previous vehicle.
|
|
|
|
*/
|
|
|
|
inline Vehicle *Previous() const { return this->previous; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the first vehicle of this vehicle chain.
|
|
|
|
* @return the first vehicle of the chain.
|
|
|
|
*/
|
|
|
|
inline Vehicle *First() const { return this->first; }
|
2008-02-02 02:45:09 +00:00
|
|
|
|
2009-07-20 19:58:33 +00:00
|
|
|
/**
|
|
|
|
* Get the last vehicle of this vehicle chain.
|
|
|
|
* @return the last vehicle of the chain.
|
|
|
|
*/
|
|
|
|
inline Vehicle *Last()
|
|
|
|
{
|
|
|
|
Vehicle *v = this;
|
|
|
|
while (v->Next() != NULL) v = v->Next();
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the last vehicle of this vehicle chain.
|
|
|
|
* @return the last vehicle of the chain.
|
|
|
|
*/
|
|
|
|
inline const Vehicle *Last() const
|
|
|
|
{
|
|
|
|
const Vehicle *v = this;
|
|
|
|
while (v->Next() != NULL) v = v->Next();
|
|
|
|
return v;
|
|
|
|
}
|
2008-08-17 19:56:17 +00:00
|
|
|
|
2009-01-03 13:52:06 +00:00
|
|
|
/**
|
|
|
|
* Get the first order of the vehicles order list.
|
|
|
|
* @return first order of order list.
|
|
|
|
*/
|
|
|
|
inline Order *GetFirstOrder() const { return (this->orders.list == NULL) ? NULL : this->orders.list->GetFirstOrder(); }
|
|
|
|
|
2008-08-17 19:56:17 +00:00
|
|
|
/**
|
|
|
|
* Adds this vehicle to a shared vehicle chain.
|
|
|
|
* @param shared_chain a vehicle of the chain with shared vehicles.
|
|
|
|
* @pre !this->IsOrderListShared()
|
|
|
|
*/
|
|
|
|
void AddToShared(Vehicle *shared_chain);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes the vehicle from the shared order list.
|
|
|
|
*/
|
|
|
|
void RemoveFromShared();
|
|
|
|
|
|
|
|
/**
|
2009-01-03 13:52:06 +00:00
|
|
|
* Get the next vehicle of the shared vehicle chain.
|
|
|
|
* @return the next shared vehicle or NULL when there isn't a next vehicle.
|
2008-08-17 19:56:17 +00:00
|
|
|
*/
|
|
|
|
inline Vehicle *NextShared() const { return this->next_shared; }
|
|
|
|
|
2009-01-03 13:52:06 +00:00
|
|
|
/**
|
|
|
|
* Get the previous vehicle of the shared vehicle chain
|
|
|
|
* @return the previous shared vehicle or NULL when there isn't a previous vehicle.
|
|
|
|
*/
|
|
|
|
inline Vehicle *PreviousShared() const { return this->previous_shared; }
|
|
|
|
|
2008-08-17 19:56:17 +00:00
|
|
|
/**
|
|
|
|
* Get the first vehicle of this vehicle chain.
|
|
|
|
* @return the first vehicle of the chain.
|
|
|
|
*/
|
2009-02-05 15:58:42 +00:00
|
|
|
inline Vehicle *FirstShared() const { return (this->orders.list == NULL) ? this->First() : this->orders.list->GetFirstSharedVehicle(); }
|
2008-08-17 19:56:17 +00:00
|
|
|
|
2008-02-02 02:45:09 +00:00
|
|
|
/**
|
|
|
|
* Check if we share our orders with another vehicle.
|
|
|
|
* @return true if there are other vehicles sharing the same order
|
|
|
|
*/
|
2009-01-03 13:52:06 +00:00
|
|
|
inline bool IsOrderListShared() const { return this->orders.list != NULL && this->orders.list->IsShared(); }
|
2008-02-23 22:01:55 +00:00
|
|
|
|
2009-01-03 13:52:06 +00:00
|
|
|
/**
|
2009-01-03 13:20:32 +00:00
|
|
|
* Get the number of orders this vehicle has.
|
|
|
|
* @return the number of orders this vehicle has.
|
|
|
|
*/
|
2009-01-03 13:52:06 +00:00
|
|
|
inline VehicleOrderID GetNumOrders() const { return (this->orders.list == NULL) ? 0 : this->orders.list->GetNumOrders(); }
|
2009-01-03 13:20:32 +00:00
|
|
|
|
2008-08-16 14:02:20 +00:00
|
|
|
/**
|
|
|
|
* Copy certain configurations and statistics of a vehicle after successful autoreplace/renew
|
|
|
|
* The function shall copy everything that cannot be copied by a command (like orders / group etc),
|
|
|
|
* and that shall not be resetted for the new vehicle.
|
|
|
|
* @param src The old vehicle
|
|
|
|
*/
|
|
|
|
inline void CopyVehicleConfigAndStatistics(const Vehicle *src)
|
|
|
|
{
|
|
|
|
this->unitnumber = src->unitnumber;
|
|
|
|
|
|
|
|
this->cur_order_index = src->cur_order_index;
|
|
|
|
this->current_order = src->current_order;
|
|
|
|
this->dest_tile = src->dest_tile;
|
|
|
|
|
|
|
|
this->profit_this_year = src->profit_this_year;
|
|
|
|
this->profit_last_year = src->profit_last_year;
|
|
|
|
|
|
|
|
this->current_order_time = src->current_order_time;
|
|
|
|
this->lateness_counter = src->lateness_counter;
|
|
|
|
|
|
|
|
this->service_interval = src->service_interval;
|
|
|
|
}
|
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
bool NeedsAutorenewing(const Company *c) const;
|
2008-04-05 10:55:50 +00:00
|
|
|
|
2008-04-08 15:48:32 +00:00
|
|
|
/**
|
|
|
|
* Check if the vehicle needs to go to a depot in near future (if a opportunity presents itself) for service or replacement.
|
|
|
|
*
|
|
|
|
* @see NeedsAutomaticServicing()
|
|
|
|
* @return true if the vehicle should go to a depot if a opportunity presents itself.
|
|
|
|
*/
|
|
|
|
bool NeedsServicing() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the current order should be interupted for a service-in-depot-order.
|
|
|
|
* @see NeedsServicing()
|
|
|
|
* @return true if the current order should be interupted.
|
|
|
|
*/
|
|
|
|
bool NeedsAutomaticServicing() const;
|
|
|
|
|
2008-04-05 10:55:50 +00:00
|
|
|
/**
|
|
|
|
* Determine the location for the station where the vehicle goes to next.
|
|
|
|
* Things done for example are allocating slots in a road stop or exact
|
|
|
|
* location of the platform is determined for ships.
|
|
|
|
* @param station the station to make the next location of the vehicle.
|
|
|
|
* @return the location (tile) to aim for.
|
|
|
|
*/
|
|
|
|
virtual TileIndex GetOrderStationLocation(StationID station) { return INVALID_TILE; }
|
2008-04-11 08:14:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Find the closest depot for this vehicle and tell us the location,
|
|
|
|
* DestinationID and whether we should reverse.
|
|
|
|
* @param location where do we go to?
|
|
|
|
* @param destination what hangar do we go to?
|
|
|
|
* @param reverse should the vehicle be reversed?
|
|
|
|
* @return true if a depot could be found.
|
|
|
|
*/
|
|
|
|
virtual bool FindClosestDepot(TileIndex *location, DestinationID *destination, bool *reverse) { return false; }
|
2008-04-11 08:40:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Send this vehicle to the depot using the given command(s).
|
|
|
|
* @param flags the command flags (like execute and such).
|
|
|
|
* @param command the command to execute.
|
|
|
|
* @return the cost of the depot action.
|
|
|
|
*/
|
2009-02-09 21:20:05 +00:00
|
|
|
CommandCost SendToDepot(DoCommandFlag flags, DepotCommand command);
|
2009-05-09 13:37:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Increments cur_order_index, keeps care of the wrap-around and invalidates the GUI.
|
|
|
|
* Note: current_order is not invalidated.
|
|
|
|
*/
|
2009-05-09 14:23:19 +00:00
|
|
|
void IncrementOrderIndex()
|
|
|
|
{
|
2009-05-09 13:37:18 +00:00
|
|
|
this->cur_order_index++;
|
|
|
|
if (this->cur_order_index >= this->GetNumOrders()) this->cur_order_index = 0;
|
|
|
|
InvalidateVehicleOrder(this, 0);
|
|
|
|
}
|
2009-05-23 12:27:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns order 'index' of a vehicle or NULL when it doesn't exists
|
|
|
|
* @param index the order to fetch
|
|
|
|
* @return the found (or not) order
|
|
|
|
*/
|
|
|
|
inline Order *GetOrder(int index) const
|
|
|
|
{
|
|
|
|
return (this->orders.list == NULL) ? NULL : this->orders.list->GetOrderAt(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the last order of a vehicle, or NULL if it doesn't exists
|
|
|
|
* @return last order of a vehicle, if available
|
|
|
|
*/
|
|
|
|
inline Order *GetLastOrder() const
|
|
|
|
{
|
|
|
|
return (this->orders.list == NULL) ? NULL : this->orders.list->GetLastOrder();
|
|
|
|
}
|
2009-07-13 16:35:22 +00:00
|
|
|
|
|
|
|
bool IsEngineCountable() const;
|
2007-04-29 21:24:08 +00:00
|
|
|
};
|
|
|
|
|
2009-05-26 22:45:48 +00:00
|
|
|
#define FOR_ALL_VEHICLES_FROM(var, start) FOR_ALL_ITEMS_FROM(Vehicle, vehicle_index, var, start)
|
|
|
|
#define FOR_ALL_VEHICLES(var) FOR_ALL_VEHICLES_FROM(var, 0)
|
|
|
|
|
2009-05-26 22:10:13 +00:00
|
|
|
/**
|
|
|
|
* Class defining several overloaded accessors so we don't
|
|
|
|
* have to cast vehicle types that often
|
|
|
|
*/
|
|
|
|
template <class T, VehicleType Type>
|
|
|
|
struct SpecializedVehicle : public Vehicle {
|
|
|
|
static const VehicleType EXPECTED_TYPE = Type; ///< Specialized type
|
|
|
|
|
2009-05-30 20:13:12 +00:00
|
|
|
/**
|
|
|
|
* Set vehicle type correctly
|
|
|
|
*/
|
|
|
|
FORCEINLINE SpecializedVehicle<T, Type>() : Vehicle(Type) { }
|
|
|
|
|
2009-05-26 22:10:13 +00:00
|
|
|
/**
|
|
|
|
* Get the first vehicle in the chain
|
|
|
|
* @return first vehicle in the chain
|
|
|
|
*/
|
|
|
|
FORCEINLINE T *First() const { return (T *)this->Vehicle::First(); }
|
|
|
|
|
2009-07-20 19:58:33 +00:00
|
|
|
/**
|
|
|
|
* Get the last vehicle in the chain
|
|
|
|
* @return last vehicle in the chain
|
|
|
|
*/
|
|
|
|
FORCEINLINE T *Last() { return (T *)this->Vehicle::Last(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the last vehicle in the chain
|
|
|
|
* @return last vehicle in the chain
|
|
|
|
*/
|
|
|
|
FORCEINLINE const T *Last() const { return (const T *)this->Vehicle::Last(); }
|
|
|
|
|
2009-05-26 22:10:13 +00:00
|
|
|
/**
|
|
|
|
* Get next vehicle in the chain
|
|
|
|
* @return next vehicle in the chain
|
|
|
|
*/
|
|
|
|
FORCEINLINE T *Next() const { return (T *)this->Vehicle::Next(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get previous vehicle in the chain
|
|
|
|
* @return previous vehicle in the chain
|
|
|
|
*/
|
|
|
|
FORCEINLINE T *Previous() const { return (T *)this->Vehicle::Previous(); }
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests whether given index is a valid index for vehicle of this type
|
|
|
|
* @param index tested index
|
|
|
|
* @return is this index valid index of T?
|
|
|
|
*/
|
|
|
|
static FORCEINLINE bool IsValidID(size_t index)
|
|
|
|
{
|
|
|
|
return Vehicle::IsValidID(index) && Vehicle::Get(index)->type == Type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets vehicle with given index
|
|
|
|
* @return pointer to vehicle with given index casted to T *
|
|
|
|
*/
|
|
|
|
static FORCEINLINE T *Get(size_t index)
|
|
|
|
{
|
|
|
|
return (T *)Vehicle::Get(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns vehicle if the index is a valid index for this vehicle type
|
|
|
|
* @return pointer to vehicle with given index if it's a vehicle of this type
|
|
|
|
*/
|
|
|
|
static FORCEINLINE T *GetIfValid(size_t index)
|
|
|
|
{
|
|
|
|
return IsValidID(index) ? Get(index) : NULL ;
|
|
|
|
}
|
2009-06-06 16:54:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts a Vehicle to SpecializedVehicle with type checking.
|
|
|
|
* @param v Vehicle pointer
|
|
|
|
* @return pointer to SpecializedVehicle
|
|
|
|
*/
|
|
|
|
static FORCEINLINE T *From(Vehicle *v)
|
|
|
|
{
|
|
|
|
assert(v->type == Type);
|
|
|
|
return (T *)v;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts a const Vehicle to const SpecializedVehicle with type checking.
|
|
|
|
* @param v Vehicle pointer
|
|
|
|
* @return pointer to SpecializedVehicle
|
|
|
|
*/
|
|
|
|
static FORCEINLINE const T *From(const Vehicle *v)
|
|
|
|
{
|
|
|
|
assert(v->type == Type);
|
|
|
|
return (const T *)v;
|
|
|
|
}
|
2009-05-26 22:10:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define FOR_ALL_VEHICLES_OF_TYPE(name, var) FOR_ALL_ITEMS_FROM(name, vehicle_index, var, 0) if (var->type == name::EXPECTED_TYPE)
|
|
|
|
|
2007-04-29 21:24:08 +00:00
|
|
|
/**
|
2009-05-26 23:24:34 +00:00
|
|
|
* Disasters, like submarines, skyrangers and their shadows, belong to this class.
|
2007-04-29 21:24:08 +00:00
|
|
|
*/
|
2009-05-26 22:10:13 +00:00
|
|
|
struct DisasterVehicle : public SpecializedVehicle<DisasterVehicle, VEH_DISASTER> {
|
2009-05-22 18:57:11 +00:00
|
|
|
uint16 image_override;
|
|
|
|
VehicleID big_ufo_destroyer_target;
|
|
|
|
|
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! */
|
|
|
|
DisasterVehicle() : SpecializedVehicle<DisasterVehicle, VEH_DISASTER>() {}
|
2007-04-29 21:24:08 +00:00
|
|
|
/** We want to 'destruct' the right class. */
|
|
|
|
virtual ~DisasterVehicle() {}
|
|
|
|
|
2007-05-02 09:39:11 +00:00
|
|
|
const char *GetTypeString() const { return "disaster vehicle"; }
|
2007-05-01 16:35:14 +00:00
|
|
|
void UpdateDeltaXY(Direction direction);
|
2009-05-22 13:53:14 +00:00
|
|
|
bool Tick();
|
2007-04-29 21:24:08 +00:00
|
|
|
};
|
|
|
|
|
2009-05-26 22:45:48 +00:00
|
|
|
#define FOR_ALL_DISASTERVEHICLES(var) FOR_ALL_VEHICLES_OF_TYPE(DisasterVehicle, var)
|
2008-12-26 23:53:07 +00:00
|
|
|
|
|
|
|
/** Generates sequence of free UnitID numbers */
|
|
|
|
struct FreeUnitIDGenerator {
|
|
|
|
bool *cache; ///< array of occupied unit id numbers
|
|
|
|
UnitID maxid; ///< maximum ID at the moment of constructor call
|
|
|
|
UnitID curid; ///< last ID returned ; 0 if none
|
|
|
|
|
|
|
|
/** Initializes the structure. Vehicle unit numbers are supposed not to change after
|
|
|
|
* struct initialization, except after each call to this->NextID() the returned value
|
|
|
|
* is assigned to a vehicle.
|
|
|
|
* @param type type of vehicle
|
|
|
|
* @param owner owner of vehicles
|
|
|
|
*/
|
|
|
|
FreeUnitIDGenerator(VehicleType type, CompanyID owner);
|
|
|
|
|
|
|
|
/** Returns next free UnitID. Supposes the last returned value was assigned to a vehicle. */
|
|
|
|
UnitID NextID();
|
|
|
|
|
|
|
|
/** Releases allocated memory */
|
|
|
|
~FreeUnitIDGenerator() { free(this->cache); }
|
|
|
|
};
|
|
|
|
|
2009-01-04 15:32:25 +00:00
|
|
|
static const int32 INVALID_COORD = 0x7fffffff;
|
|
|
|
|
2007-12-27 13:35:39 +00:00
|
|
|
#endif /* VEHICLE_BASE_H */
|