2005-07-24 15:12:37 +01:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 21:21:05 +01: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 01:06:17 +01:00
|
|
|
/** @file station_base.h Base classes/functions for stations. */
|
2007-04-04 02:35:16 +01:00
|
|
|
|
2008-03-31 01:06:17 +01:00
|
|
|
#ifndef STATION_BASE_H
|
|
|
|
#define STATION_BASE_H
|
2004-08-09 18:04:08 +01:00
|
|
|
|
2009-07-22 12:35:35 +01:00
|
|
|
#include "base_station_base.h"
|
2007-02-16 09:38:43 +00:00
|
|
|
#include "airport.h"
|
2007-06-22 12:58:59 +01:00
|
|
|
#include "cargopacket.h"
|
2007-12-21 22:50:51 +00:00
|
|
|
#include "cargo_type.h"
|
2008-03-31 07:42:26 +01:00
|
|
|
#include "vehicle_type.h"
|
2008-11-19 23:55:34 +00:00
|
|
|
#include "industry_type.h"
|
2008-03-31 07:42:26 +01:00
|
|
|
#include "core/geometry_type.hpp"
|
2007-04-20 09:00:30 +01:00
|
|
|
#include <list>
|
2004-08-09 18:04:08 +01:00
|
|
|
|
2009-07-22 09:59:57 +01:00
|
|
|
typedef Pool<BaseStation, StationID, 32, 64000> StationPool;
|
2009-05-22 16:13:50 +01:00
|
|
|
extern StationPool _station_pool;
|
2007-08-02 09:47:56 +01: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 14:55:36 +01:00
|
|
|
enum AcceptancePickup {
|
|
|
|
ACCEPTANCE,
|
|
|
|
PICKUP
|
|
|
|
};
|
|
|
|
|
2007-01-14 20:00:25 +00:00
|
|
|
GoodsEntry() :
|
2007-08-26 14:55:36 +01:00
|
|
|
acceptance_pickup(0),
|
2007-06-22 18:34:04 +01: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 12:58:59 +01:00
|
|
|
last_age(255)
|
2007-01-14 20:00:25 +00:00
|
|
|
{}
|
|
|
|
|
2007-08-26 14:55:36 +01:00
|
|
|
byte acceptance_pickup;
|
2004-08-09 18:04:08 +01:00
|
|
|
byte days_since_pickup;
|
|
|
|
byte rating;
|
|
|
|
byte last_speed;
|
|
|
|
byte last_age;
|
2007-06-22 12:58:59 +01:00
|
|
|
CargoList cargo; ///< The cargo packets of cargo waiting in this station
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2004-08-09 18:04:08 +01:00
|
|
|
|
2009-07-18 19:39:17 +01:00
|
|
|
|
2009-06-25 16:42:03 +01:00
|
|
|
typedef SmallVector<Industry *, 2> IndustryVector;
|
|
|
|
|
2008-10-19 16:39:12 +01:00
|
|
|
/** Station data structure */
|
2009-07-22 09:59:57 +01:00
|
|
|
struct Station : SpecializedStation<Station, false> {
|
2007-08-24 20:19:18 +01:00
|
|
|
public:
|
2008-03-31 01:06:17 +01:00
|
|
|
RoadStop *GetPrimaryRoadStop(RoadStopType type) const
|
2007-08-24 20:19:18 +01:00
|
|
|
{
|
2008-03-31 01:06:17 +01:00
|
|
|
return type == ROADSTOP_BUS ? bus_stops : truck_stops;
|
2007-08-24 20:19:18 +01:00
|
|
|
}
|
|
|
|
|
2009-05-22 21:18:45 +01:00
|
|
|
RoadStop *GetPrimaryRoadStop(const struct RoadVehicle *v) const;
|
2007-08-24 20:19:18 +01: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 20:19:18 +01:00
|
|
|
return GetAirport(airport_type);
|
|
|
|
}
|
2007-02-16 09:38:43 +00:00
|
|
|
|
2009-07-25 09:54:19 +01:00
|
|
|
RoadStop *bus_stops; ///< All the road stops
|
|
|
|
RoadStop *truck_stops; ///< All the truck stops
|
|
|
|
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 18:04:08 +01:00
|
|
|
|
2009-07-04 12:26:57 +01:00
|
|
|
StationHadVehicleOfTypeByte had_vehicle_of_type;
|
2004-09-10 20:02:27 +01:00
|
|
|
|
2004-08-09 18:04:08 +01:00
|
|
|
byte time_since_load;
|
|
|
|
byte time_since_unload;
|
|
|
|
byte airport_type;
|
|
|
|
|
2007-04-04 02:35:16 +01:00
|
|
|
uint64 airport_flags; ///< stores which blocks on the airport are taken. was 16 bit earlier on, then 32
|
2004-08-09 18:04:08 +01:00
|
|
|
|
2006-04-18 09:50:17 +01:00
|
|
|
byte last_vehicle_type;
|
2007-04-20 09:00:30 +01:00
|
|
|
std::list<Vehicle *> loading_vehicles;
|
2008-10-19 16:39:12 +01:00
|
|
|
GoodsEntry goods[NUM_CARGO]; ///< Goods at this station
|
2009-09-20 18:44:33 +01:00
|
|
|
uint32 always_accepted; ///< Bitmask of cargos accepted by town houses and headquarters
|
2005-01-29 19:41:44 +00:00
|
|
|
|
2009-06-25 16:42:03 +01: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 16:13:50 +01:00
|
|
|
~Station();
|
2007-01-14 19:18:50 +00:00
|
|
|
|
2009-07-04 12:26:57 +01:00
|
|
|
void AddFacility(StationFacility new_facility_bit, TileIndex facil_xy);
|
2007-09-09 11:13:17 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Marks the tiles of the station as dirty.
|
|
|
|
*
|
|
|
|
* @ingroup dirty
|
|
|
|
*/
|
2007-06-08 10:35:39 +01:00
|
|
|
void MarkTilesDirty(bool cargo_change) const;
|
2009-06-26 00:49:59 +01:00
|
|
|
|
2009-07-07 17:43:58 +01:00
|
|
|
void UpdateVirtCoord();
|
|
|
|
|
2009-07-24 16:18:25 +01:00
|
|
|
/* virtual */ uint GetPlatformLength(TileIndex tile, DiagDirection dir) const;
|
|
|
|
/* virtual */ uint GetPlatformLength(TileIndex tile) const;
|
2009-06-25 16:42:03 +01:00
|
|
|
void RecomputeIndustriesNear();
|
|
|
|
static void RecomputeIndustriesNearForAll();
|
|
|
|
|
2008-10-25 15:19:09 +01:00
|
|
|
uint GetCatchmentRadius() const;
|
2009-08-07 22:11:58 +01:00
|
|
|
Rect GetCatchmentRect() const;
|
2009-06-24 18:39:54 +01:00
|
|
|
|
2009-07-17 20:44:13 +01:00
|
|
|
/* virtual */ FORCEINLINE bool TileBelongsToRailStation(TileIndex tile) const
|
2009-06-26 00:49:59 +01:00
|
|
|
{
|
2009-07-24 12:47:12 +01:00
|
|
|
return IsRailStationTile(tile) && GetStationIndex(tile) == this->index;
|
2009-06-26 00:49:59 +01:00
|
|
|
}
|
|
|
|
|
2009-07-17 20:44:13 +01:00
|
|
|
/* virtual */ uint32 GetNewGRFVariable(const ResolverObject *object, byte variable, byte parameter, bool *available) const;
|
|
|
|
|
2009-07-21 12:11:05 +01:00
|
|
|
/* virtual */ void GetTileArea(TileArea *ta, StationType type) const;
|
2004-08-09 18:04:08 +01:00
|
|
|
};
|
|
|
|
|
2009-07-22 09:59:57 +01: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 01:06:17 +01:00
|
|
|
#endif /* STATION_BASE_H */
|