2005-07-24 14:12:37 +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-03-31 00:06:17 +00:00
|
|
|
/** @file station_base.h Base classes/functions for stations. */
|
2007-04-04 01:35:16 +00:00
|
|
|
|
2008-03-31 00:06:17 +00:00
|
|
|
#ifndef STATION_BASE_H
|
|
|
|
#define STATION_BASE_H
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-07-22 11:35:35 +00:00
|
|
|
#include "base_station_base.h"
|
2007-02-16 09:38:43 +00:00
|
|
|
#include "airport.h"
|
2007-06-22 11:58:59 +00:00
|
|
|
#include "cargopacket.h"
|
2008-11-19 23:55:34 +00:00
|
|
|
#include "industry_type.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-07-22 08:59:57 +00:00
|
|
|
typedef Pool<BaseStation, StationID, 32, 64000> StationPool;
|
2009-05-22 15:13:50 +00:00
|
|
|
extern StationPool _station_pool;
|
2007-08-02 08:47:56 +00:00
|
|
|
|
2007-03-08 20:50:27 +00:00
|
|
|
static const byte INITIAL_STATION_RATING = 175;
|
2007-01-14 20:00:25 +00:00
|
|
|
|
2007-03-07 12:11:48 +00:00
|
|
|
struct GoodsEntry {
|
2007-08-26 13:55:36 +00:00
|
|
|
enum AcceptancePickup {
|
|
|
|
ACCEPTANCE,
|
|
|
|
PICKUP
|
|
|
|
};
|
|
|
|
|
2007-01-14 20:00:25 +00:00
|
|
|
GoodsEntry() :
|
2007-08-26 13:55:36 +00:00
|
|
|
acceptance_pickup(0),
|
2007-06-22 17:34:04 +00:00
|
|
|
days_since_pickup(255),
|
2007-03-08 20:50:27 +00:00
|
|
|
rating(INITIAL_STATION_RATING),
|
2007-01-14 20:00:25 +00:00
|
|
|
last_speed(0),
|
2007-06-22 11:58:59 +00:00
|
|
|
last_age(255)
|
2007-01-14 20:00:25 +00:00
|
|
|
{}
|
|
|
|
|
2007-08-26 13:55:36 +00:00
|
|
|
byte acceptance_pickup;
|
2004-08-09 17:04:08 +00:00
|
|
|
byte days_since_pickup;
|
|
|
|
byte rating;
|
|
|
|
byte last_speed;
|
|
|
|
byte last_age;
|
2009-10-18 13:39:00 +00:00
|
|
|
StationCargoList cargo; ///< The cargo packets of cargo waiting in this station
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-07-18 18:39:17 +00:00
|
|
|
|
2009-06-25 15:42:03 +00:00
|
|
|
typedef SmallVector<Industry *, 2> IndustryVector;
|
|
|
|
|
2008-10-19 15:39:12 +00:00
|
|
|
/** Station data structure */
|
2009-07-22 08:59:57 +00:00
|
|
|
struct Station : SpecializedStation<Station, false> {
|
2007-08-24 19:19:18 +00:00
|
|
|
public:
|
2008-03-31 00:06:17 +00:00
|
|
|
RoadStop *GetPrimaryRoadStop(RoadStopType type) const
|
2007-08-24 19:19:18 +00:00
|
|
|
{
|
2008-03-31 00:06:17 +00:00
|
|
|
return type == ROADSTOP_BUS ? bus_stops : truck_stops;
|
2007-08-24 19:19:18 +00:00
|
|
|
}
|
|
|
|
|
2009-05-22 20:18:45 +00:00
|
|
|
RoadStop *GetPrimaryRoadStop(const struct RoadVehicle *v) const;
|
2007-08-24 19:19:18 +00:00
|
|
|
|
|
|
|
const AirportFTAClass *Airport() const
|
|
|
|
{
|
2008-12-26 18:01:15 +00:00
|
|
|
if (airport_tile == INVALID_TILE) return GetAirport(AT_DUMMY);
|
2007-08-24 19:19:18 +00:00
|
|
|
return GetAirport(airport_type);
|
|
|
|
}
|
2007-02-16 09:38:43 +00:00
|
|
|
|
2010-01-15 12:08:08 +00:00
|
|
|
const AirportSpec *GetAirportSpec() const
|
|
|
|
{
|
|
|
|
if (airport_tile == INVALID_TILE) return &AirportSpec::dummy;
|
|
|
|
return AirportSpec::Get(this->airport_type);
|
|
|
|
}
|
|
|
|
|
2009-07-25 08:54:19 +00:00
|
|
|
RoadStop *bus_stops; ///< All the road stops
|
2009-12-02 16:20:44 +00:00
|
|
|
TileArea bus_station; ///< Tile area the bus 'station' part covers
|
2009-07-25 08:54:19 +00:00
|
|
|
RoadStop *truck_stops; ///< All the truck stops
|
2009-12-02 16:20:44 +00:00
|
|
|
TileArea truck_station; ///< Tile area the truck 'station' part covers
|
|
|
|
|
2009-07-25 08:54:19 +00:00
|
|
|
TileIndex airport_tile; ///< The location of the airport
|
|
|
|
TileIndex dock_tile; ///< The location of the dock
|
2008-11-19 23:55:34 +00:00
|
|
|
|
|
|
|
IndustryType indtype; ///< Industry type to get the name from
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-07-04 11:26:57 +00:00
|
|
|
StationHadVehicleOfTypeByte had_vehicle_of_type;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
byte time_since_load;
|
|
|
|
byte time_since_unload;
|
|
|
|
byte airport_type;
|
|
|
|
|
2007-04-04 01:35:16 +00:00
|
|
|
uint64 airport_flags; ///< stores which blocks on the airport are taken. was 16 bit earlier on, then 32
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-04-18 08:50:17 +00:00
|
|
|
byte last_vehicle_type;
|
2007-04-20 08:00:30 +00:00
|
|
|
std::list<Vehicle *> loading_vehicles;
|
2008-10-19 15:39:12 +00:00
|
|
|
GoodsEntry goods[NUM_CARGO]; ///< Goods at this station
|
2009-09-20 18:52:12 +00:00
|
|
|
uint32 always_accepted; ///< Bitmask of always accepted cargo types (by houses, HQs, industry tiles when industry doesn't accept cargo)
|
2005-01-29 19:41:44 +00:00
|
|
|
|
2009-06-25 15:42:03 +00:00
|
|
|
IndustryVector industries_near; ///< Cached list of industries near the station that can accept cargo, @see DeliverGoodsToIndustry()
|
|
|
|
|
2008-12-26 18:01:15 +00:00
|
|
|
Station(TileIndex tile = INVALID_TILE);
|
2009-05-22 15:13:50 +00:00
|
|
|
~Station();
|
2007-01-14 19:18:50 +00:00
|
|
|
|
2009-07-04 11:26:57 +00:00
|
|
|
void AddFacility(StationFacility new_facility_bit, TileIndex facil_xy);
|
2007-09-09 10:13:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Marks the tiles of the station as dirty.
|
|
|
|
*
|
|
|
|
* @ingroup dirty
|
|
|
|
*/
|
2007-06-08 09:35:39 +00:00
|
|
|
void MarkTilesDirty(bool cargo_change) const;
|
2009-06-25 23:49:59 +00:00
|
|
|
|
2009-07-07 16:43:58 +00:00
|
|
|
void UpdateVirtCoord();
|
|
|
|
|
2009-07-24 15:18:25 +00:00
|
|
|
/* virtual */ uint GetPlatformLength(TileIndex tile, DiagDirection dir) const;
|
|
|
|
/* virtual */ uint GetPlatformLength(TileIndex tile) const;
|
2009-06-25 15:42:03 +00:00
|
|
|
void RecomputeIndustriesNear();
|
|
|
|
static void RecomputeIndustriesNearForAll();
|
|
|
|
|
2008-10-25 14:19:09 +00:00
|
|
|
uint GetCatchmentRadius() const;
|
2009-08-07 21:11:58 +00:00
|
|
|
Rect GetCatchmentRect() const;
|
2009-06-24 17:39:54 +00:00
|
|
|
|
2009-07-17 19:44:13 +00:00
|
|
|
/* virtual */ FORCEINLINE bool TileBelongsToRailStation(TileIndex tile) const
|
2009-06-25 23:49:59 +00:00
|
|
|
{
|
2009-07-24 11:47:12 +00:00
|
|
|
return IsRailStationTile(tile) && GetStationIndex(tile) == this->index;
|
2009-06-25 23:49:59 +00:00
|
|
|
}
|
|
|
|
|
2010-01-18 12:32:50 +00:00
|
|
|
/* virtual */ FORCEINLINE bool TileBelongsToAirport(TileIndex tile) const
|
|
|
|
{
|
|
|
|
return IsAirportTile(tile) && GetStationIndex(tile) == this->index;
|
|
|
|
}
|
|
|
|
|
2009-07-17 19:44:13 +00:00
|
|
|
/* virtual */ uint32 GetNewGRFVariable(const ResolverObject *object, byte variable, byte parameter, bool *available) const;
|
|
|
|
|
2009-07-21 11:11:05 +00:00
|
|
|
/* virtual */ void GetTileArea(TileArea *ta, StationType type) const;
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
2009-07-22 08:59:57 +00:00
|
|
|
#define FOR_ALL_STATIONS(var) FOR_ALL_BASE_STATIONS_OF_TYPE(Station, var)
|
2005-01-06 22:31:58 +00:00
|
|
|
|
2008-03-31 00:06:17 +00:00
|
|
|
#endif /* STATION_BASE_H */
|