2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file station_cmd.cpp Handling of station tiles. */
|
2005-07-28 05:47:54 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2005-06-02 19:30:21 +00:00
|
|
|
#include "openttd.h"
|
2007-02-20 06:39:09 +00:00
|
|
|
#include "aircraft.h"
|
2006-12-27 12:38:02 +00:00
|
|
|
#include "bridge_map.h"
|
2007-02-24 09:42:39 +00:00
|
|
|
#include "cmd_helper.h"
|
2007-04-12 13:07:15 +00:00
|
|
|
#include "landscape.h"
|
2008-01-09 09:57:48 +00:00
|
|
|
#include "viewport_func.h"
|
2007-12-21 21:50:46 +00:00
|
|
|
#include "command_func.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "town.h"
|
2008-03-28 08:53:36 +00:00
|
|
|
#include "news_func.h"
|
2005-11-18 23:41:03 +00:00
|
|
|
#include "train.h"
|
2007-06-11 14:00:16 +00:00
|
|
|
#include "roadveh.h"
|
2006-04-11 22:09:21 +00:00
|
|
|
#include "industry_map.h"
|
2006-05-04 20:00:50 +00:00
|
|
|
#include "newgrf_station.h"
|
2008-11-22 16:04:11 +00:00
|
|
|
#include "newgrf_commons.h"
|
2006-05-27 16:12:16 +00:00
|
|
|
#include "yapf/yapf.h"
|
2007-12-18 20:38:16 +00:00
|
|
|
#include "road_internal.h" /* For drawing catenary/checking road removal */
|
2008-01-07 00:57:19 +00:00
|
|
|
#include "variables.h"
|
2007-09-14 22:27:40 +00:00
|
|
|
#include "autoslope.h"
|
2007-11-24 08:45:04 +00:00
|
|
|
#include "water.h"
|
2007-12-05 17:08:10 +00:00
|
|
|
#include "station_gui.h"
|
2007-12-21 19:49:27 +00:00
|
|
|
#include "strings_func.h"
|
2007-12-25 11:26:07 +00:00
|
|
|
#include "functions.h"
|
|
|
|
#include "window_func.h"
|
2007-12-26 13:50:40 +00:00
|
|
|
#include "date_func.h"
|
2007-12-27 13:35:39 +00:00
|
|
|
#include "vehicle_func.h"
|
2008-01-07 14:23:25 +00:00
|
|
|
#include "string_func.h"
|
2008-04-20 08:22:59 +00:00
|
|
|
#include "animated_tile_func.h"
|
2008-05-08 16:48:29 +00:00
|
|
|
#include "elrail_func.h"
|
2008-01-09 23:00:59 +00:00
|
|
|
|
2008-01-13 01:21:35 +00:00
|
|
|
#include "table/strings.h"
|
2007-01-14 19:29:21 +00:00
|
|
|
|
2007-07-24 21:48:50 +00:00
|
|
|
/**
|
|
|
|
* Check whether the given tile is a hangar.
|
|
|
|
* @param t the tile to of whether it is a hangar.
|
|
|
|
* @pre IsTileType(t, MP_STATION)
|
|
|
|
* @return true if and only if the tile is a hangar.
|
|
|
|
*/
|
|
|
|
bool IsHangar(TileIndex t)
|
|
|
|
{
|
|
|
|
assert(IsTileType(t, MP_STATION));
|
|
|
|
|
|
|
|
const Station *st = GetStationByTile(t);
|
|
|
|
const AirportFTAClass *apc = st->Airport();
|
|
|
|
|
|
|
|
for (uint i = 0; i < apc->nof_depots; i++) {
|
|
|
|
if (st->airport_tile + ToTileIndexDiff(apc->airport_depots[i]) == t) return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-04-17 20:03:28 +00:00
|
|
|
RoadStop *GetRoadStopByTile(TileIndex tile, RoadStopType type)
|
2005-01-29 19:41:44 +00:00
|
|
|
{
|
2008-04-17 20:03:28 +00:00
|
|
|
const Station *st = GetStationByTile(tile);
|
2005-01-29 19:41:44 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
for (RoadStop *rs = st->GetPrimaryRoadStop(type);; rs = rs->next) {
|
|
|
|
if (rs->xy == tile) return rs;
|
2005-01-29 19:41:44 +00:00
|
|
|
assert(rs->next != NULL);
|
2005-11-14 19:48:04 +00:00
|
|
|
}
|
2005-01-29 19:41:44 +00:00
|
|
|
}
|
|
|
|
|
2007-02-02 19:09:54 +00:00
|
|
|
|
2008-04-17 20:03:28 +00:00
|
|
|
static uint GetNumRoadStopsInStation(const Station *st, RoadStopType type)
|
2005-01-29 19:41:44 +00:00
|
|
|
{
|
2005-10-23 13:04:44 +00:00
|
|
|
uint num = 0;
|
2005-01-29 19:41:44 +00:00
|
|
|
|
|
|
|
assert(st != NULL);
|
2007-02-18 11:27:09 +00:00
|
|
|
for (const RoadStop *rs = st->GetPrimaryRoadStop(type); rs != NULL; rs = rs->next) {
|
|
|
|
num++;
|
|
|
|
}
|
2005-01-29 19:41:44 +00:00
|
|
|
|
|
|
|
return num;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#define CHECK_STATIONS_ERR ((Station*)-1)
|
|
|
|
|
2008-04-17 20:03:28 +00:00
|
|
|
static Station *GetStationAround(TileIndex tile, int w, int h, StationID closest_station)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-04-04 01:35:16 +00:00
|
|
|
/* check around to see if there's any stations there */
|
2005-06-25 16:44:57 +00:00
|
|
|
BEGIN_TILE_LOOP(tile_cur, w + 2, h + 2, tile - TileDiffXY(1, 1))
|
2005-01-16 11:24:58 +00:00
|
|
|
if (IsTileType(tile_cur, MP_STATION)) {
|
2006-03-24 08:55:08 +00:00
|
|
|
StationID t = GetStationIndex(tile_cur);
|
2004-08-12 21:11:23 +00:00
|
|
|
|
2005-10-07 07:35:15 +00:00
|
|
|
if (closest_station == INVALID_STATION) {
|
2004-08-09 17:04:08 +00:00
|
|
|
closest_station = t;
|
|
|
|
} else if (closest_station != t) {
|
2009-04-21 23:40:56 +00:00
|
|
|
_error_message = STR_ERROR_ADJOINS_MORE_THAN_ONE_EXISTING;
|
2004-08-09 17:04:08 +00:00
|
|
|
return CHECK_STATIONS_ERR;
|
|
|
|
}
|
|
|
|
}
|
2005-06-25 16:44:57 +00:00
|
|
|
END_TILE_LOOP(tile_cur, w + 2, h + 2, tile - TileDiffXY(1, 1))
|
2009-05-16 23:34:14 +00:00
|
|
|
return (closest_station == INVALID_STATION) ? NULL : Station::Get(closest_station);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-07-24 19:56:43 +00:00
|
|
|
/**
|
|
|
|
* Function to check whether the given tile matches some criterion.
|
|
|
|
* @param tile the tile to check
|
|
|
|
* @return true if it matches, false otherwise
|
|
|
|
*/
|
|
|
|
typedef bool (*CMSAMatcher)(TileIndex tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-04-11 22:09:21 +00:00
|
|
|
/**
|
|
|
|
* Counts the numbers of tiles matching a specific type in the area around
|
|
|
|
* @param tile the center tile of the 'count area'
|
|
|
|
* @param type the type of tile searched for
|
|
|
|
* @param industry when type == MP_INDUSTRY, the type of the industry,
|
|
|
|
* in all other cases this parameter is ignored
|
2007-03-03 04:04:22 +00:00
|
|
|
* @return the result the noumber of matching tiles around
|
2006-04-11 22:09:21 +00:00
|
|
|
*/
|
2007-07-24 19:56:43 +00:00
|
|
|
static int CountMapSquareAround(TileIndex tile, CMSAMatcher cmp)
|
2005-06-24 12:38:35 +00:00
|
|
|
{
|
2004-08-09 17:04:08 +00:00
|
|
|
int num = 0;
|
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
for (int dx = -3; dx <= 3; dx++) {
|
|
|
|
for (int dy = -3; dy <= 3; dy++) {
|
2009-02-25 21:29:50 +00:00
|
|
|
TileIndex t = TileAddWrap(tile, dx, dy);
|
|
|
|
if (t != INVALID_TILE && cmp(t)) num++;
|
2006-04-11 22:09:21 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return num;
|
|
|
|
}
|
|
|
|
|
2007-07-24 19:56:43 +00:00
|
|
|
/**
|
|
|
|
* Check whether the tile is a mine.
|
|
|
|
* @param tile the tile to investigate.
|
|
|
|
* @return true if and only if the tile is a mine
|
|
|
|
*/
|
|
|
|
static bool CMSAMine(TileIndex tile)
|
|
|
|
{
|
|
|
|
/* No industry */
|
|
|
|
if (!IsTileType(tile, MP_INDUSTRY)) return false;
|
|
|
|
|
2007-09-27 21:39:13 +00:00
|
|
|
const Industry *ind = GetIndustryByTile(tile);
|
2007-07-24 19:56:43 +00:00
|
|
|
|
|
|
|
/* No extractive industry */
|
2007-09-27 21:39:13 +00:00
|
|
|
if ((GetIndustrySpec(ind->type)->life_type & INDUSTRYLIFE_EXTRACTIVE) == 0) return false;
|
2007-07-24 19:56:43 +00:00
|
|
|
|
2007-09-27 21:39:13 +00:00
|
|
|
for (uint i = 0; i < lengthof(ind->produced_cargo); i++) {
|
2009-04-11 17:09:38 +00:00
|
|
|
/* The industry extracts something non-liquid, i.e. no oil or plastic, so it is a mine.
|
|
|
|
* Also the production of passengers and mail is ignored. */
|
|
|
|
if (ind->produced_cargo[i] != CT_INVALID &&
|
|
|
|
(GetCargo(ind->produced_cargo[i])->classes & (CC_LIQUID | CC_PASSENGERS | CC_MAIL)) == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
2007-07-24 19:56:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether the tile is water.
|
|
|
|
* @param tile the tile to investigate.
|
|
|
|
* @return true if and only if the tile is a mine
|
|
|
|
*/
|
|
|
|
static bool CMSAWater(TileIndex tile)
|
|
|
|
{
|
|
|
|
return IsTileType(tile, MP_WATER) && IsWater(tile);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether the tile is a tree.
|
|
|
|
* @param tile the tile to investigate.
|
|
|
|
* @return true if and only if the tile is a mine
|
|
|
|
*/
|
|
|
|
static bool CMSATree(TileIndex tile)
|
|
|
|
{
|
|
|
|
return IsTileType(tile, MP_TREES);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether the tile is a forest.
|
|
|
|
* @param tile the tile to investigate.
|
|
|
|
* @return true if and only if the tile is a mine
|
|
|
|
*/
|
|
|
|
static bool CMSAForest(TileIndex tile)
|
|
|
|
{
|
|
|
|
/* No industry */
|
|
|
|
if (!IsTileType(tile, MP_INDUSTRY)) return false;
|
|
|
|
|
2007-09-27 21:39:13 +00:00
|
|
|
const Industry *ind = GetIndustryByTile(tile);
|
2007-07-24 19:56:43 +00:00
|
|
|
|
|
|
|
/* No extractive industry */
|
2007-09-27 21:39:13 +00:00
|
|
|
if ((GetIndustrySpec(ind->type)->life_type & INDUSTRYLIFE_ORGANIC) == 0) return false;
|
2007-07-24 19:56:43 +00:00
|
|
|
|
2007-09-27 21:39:13 +00:00
|
|
|
for (uint i = 0; i < lengthof(ind->produced_cargo); i++) {
|
2007-07-24 19:56:43 +00:00
|
|
|
/* The industry produces wood. */
|
2007-09-27 21:39:13 +00:00
|
|
|
if (ind->produced_cargo[i] != CT_INVALID && GetCargo(ind->produced_cargo[i])->label == 'WOOD') return true;
|
2007-07-24 19:56:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#define M(x) ((x) - STR_SV_STNAME)
|
|
|
|
|
2007-10-31 18:53:49 +00:00
|
|
|
enum StationNaming {
|
2007-10-31 18:01:41 +00:00
|
|
|
STATIONNAMING_RAIL = 0,
|
|
|
|
STATIONNAMING_ROAD = 0,
|
|
|
|
STATIONNAMING_AIRPORT,
|
|
|
|
STATIONNAMING_OILRIG,
|
|
|
|
STATIONNAMING_DOCK,
|
|
|
|
STATIONNAMING_BUOY,
|
|
|
|
STATIONNAMING_HELIPORT,
|
2007-10-31 18:53:49 +00:00
|
|
|
};
|
2007-10-31 18:01:41 +00:00
|
|
|
|
2008-11-19 23:55:34 +00:00
|
|
|
/** Information to handle station action 0 property 24 correctly */
|
|
|
|
struct StationNameInformation {
|
|
|
|
uint32 free_names; ///< Current bitset of free names (we can remove names).
|
|
|
|
bool *indtypes; ///< Array of bools telling whether an industry type has been found.
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find a station action 0 property 24 station name, or reduce the
|
|
|
|
* free_names if needed.
|
|
|
|
* @param tile the tile to search
|
|
|
|
* @param user_data the StationNameInformation to base the search on
|
|
|
|
* @return true if the tile contains an industry that has not given
|
|
|
|
* it's name to one of the other stations in town.
|
|
|
|
*/
|
|
|
|
static bool FindNearIndustryName(TileIndex tile, void *user_data)
|
|
|
|
{
|
|
|
|
/* All already found industry types */
|
|
|
|
StationNameInformation *sni = (StationNameInformation*)user_data;
|
|
|
|
if (!IsTileType(tile, MP_INDUSTRY)) return false;
|
|
|
|
|
|
|
|
/* If the station name is undefined it means that it doesn't name a station */
|
|
|
|
IndustryType indtype = GetIndustryType(tile);
|
|
|
|
if (GetIndustrySpec(indtype)->station_name == STR_UNDEFINED) return false;
|
|
|
|
|
|
|
|
/* In all cases if an industry that provides a name is found two of
|
|
|
|
* the standard names will be disabled. */
|
|
|
|
sni->free_names &= ~(1 << M(STR_SV_STNAME_OILFIELD) | 1 << M(STR_SV_STNAME_MINES));
|
|
|
|
return !sni->indtypes[indtype];
|
|
|
|
}
|
|
|
|
|
2008-04-25 15:22:32 +00:00
|
|
|
static StringID GenerateStationName(Station *st, TileIndex tile, int flag)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
static const uint32 _gen_station_name_bits[] = {
|
2009-05-13 17:39:00 +00:00
|
|
|
0, // 0
|
|
|
|
1U << M(STR_SV_STNAME_AIRPORT), // 1
|
|
|
|
1U << M(STR_SV_STNAME_OILFIELD), // 2
|
|
|
|
1U << M(STR_SV_STNAME_DOCKS), // 3
|
|
|
|
0x1FFU << M(STR_SV_STNAME_BUOY_1), // 4
|
|
|
|
1U << M(STR_SV_STNAME_HELIPORT), // 5
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
2008-04-17 20:03:28 +00:00
|
|
|
const Town *t = st->town;
|
|
|
|
uint32 free_names = UINT32_MAX;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-11-19 23:55:34 +00:00
|
|
|
bool indtypes[NUM_INDUSTRYTYPES];
|
|
|
|
memset(indtypes, 0, sizeof(indtypes));
|
|
|
|
|
2008-04-25 15:22:32 +00:00
|
|
|
const Station *s;
|
|
|
|
FOR_ALL_STATIONS(s) {
|
|
|
|
if (s != st && s->town == t) {
|
2008-11-19 23:55:34 +00:00
|
|
|
if (s->indtype != IT_INVALID) {
|
|
|
|
indtypes[s->indtype] = true;
|
|
|
|
continue;
|
|
|
|
}
|
2008-04-25 15:22:32 +00:00
|
|
|
uint str = M(s->string_id);
|
|
|
|
if (str <= 0x20) {
|
|
|
|
if (str == M(STR_SV_STNAME_FOREST)) {
|
|
|
|
str = M(STR_SV_STNAME_WOODS);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2008-04-25 15:22:32 +00:00
|
|
|
ClrBit(free_names, str);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-11-19 23:55:34 +00:00
|
|
|
if (flag != STATIONNAMING_BUOY) {
|
|
|
|
TileIndex indtile = tile;
|
|
|
|
StationNameInformation sni = { free_names, indtypes };
|
|
|
|
if (CircularTileSearch(&indtile, 7, FindNearIndustryName, &sni)) {
|
|
|
|
/* An industry has been found nearby */
|
|
|
|
IndustryType indtype = GetIndustryType(indtile);
|
|
|
|
const IndustrySpec *indsp = GetIndustrySpec(indtype);
|
|
|
|
/* STR_NULL means it only disables oil rig/mines */
|
|
|
|
if (indsp->station_name != STR_NULL) {
|
|
|
|
st->indtype = indtype;
|
|
|
|
return STR_SV_STNAME_FALLBACK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Oil rigs/mines name could be marked not free by looking for a near by industry. */
|
|
|
|
free_names = sni.free_names;
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
/* check default names */
|
2008-04-17 20:03:28 +00:00
|
|
|
uint32 tmp = free_names & _gen_station_name_bits[flag];
|
2008-04-25 15:22:32 +00:00
|
|
|
if (tmp != 0) return STR_SV_STNAME + FindFirstBit(tmp);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
/* check mine? */
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(free_names, M(STR_SV_STNAME_MINES))) {
|
2007-07-24 19:56:43 +00:00
|
|
|
if (CountMapSquareAround(tile, CMSAMine) >= 2) {
|
2008-04-25 15:22:32 +00:00
|
|
|
return STR_SV_STNAME_MINES;
|
2005-03-08 00:26:30 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* check close enough to town to get central as name? */
|
2007-04-18 22:10:36 +00:00
|
|
|
if (DistanceMax(tile, t->xy) < 8) {
|
2008-04-25 15:22:32 +00:00
|
|
|
if (HasBit(free_names, M(STR_SV_STNAME))) return STR_SV_STNAME;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-25 15:22:32 +00:00
|
|
|
if (HasBit(free_names, M(STR_SV_STNAME_CENTRAL))) return STR_SV_STNAME_CENTRAL;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check lakeside */
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(free_names, M(STR_SV_STNAME_LAKESIDE)) &&
|
2005-03-09 19:09:04 +00:00
|
|
|
DistanceFromEdge(tile) < 20 &&
|
2007-07-24 19:56:43 +00:00
|
|
|
CountMapSquareAround(tile, CMSAWater) >= 5) {
|
2008-04-25 15:22:32 +00:00
|
|
|
return STR_SV_STNAME_LAKESIDE;
|
2005-03-08 00:26:30 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
/* Check woods */
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(free_names, M(STR_SV_STNAME_WOODS)) && (
|
2007-07-24 19:56:43 +00:00
|
|
|
CountMapSquareAround(tile, CMSATree) >= 8 ||
|
|
|
|
CountMapSquareAround(tile, CMSAForest) >= 2)
|
2005-03-09 19:09:04 +00:00
|
|
|
) {
|
2008-05-29 15:13:28 +00:00
|
|
|
return _settings_game.game_creation.landscape == LT_TROPIC ? STR_SV_STNAME_FOREST : STR_SV_STNAME_WOODS;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* check elevation compared to town */
|
2008-04-25 15:22:32 +00:00
|
|
|
uint z = GetTileZ(tile);
|
|
|
|
uint z2 = GetTileZ(t->xy);
|
|
|
|
if (z < z2) {
|
|
|
|
if (HasBit(free_names, M(STR_SV_STNAME_VALLEY))) return STR_SV_STNAME_VALLEY;
|
|
|
|
} else if (z > z2) {
|
|
|
|
if (HasBit(free_names, M(STR_SV_STNAME_HEIGHTS))) return STR_SV_STNAME_HEIGHTS;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* check direction compared to town */
|
2008-04-25 15:22:32 +00:00
|
|
|
static const int8 _direction_and_table[] = {
|
|
|
|
~( (1 << M(STR_SV_STNAME_WEST)) | (1 << M(STR_SV_STNAME_EAST)) | (1 << M(STR_SV_STNAME_NORTH)) ),
|
|
|
|
~( (1 << M(STR_SV_STNAME_SOUTH)) | (1 << M(STR_SV_STNAME_WEST)) | (1 << M(STR_SV_STNAME_NORTH)) ),
|
|
|
|
~( (1 << M(STR_SV_STNAME_SOUTH)) | (1 << M(STR_SV_STNAME_EAST)) | (1 << M(STR_SV_STNAME_NORTH)) ),
|
|
|
|
~( (1 << M(STR_SV_STNAME_SOUTH)) | (1 << M(STR_SV_STNAME_WEST)) | (1 << M(STR_SV_STNAME_EAST)) ),
|
|
|
|
};
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-04-25 15:22:32 +00:00
|
|
|
free_names &= _direction_and_table[
|
|
|
|
(TileX(tile) < TileX(t->xy)) +
|
|
|
|
(TileY(tile) < TileY(t->xy)) * 2];
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-04-18 22:10:36 +00:00
|
|
|
tmp = free_names & ((1 << 1) | (1 << 2) | (1 << 3) | (1 << 4) | (1 << 6) | (1 << 7) | (1 << 12) | (1 << 26) | (1 << 27) | (1 << 28) | (1 << 29) | (1 << 30));
|
2008-04-25 15:22:32 +00:00
|
|
|
return (tmp == 0) ? STR_SV_STNAME_FALLBACK : (STR_SV_STNAME + FindFirstBit(tmp));
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
#undef M
|
|
|
|
|
2009-01-05 21:06:38 +00:00
|
|
|
/**
|
|
|
|
* Find the closest deleted station of the current company
|
|
|
|
* @param tile the tile to search from.
|
|
|
|
* @return the closest station or NULL if too far.
|
|
|
|
*/
|
|
|
|
static Station *GetClosestDeletedStation(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-02-17 15:59:33 +00:00
|
|
|
uint threshold = 8;
|
2008-04-17 20:03:28 +00:00
|
|
|
Station *best_station = NULL;
|
|
|
|
Station *st;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
FOR_ALL_STATIONS(st) {
|
2008-09-30 20:39:50 +00:00
|
|
|
if (st->facilities == 0 && st->owner == _current_company) {
|
2005-03-05 18:44:26 +00:00
|
|
|
uint cur_dist = DistanceManhattan(tile, st->xy);
|
|
|
|
|
|
|
|
if (cur_dist < threshold) {
|
|
|
|
threshold = cur_dist;
|
|
|
|
best_station = st;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return best_station;
|
|
|
|
}
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/** Update the virtual coords needed to draw the station sign.
|
|
|
|
* @param st Station to update for.
|
|
|
|
*/
|
2004-08-09 17:04:08 +00:00
|
|
|
static void UpdateStationVirtCoord(Station *st)
|
|
|
|
{
|
2006-04-03 09:07:21 +00:00
|
|
|
Point pt = RemapCoords2(TileX(st->xy) * TILE_SIZE, TileY(st->xy) * TILE_SIZE);
|
2005-01-29 19:41:44 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
pt.y -= 32;
|
2005-01-29 19:41:44 +00:00
|
|
|
if (st->facilities & FACIL_AIRPORT && st->airport_type == AT_OILRIG) pt.y -= 16;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, st->index);
|
|
|
|
SetDParam(1, st->facilities);
|
2009-04-21 23:40:56 +00:00
|
|
|
UpdateViewportSignPos(&st->sign, pt.x, pt.y, STR_STATION_SIGN);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/** Update the virtual coords needed to draw the station sign for all stations. */
|
2007-03-07 11:47:46 +00:00
|
|
|
void UpdateAllStationVirtCoord()
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-04-17 20:03:28 +00:00
|
|
|
Station *st;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
FOR_ALL_STATIONS(st) {
|
2006-08-22 15:33:35 +00:00
|
|
|
UpdateStationVirtCoord(st);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-09 10:13:17 +00:00
|
|
|
/**
|
|
|
|
* Update the station virt coords while making the modified parts dirty.
|
|
|
|
*
|
|
|
|
* This function updates the virt coords and mark the modified parts as dirty
|
|
|
|
*
|
|
|
|
* @param st The station to update the virt coords
|
|
|
|
* @ingroup dirty
|
|
|
|
*/
|
2004-08-09 17:04:08 +00:00
|
|
|
static void UpdateStationVirtCoordDirty(Station *st)
|
|
|
|
{
|
2007-01-14 19:18:50 +00:00
|
|
|
st->MarkDirty();
|
2004-08-09 17:04:08 +00:00
|
|
|
UpdateStationVirtCoord(st);
|
2007-01-14 19:18:50 +00:00
|
|
|
st->MarkDirty();
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/** Get a mask of the cargo types that the station accepts.
|
|
|
|
* @param st Station to query
|
|
|
|
* @return the expected mask
|
|
|
|
*/
|
2005-03-05 18:44:26 +00:00
|
|
|
static uint GetAcceptanceMask(const Station *st)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
uint mask = 0;
|
2005-03-05 18:44:26 +00:00
|
|
|
|
2007-03-21 13:19:01 +00:00
|
|
|
for (CargoID i = 0; i < NUM_CARGO; i++) {
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(st->goods[i].acceptance_pickup, GoodsEntry::ACCEPTANCE)) mask |= 1 << i;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/** Items contains the two cargo names that are to be accepted or rejected.
|
|
|
|
* msg is the string id of the message to display.
|
|
|
|
*/
|
2007-01-16 11:13:00 +00:00
|
|
|
static void ShowRejectOrAcceptNews(const Station *st, uint num_items, CargoID *cargo, StringID msg)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-01-16 11:13:00 +00:00
|
|
|
for (uint i = 0; i < num_items; i++) {
|
2007-02-20 22:09:21 +00:00
|
|
|
SetDParam(i + 1, GetCargo(cargo[i])->name);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-01-16 11:13:00 +00:00
|
|
|
|
|
|
|
SetDParam(0, st->index);
|
2008-09-13 10:19:51 +00:00
|
|
|
AddNewsItem(msg, NS_ACCEPTANCE, st->xy, st->index);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-11-15 22:20:33 +00:00
|
|
|
/**
|
2008-04-18 04:54:09 +00:00
|
|
|
* Get a list of the cargo types being produced around the tile (in a rectangle).
|
2008-11-22 15:48:43 +00:00
|
|
|
* @param produced Destination array of produced cargo
|
|
|
|
* @param tile Northtile of area
|
|
|
|
* @param w X extent of the area
|
|
|
|
* @param h Y extent of the area
|
|
|
|
* @param rad Search radius in addition to the given area
|
2008-04-18 04:54:09 +00:00
|
|
|
*/
|
2005-03-05 18:44:26 +00:00
|
|
|
void GetProductionAroundTiles(AcceptedCargo produced, TileIndex tile,
|
|
|
|
int w, int h, int rad)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-10-21 14:56:23 +00:00
|
|
|
memset(produced, 0, sizeof(AcceptedCargo)); // sizeof(AcceptedCargo) != sizeof(produced) (== sizeof(uint *))
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
int x = TileX(tile);
|
|
|
|
int y = TileY(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* expand the region by rad tiles on each side
|
|
|
|
* while making sure that we remain inside the board. */
|
2007-02-18 11:27:09 +00:00
|
|
|
int x2 = min(x + w + rad, MapSizeX());
|
|
|
|
int x1 = max(x - rad, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
int y2 = min(y + h + rad, MapSizeY());
|
|
|
|
int y1 = max(y - rad, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
assert(x1 < x2);
|
|
|
|
assert(y1 < y2);
|
|
|
|
assert(w > 0);
|
|
|
|
assert(h > 0);
|
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
for (int yc = y1; yc != y2; yc++) {
|
|
|
|
for (int xc = x1; xc != x2; xc++) {
|
2008-04-06 22:32:20 +00:00
|
|
|
TileIndex tile = TileXY(xc, yc);
|
2005-03-05 18:44:26 +00:00
|
|
|
|
2008-04-06 22:32:20 +00:00
|
|
|
if (!IsTileType(tile, MP_STATION)) {
|
2007-02-18 11:27:09 +00:00
|
|
|
GetProducedCargoProc *gpc = _tile_type_procs[GetTileType(tile)]->get_produced_cargo_proc;
|
2004-08-09 17:04:08 +00:00
|
|
|
if (gpc != NULL) {
|
2008-04-06 22:32:20 +00:00
|
|
|
CargoID cargos[256]; // Required for CBID_HOUSE_PRODUCE_CARGO.
|
2008-10-20 15:42:56 +00:00
|
|
|
memset(cargos, CT_INVALID, sizeof(cargos));
|
2005-03-05 18:44:26 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
gpc(tile, cargos);
|
2008-02-25 16:30:12 +00:00
|
|
|
for (uint i = 0; i < lengthof(cargos); ++i) {
|
|
|
|
if (cargos[i] != CT_INVALID) produced[cargos[i]]++;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-03-05 18:44:26 +00:00
|
|
|
}
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-11-15 22:20:33 +00:00
|
|
|
/**
|
2008-04-18 04:54:09 +00:00
|
|
|
* Get a list of the cargo types that are accepted around the tile.
|
2008-11-22 15:48:43 +00:00
|
|
|
* @param accepts Destination array of accepted cargo
|
|
|
|
* @param tile Center of the search area
|
|
|
|
* @param w X extent of area
|
|
|
|
* @param h Y extent of area
|
|
|
|
* @param rad Search radius in addition to given area
|
2008-04-18 04:54:09 +00:00
|
|
|
*/
|
2005-03-05 18:44:26 +00:00
|
|
|
void GetAcceptanceAroundTiles(AcceptedCargo accepts, TileIndex tile,
|
|
|
|
int w, int h, int rad)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-10-21 14:56:23 +00:00
|
|
|
memset(accepts, 0, sizeof(AcceptedCargo)); // sizeof(AcceptedCargo) != sizeof(accepts) (== sizeof(uint *))
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
int x = TileX(tile);
|
|
|
|
int y = TileY(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* expand the region by rad tiles on each side
|
|
|
|
* while making sure that we remain inside the board. */
|
2007-02-18 11:27:09 +00:00
|
|
|
int x2 = min(x + w + rad, MapSizeX());
|
|
|
|
int y2 = min(y + h + rad, MapSizeY());
|
|
|
|
int x1 = max(x - rad, 0);
|
|
|
|
int y1 = max(y - rad, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
assert(x1 < x2);
|
|
|
|
assert(y1 < y2);
|
|
|
|
assert(w > 0);
|
|
|
|
assert(h > 0);
|
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
for (int yc = y1; yc != y2; yc++) {
|
|
|
|
for (int xc = x1; xc != x2; xc++) {
|
2005-06-25 16:44:57 +00:00
|
|
|
TileIndex tile = TileXY(xc, yc);
|
2005-03-05 18:44:26 +00:00
|
|
|
|
2005-01-16 11:24:58 +00:00
|
|
|
if (!IsTileType(tile, MP_STATION)) {
|
2004-11-21 10:49:40 +00:00
|
|
|
AcceptedCargo ac;
|
|
|
|
|
|
|
|
GetAcceptedCargo(tile, ac);
|
2007-02-18 11:27:09 +00:00
|
|
|
for (uint i = 0; i < lengthof(ac); ++i) accepts[i] += ac[i];
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2005-03-05 18:44:26 +00:00
|
|
|
}
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/** Update the acceptance for a station.
|
|
|
|
* @param st Station to update
|
|
|
|
* @param show_msg controls whether to display a message that acceptance was changed.
|
|
|
|
*/
|
2004-08-09 17:04:08 +00:00
|
|
|
static void UpdateStationAcceptance(Station *st, bool show_msg)
|
|
|
|
{
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Don't update acceptance for a buoy */
|
2007-02-18 11:27:09 +00:00
|
|
|
if (st->IsBuoy()) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
/* old accepted goods types */
|
2007-02-18 11:27:09 +00:00
|
|
|
uint old_acc = GetAcceptanceMask(st);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* And retrieve the acceptance. */
|
2007-02-18 11:27:09 +00:00
|
|
|
AcceptedCargo accepts;
|
2009-04-18 11:08:10 +00:00
|
|
|
if (!st->rect.IsEmpty()) {
|
2005-03-05 17:41:51 +00:00
|
|
|
GetAcceptanceAroundTiles(
|
|
|
|
accepts,
|
2009-04-18 11:08:10 +00:00
|
|
|
TileXY(st->rect.left, st->rect.top),
|
|
|
|
st->rect.right - st->rect.left + 1,
|
|
|
|
st->rect.bottom - st->rect.top + 1,
|
2008-10-25 14:19:09 +00:00
|
|
|
st->GetCatchmentRadius()
|
2005-03-05 17:41:51 +00:00
|
|
|
);
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
|
|
|
memset(accepts, 0, sizeof(accepts));
|
|
|
|
}
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Adjust in case our station only accepts fewer kinds of goods */
|
2007-03-21 13:19:01 +00:00
|
|
|
for (CargoID i = 0; i < NUM_CARGO; i++) {
|
2004-08-09 17:04:08 +00:00
|
|
|
uint amt = min(accepts[i], 15);
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Make sure the station can accept the goods type. */
|
2007-03-18 22:07:44 +00:00
|
|
|
bool is_passengers = IsCargoInClass(i, CC_PASSENGERS);
|
|
|
|
if ((!is_passengers && !(st->facilities & (byte)~FACIL_BUS_STOP)) ||
|
2008-04-17 20:03:28 +00:00
|
|
|
(is_passengers && !(st->facilities & (byte)~FACIL_TRUCK_STOP))) {
|
2004-08-09 17:04:08 +00:00
|
|
|
amt = 0;
|
2008-04-17 20:03:28 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-08-26 13:55:36 +00:00
|
|
|
SB(st->goods[i].acceptance_pickup, GoodsEntry::ACCEPTANCE, 1, amt >= 8);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Only show a message in case the acceptance was actually changed. */
|
2007-02-18 11:27:09 +00:00
|
|
|
uint new_acc = GetAcceptanceMask(st);
|
2008-04-17 20:03:28 +00:00
|
|
|
if (old_acc == new_acc) return;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* show a message to report that the acceptance was changed? */
|
2008-09-30 20:39:50 +00:00
|
|
|
if (show_msg && st->owner == _local_company && st->facilities) {
|
2007-01-16 11:13:00 +00:00
|
|
|
/* List of accept and reject strings for different number of
|
|
|
|
* cargo types */
|
|
|
|
static const StringID accept_msg[] = {
|
2009-04-21 23:40:56 +00:00
|
|
|
STR_NEWS_STATION_NOW_ACCEPTS_CARGO,
|
|
|
|
STR_NEWS_STATION_NOW_ACCEPTS_CARGO_AND_CARGO,
|
2007-01-16 11:13:00 +00:00
|
|
|
};
|
|
|
|
static const StringID reject_msg[] = {
|
2009-04-21 23:40:56 +00:00
|
|
|
STR_NEWS_STATION_NO_LONGER_ACCEPTS_CARGO,
|
|
|
|
STR_NEWS_STATION_NO_LONGER_ACCEPTS_CARGO_OR_CARGO,
|
2007-01-16 11:13:00 +00:00
|
|
|
};
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-01-16 11:13:00 +00:00
|
|
|
/* Array of accepted and rejected cargo types */
|
|
|
|
CargoID accepts[2] = { CT_INVALID, CT_INVALID };
|
|
|
|
CargoID rejects[2] = { CT_INVALID, CT_INVALID };
|
|
|
|
uint num_acc = 0;
|
|
|
|
uint num_rej = 0;
|
|
|
|
|
|
|
|
/* Test each cargo type to see if its acceptange has changed */
|
|
|
|
for (CargoID i = 0; i < NUM_CARGO; i++) {
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(new_acc, i)) {
|
|
|
|
if (!HasBit(old_acc, i) && num_acc < lengthof(accepts)) {
|
2007-01-16 11:13:00 +00:00
|
|
|
/* New cargo is accepted */
|
|
|
|
accepts[num_acc++] = i;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(old_acc, i) && num_rej < lengthof(rejects)) {
|
2007-01-16 11:13:00 +00:00
|
|
|
/* Old cargo is no longer accepted */
|
|
|
|
rejects[num_rej++] = i;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-01-16 11:13:00 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-01-16 11:13:00 +00:00
|
|
|
/* Show news message if there are any changes */
|
|
|
|
if (num_acc > 0) ShowRejectOrAcceptNews(st, num_acc, accepts, accept_msg[num_acc - 1]);
|
|
|
|
if (num_rej > 0) ShowRejectOrAcceptNews(st, num_rej, rejects, reject_msg[num_rej - 1]);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* redraw the station view since acceptance changed */
|
2007-12-05 17:08:10 +00:00
|
|
|
InvalidateWindowWidget(WC_STATION_VIEW, st->index, SVW_ACCEPTLIST);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2006-11-16 16:18:00 +00:00
|
|
|
static void UpdateStationSignCoord(Station *st)
|
|
|
|
{
|
2007-02-18 11:27:09 +00:00
|
|
|
const StationRect *r = &st->rect;
|
2006-11-16 16:18:00 +00:00
|
|
|
|
2009-03-15 00:32:18 +00:00
|
|
|
if (r->IsEmpty()) return; // no tiles belong to this station
|
2006-11-16 16:18:00 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* clamp sign coord to be inside the station rect */
|
2007-11-19 18:38:10 +00:00
|
|
|
st->xy = TileXY(ClampU(TileX(st->xy), r->left, r->right), ClampU(TileY(st->xy), r->top, r->bottom));
|
2006-11-16 16:18:00 +00:00
|
|
|
UpdateStationVirtCoordDirty(st);
|
|
|
|
}
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/** This is called right after a station was deleted.
|
|
|
|
* It checks if the whole station is free of substations, and if so, the station will be
|
|
|
|
* deleted after a little while.
|
|
|
|
* @param st Station
|
|
|
|
*/
|
|
|
|
static void DeleteStationIfEmpty(Station *st)
|
2005-11-14 19:48:04 +00:00
|
|
|
{
|
2004-08-09 17:04:08 +00:00
|
|
|
if (st->facilities == 0) {
|
|
|
|
st->delete_ctr = 0;
|
2008-05-18 16:51:44 +00:00
|
|
|
InvalidateWindowData(WC_STATION_LIST, st->owner, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-11-16 16:18:00 +00:00
|
|
|
/* station remains but it probably lost some parts - station sign should stay in the station boundaries */
|
|
|
|
UpdateStationSignCoord(st);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2009-02-09 21:20:05 +00:00
|
|
|
static CommandCost ClearTile_Station(TileIndex tile, DoCommandFlag flags);
|
2005-01-10 21:52:35 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/** Tries to clear the given area.
|
|
|
|
* @param tile TileIndex to start check
|
|
|
|
* @param w width of search area
|
|
|
|
* @param h height of search area
|
|
|
|
* @param flags operation to perform
|
2008-01-28 14:36:54 +00:00
|
|
|
* @param invalid_dirs prohibited directions (set of DiagDirections)
|
2007-10-26 20:42:03 +00:00
|
|
|
* @param station StationID to be queried and returned if available
|
|
|
|
* @param check_clear if clearing tile should be performed (in wich case, cost will be added)
|
|
|
|
* @return the cost in case of success, or an error code if it failed.
|
|
|
|
*/
|
2009-02-09 21:20:05 +00:00
|
|
|
CommandCost CheckFlatLandBelow(TileIndex tile, uint w, uint h, DoCommandFlag flags, uint invalid_dirs, StationID *station, bool check_clear = true)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-01-09 16:55:48 +00:00
|
|
|
CommandCost cost(EXPENSES_CONSTRUCTION);
|
2005-02-07 10:41:45 +00:00
|
|
|
int allowed_z = -1;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
BEGIN_TILE_LOOP(tile_cur, w, h, tile) {
|
2006-12-27 12:38:02 +00:00
|
|
|
if (MayHaveBridgeAbove(tile_cur) && IsBridgeAbove(tile_cur)) {
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_MUST_DEMOLISH_BRIDGE_FIRST);
|
2006-12-27 12:38:02 +00:00
|
|
|
}
|
|
|
|
|
2007-06-16 10:10:22 +00:00
|
|
|
if (!EnsureNoVehicleOnGround(tile_cur)) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
uint z;
|
|
|
|
Slope tileh = GetTileSlope(tile_cur, &z);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-07-16 23:47:37 +00:00
|
|
|
/* Prohibit building if
|
2006-09-04 20:40:33 +00:00
|
|
|
* 1) The tile is "steep" (i.e. stretches two height levels)
|
2009-01-12 19:49:23 +00:00
|
|
|
* 2) The tile is non-flat and the build_on_slopes switch is disabled
|
2006-09-04 20:40:33 +00:00
|
|
|
*/
|
2006-04-23 13:48:16 +00:00
|
|
|
if (IsSteepSlope(tileh) ||
|
2009-01-12 17:11:45 +00:00
|
|
|
((!_settings_game.construction.build_on_slopes) && tileh != SLOPE_FLAT)) {
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_FLAT_LAND_REQUIRED);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
int flat_z = z;
|
2006-04-23 13:48:16 +00:00
|
|
|
if (tileh != SLOPE_FLAT) {
|
2008-01-28 14:36:54 +00:00
|
|
|
/* need to check so the entrance to the station is not pointing at a slope.
|
|
|
|
* This must be valid for all station tiles, as the user can remove single station tiles. */
|
|
|
|
if ((HasBit(invalid_dirs, DIAGDIR_NE) && !(tileh & SLOPE_NE)) ||
|
|
|
|
(HasBit(invalid_dirs, DIAGDIR_SE) && !(tileh & SLOPE_SE)) ||
|
|
|
|
(HasBit(invalid_dirs, DIAGDIR_SW) && !(tileh & SLOPE_SW)) ||
|
|
|
|
(HasBit(invalid_dirs, DIAGDIR_NW) && !(tileh & SLOPE_NW))) {
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_FLAT_LAND_REQUIRED);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-06-18 19:53:50 +00:00
|
|
|
cost.AddCost(_price.terraform);
|
2006-04-23 19:35:36 +00:00
|
|
|
flat_z += TILE_HEIGHT;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* get corresponding flat level and make sure that all parts of the station have the same level. */
|
2004-08-09 17:04:08 +00:00
|
|
|
if (allowed_z == -1) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* first tile */
|
2004-08-09 17:04:08 +00:00
|
|
|
allowed_z = flat_z;
|
|
|
|
} else if (allowed_z != flat_z) {
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_FLAT_LAND_REQUIRED);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* if station is set, then we have special handling to allow building on top of already existing stations.
|
|
|
|
* so station points to INVALID_STATION if we can build on any station.
|
|
|
|
* Or it points to a station if we're only allowed to build on exactly that station. */
|
2005-01-16 11:24:58 +00:00
|
|
|
if (station != NULL && IsTileType(tile_cur, MP_STATION)) {
|
2006-03-26 14:41:39 +00:00
|
|
|
if (!IsRailwayStation(tile_cur)) {
|
2006-03-12 12:19:25 +00:00
|
|
|
return ClearTile_Station(tile_cur, DC_AUTO); // get error message
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2006-03-24 08:55:08 +00:00
|
|
|
StationID st = GetStationIndex(tile_cur);
|
2005-10-07 07:35:15 +00:00
|
|
|
if (*station == INVALID_STATION) {
|
2004-08-09 17:04:08 +00:00
|
|
|
*station = st;
|
2005-10-07 07:35:15 +00:00
|
|
|
} else if (*station != st) {
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_ADJOINS_MORE_THAN_ONE_EXISTING);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
2007-05-27 01:59:07 +00:00
|
|
|
} else if (check_clear) {
|
2007-06-18 10:48:15 +00:00
|
|
|
CommandCost ret = DoCommand(tile_cur, 0, 0, flags, CMD_LANDSCAPE_CLEAR);
|
2006-03-12 12:19:25 +00:00
|
|
|
if (CmdFailed(ret)) return ret;
|
2007-06-18 19:53:50 +00:00
|
|
|
cost.AddCost(ret);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-02-18 11:27:09 +00:00
|
|
|
} END_TILE_LOOP(tile_cur, w, h, tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
return cost;
|
|
|
|
}
|
|
|
|
|
2008-04-17 20:03:28 +00:00
|
|
|
static bool CanExpandRailroadStation(const Station *st, uint *fin, Axis axis)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-02-18 11:27:09 +00:00
|
|
|
uint curw = st->trainst_w;
|
|
|
|
uint curh = st->trainst_h;
|
2005-06-24 12:38:35 +00:00
|
|
|
TileIndex tile = fin[0];
|
2004-08-09 17:04:08 +00:00
|
|
|
uint w = fin[1];
|
|
|
|
uint h = fin[2];
|
|
|
|
|
2008-05-29 15:13:28 +00:00
|
|
|
if (_settings_game.station.nonuniform_stations) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* determine new size of train station region.. */
|
2005-01-07 17:02:43 +00:00
|
|
|
int x = min(TileX(st->train_tile), TileX(tile));
|
|
|
|
int y = min(TileY(st->train_tile), TileY(tile));
|
|
|
|
curw = max(TileX(st->train_tile) + curw, TileX(tile) + w) - x;
|
|
|
|
curh = max(TileY(st->train_tile) + curh, TileY(tile) + h) - y;
|
2005-06-25 16:44:57 +00:00
|
|
|
tile = TileXY(x, y);
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2007-12-18 18:02:00 +00:00
|
|
|
/* do not allow modifying non-uniform stations,
|
|
|
|
* the uniform-stations code wouldn't handle it well */
|
|
|
|
BEGIN_TILE_LOOP(t, st->trainst_w, st->trainst_h, st->train_tile)
|
|
|
|
if (!st->TileBelongsToRailStation(t)) { // there may be adjoined station
|
2008-01-27 17:32:12 +00:00
|
|
|
_error_message = STR_NONUNIFORM_STATIONS_DISALLOWED;
|
2007-12-18 18:02:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
END_TILE_LOOP(t, st->trainst_w, st->trainst_h, st->train_tile)
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* check so the orientation is the same */
|
2006-03-26 14:41:39 +00:00
|
|
|
if (GetRailStationAxis(st->train_tile) != axis) {
|
2008-01-27 17:32:12 +00:00
|
|
|
_error_message = STR_NONUNIFORM_STATIONS_DISALLOWED;
|
2005-01-27 09:43:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* check if the new station adjoins the old station in either direction */
|
2005-06-25 16:44:57 +00:00
|
|
|
if (curw == w && st->train_tile == tile + TileDiffXY(0, h)) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* above */
|
2004-08-09 17:04:08 +00:00
|
|
|
curh += h;
|
2005-06-25 16:44:57 +00:00
|
|
|
} else if (curw == w && st->train_tile == tile - TileDiffXY(0, curh)) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* below */
|
2005-06-25 16:44:57 +00:00
|
|
|
tile -= TileDiffXY(0, curh);
|
2004-08-09 17:04:08 +00:00
|
|
|
curh += h;
|
2005-06-25 16:44:57 +00:00
|
|
|
} else if (curh == h && st->train_tile == tile + TileDiffXY(w, 0)) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* to the left */
|
2004-08-09 17:04:08 +00:00
|
|
|
curw += w;
|
2005-06-25 16:44:57 +00:00
|
|
|
} else if (curh == h && st->train_tile == tile - TileDiffXY(curw, 0)) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* to the right */
|
2005-06-25 16:44:57 +00:00
|
|
|
tile -= TileDiffXY(curw, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
curw += w;
|
2005-01-27 09:43:24 +00:00
|
|
|
} else {
|
2008-01-27 17:32:12 +00:00
|
|
|
_error_message = STR_NONUNIFORM_STATIONS_DISALLOWED;
|
2004-08-09 17:04:08 +00:00
|
|
|
return false;
|
2005-01-27 09:43:24 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-10-26 20:42:03 +00:00
|
|
|
/* make sure the final size is not too big. */
|
2008-05-29 15:13:28 +00:00
|
|
|
if (curw > _settings_game.station.station_spread || curh > _settings_game.station.station_spread) {
|
2009-04-21 23:40:56 +00:00
|
|
|
_error_message = STR_ERROR_STATION_TOO_SPREAD_OUT;
|
2005-01-27 09:43:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* now tile contains the new value for st->train_tile
|
|
|
|
* curw, curh contain the new value for width and height */
|
2004-08-09 17:04:08 +00:00
|
|
|
fin[0] = tile;
|
|
|
|
fin[1] = curw;
|
|
|
|
fin[2] = curh;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2004-12-03 07:43:00 +00:00
|
|
|
static inline byte *CreateSingle(byte *layout, int n)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
int i = n;
|
|
|
|
do *layout++ = 0; while (--i);
|
2007-04-18 22:10:36 +00:00
|
|
|
layout[((n - 1) >> 1) - n] = 2;
|
2004-08-09 17:04:08 +00:00
|
|
|
return layout;
|
|
|
|
}
|
|
|
|
|
2004-12-03 07:43:00 +00:00
|
|
|
static inline byte *CreateMulti(byte *layout, int n, byte b)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
int i = n;
|
|
|
|
do *layout++ = b; while (--i);
|
|
|
|
if (n > 4) {
|
2007-04-18 22:10:36 +00:00
|
|
|
layout[0 - n] = 0;
|
|
|
|
layout[n - 1 - n] = 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
return layout;
|
|
|
|
}
|
|
|
|
|
2006-04-27 18:28:56 +00:00
|
|
|
static void GetStationLayout(byte *layout, int numtracks, int plat_len, const StationSpec *statspec)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-04-27 18:28:56 +00:00
|
|
|
if (statspec != NULL && statspec->lengths >= plat_len &&
|
|
|
|
statspec->platforms[plat_len - 1] >= numtracks &&
|
|
|
|
statspec->layouts[plat_len - 1][numtracks - 1]) {
|
2004-11-17 18:03:33 +00:00
|
|
|
/* Custom layout defined, follow it. */
|
2006-04-27 18:28:56 +00:00
|
|
|
memcpy(layout, statspec->layouts[plat_len - 1][numtracks - 1],
|
2005-03-09 19:09:04 +00:00
|
|
|
plat_len * numtracks);
|
2004-11-17 18:03:33 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (plat_len == 1) {
|
|
|
|
CreateSingle(layout, numtracks);
|
|
|
|
} else {
|
2005-11-14 19:48:04 +00:00
|
|
|
if (numtracks & 1) layout = CreateSingle(layout, plat_len);
|
|
|
|
numtracks >>= 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
while (--numtracks >= 0) {
|
|
|
|
layout = CreateMulti(layout, plat_len, 4);
|
|
|
|
layout = CreateMulti(layout, plat_len, 6);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-07 10:26:12 +00:00
|
|
|
/** Build railroad station
|
2006-04-10 07:15:58 +00:00
|
|
|
* @param tile_org starting position of station dragging/placement
|
2007-04-17 21:09:38 +00:00
|
|
|
* @param flags operation to perform
|
2005-05-07 10:26:12 +00:00
|
|
|
* @param p1 various bitstuffed elements
|
2009-01-08 16:35:45 +00:00
|
|
|
* - p1 = (bit 0- 3) - railtype (p1 & 0xF)
|
|
|
|
* - p1 = (bit 4) - orientation (Axis)
|
2005-07-20 15:29:28 +00:00
|
|
|
* - p1 = (bit 8-15) - number of tracks
|
|
|
|
* - p1 = (bit 16-23) - platform length
|
2007-05-23 17:33:03 +00:00
|
|
|
* - p1 = (bit 24) - allow stations directly adjacent to other stations.
|
2005-05-07 10:26:12 +00:00
|
|
|
* @param p2 various bitstuffed elements
|
2009-01-08 16:35:45 +00:00
|
|
|
* - p2 = (bit 0- 7) - custom station class
|
|
|
|
* - p2 = (bit 8-15) - custom station id
|
|
|
|
* - p2 = (bit 16-31) - station ID to join (INVALID_STATION if build new one)
|
2004-08-09 17:04:08 +00:00
|
|
|
*/
|
2009-02-09 21:20:05 +00:00
|
|
|
CommandCost CmdBuildRailroadStation(TileIndex tile_org, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
/* Does the authority allow this? */
|
2009-01-11 14:26:11 +00:00
|
|
|
if (!CheckIfAuthorityAllowsNewStation(tile_org, flags)) return CMD_ERROR;
|
2009-01-08 16:35:45 +00:00
|
|
|
if (!ValParamRailtype((RailType)(p1 & 0xF))) return CMD_ERROR;
|
2005-05-07 10:26:12 +00:00
|
|
|
|
|
|
|
/* unpack parameters */
|
2009-01-08 16:35:45 +00:00
|
|
|
Axis axis = Extract<Axis, 4>(p1);
|
2007-02-18 11:27:09 +00:00
|
|
|
uint numtracks = GB(p1, 8, 8);
|
|
|
|
uint plat_len = GB(p1, 16, 8);
|
2008-04-17 20:03:28 +00:00
|
|
|
|
|
|
|
int w_org, h_org;
|
2006-03-08 06:55:33 +00:00
|
|
|
if (axis == AXIS_X) {
|
2005-05-07 10:26:12 +00:00
|
|
|
w_org = plat_len;
|
|
|
|
h_org = numtracks;
|
2006-03-08 06:55:33 +00:00
|
|
|
} else {
|
|
|
|
h_org = plat_len;
|
|
|
|
w_org = numtracks;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2009-01-08 16:35:45 +00:00
|
|
|
StationID station_to_join = GB(p2, 16, 16);
|
2009-04-10 22:47:19 +00:00
|
|
|
bool reuse = (station_to_join != NEW_STATION);
|
|
|
|
if (!reuse) station_to_join = INVALID_STATION;
|
2009-01-08 16:35:45 +00:00
|
|
|
bool distant_join = (station_to_join != INVALID_STATION);
|
|
|
|
|
2009-05-17 01:00:56 +00:00
|
|
|
if (distant_join && (!_settings_game.station.distant_join_stations || !Station::IsValidID(station_to_join))) return CMD_ERROR;
|
2009-01-08 16:35:45 +00:00
|
|
|
|
2008-05-29 15:13:28 +00:00
|
|
|
if (h_org > _settings_game.station.station_spread || w_org > _settings_game.station.station_spread) return CMD_ERROR;
|
2005-05-09 13:26:15 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* these values are those that will be stored in train_tile and station_platforms */
|
2007-02-18 11:27:09 +00:00
|
|
|
uint finalvalues[3];
|
2004-08-09 17:04:08 +00:00
|
|
|
finalvalues[0] = tile_org;
|
|
|
|
finalvalues[1] = w_org;
|
|
|
|
finalvalues[2] = h_org;
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Make sure the area below consists of clear tiles. (OR tiles belonging to a certain rail station) */
|
2007-02-18 11:27:09 +00:00
|
|
|
StationID est = INVALID_STATION;
|
2007-10-26 20:42:03 +00:00
|
|
|
/* If DC_EXEC is in flag, do not want to pass it to CheckFlatLandBelow, because of a nice bug
|
|
|
|
* for detail info, see:
|
|
|
|
* https://sourceforge.net/tracker/index.php?func=detail&aid=1029064&group_id=103924&atid=636365 */
|
2008-05-29 15:13:28 +00:00
|
|
|
CommandCost ret = CheckFlatLandBelow(tile_org, w_org, h_org, flags & ~DC_EXEC, 5 << axis, _settings_game.station.nonuniform_stations ? &est : NULL);
|
2006-03-12 12:19:25 +00:00
|
|
|
if (CmdFailed(ret)) return ret;
|
2008-01-09 16:55:48 +00:00
|
|
|
CommandCost cost(EXPENSES_CONSTRUCTION, ret.GetCost() + (numtracks * _price.train_station_track + _price.train_station_length) * plat_len);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-05-23 17:33:03 +00:00
|
|
|
Station *st = NULL;
|
|
|
|
bool check_surrounding = true;
|
|
|
|
|
2008-05-29 15:13:28 +00:00
|
|
|
if (_settings_game.station.adjacent_stations) {
|
2007-05-23 17:33:03 +00:00
|
|
|
if (est != INVALID_STATION) {
|
2009-01-08 16:35:45 +00:00
|
|
|
if (HasBit(p1, 24) && est != station_to_join) {
|
2007-05-23 17:33:03 +00:00
|
|
|
/* You can't build an adjacent station over the top of one that
|
|
|
|
* already exists. */
|
|
|
|
return_cmd_error(STR_MUST_REMOVE_RAILWAY_STATION_FIRST);
|
|
|
|
} else {
|
|
|
|
/* Extend the current station, and don't check whether it will
|
|
|
|
* be near any other stations. */
|
2009-05-16 23:34:14 +00:00
|
|
|
st = Station::Get(est);
|
2007-05-23 17:33:03 +00:00
|
|
|
check_surrounding = false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* There's no station here. Don't check the tiles surrounding this
|
2008-09-30 20:39:50 +00:00
|
|
|
* one if the company wanted to build an adjacent station. */
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(p1, 24)) check_surrounding = false;
|
2007-05-23 17:33:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (check_surrounding) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Make sure there are no similar stations around us. */
|
2007-05-23 17:33:03 +00:00
|
|
|
st = GetStationAround(tile_org, w_org, h_org, est);
|
|
|
|
if (st == CHECK_STATIONS_ERR) return CMD_ERROR;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-01-08 16:35:45 +00:00
|
|
|
/* Distant join */
|
2009-05-16 23:34:14 +00:00
|
|
|
if (st == NULL && distant_join) st = Station::Get(station_to_join);
|
2009-01-08 16:35:45 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* See if there is a deleted station close to us. */
|
2009-04-10 22:47:19 +00:00
|
|
|
if (st == NULL && reuse) st = GetClosestDeletedStation(tile_org);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (st != NULL) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Reuse an existing station. */
|
2008-09-30 20:39:50 +00:00
|
|
|
if (st->owner != _current_company)
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_TOO_CLOSE_TO_ANOTHER_STATION);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-12-26 18:01:15 +00:00
|
|
|
if (st->train_tile != INVALID_TILE) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* check if we want to expanding an already existing station? */
|
2009-01-12 17:11:45 +00:00
|
|
|
if (!_settings_game.station.join_stations)
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_TOO_CLOSE_TO_ANOTHER_RAILROAD);
|
2006-03-08 06:55:33 +00:00
|
|
|
if (!CanExpandRailroadStation(st, finalvalues, axis))
|
2005-01-27 09:43:24 +00:00
|
|
|
return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* XXX can't we pack this in the "else" part of the if above? */
|
2007-01-14 23:02:12 +00:00
|
|
|
if (!st->rect.BeforeAddRect(tile_org, w_org, h_org, StationRect::ADD_TEST)) return CMD_ERROR;
|
2006-08-28 18:53:03 +00:00
|
|
|
} else {
|
2007-01-14 19:18:50 +00:00
|
|
|
/* allocate and initialize new station */
|
2009-04-21 23:40:56 +00:00
|
|
|
if (!Station::CanAllocateItem()) return_cmd_error(STR_ERROR_TOO_MANY_STATIONS_LOADING);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-04-23 22:16:41 +00:00
|
|
|
if (flags & DC_EXEC) {
|
2008-04-28 23:34:23 +00:00
|
|
|
st = new Station(tile_org);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-24 18:30:41 +00:00
|
|
|
st->town = ClosestTownFromTile(tile_org, UINT_MAX);
|
2008-04-25 15:22:32 +00:00
|
|
|
st->string_id = GenerateStationName(st, tile_org, STATIONNAMING_RAIL);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-05-17 01:00:56 +00:00
|
|
|
if (Company::IsValidID(_current_company)) {
|
2008-09-30 20:39:50 +00:00
|
|
|
SetBit(st->town->have_ratings, _current_company);
|
2008-04-23 22:16:41 +00:00
|
|
|
}
|
2007-01-14 19:18:50 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2006-04-19 07:17:00 +00:00
|
|
|
/* Check if the given station class is valid */
|
2009-01-08 16:35:45 +00:00
|
|
|
if (GB(p2, 0, 8) >= GetNumStationClasses()) return CMD_ERROR;
|
2006-04-19 07:17:00 +00:00
|
|
|
|
|
|
|
/* Check if we can allocate a custom stationspec to this station */
|
2009-01-08 16:35:45 +00:00
|
|
|
const StationSpec *statspec = GetCustomStationSpec((StationClassID)GB(p2, 0, 8), GB(p2, 8, 8));
|
2009-02-10 04:23:37 +00:00
|
|
|
int specindex = AllocateSpecToStation(statspec, st, (flags & DC_EXEC) != 0);
|
2009-04-21 23:40:56 +00:00
|
|
|
if (specindex == -1) return_cmd_error(STR_ERROR_TOO_MANY_STATION_SPECS);
|
2006-04-19 07:17:00 +00:00
|
|
|
|
2006-05-04 20:00:50 +00:00
|
|
|
if (statspec != NULL) {
|
|
|
|
/* Perform NewStation checks */
|
|
|
|
|
|
|
|
/* Check if the station size is permitted */
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(statspec->disallowed_platforms, numtracks - 1) || HasBit(statspec->disallowed_lengths, plat_len - 1)) {
|
2006-05-04 20:00:50 +00:00
|
|
|
return CMD_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if the station is buildable */
|
2008-04-21 14:33:33 +00:00
|
|
|
if (HasBit(statspec->callbackmask, CBM_STATION_AVAIL) && GB(GetStationCallback(CBID_STATION_AVAILABILITY, 0, 0, statspec, NULL, INVALID_TILE), 0, 8) == 0) {
|
2006-05-04 20:00:50 +00:00
|
|
|
return CMD_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (flags & DC_EXEC) {
|
2005-06-24 12:38:35 +00:00
|
|
|
TileIndexDiff tile_delta;
|
2004-08-09 17:04:08 +00:00
|
|
|
byte *layout_ptr;
|
2006-05-06 22:30:36 +00:00
|
|
|
byte numtracks_orig;
|
2006-01-06 17:45:43 +00:00
|
|
|
Track track;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Now really clear the land below the station
|
|
|
|
* It should never return CMD_ERROR.. but you never know ;)
|
|
|
|
* (a bit strange function name for it, but it really does clear the land, when DC_EXEC is in flags) */
|
2008-05-29 15:13:28 +00:00
|
|
|
ret = CheckFlatLandBelow(tile_org, w_org, h_org, flags, 5 << axis, _settings_game.station.nonuniform_stations ? &est : NULL);
|
2006-03-12 12:19:25 +00:00
|
|
|
if (CmdFailed(ret)) return ret;
|
2004-09-25 13:58:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
st->train_tile = finalvalues[0];
|
2007-01-18 09:34:44 +00:00
|
|
|
st->AddFacility(FACIL_TRAIN, finalvalues[0]);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
st->trainst_w = finalvalues[1];
|
|
|
|
st->trainst_h = finalvalues[2];
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-01-14 23:02:12 +00:00
|
|
|
st->rect.BeforeAddRect(tile_org, w_org, h_org, StationRect::ADD_TRY);
|
2006-12-27 23:11:43 +00:00
|
|
|
|
2008-04-19 23:19:12 +00:00
|
|
|
if (statspec != NULL) {
|
|
|
|
/* Include this station spec's animation trigger bitmask
|
|
|
|
* in the station's cached copy. */
|
|
|
|
st->cached_anim_triggers |= statspec->anim_triggers;
|
|
|
|
}
|
|
|
|
|
2006-03-08 06:55:33 +00:00
|
|
|
tile_delta = (axis == AXIS_X ? TileDiffXY(1, 0) : TileDiffXY(0, 1));
|
2006-07-22 08:59:52 +00:00
|
|
|
track = AxisToTrack(axis);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-06-10 21:59:22 +00:00
|
|
|
layout_ptr = AllocaM(byte, numtracks * plat_len);
|
2004-11-17 18:03:33 +00:00
|
|
|
GetStationLayout(layout_ptr, numtracks, plat_len, statspec);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-05-06 22:30:36 +00:00
|
|
|
numtracks_orig = numtracks;
|
|
|
|
|
2009-05-22 22:22:46 +00:00
|
|
|
SmallVector<Train*, 4> affected_vehicles;
|
2004-08-09 17:04:08 +00:00
|
|
|
do {
|
2005-05-07 10:26:12 +00:00
|
|
|
TileIndex tile = tile_org;
|
2004-08-09 17:04:08 +00:00
|
|
|
int w = plat_len;
|
|
|
|
do {
|
2006-05-06 22:30:36 +00:00
|
|
|
byte layout = *layout_ptr++;
|
2008-08-02 22:55:08 +00:00
|
|
|
if (IsRailwayStationTile(tile) && GetRailwayStationReservation(tile)) {
|
2008-08-08 13:53:06 +00:00
|
|
|
/* Check for trains having a reservation for this tile. */
|
2009-05-22 22:22:46 +00:00
|
|
|
Train *v = GetTrainForReservation(tile, AxisToTrack(GetRailStationAxis(tile)));
|
2008-08-02 22:55:08 +00:00
|
|
|
if (v != NULL) {
|
|
|
|
FreeTrainTrackReservation(v);
|
|
|
|
*affected_vehicles.Append() = v;
|
2009-05-22 18:17:20 +00:00
|
|
|
if (IsRailwayStationTile(v->tile)) SetRailwayStationPlatformReservation(v->tile, TrackdirToExitdir(v->GetVehicleTrackdir()), false);
|
2008-08-08 13:29:18 +00:00
|
|
|
for (; v->Next() != NULL; v = v->Next()) ;
|
2009-05-22 18:17:20 +00:00
|
|
|
if (IsRailwayStationTile(v->tile)) SetRailwayStationPlatformReservation(v->tile, TrackdirToExitdir(ReverseTrackdir(v->GetVehicleTrackdir())), false);
|
2008-08-02 22:55:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-10 14:01:17 +00:00
|
|
|
byte old_specindex = IsTileType(tile, MP_STATION) ? GetCustomStationSpecIndex(tile) : 0;
|
2009-01-08 16:35:45 +00:00
|
|
|
MakeRailStation(tile, st->owner, st->index, axis, layout & ~1, (RailType)GB(p1, 0, 4));
|
2009-01-10 14:01:17 +00:00
|
|
|
/* Free the spec if we overbuild something */
|
|
|
|
DeallocateSpecFromStation(st, old_specindex);
|
|
|
|
|
2006-04-19 07:17:00 +00:00
|
|
|
SetCustomStationSpecIndex(tile, specindex);
|
2006-05-03 21:25:49 +00:00
|
|
|
SetStationTileRandomBits(tile, GB(Random(), 0, 4));
|
2008-04-19 23:19:12 +00:00
|
|
|
SetStationAnimationFrame(tile, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-05-04 20:00:50 +00:00
|
|
|
if (statspec != NULL) {
|
2006-05-08 06:22:01 +00:00
|
|
|
/* Use a fixed axis for GetPlatformInfo as our platforms / numtracks are always the right way around */
|
|
|
|
uint32 platinfo = GetPlatformInfo(AXIS_X, 0, plat_len, numtracks_orig, plat_len - w, numtracks_orig - numtracks, false);
|
2007-11-11 20:24:32 +00:00
|
|
|
|
|
|
|
/* As the station is not yet completely finished, the station does not yet exist. */
|
|
|
|
uint16 callback = GetStationCallback(CBID_STATION_TILE_LAYOUT, platinfo, 0, statspec, NULL, tile);
|
2007-05-01 06:43:18 +00:00
|
|
|
if (callback != CALLBACK_FAILED && callback < 8) SetStationGfx(tile, (callback & ~1) + axis);
|
2008-04-19 23:19:12 +00:00
|
|
|
|
|
|
|
/* Trigger station animation -- after building? */
|
|
|
|
StationAnimationTrigger(st, tile, STAT_ANIM_BUILT);
|
2006-05-04 20:00:50 +00:00
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
tile += tile_delta;
|
|
|
|
} while (--w);
|
2008-09-30 20:39:50 +00:00
|
|
|
AddTrackToSignalBuffer(tile_org, track, _current_company);
|
2006-05-27 16:12:16 +00:00
|
|
|
YapfNotifyTrackLayoutChange(tile_org, track);
|
2005-06-25 16:44:57 +00:00
|
|
|
tile_org += tile_delta ^ TileDiffXY(1, 1); // perpendicular to tile_delta
|
2004-08-09 17:04:08 +00:00
|
|
|
} while (--numtracks);
|
|
|
|
|
2008-08-02 22:55:08 +00:00
|
|
|
for (uint i = 0; i < affected_vehicles.Length(); ++i) {
|
2008-08-08 13:53:06 +00:00
|
|
|
/* Restore reservations of trains. */
|
2009-05-22 22:22:46 +00:00
|
|
|
Train *v = affected_vehicles[i];
|
2009-05-22 18:17:20 +00:00
|
|
|
if (IsRailwayStationTile(v->tile)) SetRailwayStationPlatformReservation(v->tile, TrackdirToExitdir(v->GetVehicleTrackdir()), true);
|
2008-08-08 13:53:06 +00:00
|
|
|
TryPathReserve(v, true, true);
|
2008-08-08 13:29:18 +00:00
|
|
|
for (; v->Next() != NULL; v = v->Next()) ;
|
2009-05-22 18:17:20 +00:00
|
|
|
if (IsRailwayStationTile(v->tile)) SetRailwayStationPlatformReservation(v->tile, TrackdirToExitdir(ReverseTrackdir(v->GetVehicleTrackdir())), true);
|
2008-08-02 22:55:08 +00:00
|
|
|
}
|
|
|
|
|
2007-06-08 09:35:39 +00:00
|
|
|
st->MarkTilesDirty(false);
|
2004-08-09 17:04:08 +00:00
|
|
|
UpdateStationVirtCoordDirty(st);
|
|
|
|
UpdateStationAcceptance(st, false);
|
2009-01-08 16:35:45 +00:00
|
|
|
InvalidateWindowData(WC_SELECT_STATION, 0, 0);
|
2008-05-18 16:51:44 +00:00
|
|
|
InvalidateWindowData(WC_STATION_LIST, st->owner, 0);
|
2007-12-05 19:13:42 +00:00
|
|
|
InvalidateWindowWidget(WC_STATION_VIEW, st->index, SVW_TRAINS);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return cost;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void MakeRailwayStationAreaSmaller(Station *st)
|
|
|
|
{
|
|
|
|
uint w = st->trainst_w;
|
|
|
|
uint h = st->trainst_h;
|
2005-06-24 12:38:35 +00:00
|
|
|
TileIndex tile = st->train_tile;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
restart:
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* too small? */
|
2004-08-09 17:04:08 +00:00
|
|
|
if (w != 0 && h != 0) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* check the left side, x = constant, y changes */
|
2007-02-18 11:27:09 +00:00
|
|
|
for (uint i = 0; !st->TileBelongsToRailStation(tile + TileDiffXY(0, i));) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* the left side is unused? */
|
2005-06-25 16:44:57 +00:00
|
|
|
if (++i == h) {
|
|
|
|
tile += TileDiffXY(1, 0);
|
|
|
|
w--;
|
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* check the right side, x = constant, y changes */
|
2007-02-18 11:27:09 +00:00
|
|
|
for (uint i = 0; !st->TileBelongsToRailStation(tile + TileDiffXY(w - 1, i));) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* the right side is unused? */
|
2005-06-25 16:44:57 +00:00
|
|
|
if (++i == h) {
|
|
|
|
w--;
|
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* check the upper side, y = constant, x changes */
|
2007-02-18 11:27:09 +00:00
|
|
|
for (uint i = 0; !st->TileBelongsToRailStation(tile + TileDiffXY(i, 0));) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* the left side is unused? */
|
2005-06-25 16:44:57 +00:00
|
|
|
if (++i == w) {
|
|
|
|
tile += TileDiffXY(0, 1);
|
|
|
|
h--;
|
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* check the lower side, y = constant, x changes */
|
2007-02-18 11:27:09 +00:00
|
|
|
for (uint i = 0; !st->TileBelongsToRailStation(tile + TileDiffXY(i, h - 1));) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* the left side is unused? */
|
2005-06-25 16:44:57 +00:00
|
|
|
if (++i == w) {
|
|
|
|
h--;
|
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2008-12-26 18:01:15 +00:00
|
|
|
tile = INVALID_TILE;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
st->trainst_w = w;
|
|
|
|
st->trainst_h = h;
|
|
|
|
st->train_tile = tile;
|
|
|
|
}
|
|
|
|
|
2005-05-09 16:37:40 +00:00
|
|
|
/** Remove a single tile from a railroad station.
|
|
|
|
* This allows for custom-built station with holes and weird layouts
|
2006-04-10 07:15:58 +00:00
|
|
|
* @param tile tile of station piece to remove
|
2007-04-17 21:09:38 +00:00
|
|
|
* @param flags operation to perform
|
2007-05-07 17:10:30 +00:00
|
|
|
* @param p1 start_tile
|
2005-05-09 16:37:40 +00:00
|
|
|
* @param p2 unused
|
|
|
|
*/
|
2009-02-09 21:20:05 +00:00
|
|
|
CommandCost CmdRemoveFromRailroadStation(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-05-07 17:10:30 +00:00
|
|
|
TileIndex start = p1 == 0 ? tile : p1;
|
|
|
|
|
|
|
|
/* Count of the number of tiles removed */
|
|
|
|
int quantity = 0;
|
|
|
|
|
|
|
|
if (tile >= MapSize() || start >= MapSize()) return CMD_ERROR;
|
|
|
|
|
|
|
|
/* make sure sx,sy are smaller than ex,ey */
|
|
|
|
int ex = TileX(tile);
|
|
|
|
int ey = TileY(tile);
|
|
|
|
int sx = TileX(start);
|
|
|
|
int sy = TileY(start);
|
|
|
|
if (ex < sx) Swap(ex, sx);
|
|
|
|
if (ey < sy) Swap(ey, sy);
|
|
|
|
tile = TileXY(sx, sy);
|
|
|
|
|
|
|
|
int size_x = ex - sx + 1;
|
|
|
|
int size_y = ey - sy + 1;
|
|
|
|
|
|
|
|
/* Do the action for every tile into the area */
|
|
|
|
BEGIN_TILE_LOOP(tile2, size_x, size_y, tile) {
|
2007-12-04 21:39:03 +00:00
|
|
|
/* Make sure the specified tile is a railroad station */
|
|
|
|
if (!IsTileType(tile2, MP_STATION) || !IsRailwayStation(tile2)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If there is a vehicle on ground, do not allow to remove (flood) the tile */
|
|
|
|
if (!EnsureNoVehicleOnGround(tile2)) {
|
2007-05-07 17:10:30 +00:00
|
|
|
continue;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-05-07 17:10:30 +00:00
|
|
|
/* Check ownership of station */
|
|
|
|
Station *st = GetStationByTile(tile2);
|
2008-09-30 20:39:50 +00:00
|
|
|
if (_current_company != OWNER_WATER && !CheckOwnership(st->owner)) {
|
2007-05-07 17:10:30 +00:00
|
|
|
continue;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-12-04 21:39:03 +00:00
|
|
|
/* Do not allow removing from stations if non-uniform stations are not enabled
|
|
|
|
* The check must be here to give correct error message
|
2008-04-18 04:54:09 +00:00
|
|
|
*/
|
2008-05-29 15:13:28 +00:00
|
|
|
if (!_settings_game.station.nonuniform_stations) return_cmd_error(STR_NONUNIFORM_STATIONS_DISALLOWED);
|
2007-12-04 21:39:03 +00:00
|
|
|
|
2007-05-07 17:10:30 +00:00
|
|
|
/* If we reached here, the tile is valid so increase the quantity of tiles we will remove */
|
|
|
|
quantity++;
|
|
|
|
|
|
|
|
if (flags & DC_EXEC) {
|
2008-01-15 15:00:01 +00:00
|
|
|
/* read variables before the station tile is removed */
|
2007-05-07 17:10:30 +00:00
|
|
|
uint specindex = GetCustomStationSpecIndex(tile2);
|
|
|
|
Track track = GetRailStationTrack(tile2);
|
2008-01-15 15:00:01 +00:00
|
|
|
Owner owner = GetTileOwner(tile2);
|
2009-05-22 22:22:46 +00:00
|
|
|
Train *v = NULL;
|
2008-08-02 22:55:08 +00:00
|
|
|
|
|
|
|
if (GetRailwayStationReservation(tile2)) {
|
|
|
|
v = GetTrainForReservation(tile2, track);
|
2008-08-08 13:53:06 +00:00
|
|
|
if (v != NULL) {
|
|
|
|
/* Free train reservation. */
|
|
|
|
FreeTrainTrackReservation(v);
|
2009-05-22 18:17:20 +00:00
|
|
|
if (IsRailwayStationTile(v->tile)) SetRailwayStationPlatformReservation(v->tile, TrackdirToExitdir(v->GetVehicleTrackdir()), false);
|
2008-08-08 13:53:06 +00:00
|
|
|
Vehicle *temp = v;
|
|
|
|
for (; temp->Next() != NULL; temp = temp->Next()) ;
|
2009-05-22 18:17:20 +00:00
|
|
|
if (IsRailwayStationTile(temp->tile)) SetRailwayStationPlatformReservation(temp->tile, TrackdirToExitdir(ReverseTrackdir(temp->GetVehicleTrackdir())), false);
|
2008-08-08 13:53:06 +00:00
|
|
|
}
|
2008-08-02 22:55:08 +00:00
|
|
|
}
|
2008-01-15 15:00:01 +00:00
|
|
|
|
2007-05-07 17:10:30 +00:00
|
|
|
DoClearSquare(tile2);
|
|
|
|
st->rect.AfterRemoveTile(st, tile2);
|
2008-01-16 01:18:15 +00:00
|
|
|
AddTrackToSignalBuffer(tile2, track, owner);
|
2007-05-07 17:10:30 +00:00
|
|
|
YapfNotifyTrackLayoutChange(tile2, track);
|
|
|
|
|
|
|
|
DeallocateSpecFromStation(st, specindex);
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* now we need to make the "spanned" area of the railway station smaller
|
|
|
|
* if we deleted something at the edges.
|
|
|
|
* we also need to adjust train_tile. */
|
2007-05-07 17:10:30 +00:00
|
|
|
MakeRailwayStationAreaSmaller(st);
|
2007-06-08 09:35:39 +00:00
|
|
|
st->MarkTilesDirty(false);
|
2007-05-07 17:10:30 +00:00
|
|
|
UpdateStationSignCoord(st);
|
|
|
|
|
2008-08-08 13:53:06 +00:00
|
|
|
if (v != NULL) {
|
|
|
|
/* Restore station reservation. */
|
2009-05-22 18:17:20 +00:00
|
|
|
if (IsRailwayStationTile(v->tile)) SetRailwayStationPlatformReservation(v->tile, TrackdirToExitdir(v->GetVehicleTrackdir()), true);
|
2008-08-08 13:53:06 +00:00
|
|
|
TryPathReserve(v, true, true);
|
|
|
|
for (; v->Next() != NULL; v = v->Next()) ;
|
2009-05-22 18:17:20 +00:00
|
|
|
if (IsRailwayStationTile(v->tile)) SetRailwayStationPlatformReservation(v->tile, TrackdirToExitdir(ReverseTrackdir(v->GetVehicleTrackdir())), true);
|
2008-08-08 13:53:06 +00:00
|
|
|
}
|
2008-08-02 22:55:08 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* if we deleted the whole station, delete the train facility. */
|
2008-12-26 18:01:15 +00:00
|
|
|
if (st->train_tile == INVALID_TILE) {
|
2007-05-07 17:10:30 +00:00
|
|
|
st->facilities &= ~FACIL_TRAIN;
|
2007-12-05 19:13:42 +00:00
|
|
|
InvalidateWindowWidget(WC_STATION_VIEW, st->index, SVW_TRAINS);
|
2007-05-07 17:10:30 +00:00
|
|
|
UpdateStationVirtCoordDirty(st);
|
|
|
|
DeleteStationIfEmpty(st);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-05-07 17:10:30 +00:00
|
|
|
} END_TILE_LOOP(tile2, size_x, size_y, tile)
|
|
|
|
|
|
|
|
/* If we've not removed any tiles, give an error */
|
|
|
|
if (quantity == 0) return CMD_ERROR;
|
|
|
|
|
2008-01-09 16:55:48 +00:00
|
|
|
return CommandCost(EXPENSES_CONSTRUCTION, _price.remove_rail_station * quantity);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2006-06-01 09:41:35 +00:00
|
|
|
|
2009-02-09 21:20:05 +00:00
|
|
|
static CommandCost RemoveRailroadStation(Station *st, TileIndex tile, DoCommandFlag flags)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2004-09-03 17:57:27 +00:00
|
|
|
/* if there is flooding and non-uniform stations are enabled, remove platforms tile by tile */
|
2008-09-30 20:39:50 +00:00
|
|
|
if (_current_company == OWNER_WATER && _settings_game.station.nonuniform_stations) {
|
2006-04-10 07:15:58 +00:00
|
|
|
return DoCommand(tile, 0, 0, DC_EXEC, CMD_REMOVE_FROM_RAILROAD_STATION);
|
2008-04-17 20:03:28 +00:00
|
|
|
}
|
2004-09-03 17:57:27 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
/* Current company owns the station? */
|
|
|
|
if (_current_company != OWNER_WATER && !CheckOwnership(st->owner)) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
/* determine width and height of platforms */
|
|
|
|
tile = st->train_tile;
|
2007-02-18 11:27:09 +00:00
|
|
|
int w = st->trainst_w;
|
|
|
|
int h = st->trainst_h;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
assert(w != 0 && h != 0);
|
|
|
|
|
2008-01-09 16:55:48 +00:00
|
|
|
CommandCost cost(EXPENSES_CONSTRUCTION);
|
2004-08-09 17:04:08 +00:00
|
|
|
/* clear all areas of the station */
|
|
|
|
do {
|
|
|
|
int w_bak = w;
|
|
|
|
do {
|
2008-01-15 15:00:01 +00:00
|
|
|
/* for nonuniform stations, only remove tiles that are actually train station tiles */
|
2007-01-14 19:18:50 +00:00
|
|
|
if (st->TileBelongsToRailStation(tile)) {
|
2007-10-19 22:46:55 +00:00
|
|
|
if (!EnsureNoVehicleOnGround(tile))
|
2004-08-09 17:04:08 +00:00
|
|
|
return CMD_ERROR;
|
2007-06-18 19:53:50 +00:00
|
|
|
cost.AddCost(_price.remove_rail_station);
|
2006-01-06 17:45:43 +00:00
|
|
|
if (flags & DC_EXEC) {
|
2008-01-15 15:00:01 +00:00
|
|
|
/* read variables before the station tile is removed */
|
2006-03-26 14:41:39 +00:00
|
|
|
Track track = GetRailStationTrack(tile);
|
2008-09-30 20:39:50 +00:00
|
|
|
Owner owner = GetTileOwner(tile); // _current_company can be OWNER_WATER
|
2009-05-22 22:22:46 +00:00
|
|
|
Train *v = NULL;
|
2008-08-02 22:55:08 +00:00
|
|
|
if (GetRailwayStationReservation(tile)) {
|
|
|
|
v = GetTrainForReservation(tile, track);
|
|
|
|
if (v != NULL) FreeTrainTrackReservation(v);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
DoClearSquare(tile);
|
2008-01-16 01:18:15 +00:00
|
|
|
AddTrackToSignalBuffer(tile, track, owner);
|
2006-05-27 16:12:16 +00:00
|
|
|
YapfNotifyTrackLayoutChange(tile, track);
|
2008-08-02 22:55:08 +00:00
|
|
|
if (v != NULL) TryPathReserve(v, true);
|
2006-01-06 17:45:43 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2005-06-25 16:44:57 +00:00
|
|
|
tile += TileDiffXY(1, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
} while (--w);
|
|
|
|
w = w_bak;
|
2005-06-25 16:44:57 +00:00
|
|
|
tile += TileDiffXY(-w, 1);
|
2004-08-09 17:04:08 +00:00
|
|
|
} while (--h);
|
|
|
|
|
|
|
|
if (flags & DC_EXEC) {
|
2007-01-14 23:02:12 +00:00
|
|
|
st->rect.AfterRemoveRect(st, st->train_tile, st->trainst_w, st->trainst_h);
|
2006-12-27 23:11:43 +00:00
|
|
|
|
2008-12-26 18:01:15 +00:00
|
|
|
st->train_tile = INVALID_TILE;
|
2006-12-27 23:11:43 +00:00
|
|
|
st->trainst_w = st->trainst_h = 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
st->facilities &= ~FACIL_TRAIN;
|
|
|
|
|
2006-04-19 07:17:00 +00:00
|
|
|
free(st->speclist);
|
|
|
|
st->num_specs = 0;
|
|
|
|
st->speclist = NULL;
|
2008-04-19 23:19:12 +00:00
|
|
|
st->cached_anim_triggers = 0;
|
2006-04-19 07:17:00 +00:00
|
|
|
|
2007-12-05 19:13:42 +00:00
|
|
|
InvalidateWindowWidget(WC_STATION_VIEW, st->index, SVW_TRAINS);
|
2004-08-09 17:04:08 +00:00
|
|
|
UpdateStationVirtCoordDirty(st);
|
|
|
|
DeleteStationIfEmpty(st);
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
return cost;
|
|
|
|
}
|
|
|
|
|
2007-02-02 08:23:48 +00:00
|
|
|
/**
|
2008-03-31 00:06:17 +00:00
|
|
|
* @param truck_station Determines whether a stop is ROADSTOP_BUS or ROADSTOP_TRUCK
|
2007-04-18 18:00:33 +00:00
|
|
|
* @param st The Station to do the whole procedure for
|
2007-02-02 08:23:48 +00:00
|
|
|
* @return a pointer to where to link a new RoadStop*
|
2006-09-04 20:40:33 +00:00
|
|
|
*/
|
2008-04-17 20:03:28 +00:00
|
|
|
static RoadStop **FindRoadStopSpot(bool truck_station, Station *st)
|
2005-01-29 19:41:44 +00:00
|
|
|
{
|
2006-04-29 09:47:43 +00:00
|
|
|
RoadStop **primary_stop = (truck_station) ? &st->truck_stops : &st->bus_stops;
|
2005-01-29 19:41:44 +00:00
|
|
|
|
|
|
|
if (*primary_stop == NULL) {
|
2007-04-18 18:00:33 +00:00
|
|
|
/* we have no roadstop of the type yet, so write a "primary stop" */
|
2007-02-02 08:23:48 +00:00
|
|
|
return primary_stop;
|
2005-01-29 19:41:44 +00:00
|
|
|
} else {
|
2007-04-18 18:00:33 +00:00
|
|
|
/* there are stops already, so append to the end of the list */
|
2007-02-02 08:23:48 +00:00
|
|
|
RoadStop *stop = *primary_stop;
|
|
|
|
while (stop->next != NULL) stop = stop->next;
|
|
|
|
return &stop->next;
|
2005-01-29 19:41:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-29 09:47:43 +00:00
|
|
|
/** Build a bus or truck stop
|
|
|
|
* @param tile tile to build the stop at
|
2007-04-17 21:09:38 +00:00
|
|
|
* @param flags operation to perform
|
2006-03-26 11:08:44 +00:00
|
|
|
* @param p1 entrance direction (DiagDirection)
|
2007-02-14 16:37:16 +00:00
|
|
|
* @param p2 bit 0: 0 for Bus stops, 1 for truck stops
|
|
|
|
* bit 1: 0 for normal, 1 for drive-through
|
2009-03-02 22:57:47 +00:00
|
|
|
* bit 2..3: the roadtypes
|
2007-05-23 17:33:03 +00:00
|
|
|
* bit 5: allow stations directly adjacent to other stations.
|
2009-01-08 16:35:45 +00:00
|
|
|
* bit 16..31: station ID to join (INVALID_STATION if build new one)
|
2004-08-09 17:04:08 +00:00
|
|
|
*/
|
2009-02-09 21:20:05 +00:00
|
|
|
CommandCost CmdBuildRoadStop(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-11-19 21:02:30 +00:00
|
|
|
bool type = HasBit(p2, 0);
|
|
|
|
bool is_drive_through = HasBit(p2, 1);
|
2008-02-14 15:59:16 +00:00
|
|
|
bool build_over_road = is_drive_through && IsNormalRoadTile(tile);
|
2009-03-02 22:57:47 +00:00
|
|
|
RoadTypes rts = (RoadTypes)GB(p2, 2, 2);
|
2009-01-08 16:35:45 +00:00
|
|
|
StationID station_to_join = GB(p2, 16, 16);
|
2009-04-10 22:47:19 +00:00
|
|
|
bool reuse = (station_to_join != NEW_STATION);
|
|
|
|
if (!reuse) station_to_join = INVALID_STATION;
|
2009-01-08 16:35:45 +00:00
|
|
|
bool distant_join = (station_to_join != INVALID_STATION);
|
2009-03-02 22:57:47 +00:00
|
|
|
Owner tram_owner = _current_company;
|
|
|
|
Owner road_owner = _current_company;
|
2009-01-08 16:35:45 +00:00
|
|
|
|
2009-05-17 01:00:56 +00:00
|
|
|
if (distant_join && (!_settings_game.station.distant_join_stations || !Station::IsValidID(station_to_join))) return CMD_ERROR;
|
2007-05-20 19:14:08 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
if (!AreValidRoadTypes(rts) || !HasRoadTypesAvail(_current_company, rts)) return CMD_ERROR;
|
2005-01-29 19:41:44 +00:00
|
|
|
|
2007-05-24 08:52:28 +00:00
|
|
|
/* Trams only have drive through stops */
|
2007-11-19 21:02:30 +00:00
|
|
|
if (!is_drive_through && HasBit(rts, ROADTYPE_TRAM)) return CMD_ERROR;
|
2007-05-24 08:52:28 +00:00
|
|
|
|
2005-05-09 16:37:40 +00:00
|
|
|
/* Saveguard the parameters */
|
2007-01-10 18:56:51 +00:00
|
|
|
if (!IsValidDiagDirection((DiagDirection)p1)) return CMD_ERROR;
|
2007-02-14 16:37:16 +00:00
|
|
|
/* If it is a drive-through stop check for valid axis */
|
|
|
|
if (is_drive_through && !IsValidAxis((Axis)p1)) return CMD_ERROR;
|
2007-02-14 20:58:19 +00:00
|
|
|
/* Road bits in the wrong direction */
|
2007-05-20 19:14:08 +00:00
|
|
|
if (build_over_road && (GetAllRoadBits(tile) & ((Axis)p1 == AXIS_X ? ROAD_Y : ROAD_X)) != 0) return_cmd_error(STR_DRIVE_THROUGH_ERROR_DIRECTION);
|
2007-05-26 14:24:19 +00:00
|
|
|
|
2009-01-11 14:26:11 +00:00
|
|
|
if (!CheckIfAuthorityAllowsNewStation(tile, flags)) return CMD_ERROR;
|
2007-05-26 14:24:19 +00:00
|
|
|
|
2008-09-13 10:41:00 +00:00
|
|
|
RoadTypes cur_rts = IsNormalRoadTile(tile) ? GetRoadTypes(tile) : ROADTYPES_NONE;
|
|
|
|
uint num_roadbits = 0;
|
2007-02-14 20:58:19 +00:00
|
|
|
/* Not allowed to build over this road */
|
2007-03-31 09:53:40 +00:00
|
|
|
if (build_over_road) {
|
2008-01-22 15:40:29 +00:00
|
|
|
/* there is a road, check if we can build road+tram stop over it */
|
|
|
|
if (HasBit(cur_rts, ROADTYPE_ROAD)) {
|
2009-03-02 22:57:47 +00:00
|
|
|
road_owner = GetRoadOwner(tile, ROADTYPE_ROAD);
|
2008-05-24 19:36:20 +00:00
|
|
|
if (road_owner == OWNER_TOWN) {
|
2008-05-29 15:13:28 +00:00
|
|
|
if (!_settings_game.construction.road_stop_on_town_road) return_cmd_error(STR_DRIVE_THROUGH_ERROR_ON_TOWN_ROAD);
|
2009-03-02 22:57:47 +00:00
|
|
|
} else if (!_settings_game.construction.road_stop_on_competitor_road && road_owner != OWNER_NONE && !CheckOwnership(road_owner)) {
|
|
|
|
return CMD_ERROR;
|
2008-05-24 19:36:20 +00:00
|
|
|
}
|
2008-09-13 10:41:00 +00:00
|
|
|
num_roadbits += CountBits(GetRoadBits(tile, ROADTYPE_ROAD));
|
2008-01-22 15:40:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* there is a tram, check if we can build road+tram stop over it */
|
|
|
|
if (HasBit(cur_rts, ROADTYPE_TRAM)) {
|
2009-03-02 22:57:47 +00:00
|
|
|
tram_owner = GetRoadOwner(tile, ROADTYPE_TRAM);
|
|
|
|
if (!_settings_game.construction.road_stop_on_competitor_road && tram_owner != OWNER_NONE && !CheckOwnership(tram_owner)) {
|
|
|
|
return CMD_ERROR;
|
|
|
|
}
|
2008-09-13 10:41:00 +00:00
|
|
|
num_roadbits += CountBits(GetRoadBits(tile, ROADTYPE_TRAM));
|
2008-01-22 15:40:29 +00:00
|
|
|
}
|
|
|
|
|
2007-05-31 07:34:40 +00:00
|
|
|
/* Don't allow building the roadstop when vehicles are already driving on it */
|
|
|
|
if (!EnsureNoVehicleOnGround(tile)) return CMD_ERROR;
|
|
|
|
|
2007-05-20 19:14:08 +00:00
|
|
|
/* Do not remove roadtypes! */
|
2007-05-26 14:24:19 +00:00
|
|
|
rts |= cur_rts;
|
2007-03-31 09:53:40 +00:00
|
|
|
}
|
2008-04-17 20:03:28 +00:00
|
|
|
|
|
|
|
CommandCost cost = CheckFlatLandBelow(tile, 1, 1, flags, is_drive_through ? 5 << p1 : 1 << p1, NULL, !build_over_road);
|
2007-05-27 01:03:59 +00:00
|
|
|
if (CmdFailed(cost)) return cost;
|
2008-09-13 10:41:00 +00:00
|
|
|
uint roadbits_to_build = CountBits(rts) * 2 - num_roadbits;
|
|
|
|
cost.AddCost(_price.build_road * roadbits_to_build);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-05-23 17:33:03 +00:00
|
|
|
Station *st = NULL;
|
|
|
|
|
2008-05-29 15:13:28 +00:00
|
|
|
if (!_settings_game.station.adjacent_stations || !HasBit(p2, 5)) {
|
2007-05-23 17:33:03 +00:00
|
|
|
st = GetStationAround(tile, 1, 1, INVALID_STATION);
|
|
|
|
if (st == CHECK_STATIONS_ERR) return CMD_ERROR;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-01-08 16:35:45 +00:00
|
|
|
/* Distant join */
|
2009-05-16 23:34:14 +00:00
|
|
|
if (st == NULL && distant_join) st = Station::Get(station_to_join);
|
2009-01-08 16:35:45 +00:00
|
|
|
|
2009-01-05 21:06:38 +00:00
|
|
|
/* Find a deleted station close to us */
|
2009-04-10 22:47:19 +00:00
|
|
|
if (st == NULL && reuse) st = GetClosestDeletedStation(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* give us a road stop in the list, and check if something went wrong */
|
2009-04-21 23:40:56 +00:00
|
|
|
if (!RoadStop::CanAllocateItem()) return_cmd_error(type ? STR_ERROR_TOO_MANY_TRUCK_STOPS : STR_ERROR_TOO_MANY_BUS_STOPS);
|
2007-01-25 01:29:24 +00:00
|
|
|
|
2006-02-06 09:18:04 +00:00
|
|
|
if (st != NULL &&
|
2008-03-31 00:06:17 +00:00
|
|
|
GetNumRoadStopsInStation(st, ROADSTOP_BUS) + GetNumRoadStopsInStation(st, ROADSTOP_TRUCK) >= RoadStop::LIMIT) {
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(type ? STR_ERROR_TOO_MANY_TRUCK_STOPS : STR_ERROR_TOO_MANY_BUS_STOPS);
|
2006-02-01 06:32:03 +00:00
|
|
|
}
|
2005-01-29 19:41:44 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (st != NULL) {
|
2008-09-30 20:39:50 +00:00
|
|
|
if (st->owner != _current_company) {
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_TOO_CLOSE_TO_ANOTHER_STATION);
|
2006-02-01 06:32:03 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-01-14 23:02:12 +00:00
|
|
|
if (!st->rect.BeforeAddTile(tile, StationRect::ADD_TEST)) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2007-01-14 19:18:50 +00:00
|
|
|
/* allocate and initialize new station */
|
2009-04-21 23:40:56 +00:00
|
|
|
if (!Station::CanAllocateItem()) return_cmd_error(STR_ERROR_TOO_MANY_STATIONS_LOADING);
|
2007-01-14 19:18:50 +00:00
|
|
|
|
2008-04-23 22:16:41 +00:00
|
|
|
if (flags & DC_EXEC) {
|
2008-04-28 23:34:23 +00:00
|
|
|
st = new Station(tile);
|
2007-01-14 19:18:50 +00:00
|
|
|
|
2008-04-24 18:30:41 +00:00
|
|
|
st->town = ClosestTownFromTile(tile, UINT_MAX);
|
2008-04-25 15:22:32 +00:00
|
|
|
st->string_id = GenerateStationName(st, tile, STATIONNAMING_ROAD);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-05-17 01:00:56 +00:00
|
|
|
if (Company::IsValidID(_current_company)) {
|
2008-09-30 20:39:50 +00:00
|
|
|
SetBit(st->town->have_ratings, _current_company);
|
2008-04-23 22:16:41 +00:00
|
|
|
}
|
|
|
|
st->sign.width_1 = 0;
|
2006-02-01 06:32:03 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-06-18 19:53:50 +00:00
|
|
|
cost.AddCost((type) ? _price.build_truck_station : _price.build_bus_station);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (flags & DC_EXEC) {
|
2008-04-23 22:16:41 +00:00
|
|
|
RoadStop *road_stop = new RoadStop(tile);
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Insert into linked list of RoadStops */
|
2007-02-02 08:23:48 +00:00
|
|
|
RoadStop **currstop = FindRoadStopSpot(type, st);
|
2005-01-29 19:41:44 +00:00
|
|
|
*currstop = road_stop;
|
|
|
|
|
2009-03-15 00:32:18 +00:00
|
|
|
/* initialize an empty station */
|
2007-01-18 09:34:44 +00:00
|
|
|
st->AddFacility((type) ? FACIL_TRUCK_STOP : FACIL_BUS_STOP, tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-01-14 23:02:12 +00:00
|
|
|
st->rect.BeforeAddTile(tile, StationRect::ADD_TRY);
|
2006-12-27 23:11:43 +00:00
|
|
|
|
2008-03-31 00:06:17 +00:00
|
|
|
RoadStopType rs_type = type ? ROADSTOP_TRUCK : ROADSTOP_BUS;
|
2007-02-21 19:46:37 +00:00
|
|
|
if (is_drive_through) {
|
2009-03-02 22:57:47 +00:00
|
|
|
MakeDriveThroughRoadStop(tile, st->owner, road_owner, tram_owner, st->index, rs_type, rts, (Axis)p1);
|
2007-02-21 19:46:37 +00:00
|
|
|
} else {
|
2007-05-20 19:14:08 +00:00
|
|
|
MakeRoadStop(tile, st->owner, st->index, rs_type, rts, (DiagDirection)p1);
|
2007-02-21 19:46:37 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
UpdateStationVirtCoordDirty(st);
|
|
|
|
UpdateStationAcceptance(st, false);
|
2009-01-08 16:35:45 +00:00
|
|
|
InvalidateWindowData(WC_SELECT_STATION, 0, 0);
|
2008-05-18 16:51:44 +00:00
|
|
|
InvalidateWindowData(WC_STATION_LIST, st->owner, 0);
|
2007-12-05 19:13:42 +00:00
|
|
|
InvalidateWindowWidget(WC_STATION_VIEW, st->index, SVW_ROADVEHS);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
return cost;
|
|
|
|
}
|
|
|
|
|
2008-02-09 17:30:13 +00:00
|
|
|
|
2008-08-01 15:07:31 +00:00
|
|
|
static Vehicle *ClearRoadStopStatusEnum(Vehicle *v, void *)
|
2008-02-09 17:30:13 +00:00
|
|
|
{
|
2009-05-22 20:22:20 +00:00
|
|
|
if (v->type == VEH_ROAD) ClrBit(((RoadVehicle *)v)->state, RVS_IN_DT_ROAD_STOP);
|
2008-02-09 17:30:13 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/** Remove a bus station
|
|
|
|
* @param st Station to remove
|
|
|
|
* @param flags operation to perform
|
|
|
|
* @param tile TileIndex been queried
|
|
|
|
* @return cost or failure of operation
|
|
|
|
*/
|
2009-02-09 21:20:05 +00:00
|
|
|
static CommandCost RemoveRoadStop(Station *st, DoCommandFlag flags, TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-09-30 20:39:50 +00:00
|
|
|
if (_current_company != OWNER_WATER && !CheckOwnership(st->owner)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
return CMD_ERROR;
|
2006-02-01 06:32:03 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
bool is_truck = IsTruckStop(tile);
|
|
|
|
|
|
|
|
RoadStop **primary_stop;
|
|
|
|
RoadStop *cur_stop;
|
2005-11-14 19:48:04 +00:00
|
|
|
if (is_truck) { // truck stop
|
2005-01-29 19:41:44 +00:00
|
|
|
primary_stop = &st->truck_stops;
|
2008-03-31 00:06:17 +00:00
|
|
|
cur_stop = GetRoadStopByTile(tile, ROADSTOP_TRUCK);
|
2005-01-29 19:41:44 +00:00
|
|
|
} else {
|
|
|
|
primary_stop = &st->bus_stops;
|
2008-03-31 00:06:17 +00:00
|
|
|
cur_stop = GetRoadStopByTile(tile, ROADSTOP_BUS);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-01-29 19:41:44 +00:00
|
|
|
assert(cur_stop != NULL);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-02-09 17:30:13 +00:00
|
|
|
/* don't do the check for drive-through road stops when company bankrupts */
|
|
|
|
if (IsDriveThroughStopTile(tile) && (flags & DC_BANKRUPT)) {
|
|
|
|
/* remove the 'going through road stop' status from all vehicles on that tile */
|
2008-09-07 11:23:10 +00:00
|
|
|
if (flags & DC_EXEC) FindVehicleOnPos(tile, NULL, &ClearRoadStopStatusEnum);
|
2008-02-09 17:30:13 +00:00
|
|
|
} else {
|
|
|
|
if (!EnsureNoVehicleOnGround(tile)) return CMD_ERROR;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (flags & DC_EXEC) {
|
2007-01-28 21:54:40 +00:00
|
|
|
if (*primary_stop == cur_stop) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* removed the first stop in the list */
|
2007-01-28 21:54:40 +00:00
|
|
|
*primary_stop = cur_stop->next;
|
2007-10-26 20:42:03 +00:00
|
|
|
/* removed the only stop? */
|
2007-01-28 21:54:40 +00:00
|
|
|
if (*primary_stop == NULL) {
|
|
|
|
st->facilities &= (is_truck ? ~FACIL_TRUCK_STOP : ~FACIL_BUS_STOP);
|
|
|
|
}
|
|
|
|
} else {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* tell the predecessor in the list to skip this stop */
|
2007-01-28 21:54:40 +00:00
|
|
|
RoadStop *pred = *primary_stop;
|
|
|
|
while (pred->next != cur_stop) pred = pred->next;
|
|
|
|
pred->next = cur_stop->next;
|
2005-01-29 19:41:44 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-12-05 19:13:42 +00:00
|
|
|
InvalidateWindowWidget(WC_STATION_VIEW, st->index, SVW_ROADVEHS);
|
2007-01-17 11:15:51 +00:00
|
|
|
delete cur_stop;
|
2008-10-07 18:46:12 +00:00
|
|
|
|
|
|
|
/* Make sure no vehicle is going to the old roadstop */
|
|
|
|
Vehicle *v;
|
|
|
|
FOR_ALL_VEHICLES(v) {
|
|
|
|
if (v->type == VEH_ROAD &&
|
|
|
|
v->First() == v &&
|
|
|
|
v->current_order.IsType(OT_GOTO_STATION) &&
|
|
|
|
v->dest_tile == tile) {
|
|
|
|
v->dest_tile = v->GetOrderStationLocation(st->index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-26 19:14:02 +00:00
|
|
|
DoClearSquare(tile);
|
2007-01-14 23:02:12 +00:00
|
|
|
st->rect.AfterRemoveTile(st, tile);
|
2006-08-26 19:14:02 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
UpdateStationVirtCoordDirty(st);
|
|
|
|
DeleteStationIfEmpty(st);
|
|
|
|
}
|
|
|
|
|
2008-01-09 16:55:48 +00:00
|
|
|
return CommandCost(EXPENSES_CONSTRUCTION, (is_truck) ? _price.remove_truck_station : _price.remove_bus_station);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-02-14 16:37:16 +00:00
|
|
|
/** Remove a bus or truck stop
|
|
|
|
* @param tile tile to remove the stop from
|
2007-04-17 21:09:38 +00:00
|
|
|
* @param flags operation to perform
|
2007-02-14 16:37:16 +00:00
|
|
|
* @param p1 not used
|
|
|
|
* @param p2 bit 0: 0 for Bus stops, 1 for truck stops
|
|
|
|
*/
|
2009-02-09 21:20:05 +00:00
|
|
|
CommandCost CmdRemoveRoadStop(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text)
|
2007-02-14 16:37:16 +00:00
|
|
|
{
|
|
|
|
/* Make sure the specified tile is a road stop of the correct type */
|
2008-06-11 15:08:52 +00:00
|
|
|
if (!IsTileType(tile, MP_STATION) || !IsRoadStop(tile) || (uint32)GetRoadStopType(tile) != GB(p2, 0, 1)) return CMD_ERROR;
|
2007-02-18 11:27:09 +00:00
|
|
|
Station *st = GetStationByTile(tile);
|
2007-02-14 16:37:16 +00:00
|
|
|
/* Save the stop info before it is removed */
|
2007-02-18 11:27:09 +00:00
|
|
|
bool is_drive_through = IsDriveThroughStopTile(tile);
|
2007-05-20 19:14:08 +00:00
|
|
|
RoadTypes rts = GetRoadTypes(tile);
|
2007-05-21 16:58:23 +00:00
|
|
|
RoadBits road_bits = IsDriveThroughStopTile(tile) ?
|
|
|
|
((GetRoadStopDir(tile) == DIAGDIR_NE) ? ROAD_X : ROAD_Y) :
|
|
|
|
DiagDirToRoadBits(GetRoadStopDir(tile));
|
2007-02-14 16:37:16 +00:00
|
|
|
|
2009-03-16 20:45:32 +00:00
|
|
|
Owner road_owner = GetRoadOwner(tile, ROADTYPE_ROAD);
|
|
|
|
Owner tram_owner = GetRoadOwner(tile, ROADTYPE_TRAM);
|
2007-06-18 10:48:15 +00:00
|
|
|
CommandCost ret = RemoveRoadStop(st, flags, tile);
|
2007-02-14 16:37:16 +00:00
|
|
|
|
|
|
|
/* If the stop was a drive-through stop replace the road */
|
2007-06-18 16:42:40 +00:00
|
|
|
if ((flags & DC_EXEC) && CmdSucceeded(ret) && is_drive_through) {
|
2007-05-28 20:46:59 +00:00
|
|
|
/* Rebuild the drive throuhg road stop. As a road stop can only be
|
2008-09-30 20:39:50 +00:00
|
|
|
* removed by the owner of the roadstop, _current_company is the
|
2007-05-28 20:46:59 +00:00
|
|
|
* owner of the road stop. */
|
2008-10-25 13:51:47 +00:00
|
|
|
MakeRoadNormal(tile, road_bits, rts, ClosestTownFromTile(tile, UINT_MAX)->index,
|
2009-03-16 20:45:32 +00:00
|
|
|
road_owner, tram_owner);
|
2007-02-14 16:37:16 +00:00
|
|
|
}
|
2005-01-29 19:41:44 +00:00
|
|
|
|
2007-02-14 16:37:16 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2005-01-29 19:41:44 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* FIXME -- need to move to its corresponding Airport variable*/
|
|
|
|
|
|
|
|
/* Country Airfield (small) */
|
2006-04-03 13:02:33 +00:00
|
|
|
static const byte _airport_sections_country[] = {
|
2004-08-09 17:04:08 +00:00
|
|
|
54, 53, 52, 65,
|
|
|
|
58, 57, 56, 55,
|
|
|
|
64, 63, 63, 62
|
|
|
|
};
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* City Airport (large) */
|
2006-04-03 13:02:33 +00:00
|
|
|
static const byte _airport_sections_town[] = {
|
2005-10-23 13:04:44 +00:00
|
|
|
31, 9, 33, 9, 9, 32,
|
|
|
|
27, 36, 29, 34, 8, 10,
|
2004-08-09 17:04:08 +00:00
|
|
|
30, 11, 35, 13, 20, 21,
|
|
|
|
51, 12, 14, 17, 19, 28,
|
|
|
|
38, 13, 15, 16, 18, 39,
|
|
|
|
26, 22, 23, 24, 25, 26
|
|
|
|
};
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Metropolitain Airport (large) - 2 runways */
|
2006-04-03 13:02:33 +00:00
|
|
|
static const byte _airport_sections_metropolitan[] = {
|
2005-10-23 13:04:44 +00:00
|
|
|
31, 9, 33, 9, 9, 32,
|
|
|
|
27, 36, 29, 34, 8, 10,
|
|
|
|
30, 11, 35, 13, 20, 21,
|
|
|
|
102, 8, 8, 8, 8, 28,
|
|
|
|
83, 84, 84, 84, 84, 83,
|
|
|
|
26, 23, 23, 23, 23, 26
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* International Airport (large) - 2 runways */
|
2006-04-03 13:02:33 +00:00
|
|
|
static const byte _airport_sections_international[] = {
|
2006-04-15 03:08:14 +00:00
|
|
|
88, 89, 89, 89, 89, 89, 88,
|
|
|
|
51, 8, 8, 8, 8, 8, 32,
|
2005-10-23 13:04:44 +00:00
|
|
|
30, 8, 11, 27, 11, 8, 10,
|
2004-08-09 17:04:08 +00:00
|
|
|
32, 8, 11, 27, 11, 8, 114,
|
|
|
|
87, 8, 11, 85, 11, 8, 114,
|
2005-10-23 13:04:44 +00:00
|
|
|
87, 8, 8, 8, 8, 8, 90,
|
|
|
|
26, 23, 23, 23, 23, 23, 26
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Intercontinental Airport (vlarge) - 4 runways */
|
2006-06-23 22:05:40 +00:00
|
|
|
static const byte _airport_sections_intercontinental[] = {
|
2006-06-27 21:25:53 +00:00
|
|
|
102, 120, 89, 89, 89, 89, 89, 89, 118,
|
2007-03-09 10:12:08 +00:00
|
|
|
120, 23, 23, 23, 23, 23, 23, 119, 117,
|
2006-06-27 21:25:53 +00:00
|
|
|
87, 54, 87, 8, 8, 8, 8, 51, 117,
|
|
|
|
87, 162, 87, 85, 116, 116, 8, 9, 10,
|
2006-06-23 22:05:40 +00:00
|
|
|
87, 8, 8, 11, 31, 11, 8, 160, 32,
|
|
|
|
32, 160, 8, 11, 27, 11, 8, 8, 10,
|
|
|
|
87, 8, 8, 11, 30, 11, 8, 8, 10,
|
2006-06-25 13:42:37 +00:00
|
|
|
87, 142, 8, 11, 29, 11, 10, 163, 10,
|
|
|
|
87, 164, 87, 8, 8, 8, 10, 37, 117,
|
2006-06-27 21:25:53 +00:00
|
|
|
87, 120, 89, 89, 89, 89, 89, 89, 119,
|
2007-03-09 10:12:08 +00:00
|
|
|
121, 23, 23, 23, 23, 23, 23, 119, 37
|
2006-06-23 22:05:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Commuter Airfield (small) */
|
2006-06-23 22:05:40 +00:00
|
|
|
static const byte _airport_sections_commuter[] = {
|
|
|
|
85, 30, 115, 115, 32,
|
|
|
|
87, 8, 8, 8, 10,
|
|
|
|
87, 11, 11, 11, 10,
|
|
|
|
26, 23, 23, 23, 26
|
|
|
|
};
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Heliport */
|
2006-04-03 13:02:33 +00:00
|
|
|
static const byte _airport_sections_heliport[] = {
|
2004-08-09 17:04:08 +00:00
|
|
|
66,
|
|
|
|
};
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Helidepot */
|
2006-06-23 22:05:40 +00:00
|
|
|
static const byte _airport_sections_helidepot[] = {
|
|
|
|
124, 32,
|
|
|
|
122, 123
|
|
|
|
};
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* Helistation */
|
2006-06-23 22:05:40 +00:00
|
|
|
static const byte _airport_sections_helistation[] = {
|
|
|
|
32, 134, 159, 158,
|
|
|
|
161, 142, 142, 157
|
|
|
|
};
|
|
|
|
|
2006-04-07 09:37:04 +00:00
|
|
|
static const byte * const _airport_sections[] = {
|
2006-06-23 22:05:40 +00:00
|
|
|
_airport_sections_country, // Country Airfield (small)
|
|
|
|
_airport_sections_town, // City Airport (large)
|
|
|
|
_airport_sections_heliport, // Heliport
|
|
|
|
_airport_sections_metropolitan, // Metropolitain Airport (large)
|
|
|
|
_airport_sections_international, // International Airport (xlarge)
|
|
|
|
_airport_sections_commuter, // Commuter Airport (small)
|
|
|
|
_airport_sections_helidepot, // Helidepot
|
|
|
|
_airport_sections_intercontinental, // Intercontinental Airport (xxlarge)
|
|
|
|
_airport_sections_helistation // Helistation
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
2009-01-26 21:09:17 +00:00
|
|
|
/**
|
|
|
|
* Computes the minimal distance from town's xy to any airport's tile.
|
|
|
|
* @param afc airport's description
|
|
|
|
* @param town_tile town's tile (t->xy)
|
|
|
|
* @param airport_tile st->airport_tile
|
|
|
|
* @return minimal manhattan distance from town_tile to any airport's tile
|
|
|
|
*/
|
|
|
|
static uint GetMinimalAirportDistanceToTile(const AirportFTAClass *afc, TileIndex town_tile, TileIndex airport_tile)
|
|
|
|
{
|
|
|
|
uint ttx = TileX(town_tile); // X, Y of town
|
|
|
|
uint tty = TileY(town_tile);
|
|
|
|
|
|
|
|
uint atx = TileX(airport_tile); // X, Y of northern airport corner
|
|
|
|
uint aty = TileY(airport_tile);
|
|
|
|
|
|
|
|
uint btx = TileX(airport_tile) + afc->size_x - 1; // X, Y of southern corner
|
|
|
|
uint bty = TileY(airport_tile) + afc->size_y - 1;
|
|
|
|
|
|
|
|
/* if ttx < atx, dx = atx - ttx
|
|
|
|
* if atx <= ttx <= btx, dx = 0
|
|
|
|
* else, dx = ttx - btx (similiar for dy) */
|
|
|
|
uint dx = ttx < atx ? atx - ttx : (ttx <= btx ? 0 : ttx - btx);
|
|
|
|
uint dy = tty < aty ? aty - tty : (tty <= bty ? 0 : tty - bty);
|
|
|
|
|
|
|
|
return dx + dy;
|
|
|
|
}
|
2008-05-24 02:54:47 +00:00
|
|
|
|
|
|
|
/** Get a possible noise reduction factor based on distance from town center.
|
|
|
|
* The further you get, the less noise you generate.
|
|
|
|
* So all those folks at city council can now happily slee... work in their offices
|
|
|
|
* @param afc AirportFTAClass pointer of the class being proposed
|
|
|
|
* @param town_tile TileIndex of town's center, the one who will receive the airport's candidature
|
2008-07-20 15:50:41 +00:00
|
|
|
* @param tile TileIndex of northern tile of an airport (present or to-be-built), NOT the station tile
|
2008-05-24 02:54:47 +00:00
|
|
|
* @return the noise that will be generated, according to distance
|
|
|
|
*/
|
2009-01-12 17:11:45 +00:00
|
|
|
uint8 GetAirportNoiseLevelForTown(const AirportFTAClass *afc, TileIndex town_tile, TileIndex tile)
|
2008-05-24 02:54:47 +00:00
|
|
|
{
|
|
|
|
/* 0 cannot be accounted, and 1 is the lowest that can be reduced from town.
|
|
|
|
* So no need to go any further*/
|
|
|
|
if (afc->noise_level < 2) return afc->noise_level;
|
|
|
|
|
2009-01-26 21:09:17 +00:00
|
|
|
uint distance = GetMinimalAirportDistanceToTile(afc, town_tile, tile);
|
2008-05-24 02:54:47 +00:00
|
|
|
|
|
|
|
/* The steps for measuring noise reduction are based on the "magical" (and arbitrary) 8 base distance
|
|
|
|
* adding the town_council_tolerance 4 times, as a way to graduate, depending of the tolerance.
|
|
|
|
* Basically, it says that the less tolerant a town is, the bigger the distance before
|
|
|
|
* an actual decrease can be granted */
|
2008-05-29 15:13:28 +00:00
|
|
|
uint8 town_tolerance_distance = 8 + (_settings_game.difficulty.town_council_tolerance * 4);
|
2008-05-24 02:54:47 +00:00
|
|
|
|
|
|
|
/* now, we want to have the distance segmented using the distance judged bareable by town
|
|
|
|
* This will give us the coefficient of reduction the distance provides. */
|
2008-05-27 18:20:14 +00:00
|
|
|
uint noise_reduction = distance / town_tolerance_distance;
|
2008-05-24 02:54:47 +00:00
|
|
|
|
2008-05-27 18:20:14 +00:00
|
|
|
/* If the noise reduction equals the airport noise itself, don't give it for free.
|
2008-05-24 02:54:47 +00:00
|
|
|
* Otherwise, simply reduce the airport's level. */
|
2008-05-27 18:20:14 +00:00
|
|
|
return noise_reduction >= afc->noise_level ? 1 : afc->noise_level - noise_reduction;
|
2008-05-24 02:54:47 +00:00
|
|
|
}
|
|
|
|
|
2009-01-26 21:09:17 +00:00
|
|
|
/**
|
|
|
|
* Finds the town nearest to given airport. Based on minimal manhattan distance to any airport's tile.
|
|
|
|
* If two towns have the same distance, town with lower index is returned.
|
|
|
|
* @param afc airport's description
|
|
|
|
* @param airport_tile st->airport_tile
|
|
|
|
* @return nearest town to airport
|
|
|
|
*/
|
|
|
|
Town *AirportGetNearestTown(const AirportFTAClass *afc, TileIndex airport_tile)
|
|
|
|
{
|
|
|
|
Town *t, *nearest = NULL;
|
|
|
|
uint add = afc->size_x + afc->size_y - 2; // GetMinimalAirportDistanceToTile can differ from DistanceManhattan by this much
|
|
|
|
uint mindist = UINT_MAX - add; // prevent overflow
|
|
|
|
FOR_ALL_TOWNS(t) {
|
|
|
|
if (DistanceManhattan(t->xy, airport_tile) < mindist + add) { // avoid calling GetMinimalAirportDistanceToTile too often
|
|
|
|
uint dist = GetMinimalAirportDistanceToTile(afc, t->xy, airport_tile);
|
|
|
|
if (dist < mindist) {
|
|
|
|
nearest = t;
|
|
|
|
mindist = dist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nearest;
|
|
|
|
}
|
|
|
|
|
2008-07-20 15:50:41 +00:00
|
|
|
|
|
|
|
/** Recalculate the noise generated by the airports of each town */
|
|
|
|
void UpdateAirportsNoise()
|
|
|
|
{
|
|
|
|
Town *t;
|
|
|
|
const Station *st;
|
|
|
|
|
|
|
|
FOR_ALL_TOWNS(t) t->noise_reached = 0;
|
|
|
|
|
|
|
|
FOR_ALL_STATIONS(st) {
|
2008-12-26 18:01:15 +00:00
|
|
|
if (st->airport_tile != INVALID_TILE) {
|
2009-01-26 21:09:17 +00:00
|
|
|
const AirportFTAClass *afc = GetAirport(st->airport_type);
|
|
|
|
Town *nearest = AirportGetNearestTown(afc, st->airport_tile);
|
|
|
|
nearest->noise_reached += GetAirportNoiseLevelForTown(afc, nearest->xy, st->airport_tile);
|
2008-07-20 15:50:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-09 22:33:00 +00:00
|
|
|
/** Place an Airport.
|
2006-04-10 07:15:58 +00:00
|
|
|
* @param tile tile where airport will be built
|
2007-04-17 21:09:38 +00:00
|
|
|
* @param flags operation to perform
|
2005-05-09 22:33:00 +00:00
|
|
|
* @param p1 airport type, @see airport.h
|
2009-01-08 16:35:45 +00:00
|
|
|
* @param p2 various bitstuffed elements
|
|
|
|
* - p2 = (bit 0) - allow airports directly adjacent to other airports.
|
|
|
|
* - p2 = (bit 16-31) - station ID to join (INVALID_STATION if build new one)
|
2004-08-09 17:04:08 +00:00
|
|
|
*/
|
2009-02-09 21:20:05 +00:00
|
|
|
CommandCost CmdBuildAirport(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2004-09-10 19:02:27 +00:00
|
|
|
bool airport_upgrade = true;
|
2009-01-08 16:35:45 +00:00
|
|
|
StationID station_to_join = GB(p2, 16, 16);
|
2009-04-10 22:47:19 +00:00
|
|
|
bool reuse = (station_to_join != NEW_STATION);
|
|
|
|
if (!reuse) station_to_join = INVALID_STATION;
|
2009-01-08 16:35:45 +00:00
|
|
|
bool distant_join = (station_to_join != INVALID_STATION);
|
|
|
|
|
2009-05-17 01:00:56 +00:00
|
|
|
if (distant_join && (!_settings_game.station.distant_join_stations || !Station::IsValidID(station_to_join))) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-05-09 22:33:00 +00:00
|
|
|
/* Check if a valid, buildable airport was chosen for construction */
|
2009-05-14 23:40:03 +00:00
|
|
|
if (p1 >= lengthof(_airport_sections) || !HasBit(GetValidAirports(), p1)) return CMD_ERROR;
|
2005-05-09 22:33:00 +00:00
|
|
|
|
2009-01-11 14:26:11 +00:00
|
|
|
if (!CheckIfAuthorityAllowsNewStation(tile, flags)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
return CMD_ERROR;
|
2008-04-17 20:03:28 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-17 20:03:28 +00:00
|
|
|
Town *t = ClosestTownFromTile(tile, UINT_MAX);
|
2007-02-18 11:27:09 +00:00
|
|
|
const AirportFTAClass *afc = GetAirport(p1);
|
|
|
|
int w = afc->size_x;
|
|
|
|
int h = afc->size_y;
|
2008-05-02 02:06:57 +00:00
|
|
|
Station *st = NULL;
|
|
|
|
|
2008-05-29 15:13:28 +00:00
|
|
|
if (w > _settings_game.station.station_spread || h > _settings_game.station.station_spread) {
|
2009-04-21 23:40:56 +00:00
|
|
|
_error_message = STR_ERROR_STATION_TOO_SPREAD_OUT;
|
2008-05-02 02:06:57 +00:00
|
|
|
return CMD_ERROR;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-01-09 16:55:48 +00:00
|
|
|
CommandCost cost = CheckFlatLandBelow(tile, w, h, flags, 0, NULL);
|
|
|
|
if (CmdFailed(cost)) return cost;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-05-24 02:54:47 +00:00
|
|
|
/* Go get the final noise level, that is base noise minus factor from distance to town center */
|
2009-01-26 21:09:17 +00:00
|
|
|
Town *nearest = AirportGetNearestTown(afc, tile);
|
|
|
|
uint newnoise_level = GetAirportNoiseLevelForTown(afc, nearest->xy, tile);
|
2008-05-24 02:54:47 +00:00
|
|
|
|
|
|
|
/* Check if local auth would allow a new airport */
|
2009-01-29 03:12:31 +00:00
|
|
|
StringID authority_refuse_message = STR_NULL;
|
2008-05-24 02:54:47 +00:00
|
|
|
|
2008-05-29 15:13:28 +00:00
|
|
|
if (_settings_game.economy.station_noise_level) {
|
2008-05-24 02:54:47 +00:00
|
|
|
/* do not allow to build a new airport if this raise the town noise over the maximum allowed by town */
|
2009-01-29 03:12:31 +00:00
|
|
|
if ((nearest->noise_reached + newnoise_level) > nearest->MaxTownNoise()) {
|
|
|
|
authority_refuse_message = STR_LOCAL_AUTHORITY_REFUSES_NOISE;
|
|
|
|
}
|
2008-05-24 02:54:47 +00:00
|
|
|
} else {
|
|
|
|
uint num = 0;
|
|
|
|
const Station *st;
|
|
|
|
FOR_ALL_STATIONS(st) {
|
|
|
|
if (st->town == t && st->facilities & FACIL_AIRPORT && st->airport_type != AT_OILRIG) num++;
|
|
|
|
}
|
2009-01-29 03:12:31 +00:00
|
|
|
if (num >= 2) {
|
2009-04-21 23:40:56 +00:00
|
|
|
authority_refuse_message = STR_ERROR_LOCAL_AUTHORITY_REFUSES_AIRPORT;
|
2009-01-29 03:12:31 +00:00
|
|
|
}
|
2008-05-02 02:06:57 +00:00
|
|
|
}
|
2008-05-24 02:54:47 +00:00
|
|
|
|
2009-01-29 03:12:31 +00:00
|
|
|
if (authority_refuse_message != STR_NULL) {
|
2008-05-02 02:06:57 +00:00
|
|
|
SetDParam(0, t->index);
|
2009-01-29 03:12:31 +00:00
|
|
|
return_cmd_error(authority_refuse_message);
|
2008-05-02 02:06:57 +00:00
|
|
|
}
|
2007-05-23 17:33:03 +00:00
|
|
|
|
2008-05-29 15:13:28 +00:00
|
|
|
if (!_settings_game.station.adjacent_stations || !HasBit(p2, 0)) {
|
2007-05-23 17:33:03 +00:00
|
|
|
st = GetStationAround(tile, w, h, INVALID_STATION);
|
|
|
|
if (st == CHECK_STATIONS_ERR) return CMD_ERROR;
|
2008-05-02 02:06:57 +00:00
|
|
|
} else {
|
|
|
|
st = NULL;
|
2007-05-23 17:33:03 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-01-08 16:35:45 +00:00
|
|
|
/* Distant join */
|
2009-05-16 23:34:14 +00:00
|
|
|
if (st == NULL && distant_join) st = Station::Get(station_to_join);
|
2009-01-08 16:35:45 +00:00
|
|
|
|
2009-01-05 21:06:38 +00:00
|
|
|
/* Find a deleted station close to us */
|
2009-04-10 22:47:19 +00:00
|
|
|
if (st == NULL && reuse) st = GetClosestDeletedStation(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (st != NULL) {
|
2008-09-30 20:39:50 +00:00
|
|
|
if (st->owner != _current_company) {
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_TOO_CLOSE_TO_ANOTHER_STATION);
|
2008-04-17 20:03:28 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-01-14 23:02:12 +00:00
|
|
|
if (!st->rect.BeforeAddRect(tile, w, h, StationRect::ADD_TEST)) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-12-26 18:01:15 +00:00
|
|
|
if (st->airport_tile != INVALID_TILE) {
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_TOO_CLOSE_TO_ANOTHER_AIRPORT);
|
2008-04-17 20:03:28 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
|
|
|
airport_upgrade = false;
|
|
|
|
|
2007-01-14 19:18:50 +00:00
|
|
|
/* allocate and initialize new station */
|
2009-04-21 23:40:56 +00:00
|
|
|
if (!Station::CanAllocateItem()) return_cmd_error(STR_ERROR_TOO_MANY_STATIONS_LOADING);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-23 22:16:41 +00:00
|
|
|
if (flags & DC_EXEC) {
|
2008-04-28 23:34:23 +00:00
|
|
|
st = new Station(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-24 18:17:53 +00:00
|
|
|
st->town = t;
|
2008-04-25 15:22:32 +00:00
|
|
|
st->string_id = GenerateStationName(st, tile, !(afc->flags & AirportFTAClass::AIRPLANES) ? STATIONNAMING_HELIPORT : STATIONNAMING_AIRPORT);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-05-17 01:00:56 +00:00
|
|
|
if (Company::IsValidID(_current_company)) {
|
2008-09-30 20:39:50 +00:00
|
|
|
SetBit(st->town->have_ratings, _current_company);
|
2008-04-23 22:16:41 +00:00
|
|
|
}
|
|
|
|
st->sign.width_1 = 0;
|
2007-02-17 15:03:30 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-06-18 19:53:50 +00:00
|
|
|
cost.AddCost(_price.build_airport * w * h);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (flags & DC_EXEC) {
|
2008-05-24 02:54:47 +00:00
|
|
|
/* Always add the noise, so there will be no need to recalculate when option toggles */
|
2009-01-26 21:09:17 +00:00
|
|
|
nearest->noise_reached += newnoise_level;
|
2008-05-24 02:54:47 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
st->airport_tile = tile;
|
2007-01-18 09:34:44 +00:00
|
|
|
st->AddFacility(FACIL_AIRPORT, tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
st->airport_type = (byte)p1;
|
|
|
|
st->airport_flags = 0;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-01-14 23:02:12 +00:00
|
|
|
st->rect.BeforeAddRect(tile, w, h, StationRect::ADD_TRY);
|
2006-12-27 23:11:43 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
/* if airport was demolished while planes were en-route to it, the
|
|
|
|
* positions can no longer be the same (v->u.air.pos), since different
|
|
|
|
* airports have different indexes. So update all planes en-route to this
|
|
|
|
* airport. Only update if
|
|
|
|
* 1. airport is upgraded
|
|
|
|
* 2. airport is added to existing station (unfortunately unavoideable)
|
|
|
|
*/
|
2005-10-23 13:04:44 +00:00
|
|
|
if (airport_upgrade) UpdateAirplanesOnNewStation(st);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-04-07 09:37:04 +00:00
|
|
|
const byte *b = _airport_sections[p1];
|
2005-10-23 13:04:44 +00:00
|
|
|
|
2006-02-18 14:41:24 +00:00
|
|
|
BEGIN_TILE_LOOP(tile_cur, w, h, tile) {
|
2007-07-16 23:55:22 +00:00
|
|
|
MakeAirport(tile_cur, st->owner, st->index, *b - ((*b < 67) ? 8 : 24));
|
|
|
|
b++;
|
2006-02-18 14:41:24 +00:00
|
|
|
} END_TILE_LOOP(tile_cur, w, h, tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
UpdateStationVirtCoordDirty(st);
|
|
|
|
UpdateStationAcceptance(st, false);
|
2009-01-08 16:35:45 +00:00
|
|
|
InvalidateWindowData(WC_SELECT_STATION, 0, 0);
|
2008-05-18 16:51:44 +00:00
|
|
|
InvalidateWindowData(WC_STATION_LIST, st->owner, 0);
|
2007-12-05 19:13:42 +00:00
|
|
|
InvalidateWindowWidget(WC_STATION_VIEW, st->index, SVW_PLANES);
|
2008-05-24 02:54:47 +00:00
|
|
|
|
2008-05-29 15:13:28 +00:00
|
|
|
if (_settings_game.economy.station_noise_level) {
|
2008-05-24 02:54:47 +00:00
|
|
|
InvalidateWindow(WC_TOWN_VIEW, st->town->index);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return cost;
|
|
|
|
}
|
|
|
|
|
2009-02-09 21:20:05 +00:00
|
|
|
static CommandCost RemoveAirport(Station *st, DoCommandFlag flags)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-09-30 20:39:50 +00:00
|
|
|
if (_current_company != OWNER_WATER && !CheckOwnership(st->owner)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
return CMD_ERROR;
|
2008-04-17 20:03:28 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
TileIndex tile = st->airport_tile;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-16 09:38:43 +00:00
|
|
|
const AirportFTAClass *afc = st->Airport();
|
2007-02-18 11:27:09 +00:00
|
|
|
int w = afc->size_x;
|
|
|
|
int h = afc->size_y;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-01-09 16:55:48 +00:00
|
|
|
CommandCost cost(EXPENSES_CONSTRUCTION, w * h * _price.remove_airport);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-17 20:03:28 +00:00
|
|
|
const Vehicle *v;
|
2007-03-29 13:52:34 +00:00
|
|
|
FOR_ALL_VEHICLES(v) {
|
|
|
|
if (!(v->type == VEH_AIRCRAFT && IsNormalAircraft(v))) continue;
|
|
|
|
|
2009-05-22 20:07:26 +00:00
|
|
|
Aircraft *a = (Aircraft *)v;
|
|
|
|
if (a->targetairport == st->index && a->state != FLYING) return CMD_ERROR;
|
2007-03-29 13:52:34 +00:00
|
|
|
}
|
|
|
|
|
2006-02-18 14:41:24 +00:00
|
|
|
BEGIN_TILE_LOOP(tile_cur, w, h, tile) {
|
2007-09-28 19:24:52 +00:00
|
|
|
if (!EnsureNoVehicleOnGround(tile_cur)) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (flags & DC_EXEC) {
|
|
|
|
DeleteAnimatedTile(tile_cur);
|
|
|
|
DoClearSquare(tile_cur);
|
|
|
|
}
|
2007-04-18 22:10:36 +00:00
|
|
|
} END_TILE_LOOP(tile_cur, w, h, tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (flags & DC_EXEC) {
|
2007-02-18 11:27:09 +00:00
|
|
|
for (uint i = 0; i < afc->nof_depots; ++i) {
|
2006-02-18 14:41:24 +00:00
|
|
|
DeleteWindowById(
|
|
|
|
WC_VEHICLE_DEPOT, tile + ToTileIndexDiff(afc->airport_depots[i])
|
|
|
|
);
|
|
|
|
}
|
2004-12-21 23:27:58 +00:00
|
|
|
|
2008-05-24 02:54:47 +00:00
|
|
|
/* Go get the final noise level, that is base noise minus factor from distance to town center.
|
2009-02-08 12:25:13 +00:00
|
|
|
* And as for construction, always remove it, even if the setting is not set, in order to avoid the
|
2008-05-24 02:54:47 +00:00
|
|
|
* need of recalculation */
|
2009-01-26 21:09:17 +00:00
|
|
|
Town *nearest = AirportGetNearestTown(afc, tile);
|
|
|
|
nearest->noise_reached -= GetAirportNoiseLevelForTown(afc, nearest->xy, tile);
|
2008-05-24 02:54:47 +00:00
|
|
|
|
2007-01-14 23:02:12 +00:00
|
|
|
st->rect.AfterRemoveRect(st, tile, w, h);
|
2006-12-27 23:11:43 +00:00
|
|
|
|
2008-12-26 18:01:15 +00:00
|
|
|
st->airport_tile = INVALID_TILE;
|
2004-08-09 17:04:08 +00:00
|
|
|
st->facilities &= ~FACIL_AIRPORT;
|
|
|
|
|
2007-12-05 19:13:42 +00:00
|
|
|
InvalidateWindowWidget(WC_STATION_VIEW, st->index, SVW_PLANES);
|
2008-05-24 02:54:47 +00:00
|
|
|
|
2008-05-29 15:13:28 +00:00
|
|
|
if (_settings_game.economy.station_noise_level) {
|
2008-05-24 02:54:47 +00:00
|
|
|
InvalidateWindow(WC_TOWN_VIEW, st->town->index);
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
UpdateStationVirtCoordDirty(st);
|
|
|
|
DeleteStationIfEmpty(st);
|
|
|
|
}
|
|
|
|
|
|
|
|
return cost;
|
|
|
|
}
|
|
|
|
|
2005-05-09 22:33:00 +00:00
|
|
|
/** Build a buoy.
|
2006-04-10 07:15:58 +00:00
|
|
|
* @param tile tile where to place the bouy
|
2007-04-17 21:09:38 +00:00
|
|
|
* @param flags operation to perform
|
2005-05-09 22:33:00 +00:00
|
|
|
* @param p1 unused
|
|
|
|
* @param p2 unused
|
2004-08-09 17:04:08 +00:00
|
|
|
*/
|
2009-02-09 21:20:05 +00:00
|
|
|
CommandCost CmdBuildBuoy(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2009-04-21 23:40:56 +00:00
|
|
|
if (!IsWaterTile(tile) || tile == 0) return_cmd_error(STR_ERROR_SITE_UNSUITABLE);
|
|
|
|
if (MayHaveBridgeAbove(tile) && IsBridgeAbove(tile)) return_cmd_error(STR_ERROR_MUST_DEMOLISH_BRIDGE_FIRST);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-04-21 23:40:56 +00:00
|
|
|
if (GetTileSlope(tile, NULL) != SLOPE_FLAT) return_cmd_error(STR_ERROR_SITE_UNSUITABLE);
|
2008-02-02 09:28:43 +00:00
|
|
|
|
2007-01-14 19:18:50 +00:00
|
|
|
/* allocate and initialize new station */
|
2009-04-21 23:40:56 +00:00
|
|
|
if (!Station::CanAllocateItem()) return_cmd_error(STR_ERROR_TOO_MANY_STATIONS_LOADING);
|
2007-01-14 19:18:50 +00:00
|
|
|
|
2008-04-23 22:16:41 +00:00
|
|
|
if (flags & DC_EXEC) {
|
2008-04-28 23:34:23 +00:00
|
|
|
Station *st = new Station(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-24 18:30:41 +00:00
|
|
|
st->town = ClosestTownFromTile(tile, UINT_MAX);
|
2008-04-25 15:22:32 +00:00
|
|
|
st->string_id = GenerateStationName(st, tile, STATIONNAMING_BUOY);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-05-17 01:00:56 +00:00
|
|
|
if (Company::IsValidID(_current_company)) {
|
2008-09-30 20:39:50 +00:00
|
|
|
SetBit(st->town->have_ratings, _current_company);
|
2008-04-23 22:16:41 +00:00
|
|
|
}
|
|
|
|
st->sign.width_1 = 0;
|
2006-02-21 07:41:54 +00:00
|
|
|
st->dock_tile = tile;
|
2004-08-09 17:04:08 +00:00
|
|
|
st->facilities |= FACIL_DOCK;
|
2005-05-02 22:13:20 +00:00
|
|
|
/* Buoys are marked in the Station struct by this flag. Yes, it is this
|
|
|
|
* braindead.. */
|
2004-08-09 17:04:08 +00:00
|
|
|
st->had_vehicle_of_type |= HVOT_BUOY;
|
|
|
|
st->owner = OWNER_NONE;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-17 08:40:09 +00:00
|
|
|
st->build_date = _date;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-02-02 09:28:43 +00:00
|
|
|
MakeBuoy(tile, st->index, GetWaterClass(tile));
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
UpdateStationVirtCoordDirty(st);
|
|
|
|
UpdateStationAcceptance(st, false);
|
2008-05-18 16:51:44 +00:00
|
|
|
InvalidateWindowData(WC_STATION_LIST, st->owner, 0);
|
2007-12-05 19:13:42 +00:00
|
|
|
InvalidateWindowWidget(WC_STATION_VIEW, st->index, SVW_SHIPS);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2008-01-09 16:55:48 +00:00
|
|
|
return CommandCost(EXPENSES_CONSTRUCTION, _price.build_dock);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-12-19 23:35:14 +00:00
|
|
|
/**
|
2008-09-30 20:39:50 +00:00
|
|
|
* Tests whether the company's vehicles have this station in orders
|
|
|
|
* When company == INVALID_COMPANY, then check all vehicles
|
2007-12-19 23:35:14 +00:00
|
|
|
* @param station station ID
|
2008-09-30 20:39:50 +00:00
|
|
|
* @param company company ID, INVALID_COMPANY to disable the check
|
2007-12-19 23:35:14 +00:00
|
|
|
*/
|
2008-09-30 20:39:50 +00:00
|
|
|
bool HasStationInUse(StationID station, CompanyID company)
|
2005-01-20 22:19:34 +00:00
|
|
|
{
|
|
|
|
const Vehicle *v;
|
|
|
|
FOR_ALL_VEHICLES(v) {
|
2008-09-30 20:39:50 +00:00
|
|
|
if (company == INVALID_COMPANY || v->owner == company) {
|
2005-01-20 22:19:34 +00:00
|
|
|
const Order *order;
|
|
|
|
FOR_VEHICLE_ORDERS(v, order) {
|
2008-04-06 07:48:51 +00:00
|
|
|
if (order->IsType(OT_GOTO_STATION) && order->GetDestination() == station) {
|
2005-01-20 22:19:34 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-02-09 21:20:05 +00:00
|
|
|
static CommandCost RemoveBuoy(Station *st, DoCommandFlag flags)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2009-05-18 00:33:24 +00:00
|
|
|
/* XXX: strange stuff, allow clearing as invalid company when clearing landscape */
|
|
|
|
if (!Company::IsValidID(_current_company) && !(flags & DC_BANKRUPT)) return_cmd_error(INVALID_STRING_ID);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
TileIndex tile = st->dock_tile;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
if (HasStationInUse(st->index, INVALID_COMPANY)) return_cmd_error(STR_BUOY_IS_IN_USE);
|
2008-02-09 17:30:13 +00:00
|
|
|
/* remove the buoy if there is a ship on tile when company goes bankrupt... */
|
|
|
|
if (!(flags & DC_BANKRUPT) && !EnsureNoVehicleOnGround(tile)) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (flags & DC_EXEC) {
|
2008-12-26 18:01:15 +00:00
|
|
|
st->dock_tile = INVALID_TILE;
|
2005-05-02 22:13:20 +00:00
|
|
|
/* Buoys are marked in the Station struct by this flag. Yes, it is this
|
|
|
|
* braindead.. */
|
2004-08-09 17:04:08 +00:00
|
|
|
st->facilities &= ~FACIL_DOCK;
|
|
|
|
st->had_vehicle_of_type &= ~HVOT_BUOY;
|
|
|
|
|
2007-12-05 19:13:42 +00:00
|
|
|
InvalidateWindowWidget(WC_STATION_VIEW, st->index, SVW_SHIPS);
|
|
|
|
|
2007-02-07 17:52:21 +00:00
|
|
|
/* We have to set the water tile's state to the same state as before the
|
|
|
|
* buoy was placed. Otherwise one could plant a buoy on a canal edge,
|
|
|
|
* remove it and flood the land (if the canal edge is at level 0) */
|
2008-02-02 09:28:43 +00:00
|
|
|
MakeWaterKeepingClass(tile, GetTileOwner(tile));
|
2006-03-01 21:00:44 +00:00
|
|
|
MarkTileDirtyByTile(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
UpdateStationVirtCoordDirty(st);
|
|
|
|
DeleteStationIfEmpty(st);
|
|
|
|
}
|
|
|
|
|
2008-01-09 16:55:48 +00:00
|
|
|
return CommandCost(EXPENSES_CONSTRUCTION, _price.remove_truck_station);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-01-06 11:39:00 +00:00
|
|
|
static const TileIndexDiffC _dock_tileoffs_chkaround[] = {
|
|
|
|
{-1, 0},
|
|
|
|
{ 0, 0},
|
|
|
|
{ 0, 0},
|
|
|
|
{ 0, -1}
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
2006-08-22 14:38:37 +00:00
|
|
|
static const byte _dock_w_chk[4] = { 2, 1, 2, 1 };
|
|
|
|
static const byte _dock_h_chk[4] = { 1, 2, 1, 2 };
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-05-09 22:33:00 +00:00
|
|
|
/** Build a dock/haven.
|
2006-04-10 07:15:58 +00:00
|
|
|
* @param tile tile where dock will be built
|
2007-04-17 21:09:38 +00:00
|
|
|
* @param flags operation to perform
|
2007-05-23 17:33:03 +00:00
|
|
|
* @param p1 (bit 0) - allow docks directly adjacent to other docks.
|
2009-01-08 16:35:45 +00:00
|
|
|
* @param p2 bit 16-31: station ID to join (INVALID_STATION if build new one)
|
2005-05-09 22:33:00 +00:00
|
|
|
*/
|
2009-02-09 21:20:05 +00:00
|
|
|
CommandCost CmdBuildDock(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2009-01-08 16:35:45 +00:00
|
|
|
StationID station_to_join = GB(p2, 16, 16);
|
2009-04-10 22:47:19 +00:00
|
|
|
bool reuse = (station_to_join != NEW_STATION);
|
|
|
|
if (!reuse) station_to_join = INVALID_STATION;
|
2009-01-08 16:35:45 +00:00
|
|
|
bool distant_join = (station_to_join != INVALID_STATION);
|
|
|
|
|
2009-05-17 01:00:56 +00:00
|
|
|
if (distant_join && (!_settings_game.station.distant_join_stations || !Station::IsValidID(station_to_join))) return CMD_ERROR;
|
2009-01-08 16:35:45 +00:00
|
|
|
|
2008-01-25 15:47:58 +00:00
|
|
|
DiagDirection direction = GetInclinedSlopeDirection(GetTileSlope(tile, NULL));
|
2009-04-21 23:40:56 +00:00
|
|
|
if (direction == INVALID_DIAGDIR) return_cmd_error(STR_ERROR_SITE_UNSUITABLE);
|
2008-01-25 15:47:58 +00:00
|
|
|
direction = ReverseDiagDir(direction);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-01-23 08:47:49 +00:00
|
|
|
/* Docks cannot be placed on rapids */
|
2009-04-21 23:40:56 +00:00
|
|
|
if (IsWaterTile(tile)) return_cmd_error(STR_ERROR_SITE_UNSUITABLE);
|
2008-01-23 08:47:49 +00:00
|
|
|
|
2009-01-11 14:26:11 +00:00
|
|
|
if (!CheckIfAuthorityAllowsNewStation(tile, flags)) return CMD_ERROR;
|
2006-09-18 18:02:33 +00:00
|
|
|
|
2009-04-21 23:40:56 +00:00
|
|
|
if (MayHaveBridgeAbove(tile) && IsBridgeAbove(tile)) return_cmd_error(STR_ERROR_MUST_DEMOLISH_BRIDGE_FIRST);
|
2007-03-14 12:56:09 +00:00
|
|
|
|
2008-04-17 20:03:28 +00:00
|
|
|
if (CmdFailed(DoCommand(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR))) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
TileIndex tile_cur = tile + TileOffsByDiagDir(direction);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-04-23 13:48:16 +00:00
|
|
|
if (!IsTileType(tile_cur, MP_WATER) || GetTileSlope(tile_cur, NULL) != SLOPE_FLAT) {
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_SITE_UNSUITABLE);
|
2006-02-21 07:41:54 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-04-21 23:40:56 +00:00
|
|
|
if (MayHaveBridgeAbove(tile_cur) && IsBridgeAbove(tile_cur)) return_cmd_error(STR_ERROR_MUST_DEMOLISH_BRIDGE_FIRST);
|
2007-03-14 12:56:09 +00:00
|
|
|
|
2008-02-02 09:28:43 +00:00
|
|
|
/* Get the water class of the water tile before it is cleared.*/
|
|
|
|
WaterClass wc = GetWaterClass(tile_cur);
|
|
|
|
|
2008-04-17 20:03:28 +00:00
|
|
|
if (CmdFailed(DoCommand(tile_cur, 0, 0, flags, CMD_LANDSCAPE_CLEAR))) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-09-05 23:21:41 +00:00
|
|
|
tile_cur += TileOffsByDiagDir(direction);
|
2006-04-23 13:48:16 +00:00
|
|
|
if (!IsTileType(tile_cur, MP_WATER) || GetTileSlope(tile_cur, NULL) != SLOPE_FLAT) {
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_SITE_UNSUITABLE);
|
2006-02-21 07:41:54 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
/* middle */
|
2007-05-23 17:33:03 +00:00
|
|
|
Station *st = NULL;
|
|
|
|
|
2008-05-29 15:13:28 +00:00
|
|
|
if (!_settings_game.station.adjacent_stations || !HasBit(p1, 0)) {
|
2007-05-23 17:33:03 +00:00
|
|
|
st = GetStationAround(
|
|
|
|
tile + ToTileIndexDiff(_dock_tileoffs_chkaround[direction]),
|
|
|
|
_dock_w_chk[direction], _dock_h_chk[direction], INVALID_STATION);
|
|
|
|
if (st == CHECK_STATIONS_ERR) return CMD_ERROR;
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2009-01-08 16:35:45 +00:00
|
|
|
/* Distant join */
|
2009-05-16 23:34:14 +00:00
|
|
|
if (st == NULL && distant_join) st = Station::Get(station_to_join);
|
2009-01-08 16:35:45 +00:00
|
|
|
|
2009-01-05 21:06:38 +00:00
|
|
|
/* Find a deleted station close to us */
|
2009-04-10 22:47:19 +00:00
|
|
|
if (st == NULL && reuse) st = GetClosestDeletedStation(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (st != NULL) {
|
2008-09-30 20:39:50 +00:00
|
|
|
if (st->owner != _current_company) {
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_TOO_CLOSE_TO_ANOTHER_STATION);
|
2008-04-17 20:03:28 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-10-10 20:09:29 +00:00
|
|
|
if (!st->rect.BeforeAddRect(
|
|
|
|
tile + ToTileIndexDiff(_dock_tileoffs_chkaround[direction]),
|
|
|
|
_dock_w_chk[direction], _dock_h_chk[direction], StationRect::ADD_TEST)) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-04-21 23:40:56 +00:00
|
|
|
if (st->dock_tile != INVALID_TILE) return_cmd_error(STR_ERROR_TOO_CLOSE_TO_ANOTHER_DOCK);
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2008-04-23 22:16:41 +00:00
|
|
|
/* allocate and initialize new station */
|
2009-04-21 23:40:56 +00:00
|
|
|
if (!Station::CanAllocateItem()) return_cmd_error(STR_ERROR_TOO_MANY_STATIONS_LOADING);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-23 22:16:41 +00:00
|
|
|
if (flags & DC_EXEC) {
|
2008-04-28 23:34:23 +00:00
|
|
|
st = new Station(tile);
|
2007-01-14 19:18:50 +00:00
|
|
|
|
2008-04-24 18:30:41 +00:00
|
|
|
st->town = ClosestTownFromTile(tile, UINT_MAX);
|
2008-04-25 15:22:32 +00:00
|
|
|
st->string_id = GenerateStationName(st, tile, STATIONNAMING_DOCK);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-05-17 01:00:56 +00:00
|
|
|
if (Company::IsValidID(_current_company)) {
|
2008-09-30 20:39:50 +00:00
|
|
|
SetBit(st->town->have_ratings, _current_company);
|
2008-04-23 22:16:41 +00:00
|
|
|
}
|
2007-01-14 19:18:50 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & DC_EXEC) {
|
|
|
|
st->dock_tile = tile;
|
2007-01-18 09:34:44 +00:00
|
|
|
st->AddFacility(FACIL_DOCK, tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-10-10 20:09:29 +00:00
|
|
|
st->rect.BeforeAddRect(
|
|
|
|
tile + ToTileIndexDiff(_dock_tileoffs_chkaround[direction]),
|
|
|
|
_dock_w_chk[direction], _dock_h_chk[direction], StationRect::ADD_TRY);
|
2006-12-27 23:11:43 +00:00
|
|
|
|
2008-02-02 09:28:43 +00:00
|
|
|
MakeDock(tile, st->owner, st->index, direction, wc);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
UpdateStationVirtCoordDirty(st);
|
|
|
|
UpdateStationAcceptance(st, false);
|
2009-01-08 16:35:45 +00:00
|
|
|
InvalidateWindowData(WC_SELECT_STATION, 0, 0);
|
2008-05-18 16:51:44 +00:00
|
|
|
InvalidateWindowData(WC_STATION_LIST, st->owner, 0);
|
2007-12-05 19:13:42 +00:00
|
|
|
InvalidateWindowWidget(WC_STATION_VIEW, st->index, SVW_SHIPS);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2008-04-17 20:03:28 +00:00
|
|
|
|
2008-01-09 16:55:48 +00:00
|
|
|
return CommandCost(EXPENSES_CONSTRUCTION, _price.build_dock);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2009-02-09 21:20:05 +00:00
|
|
|
static CommandCost RemoveDock(Station *st, DoCommandFlag flags)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
if (!CheckOwnership(st->owner)) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
TileIndex tile1 = st->dock_tile;
|
|
|
|
TileIndex tile2 = tile1 + TileOffsByDiagDir(GetDockDirection(tile1));
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-10-19 22:46:55 +00:00
|
|
|
if (!EnsureNoVehicleOnGround(tile1)) return CMD_ERROR;
|
|
|
|
if (!EnsureNoVehicleOnGround(tile2)) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (flags & DC_EXEC) {
|
|
|
|
DoClearSquare(tile1);
|
2008-02-02 09:28:43 +00:00
|
|
|
MakeWaterKeepingClass(tile2, st->owner);
|
2006-12-27 23:11:43 +00:00
|
|
|
|
2007-01-14 23:02:12 +00:00
|
|
|
st->rect.AfterRemoveTile(st, tile1);
|
|
|
|
st->rect.AfterRemoveTile(st, tile2);
|
2006-12-27 23:11:43 +00:00
|
|
|
|
2006-03-01 21:00:44 +00:00
|
|
|
MarkTileDirtyByTile(tile2);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-12-26 18:01:15 +00:00
|
|
|
st->dock_tile = INVALID_TILE;
|
2004-08-09 17:04:08 +00:00
|
|
|
st->facilities &= ~FACIL_DOCK;
|
|
|
|
|
2007-12-05 19:13:42 +00:00
|
|
|
InvalidateWindowWidget(WC_STATION_VIEW, st->index, SVW_SHIPS);
|
2004-08-09 17:04:08 +00:00
|
|
|
UpdateStationVirtCoordDirty(st);
|
|
|
|
DeleteStationIfEmpty(st);
|
|
|
|
}
|
|
|
|
|
2008-01-09 16:55:48 +00:00
|
|
|
return CommandCost(EXPENSES_CONSTRUCTION, _price.remove_dock);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#include "table/station_land.h"
|
|
|
|
|
2007-07-16 23:55:22 +00:00
|
|
|
const DrawTileSprites *GetStationTileLayout(StationType st, byte gfx)
|
2006-05-06 20:33:22 +00:00
|
|
|
{
|
2007-07-16 23:55:22 +00:00
|
|
|
return &_station_display_datas[st][gfx];
|
2006-05-06 20:33:22 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
static void DrawTile_Station(TileInfo *ti)
|
|
|
|
{
|
2004-11-17 18:03:33 +00:00
|
|
|
const DrawTileSprites *t = NULL;
|
2007-05-25 22:07:40 +00:00
|
|
|
RoadTypes roadtypes;
|
2007-12-31 11:13:51 +00:00
|
|
|
int32 total_offset;
|
|
|
|
int32 custom_ground_offset;
|
|
|
|
|
2007-05-25 22:07:40 +00:00
|
|
|
if (IsRailwayStation(ti->tile)) {
|
2007-12-31 11:13:51 +00:00
|
|
|
const RailtypeInfo *rti = GetRailTypeInfo(GetRailType(ti->tile));
|
2007-05-25 22:07:40 +00:00
|
|
|
roadtypes = ROADTYPES_NONE;
|
2007-12-31 11:13:51 +00:00
|
|
|
total_offset = rti->total_offset;
|
|
|
|
custom_ground_offset = rti->custom_ground_offset;
|
2007-05-25 22:07:40 +00:00
|
|
|
} else {
|
2008-02-01 20:10:57 +00:00
|
|
|
roadtypes = IsRoadStop(ti->tile) ? GetRoadTypes(ti->tile) : ROADTYPES_NONE;
|
2007-12-31 11:13:51 +00:00
|
|
|
total_offset = 0;
|
|
|
|
custom_ground_offset = 0;
|
2007-05-25 22:07:40 +00:00
|
|
|
}
|
2004-11-17 18:03:33 +00:00
|
|
|
uint32 relocation = 0;
|
2006-05-07 10:58:53 +00:00
|
|
|
const Station *st = NULL;
|
|
|
|
const StationSpec *statspec = NULL;
|
2008-09-30 20:39:50 +00:00
|
|
|
Owner owner = GetTileOwner(ti->tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
SpriteID palette;
|
2009-05-17 01:00:56 +00:00
|
|
|
if (Company::IsValidID(owner)) {
|
2009-02-09 02:57:15 +00:00
|
|
|
palette = COMPANY_SPRITE_COLOUR(owner);
|
2006-08-05 17:00:09 +00:00
|
|
|
} else {
|
2008-09-30 20:39:50 +00:00
|
|
|
/* Some stations are not owner by a company, namely oil rigs */
|
2006-08-05 17:00:09 +00:00
|
|
|
palette = PALETTE_TO_GREY;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* don't show foundation for docks */
|
2006-04-23 13:48:16 +00:00
|
|
|
if (ti->tileh != SLOPE_FLAT && !IsDock(ti->tile))
|
2007-07-26 16:51:10 +00:00
|
|
|
DrawFoundation(ti, FOUNDATION_LEVELED);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-04-16 17:29:37 +00:00
|
|
|
if (IsCustomStationSpecIndex(ti->tile)) {
|
2007-10-26 20:42:03 +00:00
|
|
|
/* look for customization */
|
2006-05-07 10:58:53 +00:00
|
|
|
st = GetStationByTile(ti->tile);
|
|
|
|
statspec = st->speclist[GetCustomStationSpecIndex(ti->tile)].spec;
|
2004-11-17 18:03:33 +00:00
|
|
|
|
|
|
|
if (statspec != NULL) {
|
2006-04-17 19:26:18 +00:00
|
|
|
uint tile = GetStationGfx(ti->tile);
|
2004-11-17 18:03:33 +00:00
|
|
|
|
2006-05-04 19:21:16 +00:00
|
|
|
relocation = GetCustomStationRelocation(statspec, st, ti->tile);
|
2006-04-17 19:26:18 +00:00
|
|
|
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(statspec->callbackmask, CBM_STATION_SPRITE_LAYOUT)) {
|
2006-05-04 20:00:50 +00:00
|
|
|
uint16 callback = GetStationCallback(CBID_STATION_SPRITE_LAYOUT, 0, 0, statspec, st, ti->tile);
|
2006-10-18 17:44:46 +00:00
|
|
|
if (callback != CALLBACK_FAILED) tile = (callback & ~1) + GetRailStationAxis(ti->tile);
|
2006-05-04 20:00:50 +00:00
|
|
|
}
|
|
|
|
|
2006-04-17 19:26:18 +00:00
|
|
|
/* Ensure the chosen tile layout is valid for this custom station */
|
2006-05-04 20:00:50 +00:00
|
|
|
if (statspec->renderdata != NULL) {
|
2007-01-10 18:56:51 +00:00
|
|
|
t = &statspec->renderdata[tile < statspec->tiles ? tile : (uint)GetRailStationAxis(ti->tile)];
|
2006-05-04 20:00:50 +00:00
|
|
|
}
|
2004-11-17 18:03:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-16 23:55:22 +00:00
|
|
|
if (t == NULL || t->seq == NULL) t = &_station_display_datas[GetStationType(ti->tile)][GetStationGfx(ti->tile)];
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-02-06 16:12:23 +00:00
|
|
|
|
2008-08-04 18:54:19 +00:00
|
|
|
if (IsBuoy(ti->tile) || IsDock(ti->tile) || (IsOilRig(ti->tile) && GetWaterClass(ti->tile) != WATER_CLASS_INVALID)) {
|
2008-02-06 16:12:23 +00:00
|
|
|
if (ti->tileh == SLOPE_FLAT) {
|
|
|
|
DrawWaterClassGround(ti);
|
|
|
|
} else {
|
|
|
|
assert(IsDock(ti->tile));
|
|
|
|
TileIndex water_tile = ti->tile + TileOffsByDiagDir(GetDockDirection(ti->tile));
|
|
|
|
WaterClass wc = GetWaterClass(water_tile);
|
|
|
|
if (wc == WATER_CLASS_SEA) {
|
|
|
|
DrawShoreTile(ti->tileh);
|
|
|
|
} else {
|
|
|
|
DrawClearLandTile(ti, 3);
|
|
|
|
}
|
|
|
|
}
|
2006-05-07 10:58:53 +00:00
|
|
|
} else {
|
2008-02-15 18:40:42 +00:00
|
|
|
SpriteID image = t->ground.sprite;
|
2008-11-22 16:04:11 +00:00
|
|
|
SpriteID pal = t->ground.pal;
|
2008-02-06 16:12:23 +00:00
|
|
|
if (HasBit(image, SPRITE_MODIFIER_USE_OFFSET)) {
|
|
|
|
image += GetCustomStationGroundRelocation(statspec, st, ti->tile);
|
|
|
|
image += custom_ground_offset;
|
|
|
|
} else {
|
|
|
|
image += total_offset;
|
|
|
|
}
|
2008-11-22 16:04:11 +00:00
|
|
|
DrawGroundSprite(image, GroundSpritePaletteTransform(image, pal, palette));
|
2008-08-02 22:47:34 +00:00
|
|
|
|
|
|
|
/* PBS debugging, draw reserved tracks darker */
|
2008-09-11 21:53:59 +00:00
|
|
|
if (_game_mode != GM_MENU && _settings_client.gui.show_track_reservation && IsRailwayStation(ti->tile) && GetRailwayStationReservation(ti->tile)) {
|
2008-08-02 22:47:34 +00:00
|
|
|
const RailtypeInfo *rti = GetRailTypeInfo(GetRailType(ti->tile));
|
|
|
|
DrawGroundSprite(GetRailStationAxis(ti->tile) == AXIS_X ? rti->base_sprites.single_y : rti->base_sprites.single_x, PALETTE_CRASH);
|
|
|
|
}
|
2006-05-07 10:58:53 +00:00
|
|
|
}
|
2004-11-17 18:03:33 +00:00
|
|
|
|
2008-05-08 16:48:29 +00:00
|
|
|
if (IsRailwayStation(ti->tile) && HasCatenaryDrawn(GetRailType(ti->tile)) && IsStationTileElectrifiable(ti->tile)) DrawCatenary(ti);
|
2006-03-29 16:30:26 +00:00
|
|
|
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(roadtypes, ROADTYPE_TRAM)) {
|
2007-05-25 22:07:40 +00:00
|
|
|
Axis axis = GetRoadStopDir(ti->tile) == DIAGDIR_NE ? AXIS_X : AXIS_Y;
|
2007-11-19 21:02:30 +00:00
|
|
|
DrawGroundSprite((HasBit(roadtypes, ROADTYPE_ROAD) ? SPR_TRAMWAY_OVERLAY : SPR_TRAMWAY_TRAM) + (axis ^ 1), PAL_NONE);
|
2007-05-25 22:07:40 +00:00
|
|
|
DrawTramCatenary(ti, axis == AXIS_X ? ROAD_X : ROAD_Y);
|
|
|
|
}
|
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
const DrawTileSeqStruct *dtss;
|
2004-11-14 01:25:05 +00:00
|
|
|
foreach_draw_tile_seq(dtss, t->seq) {
|
2008-02-15 18:34:26 +00:00
|
|
|
SpriteID image = dtss->image.sprite;
|
2008-06-18 16:48:58 +00:00
|
|
|
|
|
|
|
/* Stop drawing sprite sequence once we meet a sprite that doesn't have to be opaque */
|
|
|
|
if (IsInvisibilitySet(TO_BUILDINGS) && !HasBit(image, SPRITE_MODIFIER_OPAQUE)) return;
|
|
|
|
|
2007-11-19 21:02:30 +00:00
|
|
|
if (relocation == 0 || HasBit(image, SPRITE_MODIFIER_USE_OFFSET)) {
|
2007-12-31 11:13:51 +00:00
|
|
|
image += total_offset;
|
2006-05-07 10:58:53 +00:00
|
|
|
} else {
|
|
|
|
image += relocation;
|
|
|
|
}
|
|
|
|
|
2008-11-22 16:04:11 +00:00
|
|
|
SpriteID pal = SpriteLayoutPaletteTransform(image, dtss->image.pal, palette);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-11-14 01:25:05 +00:00
|
|
|
if ((byte)dtss->delta_z != 0x80) {
|
2006-08-06 08:23:19 +00:00
|
|
|
AddSortableSpriteToDraw(
|
2007-01-14 19:57:49 +00:00
|
|
|
image, pal,
|
2006-08-06 08:23:19 +00:00
|
|
|
ti->x + dtss->delta_x, ti->y + dtss->delta_y,
|
|
|
|
dtss->size_x, dtss->size_y,
|
2007-07-26 14:07:11 +00:00
|
|
|
dtss->size_z, ti->z + dtss->delta_z,
|
2007-12-29 21:06:54 +00:00
|
|
|
!HasBit(image, SPRITE_MODIFIER_OPAQUE) && IsTransparencySet(TO_BUILDINGS)
|
2006-08-06 08:23:19 +00:00
|
|
|
);
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2008-10-18 17:21:56 +00:00
|
|
|
/* For stations and original spritelayouts delta_x and delta_y are signed */
|
|
|
|
AddChildSpriteScreen(image, pal, dtss->delta_x, dtss->delta_y, !HasBit(image, SPRITE_MODIFIER_OPAQUE) && IsTransparencySet(TO_BUILDINGS));
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-16 23:55:22 +00:00
|
|
|
void StationPickerDrawSprite(int x, int y, StationType st, RailType railtype, RoadType roadtype, int image)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-12-31 11:13:51 +00:00
|
|
|
int32 total_offset = 0;
|
2009-02-09 02:57:15 +00:00
|
|
|
SpriteID pal = COMPANY_SPRITE_COLOUR(_local_company);
|
2007-07-16 23:55:22 +00:00
|
|
|
const DrawTileSprites *t = &_station_display_datas[st][image];
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-12-31 11:13:51 +00:00
|
|
|
if (railtype != INVALID_RAILTYPE) {
|
|
|
|
const RailtypeInfo *rti = GetRailTypeInfo(railtype);
|
|
|
|
total_offset = rti->total_offset;
|
|
|
|
}
|
|
|
|
|
2008-02-15 18:40:42 +00:00
|
|
|
SpriteID img = t->ground.sprite;
|
2009-02-09 02:57:15 +00:00
|
|
|
DrawSprite(img + total_offset, HasBit(img, PALETTE_MODIFIER_COLOUR) ? pal : PAL_NONE, x, y);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-05-25 22:07:40 +00:00
|
|
|
if (roadtype == ROADTYPE_TRAM) {
|
2008-02-15 18:40:42 +00:00
|
|
|
DrawSprite(SPR_TRAMWAY_TRAM + (t->ground.sprite == SPR_ROAD_PAVED_STRAIGHT_X ? 1 : 0), PAL_NONE, x, y);
|
2007-05-25 22:07:40 +00:00
|
|
|
}
|
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
const DrawTileSeqStruct *dtss;
|
2004-11-14 01:25:05 +00:00
|
|
|
foreach_draw_tile_seq(dtss, t->seq) {
|
2004-08-09 17:04:08 +00:00
|
|
|
Point pt = RemapCoords(dtss->delta_x, dtss->delta_y, dtss->delta_z);
|
2008-02-15 18:34:26 +00:00
|
|
|
DrawSprite(dtss->image.sprite + total_offset, pal, x + pt.x, y + pt.y);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-06 16:32:49 +00:00
|
|
|
static uint GetSlopeZ_Station(TileIndex tile, uint x, uint y)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-08-06 16:32:49 +00:00
|
|
|
return GetTileMaxZ(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-07-26 16:51:10 +00:00
|
|
|
static Foundation GetFoundation_Station(TileIndex tile, Slope tileh)
|
2004-08-13 18:27:33 +00:00
|
|
|
{
|
2007-07-26 16:51:10 +00:00
|
|
|
return FlatteningFoundation(tileh);
|
2004-08-13 18:27:33 +00:00
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
static void GetAcceptedCargo_Station(TileIndex tile, AcceptedCargo ac)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
/* not used */
|
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
static void GetTileDesc_Station(TileIndex tile, TileDesc *td)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-05-21 22:15:39 +00:00
|
|
|
td->owner[0] = GetTileOwner(tile);
|
2009-03-02 22:57:47 +00:00
|
|
|
if (IsDriveThroughStopTile(tile)) {
|
|
|
|
Owner road_owner = INVALID_OWNER;
|
|
|
|
Owner tram_owner = INVALID_OWNER;
|
|
|
|
RoadTypes rts = GetRoadTypes(tile);
|
|
|
|
if (HasBit(rts, ROADTYPE_ROAD)) road_owner = GetRoadOwner(tile, ROADTYPE_ROAD);
|
|
|
|
if (HasBit(rts, ROADTYPE_TRAM)) tram_owner = GetRoadOwner(tile, ROADTYPE_TRAM);
|
|
|
|
|
|
|
|
/* Is there a mix of owners? */
|
|
|
|
if ((tram_owner != INVALID_OWNER && tram_owner != td->owner[0]) ||
|
|
|
|
(road_owner != INVALID_OWNER && road_owner != td->owner[0])) {
|
|
|
|
uint i = 1;
|
|
|
|
if (road_owner != INVALID_OWNER) {
|
2009-04-21 23:40:56 +00:00
|
|
|
td->owner_type[i] = STR_LAND_AREA_INFORMATION_ROAD_OWNER;
|
2009-03-02 22:57:47 +00:00
|
|
|
td->owner[i] = road_owner;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if (tram_owner != INVALID_OWNER) {
|
2009-04-21 23:40:56 +00:00
|
|
|
td->owner_type[i] = STR_LAND_AREA_INFORMATION_TRAM_OWNER;
|
2009-03-02 22:57:47 +00:00
|
|
|
td->owner[i] = tram_owner;
|
|
|
|
}
|
|
|
|
}
|
2008-05-21 22:15:39 +00:00
|
|
|
}
|
2006-03-24 08:55:08 +00:00
|
|
|
td->build_date = GetStationByTile(tile)->build_date;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-07-25 22:37:34 +00:00
|
|
|
const StationSpec *spec = GetStationSpec(tile);
|
|
|
|
|
|
|
|
if (spec != NULL) {
|
|
|
|
td->station_class = GetStationClassName(spec->sclass);
|
|
|
|
td->station_name = spec->name;
|
|
|
|
|
|
|
|
if (spec->grffile != NULL) {
|
|
|
|
const GRFConfig *gc = GetGRFConfig(spec->grffile->grfid);
|
|
|
|
td->grf = gc->name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
StringID str;
|
2006-03-26 14:41:39 +00:00
|
|
|
switch (GetStationType(tile)) {
|
|
|
|
default: NOT_REACHED();
|
2009-04-21 23:40:56 +00:00
|
|
|
case STATION_RAIL: str = STR_STATION_DESCRIPTION_RAILROAD_STATION; break;
|
2006-05-21 12:01:57 +00:00
|
|
|
case STATION_AIRPORT:
|
2009-04-21 23:40:56 +00:00
|
|
|
str = (IsHangar(tile) ? STR_STATION_DESCRIPTION_AIRCRAFT_HANGAR : STR_STATION_DESCRIPTION_AIRPORT);
|
2006-05-21 12:01:57 +00:00
|
|
|
break;
|
2009-04-21 23:40:56 +00:00
|
|
|
case STATION_TRUCK: str = STR_STATION_DESCRIPTION_TRUCK_LOADING_AREA; break;
|
|
|
|
case STATION_BUS: str = STR_STATION_DESCRIPTION_BUS_STATION; break;
|
|
|
|
case STATION_OILRIG: str = STR_INDUSTRY_NAME_OIL_RIG; break;
|
|
|
|
case STATION_DOCK: str = STR_STATION_DESCRIPTION_SHIP_DOCK; break;
|
|
|
|
case STATION_BUOY: str = STR_STATION_DESCRIPTION_BUOY; break;
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
td->str = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-20 17:49:50 +00:00
|
|
|
static TrackStatus GetTileTrackStatus_Station(TileIndex tile, TransportType mode, uint sub_mode, DiagDirection side)
|
2005-06-24 12:38:35 +00:00
|
|
|
{
|
2008-02-20 17:49:50 +00:00
|
|
|
TrackBits trackbits = TRACK_BIT_NONE;
|
|
|
|
|
2005-01-16 09:51:56 +00:00
|
|
|
switch (mode) {
|
|
|
|
case TRANSPORT_RAIL:
|
2006-06-27 21:25:53 +00:00
|
|
|
if (IsRailwayStation(tile) && !IsStationTileBlocked(tile)) {
|
2008-02-20 17:49:50 +00:00
|
|
|
trackbits = TrackToTrackBits(GetRailStationTrack(tile));
|
2005-01-16 09:51:56 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TRANSPORT_WATER:
|
2007-10-26 20:42:03 +00:00
|
|
|
/* buoy is coded as a station, it is always on open water */
|
2007-02-02 20:20:56 +00:00
|
|
|
if (IsBuoy(tile)) {
|
2008-02-20 17:49:50 +00:00
|
|
|
trackbits = TRACK_BIT_ALL;
|
2007-10-26 20:42:03 +00:00
|
|
|
/* remove tracks that connect NE map edge */
|
2008-02-20 17:49:50 +00:00
|
|
|
if (TileX(tile) == 0) trackbits &= ~(TRACK_BIT_X | TRACK_BIT_UPPER | TRACK_BIT_RIGHT);
|
2007-10-26 20:42:03 +00:00
|
|
|
/* remove tracks that connect NW map edge */
|
2008-02-20 17:49:50 +00:00
|
|
|
if (TileY(tile) == 0) trackbits &= ~(TRACK_BIT_Y | TRACK_BIT_LEFT | TRACK_BIT_UPPER);
|
2007-02-02 20:20:56 +00:00
|
|
|
}
|
2005-01-16 09:51:56 +00:00
|
|
|
break;
|
|
|
|
|
2006-05-27 16:12:16 +00:00
|
|
|
case TRANSPORT_ROAD:
|
2008-02-18 16:11:31 +00:00
|
|
|
if ((GetRoadTypes(tile) & sub_mode) != 0 && IsRoadStop(tile)) {
|
|
|
|
DiagDirection dir = GetRoadStopDir(tile);
|
|
|
|
Axis axis = DiagDirToAxis(dir);
|
|
|
|
|
|
|
|
if (side != INVALID_DIAGDIR) {
|
2008-02-20 17:49:50 +00:00
|
|
|
if (axis != DiagDirToAxis(side) || (IsStandardRoadStopTile(tile) && dir != side)) break;
|
2008-02-18 16:11:31 +00:00
|
|
|
}
|
|
|
|
|
2008-02-20 17:49:50 +00:00
|
|
|
trackbits = AxisToTrackBits(axis);
|
2006-06-27 21:25:53 +00:00
|
|
|
}
|
2006-05-27 16:12:16 +00:00
|
|
|
break;
|
|
|
|
|
2005-01-16 09:51:56 +00:00
|
|
|
default:
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2005-01-16 09:51:56 +00:00
|
|
|
|
2008-02-20 17:49:50 +00:00
|
|
|
return CombineTrackStatus(TrackBitsToTrackdirBits(trackbits), TRACKDIR_BIT_NONE);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-11-16 12:29:37 +00:00
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
static void TileLoop_Station(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-10-26 20:42:03 +00:00
|
|
|
/* FIXME -- GetTileTrackStatus_Station -> animated stationtiles
|
|
|
|
* hardcoded.....not good */
|
2007-07-16 23:55:22 +00:00
|
|
|
switch (GetStationType(tile)) {
|
|
|
|
case STATION_AIRPORT:
|
|
|
|
switch (GetStationGfx(tile)) {
|
|
|
|
case GFX_RADAR_LARGE_FIRST:
|
|
|
|
case GFX_WINDSACK_FIRST : // for small airport
|
|
|
|
case GFX_RADAR_INTERNATIONAL_FIRST:
|
|
|
|
case GFX_RADAR_METROPOLITAN_FIRST:
|
|
|
|
case GFX_RADAR_DISTRICTWE_FIRST: // radar district W-E airport
|
|
|
|
case GFX_WINDSACK_INTERCON_FIRST : // for intercontinental airport
|
|
|
|
AddAnimatedTile(tile);
|
|
|
|
break;
|
|
|
|
}
|
2005-11-16 12:29:37 +00:00
|
|
|
break;
|
2004-08-13 19:52:45 +00:00
|
|
|
|
2008-02-06 16:19:28 +00:00
|
|
|
case STATION_DOCK:
|
|
|
|
if (GetTileSlope(tile, NULL) != SLOPE_FLAT) break; // only handle water part
|
|
|
|
/* FALL THROUGH */
|
2007-07-16 23:55:22 +00:00
|
|
|
case STATION_OILRIG: //(station part)
|
|
|
|
case STATION_BUOY:
|
2005-11-16 12:29:37 +00:00
|
|
|
TileLoop_Water(tile);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
static void AnimateTile_Station(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-03-07 12:11:48 +00:00
|
|
|
struct AnimData {
|
2006-08-31 07:01:26 +00:00
|
|
|
StationGfx from; // first sprite
|
|
|
|
StationGfx to; // last sprite
|
|
|
|
byte delay;
|
2007-03-07 12:11:48 +00:00
|
|
|
};
|
2006-08-31 07:01:26 +00:00
|
|
|
|
|
|
|
static const AnimData data[] = {
|
|
|
|
{ GFX_RADAR_LARGE_FIRST, GFX_RADAR_LARGE_LAST, 3 },
|
|
|
|
{ GFX_WINDSACK_FIRST, GFX_WINDSACK_LAST, 1 },
|
|
|
|
{ GFX_RADAR_INTERNATIONAL_FIRST, GFX_RADAR_INTERNATIONAL_LAST, 3 },
|
|
|
|
{ GFX_RADAR_METROPOLITAN_FIRST, GFX_RADAR_METROPOLITAN_LAST, 3 },
|
|
|
|
{ GFX_RADAR_DISTRICTWE_FIRST, GFX_RADAR_DISTRICTWE_LAST, 3 },
|
|
|
|
{ GFX_WINDSACK_INTERCON_FIRST, GFX_WINDSACK_INTERCON_LAST, 1 }
|
|
|
|
};
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-04-19 23:19:12 +00:00
|
|
|
if (IsRailwayStation(tile)) {
|
|
|
|
AnimateStationTile(tile);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-08-31 07:01:26 +00:00
|
|
|
StationGfx gfx = GetStationGfx(tile);
|
2006-06-25 13:42:37 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
for (const AnimData *i = data; i != endof(data); i++) {
|
2006-08-31 07:01:26 +00:00
|
|
|
if (i->from <= gfx && gfx <= i->to) {
|
|
|
|
if ((_tick_counter & i->delay) == 0) {
|
|
|
|
SetStationGfx(tile, gfx < i->to ? gfx + 1 : i->from);
|
|
|
|
MarkTileDirtyByTile(tile);
|
|
|
|
}
|
|
|
|
break;
|
2006-06-25 13:42:37 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-18 14:41:24 +00:00
|
|
|
|
2009-01-02 22:42:05 +00:00
|
|
|
static bool ClickTile_Station(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-03-26 14:41:39 +00:00
|
|
|
if (IsHangar(tile)) {
|
2007-03-08 16:27:54 +00:00
|
|
|
ShowDepotWindow(tile, VEH_AIRCRAFT);
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2006-03-24 08:55:08 +00:00
|
|
|
ShowStationViewWindow(GetStationIndex(tile));
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2009-01-02 22:42:05 +00:00
|
|
|
return true;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-12-21 22:50:51 +00:00
|
|
|
static VehicleEnterTileStatus VehicleEnter_Station(Vehicle *v, TileIndex tile, int x, int y)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-04-05 15:30:15 +00:00
|
|
|
StationID station_id = GetStationIndex(tile);
|
|
|
|
|
2007-03-08 16:27:54 +00:00
|
|
|
if (v->type == VEH_TRAIN) {
|
2008-04-13 16:54:19 +00:00
|
|
|
if (!v->current_order.ShouldStopAtStation(v, station_id)) return VETSB_CONTINUE;
|
2009-04-12 14:11:14 +00:00
|
|
|
if (!IsRailwayStation(tile) || !IsFrontEngine(v)) return VETSB_CONTINUE;
|
|
|
|
|
|
|
|
int station_ahead;
|
|
|
|
int station_length;
|
2009-05-22 22:22:46 +00:00
|
|
|
int stop = GetTrainStopLocation(station_id, tile, (Train *)v, &station_ahead, &station_length);
|
2009-04-12 14:11:14 +00:00
|
|
|
|
|
|
|
/* Stop whenever that amount of station ahead + the distance from the
|
|
|
|
* begin of the platform to the stop location is longer than the length
|
|
|
|
* of the platform. Station ahead 'includes' the current tile where the
|
|
|
|
* vehicle is on, so we need to substract that. */
|
2009-04-13 22:27:21 +00:00
|
|
|
if (!IsInsideBS(stop + station_ahead, station_length, TILE_SIZE)) return VETSB_CONTINUE;
|
2009-04-12 14:11:14 +00:00
|
|
|
|
|
|
|
DiagDirection dir = DirToDiagDir(v->direction);
|
|
|
|
|
|
|
|
x &= 0xF;
|
|
|
|
y &= 0xF;
|
|
|
|
|
|
|
|
if (DiagDirToAxis(dir) != AXIS_X) Swap(x, y);
|
|
|
|
if (y == TILE_SIZE / 2) {
|
|
|
|
if (dir != DIAGDIR_SE && dir != DIAGDIR_SW) x = TILE_SIZE - 1 - x;
|
|
|
|
stop &= TILE_SIZE - 1;
|
|
|
|
|
|
|
|
if (x == stop) return VETSB_ENTERED_STATION | (VehicleEnterTileStatus)(station_id << VETS_STATION_ID_OFFSET); // enter station
|
|
|
|
if (x < stop) {
|
|
|
|
uint16 spd;
|
|
|
|
|
|
|
|
v->vehstatus |= VS_TRAIN_SLOWING;
|
|
|
|
spd = max(0, (stop - x) * 20 - 15);
|
|
|
|
if (spd < v->cur_speed) v->cur_speed = spd;
|
2004-09-10 19:02:27 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-03-08 16:27:54 +00:00
|
|
|
} else if (v->type == VEH_ROAD) {
|
2009-05-22 20:22:20 +00:00
|
|
|
RoadVehicle *rv = (RoadVehicle *)v;
|
|
|
|
if (rv->state < RVSB_IN_ROAD_STOP && !IsReversingRoadTrackdir((Trackdir)rv->state) && rv->frame == 0) {
|
2007-06-11 14:00:16 +00:00
|
|
|
if (IsRoadStop(tile) && IsRoadVehFront(v)) {
|
2005-11-17 10:12:21 +00:00
|
|
|
/* Attempt to allocate a parking bay in a road stop */
|
2005-01-29 19:41:44 +00:00
|
|
|
RoadStop *rs = GetRoadStopByTile(tile, GetRoadStopType(tile));
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-14 16:37:16 +00:00
|
|
|
if (IsDriveThroughStopTile(tile)) {
|
2009-05-22 20:22:20 +00:00
|
|
|
if (!rv->current_order.ShouldStopAtStation(v, station_id)) return VETSB_CONTINUE;
|
2008-04-13 16:54:19 +00:00
|
|
|
|
2007-02-14 16:37:16 +00:00
|
|
|
/* Vehicles entering a drive-through stop from the 'normal' side use first bay (bay 0). */
|
2009-05-22 20:22:20 +00:00
|
|
|
byte side = ((DirToDiagDir(rv->direction) == ReverseDiagDir(GetRoadStopDir(tile))) == (rv->overtaking == 0)) ? 0 : 1;
|
2007-02-14 16:37:16 +00:00
|
|
|
|
|
|
|
if (!rs->IsFreeBay(side)) return VETSB_CANNOT_ENTER;
|
|
|
|
|
|
|
|
/* Check if the vehicle is stopping at this road stop */
|
2009-05-22 20:22:20 +00:00
|
|
|
if (GetRoadStopType(tile) == (IsCargoInClass(rv->cargo_type, CC_PASSENGERS) ? ROADSTOP_BUS : ROADSTOP_TRUCK) &&
|
|
|
|
rv->current_order.GetDestination() == GetStationIndex(tile)) {
|
|
|
|
SetBit(rv->state, RVS_IS_STOPPING);
|
2007-02-14 16:37:16 +00:00
|
|
|
rs->AllocateDriveThroughBay(side);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Indicate if vehicle is using second bay. */
|
2009-05-22 20:22:20 +00:00
|
|
|
if (side == 1) SetBit(rv->state, RVS_USING_SECOND_BAY);
|
2007-02-14 16:37:16 +00:00
|
|
|
/* Indicate a drive-through stop */
|
2009-05-22 20:22:20 +00:00
|
|
|
SetBit(rv->state, RVS_IN_DT_ROAD_STOP);
|
2007-02-14 16:37:16 +00:00
|
|
|
return VETSB_CONTINUE;
|
|
|
|
}
|
|
|
|
|
2009-03-15 00:32:18 +00:00
|
|
|
/* For normal (non drive-through) road stops
|
|
|
|
* Check if station is busy or if there are no free bays or whether it is a articulated vehicle. */
|
2007-08-24 19:19:18 +00:00
|
|
|
if (rs->IsEntranceBusy() || !rs->HasFreeBay() || RoadVehHasArticPart(v)) return VETSB_CANNOT_ENTER;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-05-22 20:22:20 +00:00
|
|
|
SetBit(rv->state, RVS_IN_ROAD_STOP);
|
2005-11-17 10:12:21 +00:00
|
|
|
|
2007-02-13 00:25:42 +00:00
|
|
|
/* Allocate a bay and update the road state */
|
|
|
|
uint bay_nr = rs->AllocateBay();
|
2009-05-22 20:22:20 +00:00
|
|
|
SB(rv->state, RVS_USING_SECOND_BAY, 1, bay_nr);
|
2005-01-29 19:41:44 +00:00
|
|
|
|
2007-02-13 00:25:42 +00:00
|
|
|
/* Mark the station entrace as busy */
|
|
|
|
rs->SetEntranceBusy(true);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-02-13 10:26:53 +00:00
|
|
|
return VETSB_CONTINUE;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2009-05-17 10:19:00 +00:00
|
|
|
/**
|
|
|
|
* This function is called for each station once every 250 ticks.
|
|
|
|
* Not all stations will get the tick at the same time.
|
|
|
|
* @param st the station receiving the tick.
|
|
|
|
*/
|
2004-08-09 17:04:08 +00:00
|
|
|
static void StationHandleBigTick(Station *st)
|
|
|
|
{
|
|
|
|
UpdateStationAcceptance(st, true);
|
|
|
|
|
2007-01-14 19:18:50 +00:00
|
|
|
if (st->facilities == 0 && ++st->delete_ctr >= 8) delete st;
|
2005-01-30 22:04:14 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 20:03:28 +00:00
|
|
|
static inline void byte_inc_sat(byte *p)
|
|
|
|
{
|
|
|
|
byte b = *p + 1;
|
|
|
|
if (b != 0) *p = b;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
static void UpdateStationRating(Station *st)
|
|
|
|
{
|
|
|
|
bool waiting_changed = false;
|
|
|
|
|
|
|
|
byte_inc_sat(&st->time_since_load);
|
|
|
|
byte_inc_sat(&st->time_since_unload);
|
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
GoodsEntry *ge = st->goods;
|
2004-08-09 17:04:08 +00:00
|
|
|
do {
|
2007-03-08 20:50:27 +00:00
|
|
|
/* Slowly increase the rating back to his original level in the case we
|
|
|
|
* didn't deliver cargo yet to this station. This happens when a bribe
|
|
|
|
* failed while you didn't moved that cargo yet to a station. */
|
2007-11-19 21:02:30 +00:00
|
|
|
if (!HasBit(ge->acceptance_pickup, GoodsEntry::PICKUP) && ge->rating < INITIAL_STATION_RATING) {
|
2007-03-08 20:50:27 +00:00
|
|
|
ge->rating++;
|
2007-08-26 13:55:36 +00:00
|
|
|
}
|
|
|
|
|
2007-03-08 20:50:27 +00:00
|
|
|
/* Only change the rating if we are moving this cargo */
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(ge->acceptance_pickup, GoodsEntry::PICKUP)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
byte_inc_sat(&ge->days_since_pickup);
|
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
int rating = 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
{
|
2008-04-25 15:22:32 +00:00
|
|
|
int b = ge->last_speed - 85;
|
|
|
|
if (b >= 0)
|
2004-08-09 17:04:08 +00:00
|
|
|
rating += b >> 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
byte age = ge->last_age;
|
|
|
|
(age >= 3) ||
|
|
|
|
(rating += 10, age >= 2) ||
|
|
|
|
(rating += 10, age >= 1) ||
|
|
|
|
(rating += 13, true);
|
|
|
|
}
|
|
|
|
|
2009-05-17 01:00:56 +00:00
|
|
|
if (Company::IsValidID(st->owner) && HasBit(st->town->statues, st->owner)) rating += 26;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
byte days = ge->days_since_pickup;
|
2007-10-26 20:42:03 +00:00
|
|
|
if (st->last_vehicle_type == VEH_SHIP) days >>= 2;
|
2004-08-09 17:04:08 +00:00
|
|
|
(days > 21) ||
|
|
|
|
(rating += 25, days > 12) ||
|
|
|
|
(rating += 25, days > 6) ||
|
|
|
|
(rating += 45, days > 3) ||
|
|
|
|
(rating += 35, true);
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-06-22 11:58:59 +00:00
|
|
|
uint waiting = ge->cargo.Count();
|
2007-02-18 11:27:09 +00:00
|
|
|
(rating -= 90, waiting > 1500) ||
|
|
|
|
(rating += 55, waiting > 1000) ||
|
|
|
|
(rating += 35, waiting > 600) ||
|
|
|
|
(rating += 10, waiting > 300) ||
|
|
|
|
(rating += 20, waiting > 100) ||
|
|
|
|
(rating += 10, true);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
{
|
2007-01-10 18:56:51 +00:00
|
|
|
int or_ = ge->rating; // old rating
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* only modify rating in steps of -2, -1, 0, 1 or 2 */
|
2007-11-19 18:38:10 +00:00
|
|
|
ge->rating = rating = or_ + Clamp(Clamp(rating, 0, 255) - or_, -2, 2);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* if rating is <= 64 and more than 200 items waiting,
|
|
|
|
* remove some random amount of goods from the station */
|
2004-08-09 17:04:08 +00:00
|
|
|
if (rating <= 64 && waiting >= 200) {
|
|
|
|
int dec = Random() & 0x1F;
|
|
|
|
if (waiting < 400) dec &= 7;
|
|
|
|
waiting -= dec + 1;
|
|
|
|
waiting_changed = true;
|
|
|
|
}
|
|
|
|
|
2007-10-26 20:42:03 +00:00
|
|
|
/* if rating is <= 127 and there are any items waiting, maybe remove some goods. */
|
2004-08-09 17:04:08 +00:00
|
|
|
if (rating <= 127 && waiting != 0) {
|
|
|
|
uint32 r = Random();
|
2007-01-14 18:38:40 +00:00
|
|
|
if (rating <= (int)GB(r, 0, 7)) {
|
2007-06-22 11:58:59 +00:00
|
|
|
/* Need to have int, otherwise it will just overflow etc. */
|
|
|
|
waiting = max((int)waiting - (int)GB(r, 8, 2) - 1, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
waiting_changed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-13 20:46:53 +00:00
|
|
|
/* At some point we really must cap the cargo. Previously this
|
|
|
|
* was a strict 4095, but now we'll have a less strict, but
|
|
|
|
* increasingly agressive truncation of the amount of cargo. */
|
|
|
|
static const uint WAITING_CARGO_THRESHOLD = 1 << 12;
|
|
|
|
static const uint WAITING_CARGO_CUT_FACTOR = 1 << 6;
|
|
|
|
static const uint MAX_WAITING_CARGO = 1 << 15;
|
|
|
|
|
|
|
|
if (waiting > WAITING_CARGO_THRESHOLD) {
|
|
|
|
uint difference = waiting - WAITING_CARGO_THRESHOLD;
|
|
|
|
waiting -= (difference / WAITING_CARGO_CUT_FACTOR);
|
|
|
|
|
|
|
|
waiting = min(waiting, MAX_WAITING_CARGO);
|
|
|
|
waiting_changed = true;
|
|
|
|
}
|
|
|
|
|
2007-06-22 11:58:59 +00:00
|
|
|
if (waiting_changed) ge->cargo.Truncate(waiting);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (++ge != endof(st->goods));
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
StationID index = st->index;
|
2006-06-27 21:25:53 +00:00
|
|
|
if (waiting_changed) {
|
2007-12-05 17:08:10 +00:00
|
|
|
InvalidateWindow(WC_STATION_VIEW, index); // update whole window
|
2006-06-27 21:25:53 +00:00
|
|
|
} else {
|
2007-12-05 17:08:10 +00:00
|
|
|
InvalidateWindowWidget(WC_STATION_VIEW, index, SVW_RATINGLIST); // update only ratings list
|
2006-06-27 21:25:53 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* called for every station each tick */
|
|
|
|
static void StationHandleSmallTick(Station *st)
|
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
if (st->facilities == 0) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
byte b = st->delete_ctr + 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
if (b >= 185) b = 0;
|
|
|
|
st->delete_ctr = b;
|
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (b == 0) UpdateStationRating(st);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void OnTick_Station()
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
if (_game_mode == GM_EDITOR) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
Station *st;
|
2008-04-19 23:19:12 +00:00
|
|
|
FOR_ALL_STATIONS(st) {
|
|
|
|
StationHandleSmallTick(st);
|
|
|
|
|
|
|
|
/* Run 250 tick interval trigger for station animation.
|
|
|
|
* Station index is included so that triggers are not all done
|
|
|
|
* at the same time. */
|
|
|
|
if ((_tick_counter + st->index) % 250 == 0) {
|
2009-05-17 10:19:00 +00:00
|
|
|
StationHandleBigTick(st);
|
2008-04-19 23:19:12 +00:00
|
|
|
StationAnimationTrigger(st, st->xy, STAT_ANIM_250_TICKS);
|
|
|
|
}
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void StationMonthlyLoop()
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-04-17 20:03:28 +00:00
|
|
|
/* not used */
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
void ModifyStationRatingAround(TileIndex tile, Owner owner, int amount, uint radius)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
Station *st;
|
|
|
|
|
|
|
|
FOR_ALL_STATIONS(st) {
|
2006-08-22 15:33:35 +00:00
|
|
|
if (st->owner == owner &&
|
2005-01-31 07:23:15 +00:00
|
|
|
DistanceManhattan(tile, st->xy) <= radius) {
|
2007-03-21 13:19:01 +00:00
|
|
|
for (CargoID i = 0; i < NUM_CARGO; i++) {
|
2008-04-17 20:03:28 +00:00
|
|
|
GoodsEntry *ge = &st->goods[i];
|
2005-10-23 13:04:44 +00:00
|
|
|
|
2007-08-26 13:55:36 +00:00
|
|
|
if (ge->acceptance_pickup != 0) {
|
2007-11-19 18:38:10 +00:00
|
|
|
ge->rating = Clamp(ge->rating + amount, 0, 255);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-21 13:19:01 +00:00
|
|
|
static void UpdateStationWaiting(Station *st, CargoID type, uint amount)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-06-22 11:58:59 +00:00
|
|
|
st->goods[type].cargo.Append(new CargoPacket(st->index, amount));
|
2007-11-20 13:35:54 +00:00
|
|
|
SetBit(st->goods[type].acceptance_pickup, GoodsEntry::PICKUP);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-19 23:19:12 +00:00
|
|
|
StationAnimationTrigger(st, st->xy, STAT_ANIM_NEW_CARGO, type);
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
InvalidateWindow(WC_STATION_VIEW, st->index);
|
2007-06-08 09:35:39 +00:00
|
|
|
st->MarkTilesDirty(true);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-06-27 20:53:25 +00:00
|
|
|
static bool IsUniqueStationName(const char *name)
|
|
|
|
{
|
|
|
|
const Station *st;
|
|
|
|
|
|
|
|
FOR_ALL_STATIONS(st) {
|
2009-01-10 15:54:07 +00:00
|
|
|
if (st->name != NULL && strcmp(st->name, name) == 0) return false;
|
2007-06-27 20:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2005-05-11 00:00:27 +00:00
|
|
|
/** Rename a station
|
2006-04-10 07:15:58 +00:00
|
|
|
* @param tile unused
|
2007-04-17 21:09:38 +00:00
|
|
|
* @param flags operation to perform
|
2005-05-11 00:00:27 +00:00
|
|
|
* @param p1 station ID that is to be renamed
|
|
|
|
* @param p2 unused
|
|
|
|
*/
|
2009-02-09 21:20:05 +00:00
|
|
|
CommandCost CmdRenameStation(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 p2, const char *text)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2009-05-18 16:21:28 +00:00
|
|
|
Station *st = Station::GetIfValid(p1);
|
|
|
|
if (st == NULL || !CheckOwnership(st->owner)) return CMD_ERROR;
|
2005-05-07 08:14:06 +00:00
|
|
|
|
2008-12-28 14:37:19 +00:00
|
|
|
bool reset = StrEmpty(text);
|
2008-09-15 19:02:50 +00:00
|
|
|
|
|
|
|
if (!reset) {
|
2008-12-28 14:37:19 +00:00
|
|
|
if (strlen(text) >= MAX_LENGTH_STATION_NAME_BYTES) return CMD_ERROR;
|
|
|
|
if (!IsUniqueStationName(text)) return_cmd_error(STR_NAME_MUST_BE_UNIQUE);
|
2008-09-15 19:02:50 +00:00
|
|
|
}
|
2007-06-27 20:53:25 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (flags & DC_EXEC) {
|
2008-01-12 19:58:06 +00:00
|
|
|
free(st->name);
|
2008-12-28 14:37:19 +00:00
|
|
|
st->name = reset ? NULL : strdup(text);
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
UpdateStationVirtCoord(st);
|
2008-05-18 16:51:44 +00:00
|
|
|
InvalidateWindowData(WC_STATION_LIST, st->owner, 1);
|
2004-08-09 17:04:08 +00:00
|
|
|
MarkWholeScreenDirty();
|
|
|
|
}
|
|
|
|
|
2007-06-18 19:53:50 +00:00
|
|
|
return CommandCost();
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-11-15 22:20:33 +00:00
|
|
|
/**
|
2008-11-22 15:48:43 +00:00
|
|
|
* Find all (non-buoy) stations around a rectangular producer (industry, house, headquarter, ...)
|
2008-04-17 20:03:28 +00:00
|
|
|
*
|
2008-11-22 15:48:43 +00:00
|
|
|
* @param tile North tile of producer
|
|
|
|
* @param w_prod X extent of producer
|
|
|
|
* @param h_prod Y extent of producer
|
2008-04-17 20:03:28 +00:00
|
|
|
*
|
|
|
|
* @return: Set of found stations
|
|
|
|
*/
|
2009-01-13 20:43:53 +00:00
|
|
|
void FindStationsAroundTiles(TileIndex tile, int w_prod, int h_prod, StationList *stations)
|
2007-11-15 22:20:33 +00:00
|
|
|
{
|
2008-11-22 15:48:43 +00:00
|
|
|
/* area to search = producer plus station catchment radius */
|
|
|
|
int max_rad = (_settings_game.station.modified_catchment ? MAX_CATCHMENT : CA_UNMODIFIED);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-02-25 21:29:50 +00:00
|
|
|
for (int dy = -max_rad; dy < h_prod + max_rad; dy++) {
|
|
|
|
for (int dx = -max_rad; dx < w_prod + max_rad; dx++) {
|
|
|
|
TileIndex cur_tile = TileAddWrap(tile, dx, dy);
|
|
|
|
if (cur_tile == INVALID_TILE || !IsTileType(cur_tile, MP_STATION)) continue;
|
2006-02-09 06:15:12 +00:00
|
|
|
|
2009-02-25 21:29:50 +00:00
|
|
|
Station *st = GetStationByTile(cur_tile);
|
2006-02-09 06:15:12 +00:00
|
|
|
|
2009-02-25 21:29:50 +00:00
|
|
|
if (st->IsBuoy()) continue; // bouys don't accept cargo
|
2006-02-09 06:24:53 +00:00
|
|
|
|
2009-02-25 21:29:50 +00:00
|
|
|
if (_settings_game.station.modified_catchment) {
|
|
|
|
int rad = st->GetCatchmentRadius();
|
|
|
|
if (dx < -rad || dx >= rad + w_prod || dy < -rad || dy >= rad + h_prod) continue;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-11-15 22:20:33 +00:00
|
|
|
|
2009-02-25 21:29:50 +00:00
|
|
|
/* Insert the station in the set. This will fail if it has
|
|
|
|
* already been added.
|
|
|
|
*/
|
|
|
|
stations->Include(st);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2009-02-25 21:29:50 +00:00
|
|
|
}
|
2007-11-15 22:20:33 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-11-15 22:20:33 +00:00
|
|
|
uint MoveGoodsToStation(TileIndex tile, int w, int h, CargoID type, uint amount)
|
|
|
|
{
|
2009-05-10 15:42:59 +00:00
|
|
|
/* Return if nothing to do. Also the rounding below fails for 0. */
|
|
|
|
if (amount == 0) return 0;
|
|
|
|
|
2008-04-18 04:54:09 +00:00
|
|
|
Station *st1 = NULL; // Station with best rating
|
|
|
|
Station *st2 = NULL; // Second best station
|
|
|
|
uint best_rating1 = 0; // rating of st1
|
|
|
|
uint best_rating2 = 0; // rating of st2
|
2007-11-15 22:20:33 +00:00
|
|
|
|
2009-01-13 20:43:53 +00:00
|
|
|
StationList all_stations;
|
|
|
|
FindStationsAroundTiles(tile, w, h, &all_stations);
|
2009-01-13 18:18:53 +00:00
|
|
|
for (Station **st_iter = all_stations.Begin(); st_iter != all_stations.End(); ++st_iter) {
|
2007-11-15 22:20:33 +00:00
|
|
|
Station *st = *st_iter;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-11-15 22:20:33 +00:00
|
|
|
/* Is the station reserved exclusively for somebody else? */
|
|
|
|
if (st->town->exclusive_counter > 0 && st->town->exclusivity != st->owner) continue;
|
2005-01-29 19:41:44 +00:00
|
|
|
|
2007-11-15 22:20:33 +00:00
|
|
|
if (st->goods[type].rating == 0) continue; // Lowest possible rating, better not to give cargo anymore
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-05-29 15:13:28 +00:00
|
|
|
if (_settings_game.order.selectgoods && st->goods[type].last_speed == 0) continue; // Selectively servicing stations, and not this one
|
2007-11-15 22:20:33 +00:00
|
|
|
|
|
|
|
if (IsCargoInClass(type, CC_PASSENGERS)) {
|
|
|
|
if (st->facilities == FACIL_TRUCK_STOP) continue; // passengers are never served by just a truck stop
|
|
|
|
} else {
|
|
|
|
if (st->facilities == FACIL_BUS_STOP) continue; // non-passengers are never served by just a bus stop
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-11-15 22:20:33 +00:00
|
|
|
|
|
|
|
/* This station can be used, add it to st1/st2 */
|
|
|
|
if (st1 == NULL || st->goods[type].rating >= best_rating1) {
|
|
|
|
st2 = st1; best_rating2 = best_rating1; st1 = st; best_rating1 = st->goods[type].rating;
|
|
|
|
} else if (st2 == NULL || st->goods[type].rating >= best_rating2) {
|
|
|
|
st2 = st; best_rating2 = st->goods[type].rating;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* no stations around at all? */
|
|
|
|
if (st1 == NULL) return 0;
|
|
|
|
|
|
|
|
if (st2 == NULL) {
|
|
|
|
/* only one station around */
|
|
|
|
uint moved = amount * best_rating1 / 256 + 1;
|
|
|
|
UpdateStationWaiting(st1, type, moved);
|
|
|
|
return moved;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-11-15 22:20:33 +00:00
|
|
|
/* several stations around, the best two (highest rating) are in st1 and st2 */
|
2004-08-09 17:04:08 +00:00
|
|
|
assert(st1 != NULL);
|
|
|
|
assert(st2 != NULL);
|
2007-11-15 22:20:33 +00:00
|
|
|
assert(best_rating1 != 0 || best_rating2 != 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
/* the 2nd highest one gets a penalty */
|
|
|
|
best_rating2 >>= 1;
|
|
|
|
|
|
|
|
/* amount given to station 1 */
|
2007-11-15 22:20:33 +00:00
|
|
|
uint t = (best_rating1 * (amount + 1)) / (best_rating1 + best_rating2);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
uint moved = 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
if (t != 0) {
|
2007-11-15 22:20:33 +00:00
|
|
|
moved = t * best_rating1 / 256 + 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
amount -= t;
|
2004-09-10 19:02:27 +00:00
|
|
|
UpdateStationWaiting(st1, type, moved);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (amount != 0) {
|
2006-02-09 06:15:12 +00:00
|
|
|
amount = amount * best_rating2 / 256 + 1;
|
|
|
|
moved += amount;
|
2004-08-09 17:04:08 +00:00
|
|
|
UpdateStationWaiting(st2, type, amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
return moved;
|
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
void BuildOilRig(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2009-01-09 14:59:02 +00:00
|
|
|
if (!Station::CanAllocateItem()) {
|
2006-12-26 17:36:18 +00:00
|
|
|
DEBUG(misc, 0, "Can't allocate station for oilrig at 0x%X, reverting to oilrig only", tile);
|
2005-09-14 22:03:27 +00:00
|
|
|
return;
|
|
|
|
}
|
2007-11-04 11:46:01 +00:00
|
|
|
|
2009-01-09 14:59:02 +00:00
|
|
|
Station *st = new Station(tile);
|
2008-04-24 18:30:41 +00:00
|
|
|
st->town = ClosestTownFromTile(tile, UINT_MAX);
|
2007-11-04 11:46:01 +00:00
|
|
|
st->sign.width_1 = 0;
|
|
|
|
|
2008-04-25 15:22:32 +00:00
|
|
|
st->string_id = GenerateStationName(st, tile, STATIONNAMING_OILRIG);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-07-26 16:14:10 +00:00
|
|
|
assert(IsTileType(tile, MP_INDUSTRY));
|
|
|
|
MakeOilrig(tile, st->index, GetWaterClass(tile));
|
2005-09-14 22:03:27 +00:00
|
|
|
|
|
|
|
st->owner = OWNER_NONE;
|
|
|
|
st->airport_flags = 0;
|
|
|
|
st->airport_type = AT_OILRIG;
|
|
|
|
st->xy = tile;
|
|
|
|
st->bus_stops = NULL;
|
|
|
|
st->truck_stops = NULL;
|
|
|
|
st->airport_tile = tile;
|
|
|
|
st->dock_tile = tile;
|
2008-12-26 18:01:15 +00:00
|
|
|
st->train_tile = INVALID_TILE;
|
2005-09-14 22:03:27 +00:00
|
|
|
st->had_vehicle_of_type = 0;
|
|
|
|
st->time_since_load = 255;
|
|
|
|
st->time_since_unload = 255;
|
|
|
|
st->delete_ctr = 0;
|
2007-03-08 16:27:54 +00:00
|
|
|
st->last_vehicle_type = VEH_INVALID;
|
2005-09-14 22:03:27 +00:00
|
|
|
st->facilities = FACIL_AIRPORT | FACIL_DOCK;
|
|
|
|
st->build_date = _date;
|
|
|
|
|
2008-10-12 10:22:13 +00:00
|
|
|
st->rect.BeforeAddTile(tile, StationRect::ADD_FORCE);
|
|
|
|
|
2007-03-21 13:19:01 +00:00
|
|
|
for (CargoID j = 0; j < NUM_CARGO; j++) {
|
2007-08-26 13:55:36 +00:00
|
|
|
st->goods[j].acceptance_pickup = 0;
|
2007-06-22 11:58:59 +00:00
|
|
|
st->goods[j].days_since_pickup = 255;
|
2007-03-08 20:50:27 +00:00
|
|
|
st->goods[j].rating = INITIAL_STATION_RATING;
|
2005-09-14 22:03:27 +00:00
|
|
|
st->goods[j].last_speed = 0;
|
|
|
|
st->goods[j].last_age = 255;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2005-09-14 22:03:27 +00:00
|
|
|
|
|
|
|
UpdateStationVirtCoordDirty(st);
|
|
|
|
UpdateStationAcceptance(st, false);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
void DeleteOilRig(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-04-17 20:03:28 +00:00
|
|
|
Station *st = GetStationByTile(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-07-26 16:14:10 +00:00
|
|
|
MakeWaterKeepingClass(tile, OWNER_NONE);
|
|
|
|
MarkTileDirtyByTile(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-12-26 18:01:15 +00:00
|
|
|
st->dock_tile = INVALID_TILE;
|
|
|
|
st->airport_tile = INVALID_TILE;
|
2004-08-09 17:04:08 +00:00
|
|
|
st->facilities &= ~(FACIL_AIRPORT | FACIL_DOCK);
|
|
|
|
st->airport_flags = 0;
|
2008-10-12 10:22:13 +00:00
|
|
|
|
|
|
|
st->rect.AfterRemoveTile(st, tile);
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
UpdateStationVirtCoordDirty(st);
|
2007-01-14 19:18:50 +00:00
|
|
|
if (st->facilities == 0) delete st;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
static void ChangeTileOwner_Station(TileIndex tile, Owner old_owner, Owner new_owner)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2009-03-02 22:57:47 +00:00
|
|
|
if (IsDriveThroughStopTile(tile)) {
|
|
|
|
for (RoadType rt = ROADTYPE_ROAD; rt < ROADTYPE_END; rt++) {
|
|
|
|
/* Update all roadtypes, no matter if they are present */
|
|
|
|
if (GetRoadOwner(tile, rt) == old_owner) {
|
|
|
|
SetRoadOwner(tile, rt, new_owner == INVALID_OWNER ? OWNER_NONE : new_owner);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
if (!IsTileOwner(tile, old_owner)) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
if (new_owner != INVALID_OWNER) {
|
2009-02-26 14:07:42 +00:00
|
|
|
/* for buoys, owner of tile is owner of water, st->owner == OWNER_NONE */
|
2008-09-30 20:39:50 +00:00
|
|
|
SetTileOwner(tile, new_owner);
|
2008-05-18 16:51:44 +00:00
|
|
|
InvalidateWindowClassesData(WC_STATION_LIST, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2008-02-09 17:30:13 +00:00
|
|
|
if (IsDriveThroughStopTile(tile)) {
|
|
|
|
/* Remove the drive-through road stop */
|
2008-03-31 00:06:17 +00:00
|
|
|
DoCommand(tile, 0, (GetStationType(tile) == STATION_TRUCK) ? ROADSTOP_TRUCK : ROADSTOP_BUS, DC_EXEC | DC_BANKRUPT, CMD_REMOVE_ROAD_STOP);
|
2008-02-09 17:30:13 +00:00
|
|
|
assert(IsTileType(tile, MP_ROAD));
|
|
|
|
/* Change owner of tile and all roadtypes */
|
2008-09-30 20:39:50 +00:00
|
|
|
ChangeTileOwner(tile, old_owner, new_owner);
|
2007-02-23 00:17:46 +00:00
|
|
|
} else {
|
2008-02-09 15:07:31 +00:00
|
|
|
DoCommand(tile, 0, 0, DC_EXEC | DC_BANKRUPT, CMD_LANDSCAPE_CLEAR);
|
2008-02-09 17:30:13 +00:00
|
|
|
/* Set tile owner of water under (now removed) buoy and dock to OWNER_NONE.
|
|
|
|
* Update owner of buoy if it was not removed (was in orders).
|
|
|
|
* Do not update when owned by OWNER_WATER (sea and rivers). */
|
2008-09-30 20:39:50 +00:00
|
|
|
if ((IsTileType(tile, MP_WATER) || IsBuoyTile(tile)) && IsTileOwner(tile, old_owner)) SetTileOwner(tile, OWNER_NONE);
|
2007-02-23 00:17:46 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-23 00:17:46 +00:00
|
|
|
/**
|
|
|
|
* Check if a drive-through road stop tile can be cleared.
|
|
|
|
* Road stops built on town-owned roads check the conditions
|
|
|
|
* that would allow clearing of the original road.
|
|
|
|
* @param tile road stop tile to check
|
2008-05-24 22:15:10 +00:00
|
|
|
* @param flags command flags
|
2007-02-23 00:17:46 +00:00
|
|
|
* @return true if the road can be cleared
|
|
|
|
*/
|
2009-02-09 21:20:05 +00:00
|
|
|
static bool CanRemoveRoadWithStop(TileIndex tile, DoCommandFlag flags)
|
2007-02-23 00:17:46 +00:00
|
|
|
{
|
2009-03-02 22:57:47 +00:00
|
|
|
Owner road_owner = _current_company;
|
|
|
|
Owner tram_owner = _current_company;
|
|
|
|
|
|
|
|
RoadTypes rts = GetRoadTypes(tile);
|
|
|
|
if (HasBit(rts, ROADTYPE_ROAD)) road_owner = GetRoadOwner(tile, ROADTYPE_ROAD);
|
|
|
|
if (HasBit(rts, ROADTYPE_TRAM)) tram_owner = GetRoadOwner(tile, ROADTYPE_TRAM);
|
|
|
|
|
|
|
|
if ((road_owner != OWNER_TOWN && !CheckOwnership(road_owner)) || !CheckOwnership(tram_owner)) return false;
|
2007-02-23 00:17:46 +00:00
|
|
|
|
2009-03-02 22:57:47 +00:00
|
|
|
return road_owner != OWNER_TOWN || CheckAllowRemoveRoad(tile, GetAnyRoadBits(tile, ROADTYPE_ROAD), OWNER_TOWN, ROADTYPE_ROAD, flags);
|
2007-02-23 00:17:46 +00:00
|
|
|
}
|
|
|
|
|
2009-02-09 21:20:05 +00:00
|
|
|
static CommandCost ClearTile_Station(TileIndex tile, DoCommandFlag flags)
|
2005-06-24 12:38:35 +00:00
|
|
|
{
|
2004-08-09 17:04:08 +00:00
|
|
|
if (flags & DC_AUTO) {
|
2006-03-26 14:41:39 +00:00
|
|
|
switch (GetStationType(tile)) {
|
2009-04-21 23:40:56 +00:00
|
|
|
case STATION_RAIL: return_cmd_error(STR_ERROR_MUST_DEMOLISH_RAILROAD);
|
|
|
|
case STATION_AIRPORT: return_cmd_error(STR_ERROR_MUST_DEMOLISH_AIRPORT_FIRST);
|
|
|
|
case STATION_TRUCK: return_cmd_error(HasTileRoadType(tile, ROADTYPE_TRAM) ? STR_ERROR_MUST_DEMOLISH_CARGO_TRAM_STATION_FIRST : STR_ERROR_MUST_DEMOLISH_TRUCK_STATION_FIRST);
|
|
|
|
case STATION_BUS: return_cmd_error(HasTileRoadType(tile, ROADTYPE_TRAM) ? STR_ERROR_MUST_DEMOLISH_PASSENGER_TRAM_STATION_FIRST : STR_ERROR_MUST_DEMOLISH_BUS_STATION_FIRST);
|
|
|
|
case STATION_BUOY: return_cmd_error(STR_ERROR_BUOY_IN_THE_WAY);
|
|
|
|
case STATION_DOCK: return_cmd_error(STR_ERROR_MUST_DEMOLISH_DOCK_FIRST);
|
2006-03-26 14:41:39 +00:00
|
|
|
case STATION_OILRIG:
|
2009-04-21 23:40:56 +00:00
|
|
|
SetDParam(0, STR_INDUSTRY_NAME_OIL_RIG);
|
|
|
|
return_cmd_error(STR_OBJECT_IN_THE_WAY);
|
2006-03-26 14:41:39 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-02-18 11:27:09 +00:00
|
|
|
Station *st = GetStationByTile(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-26 14:41:39 +00:00
|
|
|
switch (GetStationType(tile)) {
|
|
|
|
case STATION_RAIL: return RemoveRailroadStation(st, tile, flags);
|
|
|
|
case STATION_AIRPORT: return RemoveAirport(st, flags);
|
|
|
|
case STATION_TRUCK:
|
2008-05-24 22:15:10 +00:00
|
|
|
if (IsDriveThroughStopTile(tile) && !CanRemoveRoadWithStop(tile, flags))
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_MUST_DEMOLISH_TRUCK_STATION_FIRST);
|
2007-02-14 16:37:16 +00:00
|
|
|
return RemoveRoadStop(st, flags, tile);
|
|
|
|
case STATION_BUS:
|
2008-05-24 22:15:10 +00:00
|
|
|
if (IsDriveThroughStopTile(tile) && !CanRemoveRoadWithStop(tile, flags))
|
2009-04-21 23:40:56 +00:00
|
|
|
return_cmd_error(STR_ERROR_MUST_DEMOLISH_BUS_STATION_FIRST);
|
2007-02-14 16:37:16 +00:00
|
|
|
return RemoveRoadStop(st, flags, tile);
|
2006-03-26 14:41:39 +00:00
|
|
|
case STATION_BUOY: return RemoveBuoy(st, flags);
|
|
|
|
case STATION_DOCK: return RemoveDock(st, flags);
|
|
|
|
default: break;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
return CMD_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-02-09 21:20:05 +00:00
|
|
|
static CommandCost TerraformTile_Station(TileIndex tile, DoCommandFlag flags, uint z_new, Slope tileh_new)
|
2007-08-30 17:17:04 +00:00
|
|
|
{
|
2008-05-29 15:13:28 +00:00
|
|
|
if (_settings_game.construction.build_on_slopes && AutoslopeEnabled()) {
|
2007-09-14 22:27:40 +00:00
|
|
|
/* TODO: If you implement newgrf callback 149 'land slope check', you have to decide what to do with it here.
|
|
|
|
* TTDP does not call it.
|
|
|
|
*/
|
|
|
|
if (!IsSteepSlope(tileh_new) && (GetTileMaxZ(tile) == z_new + GetSlopeMaxZ(tileh_new))) {
|
|
|
|
switch (GetStationType(tile)) {
|
|
|
|
case STATION_RAIL: {
|
|
|
|
DiagDirection direction = AxisToDiagDir(GetRailStationAxis(tile));
|
|
|
|
if (!AutoslopeCheckForEntranceEdge(tile, z_new, tileh_new, direction)) break;
|
|
|
|
if (!AutoslopeCheckForEntranceEdge(tile, z_new, tileh_new, ReverseDiagDir(direction))) break;
|
2008-01-09 16:55:48 +00:00
|
|
|
return CommandCost(EXPENSES_CONSTRUCTION, _price.terraform);
|
2007-09-14 22:27:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
case STATION_AIRPORT:
|
2008-01-09 16:55:48 +00:00
|
|
|
return CommandCost(EXPENSES_CONSTRUCTION, _price.terraform);
|
2007-09-14 22:27:40 +00:00
|
|
|
|
|
|
|
case STATION_TRUCK:
|
|
|
|
case STATION_BUS: {
|
|
|
|
DiagDirection direction = GetRoadStopDir(tile);
|
|
|
|
if (!AutoslopeCheckForEntranceEdge(tile, z_new, tileh_new, direction)) break;
|
|
|
|
if (IsDriveThroughStopTile(tile)) {
|
|
|
|
if (!AutoslopeCheckForEntranceEdge(tile, z_new, tileh_new, ReverseDiagDir(direction))) break;
|
|
|
|
}
|
2008-01-09 16:55:48 +00:00
|
|
|
return CommandCost(EXPENSES_CONSTRUCTION, _price.terraform);
|
2007-09-14 22:27:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-08-30 17:17:04 +00:00
|
|
|
return DoCommand(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR);
|
|
|
|
}
|
|
|
|
|
2006-05-06 21:46:26 +00:00
|
|
|
|
2007-01-10 18:56:51 +00:00
|
|
|
extern const TileTypeProcs _tile_type_station_procs = {
|
2009-03-15 00:32:18 +00:00
|
|
|
DrawTile_Station, // draw_tile_proc
|
|
|
|
GetSlopeZ_Station, // get_slope_z_proc
|
|
|
|
ClearTile_Station, // clear_tile_proc
|
|
|
|
GetAcceptedCargo_Station, // get_accepted_cargo_proc
|
|
|
|
GetTileDesc_Station, // get_tile_desc_proc
|
|
|
|
GetTileTrackStatus_Station, // get_tile_track_status_proc
|
|
|
|
ClickTile_Station, // click_tile_proc
|
|
|
|
AnimateTile_Station, // animate_tile_proc
|
|
|
|
TileLoop_Station, // tile_loop_clear
|
|
|
|
ChangeTileOwner_Station, // change_tile_owner_clear
|
|
|
|
NULL, // get_produced_cargo_proc
|
|
|
|
VehicleEnter_Station, // vehicle_enter_tile_proc
|
|
|
|
GetFoundation_Station, // get_foundation_proc
|
|
|
|
TerraformTile_Station, // terraform_tile_proc
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|