src/aircraft.h
author rubidium
Wed, 16 Jul 2008 16:05:52 +0000
branch0.6
changeset 11152 b56fd5acecaf
parent 8963 4b41ed1df7e5
child 9281 d8cd9ac52a68
permissions -rw-r--r--
(svn r13710) [0.6] -Prepare: for 0.6.2-RC1.
3963
d7d284c2f1f7 (svn r5124) Add IsAircraftInHangar{Stopped,}(), which supersedes CheckStoppedInHangar()
tron
parents:
diff changeset
     1
/* $Id$ */
d7d284c2f1f7 (svn r5124) Add IsAircraftInHangar{Stopped,}(), which supersedes CheckStoppedInHangar()
tron
parents:
diff changeset
     2
6447
3b71e57fd22b (svn r8857) -Documentation: Added some doxygen @file tags, repaired others (the @file tag MUST be found before any line of code, that includes preprocessor directives).
celestar
parents: 6443
diff changeset
     3
/** @file aircraft.h */
6443
b8f06d8eb7be (svn r8853) -Cleanup: doxygen changes. Correct forgotten c files to cpp files with the @file tag as well as a few general comments style
belugas
parents: 6413
diff changeset
     4
3987
96b119a9fb94 (svn r5186) - NewGRF: show default aircraft cargo type and the purchase list (mart3p)
peter1138
parents: 3963
diff changeset
     5
#ifndef AIRCRAFT_H
96b119a9fb94 (svn r5186) - NewGRF: show default aircraft cargo type and the purchase list (mart3p)
peter1138
parents: 3963
diff changeset
     6
#define AIRCRAFT_H
96b119a9fb94 (svn r5186) - NewGRF: show default aircraft cargo type and the purchase list (mart3p)
peter1138
parents: 3963
diff changeset
     7
3963
d7d284c2f1f7 (svn r5124) Add IsAircraftInHangar{Stopped,}(), which supersedes CheckStoppedInHangar()
tron
parents:
diff changeset
     8
#include "station_map.h"
8640
1e93b81e96d2 (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.
rubidium
parents: 8179
diff changeset
     9
#include "vehicle_base.h"
7984
c539c9368e3c (svn r10999) -Codechange: unify the way the running cost of a vehicle is determined. Patch by nycom.
rubidium
parents: 7980
diff changeset
    10
#include "engine.h"
3963
d7d284c2f1f7 (svn r5124) Add IsAircraftInHangar{Stopped,}(), which supersedes CheckStoppedInHangar()
tron
parents:
diff changeset
    11
6911
ee97929ba49e (svn r9551) -Documentation: Some more doxygen work
belugas
parents: 6906
diff changeset
    12
/** An aircraft can be one ot those types */
6574
e1d1a12faaf7 (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
rubidium
parents: 6571
diff changeset
    13
enum AircraftSubType {
6905
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    14
	AIR_HELICOPTER = 0, ///< an helicopter
6906
a9c4efb4e633 (svn r9546) -Fix (r9545): several typos...
rubidium
parents: 6905
diff changeset
    15
	AIR_AIRCRAFT   = 2, ///< an airplane
6905
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    16
	AIR_SHADOW     = 4, ///< shadow of the aircraft
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    17
	AIR_ROTOR      = 6  ///< rotor of an helicopter
6574
e1d1a12faaf7 (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
rubidium
parents: 6571
diff changeset
    18
};
6105
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    19
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    20
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    21
/** Check if the aircraft type is a normal flying device; eg
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    22
 * not a rotor or a shadow
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    23
 * @param v vehicle to check
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    24
 * @return Returns true if the aircraft is a helicopter/airplane and
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    25
 * false if it is a shadow or a rotor) */
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    26
static inline bool IsNormalAircraft(const Vehicle *v)
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    27
{
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 6574
diff changeset
    28
	assert(v->type == VEH_AIRCRAFT);
6105
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    29
	/* To be fully correct the commented out functionality is the proper one,
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    30
	 * but since value can only be 0 or 2, it is sufficient to only check <= 2
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    31
	 * return (v->subtype == AIR_HELICOPTER) || (v->subtype == AIR_AIRCRAFT); */
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    32
	return v->subtype <= AIR_AIRCRAFT;
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    33
}
761d393829d6 (svn r8428) -Codechange: Add proper names to aircraft subtypes instead of magic numbers and add a function IsNormalAircraft() which tells us whether the aircraft is in fact some flying device or a rotor/shadow.
Darkvater
parents: 6031
diff changeset
    34
8179
1fa8cc3fbeb8 (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
glx
parents: 7986
diff changeset
    35
/** Checks if an aircraft can use the station in question
6563
d08d813ecd42 (svn r9040) -Codechange: the build window and CmdBuildAircraft() now shares the code to figure out if an aircraft is buildable in the hangar in question
bjarni
parents: 6447
diff changeset
    36
 * @param engine The engine to test
8179
1fa8cc3fbeb8 (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
glx
parents: 7986
diff changeset
    37
 * @param st The station
1fa8cc3fbeb8 (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
glx
parents: 7986
diff changeset
    38
 * @return true if the aircraft can use the station
6563
d08d813ecd42 (svn r9040) -Codechange: the build window and CmdBuildAircraft() now shares the code to figure out if an aircraft is buildable in the hangar in question
bjarni
parents: 6447
diff changeset
    39
 */
8179
1fa8cc3fbeb8 (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
glx
parents: 7986
diff changeset
    40
static inline bool CanAircraftUseStation(EngineID engine, const Station *st)
6563
d08d813ecd42 (svn r9040) -Codechange: the build window and CmdBuildAircraft() now shares the code to figure out if an aircraft is buildable in the hangar in question
bjarni
parents: 6447
diff changeset
    41
{
d08d813ecd42 (svn r9040) -Codechange: the build window and CmdBuildAircraft() now shares the code to figure out if an aircraft is buildable in the hangar in question
bjarni
parents: 6447
diff changeset
    42
	const AirportFTAClass *apc = st->Airport();
d08d813ecd42 (svn r9040) -Codechange: the build window and CmdBuildAircraft() now shares the code to figure out if an aircraft is buildable in the hangar in question
bjarni
parents: 6447
diff changeset
    43
	const AircraftVehicleInfo *avi = AircraftVehInfo(engine);
d08d813ecd42 (svn r9040) -Codechange: the build window and CmdBuildAircraft() now shares the code to figure out if an aircraft is buildable in the hangar in question
bjarni
parents: 6447
diff changeset
    44
6571
a0f5bf2afa6c (svn r9048) -Fix r9040: non-bool used as bool
glx
parents: 6563
diff changeset
    45
	return (apc->flags & (avi->subtype & AIR_CTOL ? AirportFTAClass::AIRPLANES : AirportFTAClass::HELICOPTERS)) != 0;
6563
d08d813ecd42 (svn r9040) -Codechange: the build window and CmdBuildAircraft() now shares the code to figure out if an aircraft is buildable in the hangar in question
bjarni
parents: 6447
diff changeset
    46
}
d08d813ecd42 (svn r9040) -Codechange: the build window and CmdBuildAircraft() now shares the code to figure out if an aircraft is buildable in the hangar in question
bjarni
parents: 6447
diff changeset
    47
8179
1fa8cc3fbeb8 (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
glx
parents: 7986
diff changeset
    48
/** Checks if an aircraft can use the station at the tile in question
1fa8cc3fbeb8 (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
glx
parents: 7986
diff changeset
    49
 * @param engine The engine to test
1fa8cc3fbeb8 (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
glx
parents: 7986
diff changeset
    50
 * @param tile The tile where the station is
1fa8cc3fbeb8 (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
glx
parents: 7986
diff changeset
    51
 * @return true if the aircraft can use the station
1fa8cc3fbeb8 (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
glx
parents: 7986
diff changeset
    52
 */
1fa8cc3fbeb8 (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
glx
parents: 7986
diff changeset
    53
static inline bool CanAircraftUseStation(EngineID engine, TileIndex tile)
1fa8cc3fbeb8 (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
glx
parents: 7986
diff changeset
    54
{
1fa8cc3fbeb8 (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
glx
parents: 7986
diff changeset
    55
	return CanAircraftUseStation(engine, GetStationByTile(tile));
1fa8cc3fbeb8 (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
glx
parents: 7986
diff changeset
    56
}
1fa8cc3fbeb8 (svn r11214) -Fix [FS#1296]: planes can't use heliports so refuse these orders
glx
parents: 7986
diff changeset
    57
6905
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    58
/**
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    59
 * Calculates cargo capacity based on an aircraft's passenger
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    60
 * and mail capacities.
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    61
 * @param cid Which cargo type to calculate a capacity for.
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    62
 * @param avi Which engine to find a cargo capacity for.
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    63
 * @return New cargo capacity value.
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    64
 */
6906
a9c4efb4e633 (svn r9546) -Fix (r9545): several typos...
rubidium
parents: 6905
diff changeset
    65
uint16 AircraftDefaultCargoCapacity(CargoID cid, const AircraftVehicleInfo *avi);
3987
96b119a9fb94 (svn r5186) - NewGRF: show default aircraft cargo type and the purchase list (mart3p)
peter1138
parents: 3963
diff changeset
    66
6911
ee97929ba49e (svn r9551) -Documentation: Some more doxygen work
belugas
parents: 6906
diff changeset
    67
/**
ee97929ba49e (svn r9551) -Documentation: Some more doxygen work
belugas
parents: 6906
diff changeset
    68
 * This is the Callback method after the construction attempt of an aircraft
ee97929ba49e (svn r9551) -Documentation: Some more doxygen work
belugas
parents: 6906
diff changeset
    69
 * @param success indicates completion (or not) of the operation
ee97929ba49e (svn r9551) -Documentation: Some more doxygen work
belugas
parents: 6906
diff changeset
    70
 * @param tile of depot where aircraft is built
ee97929ba49e (svn r9551) -Documentation: Some more doxygen work
belugas
parents: 6906
diff changeset
    71
 * @param p1 unused
ee97929ba49e (svn r9551) -Documentation: Some more doxygen work
belugas
parents: 6906
diff changeset
    72
 * @param p2 unused
ee97929ba49e (svn r9551) -Documentation: Some more doxygen work
belugas
parents: 6906
diff changeset
    73
 */
6031
f6d1eef3fa24 (svn r8332) -Codechange: moved DrawAircraftImage() and CcBuildAircraft() from build_vehicle_gui.cpp to aircraft_gui.cpp
bjarni
parents: 5726
diff changeset
    74
void CcBuildAircraft(bool success, TileIndex tile, uint32 p1, uint32 p2);
6911
ee97929ba49e (svn r9551) -Documentation: Some more doxygen work
belugas
parents: 6906
diff changeset
    75
6905
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    76
/** Handle Aircraft specific tasks when a an Aircraft enters a hangar
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    77
 * @param *v Vehicle that enters the hangar
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    78
 */
4732
da9d305d1c94 (svn r6644) -Fix(r6637): remove inline to allow MSVC compilation
belugas
parents: 4725
diff changeset
    79
void HandleAircraftEnterHangar(Vehicle *v);
6905
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    80
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    81
/** Get the size of the sprite of an aircraft sprite heading west (used for lists)
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    82
 * @param engine The engine to get the sprite from
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    83
 * @param width The width of the sprite
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    84
 * @param height The height of the sprite
c0a93961678a (svn r9545) -Documentation: Some corrections to previous doxygen work
belugas
parents: 6585
diff changeset
    85
 */
6223
92d2073c3d7e (svn r8661) -Fix: [depot windows] Enlarge the blocks in the depot window if a sprite is too big to fit (ships and aircraft only)
bjarni
parents: 6105
diff changeset
    86
void GetAircraftSpriteSize(EngineID engine, uint &width, uint &height);
4653
091f530bae28 (svn r6529) -Fix r6513: [depot window] added missing switch in CcCloneVehicle()
bjarni
parents: 3987
diff changeset
    87
6911
ee97929ba49e (svn r9551) -Documentation: Some more doxygen work
belugas
parents: 6906
diff changeset
    88
/**
ee97929ba49e (svn r9551) -Documentation: Some more doxygen work
belugas
parents: 6906
diff changeset
    89
 * Updates the status of the Aircraft heading or in the station
ee97929ba49e (svn r9551) -Documentation: Some more doxygen work
belugas
parents: 6906
diff changeset
    90
 * @param st Station been updated
ee97929ba49e (svn r9551) -Documentation: Some more doxygen work
belugas
parents: 6906
diff changeset
    91
 */
6413
3d660a812fbd (svn r8822) -Fix
tron
parents: 6223
diff changeset
    92
void UpdateAirplanesOnNewStation(const Station *st);
3d660a812fbd (svn r8822) -Fix
tron
parents: 6223
diff changeset
    93
6986
168d3add1f13 (svn r9671) -Codechange: Implement NewGRF callback 36, which allows changing of various properties which were previously static. Vehicle max speed and train power/te/running costs are adjustable.
peter1138
parents: 6911
diff changeset
    94
/** Update cached values of an aircraft.
168d3add1f13 (svn r9671) -Codechange: Implement NewGRF callback 36, which allows changing of various properties which were previously static. Vehicle max speed and train power/te/running costs are adjustable.
peter1138
parents: 6911
diff changeset
    95
 * Currently caches callback 36 max speed.
168d3add1f13 (svn r9671) -Codechange: Implement NewGRF callback 36, which allows changing of various properties which were previously static. Vehicle max speed and train power/te/running costs are adjustable.
peter1138
parents: 6911
diff changeset
    96
 * @param v Vehicle
168d3add1f13 (svn r9671) -Codechange: Implement NewGRF callback 36, which allows changing of various properties which were previously static. Vehicle max speed and train power/te/running costs are adjustable.
peter1138
parents: 6911
diff changeset
    97
 */
168d3add1f13 (svn r9671) -Codechange: Implement NewGRF callback 36, which allows changing of various properties which were previously static. Vehicle max speed and train power/te/running costs are adjustable.
peter1138
parents: 6911
diff changeset
    98
void UpdateAircraftCache(Vehicle *v);
168d3add1f13 (svn r9671) -Codechange: Implement NewGRF callback 36, which allows changing of various properties which were previously static. Vehicle max speed and train power/te/running costs are adjustable.
peter1138
parents: 6911
diff changeset
    99
7048
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   100
/**
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   101
 * This class 'wraps' Vehicle; you do not actually instantiate this class.
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   102
 * You create a Vehicle using AllocateVehicle, so it is added to the pool
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   103
 * and you reinitialize that to a Train using:
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   104
 *   v = new (v) Aircraft();
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   105
 *
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   106
 * As side-effect the vehicle type is set correctly.
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   107
 */
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   108
struct Aircraft : public Vehicle {
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   109
	/** Initializes the Vehicle to an aircraft */
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   110
	Aircraft() { this->type = VEH_AIRCRAFT; }
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   111
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   112
	/** We want to 'destruct' the right class. */
7908
403a9694c42d (svn r10798) -Fix [FS#1105]: virtual functions do not work in destructors :(.
rubidium
parents: 7814
diff changeset
   113
	virtual ~Aircraft() { this->PreDestructor(); }
7048
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   114
7059
3d5c57a7e729 (svn r9765) -Codechange: constify some class functions.
rubidium
parents: 7058
diff changeset
   115
	const char *GetTypeString() const { return "aircraft"; }
7049
01825af2ce90 (svn r9755) -Codechange: refactor some more of the begin loading stuff.
rubidium
parents: 7048
diff changeset
   116
	void MarkDirty();
7054
edbb4d7765f2 (svn r9760) -Codechange: remove the need for saving some vehicle variables.
rubidium
parents: 7049
diff changeset
   117
	void UpdateDeltaXY(Direction direction);
7059
3d5c57a7e729 (svn r9765) -Codechange: constify some class functions.
rubidium
parents: 7058
diff changeset
   118
	ExpensesType GetExpenseType(bool income) const { return income ? EXPENSES_AIRCRAFT_INC : EXPENSES_AIRCRAFT_RUN; }
3d5c57a7e729 (svn r9765) -Codechange: constify some class functions.
rubidium
parents: 7058
diff changeset
   119
	WindowClass GetVehicleListWindowClass() const { return WC_AIRCRAFT_LIST; }
7269
c7f39d91255e (svn r10009) -Codechange: Add and use Vehicle::IsPrimaryVehicle to replace individual checks depending on the vehicle type.
maedhros
parents: 7059
diff changeset
   120
	bool IsPrimaryVehicle() const { return IsNormalAircraft(this); }
7630
2cd754d7dfa4 (svn r10408) -Codechange: make GetImage a class method of Vehicle instead of Get(Aircraft|RoadVeh|Ship|Train)Image.
rubidium
parents: 7269
diff changeset
   121
	int GetImage(Direction direction) const;
7973
ce69b7781d4a (svn r10984) -Codechange: unify the way one can get the current speed in the same forwat so we can display it.
rubidium
parents: 7908
diff changeset
   122
	int GetDisplaySpeed() const { return this->cur_speed * 10 / 16; }
7980
9b12784cc39c (svn r10995) -Codechange: unify the way to get the displayed maxium speed of a vehicle. Patch by nycom.
rubidium
parents: 7974
diff changeset
   123
	int GetDisplayMaxSpeed() const { return this->max_speed * 10 / 16; }
7984
c539c9368e3c (svn r10999) -Codechange: unify the way the running cost of a vehicle is determined. Patch by nycom.
rubidium
parents: 7980
diff changeset
   124
	Money GetRunningCost() const { return AircraftVehInfo(this->engine_type)->running_cost * _price.aircraft_running; }
7986
881998b115c2 (svn r11001) -Codechange: unify the way to determine whether a vehicle is in a depot.
rubidium
parents: 7984
diff changeset
   125
	bool IsInDepot() const { return (this->vehstatus & VS_HIDDEN) != 0 && IsHangarTile(this->tile); }
7631
e810ef25497e (svn r10409) -Codechange: replace (Aircraft|RoadVeh|Ship|Train)_Tick with a Tick method in the Vehicle class.
rubidium
parents: 7630
diff changeset
   126
	void Tick();
8963
4b41ed1df7e5 (svn r12037) -Codechange: replace OnNewDay_(Aircraft|RoadVeh|Ship|Train) with an OnNewDay method in the Vehicle class
glx
parents: 8707
diff changeset
   127
	void OnNewDay();
7048
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   128
};
06b931095b26 (svn r9754) -Codechange: make classes for all vehicle types, so we can make nicer/better maintainable code, i.e. virtual methods instead of switches.
rubidium
parents: 6986
diff changeset
   129
3987
96b119a9fb94 (svn r5186) - NewGRF: show default aircraft cargo type and the purchase list (mart3p)
peter1138
parents: 3963
diff changeset
   130
#endif /* AIRCRAFT_H */