2010-02-22 16:09:26 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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 newgrf_airport.h NewGRF handling of airports. */
|
|
|
|
|
|
|
|
#ifndef NEWGRF_AIRPORT_H
|
|
|
|
#define NEWGRF_AIRPORT_H
|
|
|
|
|
2010-08-26 22:01:16 +00:00
|
|
|
#include "airport.h"
|
2010-02-22 16:09:26 +00:00
|
|
|
#include "date_type.h"
|
|
|
|
#include "map_type.h"
|
2010-08-07 22:08:20 +00:00
|
|
|
#include "newgrf_class.h"
|
2010-03-18 23:12:38 +00:00
|
|
|
#include "newgrf_commons.h"
|
2010-08-05 12:03:34 +00:00
|
|
|
#include "gfx_type.h"
|
2011-12-09 19:30:30 +00:00
|
|
|
#include "tilearea_type.h"
|
2010-02-22 16:09:26 +00:00
|
|
|
|
2011-05-02 16:14:23 +00:00
|
|
|
/** Copy from station_map.h */
|
2010-02-22 16:09:26 +00:00
|
|
|
typedef byte StationGfx;
|
|
|
|
|
2010-08-02 23:09:38 +00:00
|
|
|
/** Tile-offset / AirportTileID pair. */
|
2010-02-22 16:09:26 +00:00
|
|
|
struct AirportTileTable {
|
2010-08-02 23:09:38 +00:00
|
|
|
TileIndexDiffC ti; ///< Tile offset from the top-most airport tile.
|
|
|
|
StationGfx gfx; ///< AirportTile to use for this tile.
|
2010-02-22 16:09:26 +00:00
|
|
|
};
|
|
|
|
|
2011-12-09 19:30:30 +00:00
|
|
|
/** Iterator to iterate over all tiles belonging to an airport spec. */
|
|
|
|
class AirportTileTableIterator : public TileIterator {
|
|
|
|
private:
|
|
|
|
const AirportTileTable *att; ///< The offsets.
|
|
|
|
TileIndex base_tile; ///< The tile we base the offsets off.
|
|
|
|
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Construct the iterator.
|
|
|
|
* @param att The TileTable we want to iterate over.
|
|
|
|
* @param base_tile The basetile for all offsets.
|
|
|
|
*/
|
|
|
|
AirportTileTableIterator(const AirportTileTable *att, TileIndex base_tile) : TileIterator(base_tile + ToTileIndexDiff(att->ti)), att(att), base_tile(base_tile)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-12-20 17:57:56 +00:00
|
|
|
inline TileIterator& operator ++()
|
2011-12-09 19:30:30 +00:00
|
|
|
{
|
|
|
|
this->att++;
|
|
|
|
if (this->att->ti.x == -0x80) {
|
|
|
|
this->tile = INVALID_TILE;
|
|
|
|
} else {
|
|
|
|
this->tile = base_tile + ToTileIndexDiff(att->ti);
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2011-12-09 19:53:42 +00:00
|
|
|
/** Get the StationGfx for the current tile. */
|
|
|
|
StationGfx GetStationGfx() const
|
|
|
|
{
|
|
|
|
return this->att->gfx;
|
|
|
|
}
|
|
|
|
|
2011-12-09 19:30:30 +00:00
|
|
|
virtual AirportTileTableIterator *Clone() const
|
|
|
|
{
|
|
|
|
return new AirportTileTableIterator(*this);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-03-05 23:21:35 +00:00
|
|
|
/** List of default airport classes. */
|
|
|
|
enum AirportClassID {
|
|
|
|
APC_BEGIN = 0, ///< Lowest valid airport class id
|
|
|
|
APC_SMALL = 0, ///< id for small airports class
|
|
|
|
APC_LARGE, ///< id for large airports class
|
|
|
|
APC_HUB, ///< id for hub airports class
|
|
|
|
APC_HELIPORT, ///< id for heliports
|
|
|
|
APC_MAX = 16, ///< maximum number of airport classes
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Allow incrementing of AirportClassID variables */
|
2010-03-23 22:25:43 +00:00
|
|
|
DECLARE_POSTFIX_INCREMENT(AirportClassID)
|
2010-03-05 23:21:35 +00:00
|
|
|
|
2010-03-01 20:17:21 +00:00
|
|
|
/** TTDP airport types. Used to map our types to TTDPatch's */
|
2010-03-02 20:31:05 +00:00
|
|
|
enum TTDPAirportType {
|
2010-03-01 20:17:21 +00:00
|
|
|
ATP_TTDP_SMALL, ///< Same as AT_SMALL
|
|
|
|
ATP_TTDP_LARGE, ///< Same as AT_LARGE
|
|
|
|
ATP_TTDP_HELIPORT, ///< Same as AT_HELIPORT
|
|
|
|
ATP_TTDP_OILRIG, ///< Same as AT_OILRIG
|
|
|
|
};
|
|
|
|
|
2010-03-19 11:17:52 +00:00
|
|
|
/** A list of all hangar tiles in an airport */
|
|
|
|
struct HangarTileTable {
|
2010-08-02 23:09:38 +00:00
|
|
|
TileIndexDiffC ti; ///< Tile offset from the top-most airport tile.
|
2011-08-13 12:43:05 +00:00
|
|
|
Direction dir; ///< Direction of the exit.
|
2010-08-02 23:09:38 +00:00
|
|
|
byte hangar_num; ///< The hanger to which this tile belongs.
|
2010-03-19 11:17:52 +00:00
|
|
|
};
|
|
|
|
|
2010-02-22 16:09:26 +00:00
|
|
|
/**
|
|
|
|
* Defines the data structure for an airport.
|
|
|
|
*/
|
|
|
|
struct AirportSpec {
|
2010-03-06 15:38:13 +00:00
|
|
|
const struct AirportFTAClass *fsm; ///< the finite statemachine for the default airports
|
2010-02-22 16:09:26 +00:00
|
|
|
const AirportTileTable * const *table; ///< list of the tiles composing the airport
|
2010-08-05 12:00:09 +00:00
|
|
|
Direction *rotation; ///< the rotation of each tiletable
|
2010-03-06 16:02:07 +00:00
|
|
|
byte num_table; ///< number of elements in the table
|
2010-03-19 11:17:52 +00:00
|
|
|
const HangarTileTable *depot_table; ///< gives the position of the depots on the airports
|
|
|
|
byte nof_depots; ///< the number of hangar tiles in this airport
|
2010-02-22 16:09:26 +00:00
|
|
|
byte size_x; ///< size of airport in x direction
|
|
|
|
byte size_y; ///< size of airport in y direction
|
|
|
|
byte noise_level; ///< noise that this airport generates
|
|
|
|
byte catchment; ///< catchment area of this airport
|
|
|
|
Year min_year; ///< first year the airport is available
|
|
|
|
Year max_year; ///< last year the airport is available
|
2010-03-05 23:21:41 +00:00
|
|
|
StringID name; ///< name of this airport
|
2010-03-02 20:31:05 +00:00
|
|
|
TTDPAirportType ttd_airport_type; ///< ttdpatch airport type (Small/Large/Helipad/Oilrig)
|
2010-08-07 21:10:57 +00:00
|
|
|
AirportClassID cls_id; ///< the class to which this airport type belongs
|
2010-08-05 12:03:34 +00:00
|
|
|
SpriteID preview_sprite; ///< preview sprite for this airport
|
2011-12-03 23:40:46 +00:00
|
|
|
uint16 maintenance_cost; ///< maintenance cost mulltiplier
|
2010-03-05 23:21:51 +00:00
|
|
|
/* Newgrf data */
|
|
|
|
bool enabled; ///< entity still avaible (by default true).newgrf can disable it, though
|
2010-08-07 20:51:07 +00:00
|
|
|
struct GRFFileProps grf_prop; ///< properties related the the grf file
|
2010-02-22 16:09:26 +00:00
|
|
|
|
|
|
|
static const AirportSpec *Get(byte type);
|
2010-03-05 23:21:30 +00:00
|
|
|
static AirportSpec *GetWithoutOverride(byte type);
|
2010-02-22 16:09:26 +00:00
|
|
|
|
|
|
|
bool IsAvailable() const;
|
|
|
|
|
2010-03-05 23:21:23 +00:00
|
|
|
static void ResetAirports();
|
|
|
|
|
2010-03-05 23:21:56 +00:00
|
|
|
/** Get the index of this spec. */
|
|
|
|
byte GetIndex() const
|
|
|
|
{
|
|
|
|
assert(this >= specs && this < endof(specs));
|
|
|
|
return (byte)(this - specs);
|
|
|
|
}
|
|
|
|
|
2011-05-02 16:14:23 +00:00
|
|
|
static AirportSpec dummy; ///< The dummy airport.
|
2010-03-05 23:21:23 +00:00
|
|
|
|
|
|
|
private:
|
2011-05-02 16:14:23 +00:00
|
|
|
static AirportSpec specs[NUM_AIRPORTS]; ///< Specs of the airports.
|
2010-02-22 16:09:26 +00:00
|
|
|
};
|
|
|
|
|
2010-03-05 23:21:35 +00:00
|
|
|
/** Information related to airport classes. */
|
2010-08-07 22:08:20 +00:00
|
|
|
typedef NewGRFClass<AirportSpec, AirportClassID, APC_MAX> AirportClass;
|
2010-03-05 23:21:35 +00:00
|
|
|
|
|
|
|
void BindAirportSpecs();
|
2010-02-22 16:09:26 +00:00
|
|
|
|
2010-08-05 12:04:33 +00:00
|
|
|
StringID GetAirportTextCallback(const AirportSpec *as, byte layout, uint16 callback);
|
|
|
|
|
2010-02-22 16:09:26 +00:00
|
|
|
#endif /* NEWGRF_AIRPORT_H */
|