2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2007-02-23 01:48:53 +00:00
|
|
|
/** @file tunnelbridge_cmd.cpp
|
2005-08-01 20:23:38 +00:00
|
|
|
* This file deals with tunnels and bridges (non-gui stuff)
|
|
|
|
* @todo seperate this file into two
|
|
|
|
*/
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2005-06-02 19:30:21 +00:00
|
|
|
#include "openttd.h"
|
2006-03-13 12:55:20 +00:00
|
|
|
#include "bridge_map.h"
|
2006-03-12 20:59:56 +00:00
|
|
|
#include "rail_map.h"
|
2006-03-05 10:19:33 +00:00
|
|
|
#include "road_map.h"
|
2007-12-21 22:50:51 +00:00
|
|
|
#include "tile_cmd.h"
|
2007-03-20 13:47:00 +00:00
|
|
|
#include "landscape.h"
|
2006-03-06 20:55:24 +00:00
|
|
|
#include "tunnel_map.h"
|
2006-12-27 12:38:02 +00:00
|
|
|
#include "unmovable_map.h"
|
2008-01-09 09:45:45 +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"
|
2005-07-21 22:15:02 +00:00
|
|
|
#include "variables.h"
|
2005-08-01 20:23:38 +00:00
|
|
|
#include "bridge.h"
|
2005-11-18 23:41:03 +00:00
|
|
|
#include "train.h"
|
2006-03-12 20:59:56 +00:00
|
|
|
#include "water_map.h"
|
2006-05-27 16:12:16 +00:00
|
|
|
#include "yapf/yapf.h"
|
2006-09-27 18:17:01 +00:00
|
|
|
#include "newgrf_sound.h"
|
2007-09-14 22:27:40 +00:00
|
|
|
#include "autoslope.h"
|
2007-11-10 01:17:15 +00:00
|
|
|
#include "transparency.h"
|
2007-12-16 15:38:51 +00:00
|
|
|
#include "tunnelbridge_map.h"
|
2007-12-21 19:49:27 +00:00
|
|
|
#include "strings_func.h"
|
2007-12-26 13:50:40 +00:00
|
|
|
#include "date_func.h"
|
2007-12-25 11:26:07 +00:00
|
|
|
#include "functions.h"
|
2007-12-27 13:35:39 +00:00
|
|
|
#include "vehicle_func.h"
|
2007-12-29 09:24:26 +00:00
|
|
|
#include "sound_func.h"
|
2008-01-09 23:00:59 +00:00
|
|
|
#include "signal_func.h"
|
2008-01-23 22:34:04 +00:00
|
|
|
#include "tunnelbridge.h"
|
2008-02-18 01:42:21 +00:00
|
|
|
#include "player_base.h"
|
2008-03-31 00:17:39 +00:00
|
|
|
#include "engine_func.h"
|
2008-04-29 21:31:29 +00:00
|
|
|
#include "engine_base.h"
|
2008-04-17 19:10:30 +00:00
|
|
|
#include "economy_func.h"
|
|
|
|
#include "rail.h"
|
2008-04-17 21:21:01 +00:00
|
|
|
#include "cheat_func.h"
|
2008-05-08 16:48:29 +00:00
|
|
|
#include "elrail_func.h"
|
2008-05-07 09:07:19 +00:00
|
|
|
#include "landscape_type.h"
|
2005-08-01 16:31:19 +00:00
|
|
|
|
2008-01-13 01:21:35 +00:00
|
|
|
#include "table/sprites.h"
|
|
|
|
#include "table/strings.h"
|
|
|
|
#include "table/bridge_land.h"
|
2007-12-16 15:38:51 +00:00
|
|
|
|
2008-02-11 17:35:15 +00:00
|
|
|
BridgeSpec _bridge[MAX_BRIDGES];
|
2008-04-18 10:16:51 +00:00
|
|
|
TileIndex _build_tunnel_endtile;
|
2005-12-15 17:55:59 +00:00
|
|
|
|
2008-02-05 04:48:56 +00:00
|
|
|
/** Reset the data been eventually changed by the grf loaded. */
|
|
|
|
void ResetBridges()
|
|
|
|
{
|
|
|
|
/* First, free sprite table data */
|
2008-02-11 04:12:30 +00:00
|
|
|
for (BridgeType i = 0; i < MAX_BRIDGES; i++) {
|
2008-02-05 04:48:56 +00:00
|
|
|
if (_bridge[i].sprite_table != NULL) {
|
|
|
|
for (uint j = 0; j < 7; j++) free(_bridge[i].sprite_table[j]);
|
|
|
|
free(_bridge[i].sprite_table);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Then, wipe out current bidges */
|
|
|
|
memset(&_bridge, 0, sizeof(_bridge));
|
|
|
|
/* And finally, reinstall default data */
|
|
|
|
memcpy(&_bridge, &_orig_bridge, sizeof(_orig_bridge));
|
|
|
|
}
|
2005-12-15 17:55:59 +00:00
|
|
|
|
2007-04-04 03:21:14 +00:00
|
|
|
/** calculate the price factor for building a long bridge.
|
|
|
|
* basically the cost delta is 1,1, 1, 2,2, 3,3,3, 4,4,4,4, 5,5,5,5,5, 6,6,6,6,6,6, 7,7,7,7,7,7,7, 8,8,8,8,8,8,8,8,
|
|
|
|
*/
|
2004-08-09 17:04:08 +00:00
|
|
|
int CalcBridgeLenCostFactor(int x)
|
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
int n;
|
|
|
|
int r;
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (x < 2) return x;
|
|
|
|
x -= 2;
|
2005-11-14 19:48:04 +00:00
|
|
|
for (n = 0, r = 2;; n++) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (x <= n) return r + x * n;
|
|
|
|
r += n * n;
|
|
|
|
x -= n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-21 15:48:00 +00:00
|
|
|
Foundation GetBridgeFoundation(Slope tileh, Axis axis)
|
|
|
|
{
|
|
|
|
if ((tileh == SLOPE_FLAT) ||
|
|
|
|
(((tileh == SLOPE_NE) || (tileh == SLOPE_SW)) && (axis == AXIS_X)) ||
|
|
|
|
(((tileh == SLOPE_NW) || (tileh == SLOPE_SE)) && (axis == AXIS_Y))) return FOUNDATION_NONE;
|
|
|
|
|
|
|
|
return (HasSlopeHighestCorner(tileh) ? InclinedFoundation(axis) : FlatteningFoundation(tileh));
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-01-22 16:08:17 +00:00
|
|
|
/**
|
|
|
|
* Determines if the track on a bridge ramp is flat or goes up/down.
|
|
|
|
*
|
|
|
|
* @param tileh Slope of the tile under the bridge head
|
|
|
|
* @param axis Orientation of bridge
|
|
|
|
* @return true iff the track is flat.
|
|
|
|
*/
|
|
|
|
bool HasBridgeFlatRamp(Slope tileh, Axis axis)
|
|
|
|
{
|
|
|
|
ApplyFoundationToSlope(GetBridgeFoundation(tileh, axis), &tileh);
|
|
|
|
/* If the foundation slope is flat the bridge has a non-flat ramp and vice versa. */
|
|
|
|
return (tileh != SLOPE_FLAT);
|
|
|
|
}
|
|
|
|
|
2005-10-01 17:38:48 +00:00
|
|
|
static inline const PalSpriteID *GetBridgeSpriteTable(int index, byte table)
|
|
|
|
{
|
2008-02-11 17:35:15 +00:00
|
|
|
const BridgeSpec *bridge = GetBridgeSpec(index);
|
2005-10-01 17:38:48 +00:00
|
|
|
assert(table < 7);
|
|
|
|
if (bridge->sprite_table == NULL || bridge->sprite_table[table] == NULL) {
|
|
|
|
return _bridge_sprite_table[index][table];
|
|
|
|
} else {
|
|
|
|
return bridge->sprite_table[table];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-08 07:12:33 +00:00
|
|
|
|
2008-01-21 15:48:00 +00:00
|
|
|
/**
|
|
|
|
* Determines the foundation for the north bridge head, and tests if the resulting slope is valid.
|
|
|
|
*
|
|
|
|
* @param axis Axis of the bridge
|
|
|
|
* @param tileh Slope of the tile under the north bridge head; returns slope on top of foundation
|
|
|
|
* @param z TileZ corresponding to tileh, gets modified as well
|
|
|
|
* @return Error or cost for bridge foundation
|
2004-08-09 17:04:08 +00:00
|
|
|
*/
|
2008-01-21 15:48:00 +00:00
|
|
|
static CommandCost CheckBridgeSlopeNorth(Axis axis, Slope *tileh, uint *z)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-01-21 15:48:00 +00:00
|
|
|
Foundation f = GetBridgeFoundation(*tileh, axis);
|
|
|
|
*z += ApplyFoundationToSlope(f, tileh);
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-01-21 15:48:00 +00:00
|
|
|
Slope valid_inclined = (axis == AXIS_X ? SLOPE_NE : SLOPE_NW);
|
|
|
|
if ((*tileh != SLOPE_FLAT) && (*tileh != valid_inclined)) return CMD_ERROR;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-01-21 15:48:00 +00:00
|
|
|
if (f == FOUNDATION_NONE) return CommandCost();
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-01-21 15:48:00 +00:00
|
|
|
return CommandCost(EXPENSES_CONSTRUCTION, _price.terraform);
|
2006-08-08 07:12:33 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-01-21 15:48:00 +00:00
|
|
|
/**
|
|
|
|
* Determines the foundation for the south bridge head, and tests if the resulting slope is valid.
|
|
|
|
*
|
|
|
|
* @param axis Axis of the bridge
|
|
|
|
* @param tileh Slope of the tile under the south bridge head; returns slope on top of foundation
|
|
|
|
* @param z TileZ corresponding to tileh, gets modified as well
|
|
|
|
* @return Error or cost for bridge foundation
|
|
|
|
*/
|
|
|
|
static CommandCost CheckBridgeSlopeSouth(Axis axis, Slope *tileh, uint *z)
|
2006-08-08 07:12:33 +00:00
|
|
|
{
|
2008-01-21 15:48:00 +00:00
|
|
|
Foundation f = GetBridgeFoundation(*tileh, axis);
|
|
|
|
*z += ApplyFoundationToSlope(f, tileh);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-01-21 15:48:00 +00:00
|
|
|
Slope valid_inclined = (axis == AXIS_X ? SLOPE_SW : SLOPE_SE);
|
|
|
|
if ((*tileh != SLOPE_FLAT) && (*tileh != valid_inclined)) return CMD_ERROR;
|
2006-08-08 07:12:33 +00:00
|
|
|
|
2008-01-21 15:48:00 +00:00
|
|
|
if (f == FOUNDATION_NONE) return CommandCost();
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-01-21 15:48:00 +00:00
|
|
|
return CommandCost(EXPENSES_CONSTRUCTION, _price.terraform);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-08-08 07:12:33 +00:00
|
|
|
|
2008-06-23 08:38:07 +00:00
|
|
|
bool CheckBridge_Stuff(BridgeType bridge_type, uint bridge_len, uint32 flags)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-06-23 08:38:07 +00:00
|
|
|
if (flags & DC_QUERY_COST) {
|
2008-06-26 00:40:42 +00:00
|
|
|
return bridge_len <= (_settings_game.construction.longbridges ? 100U : 16U);
|
2008-06-23 08:38:07 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-05-09 13:26:15 +00:00
|
|
|
if (bridge_type >= MAX_BRIDGES) return false;
|
2008-06-23 08:38:07 +00:00
|
|
|
|
|
|
|
const BridgeSpec *b = GetBridgeSpec(bridge_type);
|
2005-08-01 20:23:38 +00:00
|
|
|
if (b->avail_year > _cur_year) return false;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-06-23 08:38:07 +00:00
|
|
|
uint max = b->max_length;
|
2008-05-29 15:13:28 +00:00
|
|
|
if (max >= 16 && _settings_game.construction.longbridges) max = 100;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
return b->min_length <= bridge_len && bridge_len <= max;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-05-07 10:26:12 +00:00
|
|
|
/** Build a Bridge
|
2006-04-10 07:15:58 +00:00
|
|
|
* @param end_tile end tile
|
2007-04-04 03:21:14 +00:00
|
|
|
* @param flags type of operation
|
2005-05-07 10:26:12 +00:00
|
|
|
* @param p1 packed start tile coords (~ dx)
|
|
|
|
* @param p2 various bitstuffed elements
|
|
|
|
* - p2 = (bit 0- 7) - bridge type (hi bh)
|
2007-05-20 19:14:08 +00:00
|
|
|
* - p2 = (bit 8-..) - rail type or road types.
|
|
|
|
* - p2 = (bit 15 ) - set means road bridge.
|
2004-08-09 17:04:08 +00:00
|
|
|
*/
|
2007-06-18 10:48:15 +00:00
|
|
|
CommandCost CmdBuildBridge(TileIndex end_tile, uint32 flags, uint32 p1, uint32 p2)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-02-11 04:12:30 +00:00
|
|
|
BridgeType bridge_type;
|
2008-02-11 01:06:44 +00:00
|
|
|
RailType railtype = INVALID_RAILTYPE;
|
|
|
|
RoadTypes roadtypes = ROADTYPES_NONE;
|
2006-05-16 12:04:53 +00:00
|
|
|
uint x;
|
|
|
|
uint y;
|
|
|
|
uint sx;
|
|
|
|
uint sy;
|
2006-03-23 06:30:39 +00:00
|
|
|
TileIndex tile_start;
|
|
|
|
TileIndex tile_end;
|
2006-04-23 13:48:16 +00:00
|
|
|
Slope tileh_start;
|
|
|
|
Slope tileh_end;
|
2006-03-23 06:30:39 +00:00
|
|
|
uint z_start;
|
|
|
|
uint z_end;
|
2006-03-10 17:01:51 +00:00
|
|
|
TileIndex tile;
|
|
|
|
TileIndexDiff delta;
|
2005-11-14 19:48:04 +00:00
|
|
|
uint bridge_len;
|
2006-03-08 06:55:33 +00:00
|
|
|
Axis direction;
|
2008-01-09 16:55:48 +00:00
|
|
|
CommandCost cost(EXPENSES_CONSTRUCTION);
|
2008-01-21 15:48:00 +00:00
|
|
|
CommandCost ret;
|
2007-02-03 21:55:14 +00:00
|
|
|
bool replace_bridge = false;
|
2008-02-11 04:12:30 +00:00
|
|
|
BridgeType replaced_bridge_type;
|
2008-02-11 01:06:44 +00:00
|
|
|
TransportType transport_type;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
/* unpack parameters */
|
2005-07-20 15:29:28 +00:00
|
|
|
bridge_type = GB(p2, 0, 8);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-01-30 17:18:45 +00:00
|
|
|
if (p1 >= MapSize()) return CMD_ERROR;
|
2005-05-07 10:26:12 +00:00
|
|
|
|
2008-02-11 03:22:44 +00:00
|
|
|
transport_type = (TransportType)GB(p2, 15, 2);
|
|
|
|
|
2007-04-04 03:21:14 +00:00
|
|
|
/* type of bridge */
|
2008-02-11 01:06:44 +00:00
|
|
|
switch (transport_type) {
|
|
|
|
case TRANSPORT_ROAD:
|
|
|
|
roadtypes = (RoadTypes)GB(p2, 8, 3);
|
|
|
|
if (!AreValidRoadTypes(roadtypes) || !HasRoadTypesAvail(_current_player, roadtypes)) return CMD_ERROR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TRANSPORT_RAIL:
|
|
|
|
railtype = (RailType)GB(p2, 8, 8);
|
|
|
|
if (!ValParamRailtype(railtype)) return CMD_ERROR;
|
|
|
|
break;
|
2008-02-11 03:22:44 +00:00
|
|
|
|
2008-06-11 13:54:01 +00:00
|
|
|
case TRANSPORT_WATER:
|
|
|
|
break;
|
|
|
|
|
2008-02-11 03:22:44 +00:00
|
|
|
default:
|
2008-06-11 13:54:01 +00:00
|
|
|
/* Airports don't have tunnels. */
|
2008-02-11 03:22:44 +00:00
|
|
|
return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2006-04-10 12:36:04 +00:00
|
|
|
x = TileX(end_tile);
|
|
|
|
y = TileY(end_tile);
|
|
|
|
sx = TileX(p1);
|
|
|
|
sy = TileY(p1);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
/* check if valid, and make sure that (x,y) are smaller than (sx,sy) */
|
|
|
|
if (x == sx) {
|
2005-11-14 19:48:04 +00:00
|
|
|
if (y == sy) return_cmd_error(STR_5008_CANNOT_START_AND_END_ON);
|
2006-03-08 06:55:33 +00:00
|
|
|
direction = AXIS_Y;
|
2007-02-22 08:43:02 +00:00
|
|
|
if (y > sy) Swap(y, sy);
|
2004-08-09 17:04:08 +00:00
|
|
|
} else if (y == sy) {
|
2006-03-08 06:55:33 +00:00
|
|
|
direction = AXIS_X;
|
2007-02-22 08:43:02 +00:00
|
|
|
if (x > sx) Swap(x, sx);
|
2005-11-14 19:48:04 +00:00
|
|
|
} else {
|
2004-08-09 17:04:08 +00:00
|
|
|
return_cmd_error(STR_500A_START_AND_END_MUST_BE_IN);
|
2005-11-14 19:48:04 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-06-10 08:37:41 +00:00
|
|
|
bridge_len = sx + sy - x - y - 1;
|
2008-06-11 13:54:01 +00:00
|
|
|
if (transport_type != TRANSPORT_WATER) {
|
|
|
|
/* set and test bridge length, availability */
|
2008-06-23 08:38:07 +00:00
|
|
|
if (!CheckBridge_Stuff(bridge_type, bridge_len, flags)) return_cmd_error(STR_5015_CAN_T_BUILD_BRIDGE_HERE);
|
2008-06-11 13:54:01 +00:00
|
|
|
}
|
2005-05-09 13:26:15 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
/* retrieve landscape height and ensure it's on land */
|
2006-04-10 12:36:04 +00:00
|
|
|
tile_start = TileXY(x, y);
|
|
|
|
tile_end = TileXY(sx, sy);
|
2008-02-02 09:28:43 +00:00
|
|
|
if (IsWaterTile(tile_start) || IsWaterTile(tile_end)) {
|
2006-06-10 08:37:41 +00:00
|
|
|
return_cmd_error(STR_02A0_ENDS_OF_BRIDGE_MUST_BOTH);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-23 06:30:39 +00:00
|
|
|
tileh_start = GetTileSlope(tile_start, &z_start);
|
|
|
|
tileh_end = GetTileSlope(tile_end, &z_end);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-01-21 15:48:00 +00:00
|
|
|
CommandCost terraform_cost_north = CheckBridgeSlopeNorth(direction, &tileh_start, &z_start);
|
2008-02-21 16:05:33 +00:00
|
|
|
CommandCost terraform_cost_south = CheckBridgeSlopeSouth(direction, &tileh_end, &z_end);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-10-05 22:10:15 +00:00
|
|
|
if (z_start != z_end) return_cmd_error(STR_BRIDGEHEADS_NOT_SAME_HEIGHT);
|
2005-03-27 15:56:54 +00:00
|
|
|
|
2007-02-03 21:55:14 +00:00
|
|
|
if (IsBridgeTile(tile_start) && IsBridgeTile(tile_end) &&
|
|
|
|
GetOtherBridgeEnd(tile_start) == tile_end &&
|
2007-12-16 15:38:51 +00:00
|
|
|
GetTunnelBridgeTransportType(tile_start) == transport_type) {
|
2007-02-03 21:55:14 +00:00
|
|
|
/* Replace a current bridge. */
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-03 21:55:14 +00:00
|
|
|
/* If this is a railway bridge, make sure the railtypes match. */
|
|
|
|
if (transport_type == TRANSPORT_RAIL && GetRailType(tile_start) != railtype) {
|
|
|
|
return_cmd_error(STR_5007_MUST_DEMOLISH_BRIDGE_FIRST);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do not replace town bridges with lower speed bridges. */
|
|
|
|
if (!(flags & DC_QUERY_COST) && IsTileOwner(tile_start, OWNER_TOWN) &&
|
2008-02-05 05:21:02 +00:00
|
|
|
GetBridgeSpec(bridge_type)->speed < GetBridgeSpec(GetBridgeType(tile_start))->speed) {
|
2007-02-03 21:55:14 +00:00
|
|
|
Town *t = ClosestTownFromTile(tile_start, UINT_MAX);
|
|
|
|
|
|
|
|
if (t == NULL) {
|
|
|
|
return CMD_ERROR;
|
|
|
|
} else {
|
|
|
|
SetDParam(0, t->index);
|
|
|
|
return_cmd_error(STR_2009_LOCAL_AUTHORITY_REFUSES);
|
|
|
|
}
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-03 21:55:14 +00:00
|
|
|
/* Do not replace the bridge with the same bridge type. */
|
|
|
|
if (!(flags & DC_QUERY_COST) && bridge_type == GetBridgeType(tile_start)) {
|
|
|
|
return_cmd_error(STR_1007_ALREADY_BUILT);
|
|
|
|
}
|
2005-03-27 15:56:54 +00:00
|
|
|
|
2007-02-03 21:55:14 +00:00
|
|
|
/* Do not allow replacing another player's bridges. */
|
|
|
|
if (!IsTileOwner(tile_start, _current_player) && !IsTileOwner(tile_start, OWNER_TOWN)) {
|
|
|
|
return_cmd_error(STR_1024_AREA_IS_OWNED_BY_ANOTHER);
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-06-18 19:53:50 +00:00
|
|
|
cost.AddCost((bridge_len + 1) * _price.clear_bridge); // The cost of clearing the current bridge.
|
2007-02-03 21:55:14 +00:00
|
|
|
replace_bridge = true;
|
|
|
|
replaced_bridge_type = GetBridgeType(tile_start);
|
2007-05-26 20:30:40 +00:00
|
|
|
|
|
|
|
/* Do not remove road types when upgrading a bridge */
|
|
|
|
roadtypes |= GetRoadTypes(tile_start);
|
2007-02-03 21:55:14 +00:00
|
|
|
} else {
|
|
|
|
/* Build a new bridge. */
|
|
|
|
|
2008-06-11 14:13:07 +00:00
|
|
|
bool allow_on_slopes = (!_is_old_ai_player && _settings_game.construction.build_on_slopes && transport_type != TRANSPORT_WATER);
|
2008-01-21 15:48:00 +00:00
|
|
|
|
2007-02-03 21:55:14 +00:00
|
|
|
/* Try and clear the start landscape */
|
|
|
|
ret = DoCommand(tile_start, 0, 0, flags, CMD_LANDSCAPE_CLEAR);
|
|
|
|
if (CmdFailed(ret)) return ret;
|
|
|
|
cost = ret;
|
|
|
|
|
2008-01-21 15:48:00 +00:00
|
|
|
if (CmdFailed(terraform_cost_north) || (terraform_cost_north.GetCost() != 0 && !allow_on_slopes))
|
2007-02-03 21:55:14 +00:00
|
|
|
return_cmd_error(STR_1000_LAND_SLOPED_IN_WRONG_DIRECTION);
|
2008-01-21 15:48:00 +00:00
|
|
|
cost.AddCost(terraform_cost_north);
|
2007-02-03 21:55:14 +00:00
|
|
|
|
|
|
|
/* Try and clear the end landscape */
|
|
|
|
ret = DoCommand(tile_end, 0, 0, flags, CMD_LANDSCAPE_CLEAR);
|
|
|
|
if (CmdFailed(ret)) return ret;
|
2007-06-18 19:53:50 +00:00
|
|
|
cost.AddCost(ret);
|
2007-02-03 21:55:14 +00:00
|
|
|
|
2007-04-04 03:21:14 +00:00
|
|
|
/* false - end tile slope check */
|
2008-01-21 15:48:00 +00:00
|
|
|
if (CmdFailed(terraform_cost_south) || (terraform_cost_south.GetCost() != 0 && !allow_on_slopes))
|
2007-02-03 21:55:14 +00:00
|
|
|
return_cmd_error(STR_1000_LAND_SLOPED_IN_WRONG_DIRECTION);
|
2008-01-21 15:48:00 +00:00
|
|
|
cost.AddCost(terraform_cost_south);
|
2008-06-11 14:13:07 +00:00
|
|
|
|
|
|
|
if (transport_type == TRANSPORT_WATER && (tileh_start == SLOPE_FLAT || tileh_end == SLOPE_FLAT)) return_cmd_error(STR_1000_LAND_SLOPED_IN_WRONG_DIRECTION);
|
2007-02-03 21:55:14 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-03 21:55:14 +00:00
|
|
|
if (!replace_bridge) {
|
2006-12-27 12:38:02 +00:00
|
|
|
TileIndex Heads[] = {tile_start, tile_end};
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
if (MayHaveBridgeAbove(Heads[i])) {
|
|
|
|
if (IsBridgeAbove(Heads[i])) {
|
|
|
|
TileIndex north_head = GetNorthernBridgeEnd(Heads[i]);
|
|
|
|
|
|
|
|
if (direction == GetBridgeAxis(Heads[i])) return_cmd_error(STR_5007_MUST_DEMOLISH_BRIDGE_FIRST);
|
|
|
|
|
|
|
|
if (z_start + TILE_HEIGHT == GetBridgeHeight(north_head)) {
|
|
|
|
return_cmd_error(STR_5007_MUST_DEMOLISH_BRIDGE_FIRST);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-03-27 15:56:54 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
/* do the drill? */
|
|
|
|
if (flags & DC_EXEC) {
|
2006-03-15 07:10:41 +00:00
|
|
|
DiagDirection dir = AxisToDiagDir(direction);
|
2007-02-03 21:55:14 +00:00
|
|
|
Owner owner = (replace_bridge && IsTileOwner(tile_start, OWNER_TOWN)) ? OWNER_TOWN : _current_player;
|
2006-03-15 07:10:41 +00:00
|
|
|
|
2008-02-11 01:06:44 +00:00
|
|
|
switch (transport_type) {
|
|
|
|
case TRANSPORT_RAIL:
|
2008-02-21 16:05:33 +00:00
|
|
|
MakeRailBridgeRamp(tile_start, owner, bridge_type, dir, railtype);
|
2008-02-11 01:06:44 +00:00
|
|
|
MakeRailBridgeRamp(tile_end, owner, bridge_type, ReverseDiagDir(dir), railtype);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TRANSPORT_ROAD:
|
2008-02-21 16:05:33 +00:00
|
|
|
MakeRoadBridgeRamp(tile_start, owner, bridge_type, dir, roadtypes);
|
2008-02-11 01:06:44 +00:00
|
|
|
MakeRoadBridgeRamp(tile_end, owner, bridge_type, ReverseDiagDir(dir), roadtypes);
|
|
|
|
break;
|
2008-02-11 03:22:44 +00:00
|
|
|
|
2008-06-11 13:54:01 +00:00
|
|
|
case TRANSPORT_WATER:
|
|
|
|
MakeAqueductBridgeRamp(tile_start, owner, dir);
|
|
|
|
MakeAqueductBridgeRamp(tile_end, owner, ReverseDiagDir(dir));
|
|
|
|
break;
|
|
|
|
|
2008-02-11 03:22:44 +00:00
|
|
|
default:
|
|
|
|
NOT_REACHED();
|
|
|
|
break;
|
2006-03-15 07:10:41 +00:00
|
|
|
}
|
2006-03-23 06:30:39 +00:00
|
|
|
MarkTileDirtyByTile(tile_start);
|
|
|
|
MarkTileDirtyByTile(tile_end);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2006-03-10 17:01:51 +00:00
|
|
|
delta = (direction == AXIS_X ? TileDiffXY(1, 0) : TileDiffXY(0, 1));
|
2006-12-27 12:38:02 +00:00
|
|
|
for (tile = tile_start + delta; tile != tile_end; tile += delta) {
|
2008-01-21 15:20:58 +00:00
|
|
|
if (GetTileMaxZ(tile) > z_start) return_cmd_error(STR_BRIDGE_TOO_LOW_FOR_TERRAIN);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-03 21:55:14 +00:00
|
|
|
if (MayHaveBridgeAbove(tile) && IsBridgeAbove(tile) && !replace_bridge) {
|
2006-12-27 12:38:02 +00:00
|
|
|
/* Disallow crossing bridges for the time being */
|
|
|
|
return_cmd_error(STR_5007_MUST_DEMOLISH_BRIDGE_FIRST);
|
2006-03-12 12:19:25 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-10 17:01:51 +00:00
|
|
|
switch (GetTileType(tile)) {
|
2006-02-22 21:35:45 +00:00
|
|
|
case MP_WATER:
|
2007-10-19 22:46:55 +00:00
|
|
|
if (!EnsureNoVehicleOnGround(tile)) return_cmd_error(STR_980E_SHIP_IN_THE_WAY);
|
2008-02-02 09:28:43 +00:00
|
|
|
if (!IsWater(tile) && !IsCoast(tile)) goto not_valid_below;
|
2006-02-22 21:35:45 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MP_RAILWAY:
|
2006-12-27 12:38:02 +00:00
|
|
|
if (!IsPlainRailTile(tile)) goto not_valid_below;
|
2006-02-22 21:35:45 +00:00
|
|
|
break;
|
|
|
|
|
2007-07-29 23:42:59 +00:00
|
|
|
case MP_ROAD:
|
2008-02-14 15:59:16 +00:00
|
|
|
if (IsRoadDepot(tile)) goto not_valid_below;
|
2006-12-27 12:38:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MP_TUNNELBRIDGE:
|
|
|
|
if (IsTunnel(tile)) break;
|
2007-02-03 21:55:14 +00:00
|
|
|
if (replace_bridge) break;
|
2007-12-16 15:38:51 +00:00
|
|
|
if (direction == DiagDirToAxis(GetTunnelBridgeDirection(tile))) goto not_valid_below;
|
2006-12-27 12:38:02 +00:00
|
|
|
if (z_start < GetBridgeHeight(tile)) goto not_valid_below;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MP_UNMOVABLE:
|
|
|
|
if (!IsOwnedLand(tile)) goto not_valid_below;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MP_CLEAR:
|
2006-02-22 21:35:45 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2004-08-09 17:04:08 +00:00
|
|
|
not_valid_below:;
|
2006-02-22 21:35:45 +00:00
|
|
|
/* try and clear the middle landscape */
|
2006-04-10 07:15:58 +00:00
|
|
|
ret = DoCommand(tile, 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);
|
2006-02-22 21:35:45 +00:00
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & DC_EXEC) {
|
2006-12-27 12:38:02 +00:00
|
|
|
SetBridgeMiddle(tile, direction);
|
2006-03-10 17:01:51 +00:00
|
|
|
MarkTileDirtyByTile(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-11 01:06:44 +00:00
|
|
|
if (flags & DC_EXEC && transport_type == TRANSPORT_RAIL) {
|
2007-01-07 16:35:20 +00:00
|
|
|
Track track = AxisToTrack(direction);
|
2008-01-16 01:18:15 +00:00
|
|
|
AddSideToSignalBuffer(tile_start, INVALID_DIAGDIR, _current_player);
|
2007-01-07 16:35:20 +00:00
|
|
|
YapfNotifyTrackLayoutChange(tile_start, track);
|
2007-01-07 00:19:57 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-08-28 18:53:03 +00:00
|
|
|
/* for human player that builds the bridge he gets a selection to choose from bridges (DC_QUERY_COST)
|
|
|
|
* It's unnecessary to execute this command every time for every bridge. So it is done only
|
|
|
|
* and cost is computed in "bridge_gui.c". For AI, Towns this has to be of course calculated
|
|
|
|
*/
|
2008-02-18 01:42:21 +00:00
|
|
|
if (!(flags & DC_QUERY_COST) || (IsValidPlayer(_current_player) && GetPlayer(_current_player)->is_ai)) {
|
2006-08-28 18:53:03 +00:00
|
|
|
bridge_len += 2; // begin and end tiles/ramps
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-10-14 22:31:18 +00:00
|
|
|
if (IsValidPlayer(_current_player) && !_is_old_ai_player)
|
2004-08-09 17:04:08 +00:00
|
|
|
bridge_len = CalcBridgeLenCostFactor(bridge_len);
|
|
|
|
|
2008-02-05 05:21:02 +00:00
|
|
|
cost.AddCost((int64)bridge_len * _price.build_bridge * GetBridgeSpec(bridge_type)->price >> 8);
|
2008-06-11 14:51:31 +00:00
|
|
|
|
|
|
|
/* Aqueducts are a little more expensive. */
|
|
|
|
if (transport_type == TRANSPORT_WATER) cost.AddCost((int64)bridge_len * _price.clear_water);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return cost;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-02-22 21:09:55 +00:00
|
|
|
/** Build Tunnel.
|
2007-04-18 00:41:09 +00:00
|
|
|
* @param start_tile start tile of tunnel
|
2007-04-04 03:21:14 +00:00
|
|
|
* @param flags type of operation
|
2007-05-20 19:14:08 +00:00
|
|
|
* @param p1 railtype or roadtypes. bit 9 set means road tunnel
|
2006-02-22 21:09:55 +00:00
|
|
|
* @param p2 unused
|
|
|
|
*/
|
2007-06-18 10:48:15 +00:00
|
|
|
CommandCost CmdBuildTunnel(TileIndex start_tile, uint32 flags, uint32 p1, uint32 p2)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-02-22 21:09:55 +00:00
|
|
|
TileIndexDiff delta;
|
2005-05-09 16:37:40 +00:00
|
|
|
TileIndex end_tile;
|
2006-02-22 21:09:55 +00:00
|
|
|
DiagDirection direction;
|
2006-04-23 13:48:16 +00:00
|
|
|
Slope start_tileh;
|
|
|
|
Slope end_tileh;
|
2008-02-13 03:21:19 +00:00
|
|
|
TransportType transport_type = (TransportType)GB(p1, 9, 1);
|
2006-02-22 21:09:55 +00:00
|
|
|
uint start_z;
|
|
|
|
uint end_z;
|
2008-01-09 16:55:48 +00:00
|
|
|
CommandCost cost(EXPENSES_CONSTRUCTION);
|
2007-06-18 10:48:15 +00:00
|
|
|
CommandCost ret;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-02-22 21:09:55 +00:00
|
|
|
_build_tunnel_endtile = 0;
|
2008-02-13 03:21:19 +00:00
|
|
|
if (transport_type == TRANSPORT_RAIL) {
|
2008-01-09 21:05:03 +00:00
|
|
|
if (!ValParamRailtype((RailType)p1)) return CMD_ERROR;
|
2007-11-11 12:34:44 +00:00
|
|
|
} else {
|
|
|
|
const RoadTypes rts = (RoadTypes)GB(p1, 0, 3);
|
|
|
|
if (!AreValidRoadTypes(rts) || !HasRoadTypesAvail(_current_player, rts)) return CMD_ERROR;
|
2007-05-20 19:14:08 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-02-22 21:09:55 +00:00
|
|
|
start_tileh = GetTileSlope(start_tile, &start_z);
|
2008-01-25 15:47:58 +00:00
|
|
|
direction = GetInclinedSlopeDirection(start_tileh);
|
|
|
|
if (direction == INVALID_DIAGDIR) return_cmd_error(STR_500B_SITE_UNSUITABLE_FOR_TUNNEL);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-02-02 09:28:43 +00:00
|
|
|
if (IsWaterTile(start_tile)) return_cmd_error(STR_3807_CAN_T_BUILD_ON_WATER);
|
2008-01-23 08:28:19 +00:00
|
|
|
|
2006-04-10 07:15:58 +00:00
|
|
|
ret = DoCommand(start_tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR);
|
2006-02-22 21:09:55 +00:00
|
|
|
if (CmdFailed(ret)) return ret;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-08-15 00:14:57 +00:00
|
|
|
/* XXX - do NOT change 'ret' in the loop, as it is used as the price
|
|
|
|
* for the clearing of the entrance of the tunnel. Assigning it to
|
|
|
|
* cost before the loop will yield different costs depending on start-
|
|
|
|
* position, because of increased-cost-by-length: 'cost += cost >> 3' */
|
2007-06-18 19:53:50 +00:00
|
|
|
|
2006-09-05 23:21:41 +00:00
|
|
|
delta = TileOffsByDiagDir(direction);
|
2007-06-21 17:25:17 +00:00
|
|
|
DiagDirection tunnel_in_way_dir;
|
2008-05-14 18:31:21 +00:00
|
|
|
if (DiagDirToAxis(direction) == AXIS_Y) {
|
2007-06-21 17:25:17 +00:00
|
|
|
tunnel_in_way_dir = (TileX(start_tile) < (MapMaxX() / 2)) ? DIAGDIR_SW : DIAGDIR_NE;
|
|
|
|
} else {
|
|
|
|
tunnel_in_way_dir = (TileY(start_tile) < (MapMaxX() / 2)) ? DIAGDIR_SE : DIAGDIR_NW;
|
|
|
|
}
|
|
|
|
|
2006-02-22 21:09:55 +00:00
|
|
|
end_tile = start_tile;
|
2007-06-27 19:00:14 +00:00
|
|
|
|
|
|
|
/** Tile shift coeficient. Will decrease for very long tunnels to avoid exponential growth of price*/
|
|
|
|
int tiles_coef = 3;
|
|
|
|
/** Number of tiles from start of tunnel */
|
|
|
|
int tiles = 0;
|
2007-07-23 16:15:40 +00:00
|
|
|
/** Number of tiles at which the cost increase coefficient per tile is halved */
|
|
|
|
int tiles_bump = 25;
|
2007-06-27 19:00:14 +00:00
|
|
|
|
2006-02-22 21:09:55 +00:00
|
|
|
for (;;) {
|
|
|
|
end_tile += delta;
|
|
|
|
end_tileh = GetTileSlope(end_tile, &end_z);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-02-22 21:09:55 +00:00
|
|
|
if (start_z == end_z) break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-06-21 17:25:17 +00:00
|
|
|
if (!_cheats.crossing_tunnels.value && IsTunnelInWayDir(end_tile, start_z, tunnel_in_way_dir)) {
|
2006-03-07 07:51:05 +00:00
|
|
|
return_cmd_error(STR_5003_ANOTHER_TUNNEL_IN_THE_WAY);
|
2006-02-22 21:09:55 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-06-27 19:00:14 +00:00
|
|
|
tiles++;
|
2007-07-23 16:15:40 +00:00
|
|
|
if (tiles == tiles_bump) {
|
|
|
|
tiles_coef++;
|
|
|
|
tiles_bump *= 2;
|
|
|
|
}
|
2007-06-27 19:00:14 +00:00
|
|
|
|
2007-06-18 19:53:50 +00:00
|
|
|
cost.AddCost(_price.build_tunnel);
|
2007-06-27 19:00:14 +00:00
|
|
|
cost.AddCost(cost.GetCost() >> tiles_coef); // add a multiplier for longer tunnels
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2006-08-15 00:14:57 +00:00
|
|
|
/* Add the cost of the entrance */
|
2007-06-18 19:53:50 +00:00
|
|
|
cost.AddCost(_price.build_tunnel);
|
|
|
|
cost.AddCost(ret);
|
2006-08-15 00:14:57 +00:00
|
|
|
|
2007-04-04 03:21:14 +00:00
|
|
|
/* if the command fails from here on we want the end tile to be highlighted */
|
2006-02-22 21:09:55 +00:00
|
|
|
_build_tunnel_endtile = end_tile;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-02-02 09:28:43 +00:00
|
|
|
if (IsWaterTile(end_tile)) return_cmd_error(STR_3807_CAN_T_BUILD_ON_WATER);
|
2008-01-23 08:28:19 +00:00
|
|
|
|
2007-04-04 03:21:14 +00:00
|
|
|
/* slope of end tile must be complementary to the slope of the start tile */
|
2006-04-23 13:48:16 +00:00
|
|
|
if (end_tileh != ComplementSlope(start_tileh)) {
|
2007-10-05 17:55:12 +00:00
|
|
|
/* Check if there is a structure on the terraformed tile. Do not add the cost, that will be done by the terraforming */
|
|
|
|
ret = DoCommand(end_tile, 0, 0, DC_AUTO, CMD_LANDSCAPE_CLEAR);
|
|
|
|
if (CmdFailed(ret)) return_cmd_error(STR_5005_UNABLE_TO_EXCAVATE_LAND);
|
|
|
|
|
|
|
|
ret = DoCommand(end_tile, end_tileh & start_tileh, 0, flags, CMD_TERRAFORM_LAND);
|
|
|
|
if (CmdFailed(ret)) return_cmd_error(STR_5005_UNABLE_TO_EXCAVATE_LAND);
|
2006-02-22 21:09:55 +00:00
|
|
|
} else {
|
2006-04-10 07:15:58 +00:00
|
|
|
ret = DoCommand(end_tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR);
|
2006-02-22 21:09:55 +00:00
|
|
|
if (CmdFailed(ret)) return ret;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-06-18 19:53:50 +00:00
|
|
|
cost.AddCost(_price.build_tunnel);
|
|
|
|
cost.AddCost(ret);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (flags & DC_EXEC) {
|
2008-02-13 03:21:19 +00:00
|
|
|
if (transport_type == TRANSPORT_RAIL) {
|
2007-01-10 18:56:51 +00:00
|
|
|
MakeRailTunnel(start_tile, _current_player, direction, (RailType)GB(p1, 0, 4));
|
|
|
|
MakeRailTunnel(end_tile, _current_player, ReverseDiagDir(direction), (RailType)GB(p1, 0, 4));
|
2008-01-16 01:18:15 +00:00
|
|
|
AddSideToSignalBuffer(start_tile, INVALID_DIAGDIR, _current_player);
|
2008-05-14 18:31:21 +00:00
|
|
|
YapfNotifyTrackLayoutChange(start_tile, DiagDirToDiagTrack(direction));
|
2006-03-06 20:55:24 +00:00
|
|
|
} else {
|
2007-05-20 22:43:26 +00:00
|
|
|
MakeRoadTunnel(start_tile, _current_player, direction, (RoadTypes)GB(p1, 0, 3));
|
|
|
|
MakeRoadTunnel(end_tile, _current_player, ReverseDiagDir(direction), (RoadTypes)GB(p1, 0, 3));
|
2006-03-06 20:55:24 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2006-02-22 21:09:55 +00:00
|
|
|
return cost;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-31 23:04:47 +00:00
|
|
|
static inline bool CheckAllowRemoveTunnelBridge(TileIndex tile)
|
|
|
|
{
|
|
|
|
/* Floods can remove anything as well as the scenario editor */
|
|
|
|
if (_current_player == OWNER_WATER || _game_mode == GM_EDITOR) return true;
|
|
|
|
/* Obviously if the bridge/tunnel belongs to us, or no-one, we can remove it */
|
|
|
|
if (CheckTileOwnership(tile) || IsTileOwner(tile, OWNER_NONE)) return true;
|
|
|
|
/* Otherwise we can only remove town-owned stuff with extra patch-settings, or cheat */
|
2008-05-29 15:13:28 +00:00
|
|
|
if (IsTileOwner(tile, OWNER_TOWN) && (_settings_game.construction.extra_dynamite || _cheats.magic_bulldozer.value)) return true;
|
2006-10-31 23:04:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-06-18 10:48:15 +00:00
|
|
|
static CommandCost DoClearTunnel(TileIndex tile, uint32 flags)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-10-31 23:04:47 +00:00
|
|
|
Town *t = NULL;
|
2005-05-09 16:37:40 +00:00
|
|
|
TileIndex endtile;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-10-31 23:04:47 +00:00
|
|
|
if (!CheckAllowRemoveTunnelBridge(tile)) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-12-14 23:21:20 +00:00
|
|
|
endtile = GetOtherTunnelEnd(tile);
|
|
|
|
|
|
|
|
if (GetVehicleTunnelBridge(tile, endtile) != NULL) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
_build_tunnel_endtile = endtile;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2005-06-04 11:56:32 +00:00
|
|
|
if (IsTileOwner(tile, OWNER_TOWN) && _game_mode != GM_EDITOR) {
|
2006-10-31 23:04:47 +00:00
|
|
|
t = ClosestTownFromTile(tile, (uint)-1); // town penalty rating
|
|
|
|
|
|
|
|
/* Check if you are allowed to remove the tunnel owned by a town
|
|
|
|
* Removal depends on difficulty settings */
|
2006-02-02 07:15:46 +00:00
|
|
|
if (!CheckforTownRating(flags, t, TUNNELBRIDGE_REMOVE)) {
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, t->index);
|
2004-08-09 17:04:08 +00:00
|
|
|
return_cmd_error(STR_2009_LOCAL_AUTHORITY_REFUSES);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-09 17:47:05 +00:00
|
|
|
/* checks if the owner is town then decrease town rating by RATING_TUNNEL_BRIDGE_DOWN_STEP until
|
|
|
|
* you have a "Poor" (0) town rating */
|
|
|
|
if (IsTileOwner(tile, OWNER_TOWN) && _game_mode != GM_EDITOR) {
|
|
|
|
ChangeTownRating(t, RATING_TUNNEL_BRIDGE_DOWN_STEP, RATING_TUNNEL_BRIDGE_MINIMUM);
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (flags & DC_EXEC) {
|
2008-01-15 15:00:01 +00:00
|
|
|
if (GetTunnelBridgeTransportType(tile) == TRANSPORT_RAIL) {
|
|
|
|
/* We first need to request values before calling DoClearSquare */
|
|
|
|
DiagDirection dir = GetTunnelBridgeDirection(tile);
|
|
|
|
Owner owner = GetTileOwner(tile);
|
2006-01-22 16:23:05 +00:00
|
|
|
|
2008-01-15 15:00:01 +00:00
|
|
|
DoClearSquare(tile);
|
|
|
|
DoClearSquare(endtile);
|
2008-01-15 11:45:29 +00:00
|
|
|
|
2008-01-15 15:00:01 +00:00
|
|
|
/* cannot use INVALID_DIAGDIR for signal update because the tunnel doesn't exist anymore */
|
2008-02-21 16:05:33 +00:00
|
|
|
AddSideToSignalBuffer(tile, ReverseDiagDir(dir), owner);
|
|
|
|
AddSideToSignalBuffer(endtile, dir, owner);
|
2008-01-15 11:45:29 +00:00
|
|
|
|
2008-05-14 18:31:21 +00:00
|
|
|
Track track = DiagDirToDiagTrack(dir);
|
2008-02-21 16:05:33 +00:00
|
|
|
YapfNotifyTrackLayoutChange(tile, track);
|
2008-01-15 11:45:29 +00:00
|
|
|
YapfNotifyTrackLayoutChange(endtile, track);
|
2008-01-15 15:00:01 +00:00
|
|
|
} else {
|
|
|
|
DoClearSquare(tile);
|
|
|
|
DoClearSquare(endtile);
|
2008-01-15 11:45:29 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2008-01-23 22:34:04 +00:00
|
|
|
return CommandCost(EXPENSES_CONSTRUCTION, _price.clear_tunnel * (GetTunnelBridgeLength(tile, endtile) + 2));
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2006-06-07 19:35:21 +00:00
|
|
|
|
2007-06-18 10:48:15 +00:00
|
|
|
static CommandCost DoClearBridge(TileIndex tile, uint32 flags)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-03-16 06:30:47 +00:00
|
|
|
DiagDirection direction;
|
|
|
|
TileIndexDiff delta;
|
2005-06-24 12:38:35 +00:00
|
|
|
TileIndex endtile;
|
2006-10-31 23:04:47 +00:00
|
|
|
Town *t = NULL;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-10-31 23:04:47 +00:00
|
|
|
if (!CheckAllowRemoveTunnelBridge(tile)) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-16 06:38:51 +00:00
|
|
|
endtile = GetOtherBridgeEnd(tile);
|
|
|
|
|
2007-12-14 23:21:20 +00:00
|
|
|
if (GetVehicleTunnelBridge(tile, endtile) != NULL) return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-12-16 15:38:51 +00:00
|
|
|
direction = GetTunnelBridgeDirection(tile);
|
2006-09-05 23:21:41 +00:00
|
|
|
delta = TileOffsByDiagDir(direction);
|
2006-03-16 06:30:47 +00:00
|
|
|
|
2005-06-04 11:56:32 +00:00
|
|
|
if (IsTileOwner(tile, OWNER_TOWN) && _game_mode != GM_EDITOR) {
|
2006-10-31 23:04:47 +00:00
|
|
|
t = ClosestTownFromTile(tile, (uint)-1); // town penalty rating
|
|
|
|
|
|
|
|
/* Check if you are allowed to remove the bridge owned by a town
|
|
|
|
* Removal depends on difficulty settings */
|
|
|
|
if (!CheckforTownRating(flags, t, TUNNELBRIDGE_REMOVE)) {
|
|
|
|
SetDParam(0, t->index);
|
|
|
|
return_cmd_error(STR_2009_LOCAL_AUTHORITY_REFUSES);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2008-01-09 17:47:05 +00:00
|
|
|
/* checks if the owner is town then decrease town rating by RATING_TUNNEL_BRIDGE_DOWN_STEP until
|
|
|
|
* you have a "Poor" (0) town rating */
|
|
|
|
if (IsTileOwner(tile, OWNER_TOWN) && _game_mode != GM_EDITOR) {
|
|
|
|
ChangeTownRating(t, RATING_TUNNEL_BRIDGE_DOWN_STEP, RATING_TUNNEL_BRIDGE_MINIMUM);
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (flags & DC_EXEC) {
|
2008-01-15 11:45:29 +00:00
|
|
|
/* read this value before actual removal of bridge */
|
|
|
|
bool rail = GetTunnelBridgeTransportType(tile) == TRANSPORT_RAIL;
|
2008-01-15 15:00:01 +00:00
|
|
|
Owner owner = GetTileOwner(tile);
|
2008-02-17 21:27:44 +00:00
|
|
|
uint height = GetBridgeHeight(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-15 17:38:00 +00:00
|
|
|
DoClearSquare(tile);
|
|
|
|
DoClearSquare(endtile);
|
2008-01-15 11:45:29 +00:00
|
|
|
for (TileIndex c = tile + delta; c != endtile; c += delta) {
|
2008-02-17 21:27:44 +00:00
|
|
|
/* do not let trees appear from 'nowhere' after removing bridge */
|
|
|
|
if (IsNormalRoadTile(c) && GetRoadside(c) == ROADSIDE_TREES) {
|
|
|
|
uint minz = GetTileMaxZ(c) + 3 * TILE_HEIGHT;
|
|
|
|
if (height < minz) SetRoadside(c, ROADSIDE_PAVED);
|
|
|
|
}
|
2008-01-15 11:45:29 +00:00
|
|
|
ClearBridgeMiddle(c);
|
2006-12-27 12:38:02 +00:00
|
|
|
MarkTileDirtyByTile(c);
|
2006-03-15 17:38:00 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-01-15 11:45:29 +00:00
|
|
|
if (rail) {
|
2008-01-15 15:00:01 +00:00
|
|
|
/* cannot use INVALID_DIAGDIR for signal update because the bridge doesn't exist anymore */
|
2008-02-21 16:05:33 +00:00
|
|
|
AddSideToSignalBuffer(tile, ReverseDiagDir(direction), owner);
|
|
|
|
AddSideToSignalBuffer(endtile, direction, owner);
|
2008-01-15 11:45:29 +00:00
|
|
|
|
2008-05-14 18:31:21 +00:00
|
|
|
Track track = DiagDirToDiagTrack(direction);
|
2008-02-21 16:05:33 +00:00
|
|
|
YapfNotifyTrackLayoutChange(tile, track);
|
2008-01-15 11:45:29 +00:00
|
|
|
YapfNotifyTrackLayoutChange(endtile, track);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2008-01-23 22:34:04 +00:00
|
|
|
return CommandCost(EXPENSES_CONSTRUCTION, (GetTunnelBridgeLength(tile, endtile) + 2) * _price.clear_bridge);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-06-18 10:48:15 +00:00
|
|
|
static CommandCost ClearTile_TunnelBridge(TileIndex tile, byte flags)
|
2005-06-24 12:38:35 +00:00
|
|
|
{
|
2006-03-12 15:04:03 +00:00
|
|
|
if (IsTunnel(tile)) {
|
2005-11-14 19:48:04 +00:00
|
|
|
if (flags & DC_AUTO) return_cmd_error(STR_5006_MUST_DEMOLISH_TUNNEL_FIRST);
|
2004-08-09 17:04:08 +00:00
|
|
|
return DoClearTunnel(tile, flags);
|
2008-01-23 14:51:36 +00:00
|
|
|
} else { // IsBridge(tile)
|
2005-11-14 19:48:04 +00:00
|
|
|
if (flags & DC_AUTO) return_cmd_error(STR_5007_MUST_DEMOLISH_BRIDGE_FIRST);
|
2005-01-21 19:52:32 +00:00
|
|
|
return DoClearBridge(tile, flags);
|
2005-01-23 13:09:35 +00:00
|
|
|
}
|
|
|
|
|
2005-01-21 19:52:32 +00:00
|
|
|
return CMD_ERROR;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-10-14 20:16:44 +00:00
|
|
|
/**
|
|
|
|
* Draws the pillars under high bridges.
|
|
|
|
*
|
|
|
|
* @param psid Image and palette of a bridge pillar.
|
|
|
|
* @param ti #TileInfo of current bridge-middle-tile.
|
|
|
|
* @param axis Orientation of bridge.
|
|
|
|
* @param type Bridge type.
|
|
|
|
* @param x Sprite X position of front pillar.
|
|
|
|
* @param y Sprite Y position of front pillar.
|
|
|
|
* @param z_bridge Absolute height of bridge bottom.
|
|
|
|
*/
|
2008-06-11 17:10:36 +00:00
|
|
|
static void DrawBridgePillars(const PalSpriteID *psid, const TileInfo* ti, Axis axis, bool drawfarpillar, int x, int y, int z_bridge)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-04-03 19:55:40 +00:00
|
|
|
/* Do not draw bridge pillars if they are invisible */
|
|
|
|
if (IsInvisibilitySet(TO_BRIDGES)) return;
|
|
|
|
|
2007-01-14 19:57:49 +00:00
|
|
|
SpriteID image = psid->sprite;
|
2008-04-03 19:55:40 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (image != 0) {
|
2007-10-14 20:16:44 +00:00
|
|
|
/* "side" specifies the side the pillars stand on.
|
|
|
|
* The length of the pillars is then set to the height of the bridge over the corners of this edge.
|
|
|
|
*
|
|
|
|
* axis==AXIS_X axis==AXIS_Y
|
|
|
|
* side==false SW NW
|
|
|
|
* side==true NE SE
|
|
|
|
*
|
|
|
|
* I have no clue, why this was done this way.
|
|
|
|
*/
|
2007-11-19 21:02:30 +00:00
|
|
|
bool side = HasBit(image, 0);
|
2007-10-14 20:16:44 +00:00
|
|
|
|
|
|
|
/* "dir" means the edge the pillars stand on */
|
|
|
|
DiagDirection dir = AxisToDiagDir(axis);
|
|
|
|
if (side != (axis == AXIS_Y)) dir = ReverseDiagDir(dir);
|
|
|
|
|
|
|
|
/* Determine ground height under pillars */
|
|
|
|
int front_height = ti->z;
|
|
|
|
int back_height = ti->z;
|
|
|
|
GetSlopeZOnEdge(ti->tileh, dir, &front_height, &back_height);
|
|
|
|
|
|
|
|
/* x and y size of bounding-box of pillars */
|
|
|
|
int w = (axis == AXIS_X ? 16 : 2);
|
|
|
|
int h = (axis == AXIS_X ? 2 : 16);
|
|
|
|
/* sprite position of back facing pillar */
|
|
|
|
int x_back = x - (axis == AXIS_X ? 0 : 9);
|
|
|
|
int y_back = y - (axis == AXIS_X ? 9 : 0);
|
|
|
|
|
|
|
|
for (int cur_z = z_bridge; cur_z >= front_height || cur_z >= back_height; cur_z -= TILE_HEIGHT) {
|
|
|
|
/* Draw front facing pillar */
|
|
|
|
if (cur_z >= front_height) {
|
2007-11-10 01:17:15 +00:00
|
|
|
AddSortableSpriteToDraw(image, psid->pal, x, y, w, h, BB_HEIGHT_UNDER_BRIDGE - 5, cur_z, IsTransparencySet(TO_BRIDGES), 0, 0, -5);
|
2006-02-01 07:36:15 +00:00
|
|
|
}
|
2006-04-15 16:07:00 +00:00
|
|
|
|
2007-10-14 20:16:44 +00:00
|
|
|
/* Draw back facing pillar, but not the highest part directly under the bridge-floor */
|
|
|
|
if (drawfarpillar && cur_z >= back_height && cur_z < z_bridge - TILE_HEIGHT) {
|
2007-11-10 01:17:15 +00:00
|
|
|
AddSortableSpriteToDraw(image, psid->pal, x_back, y_back, w, h, BB_HEIGHT_UNDER_BRIDGE - 5, cur_z, IsTransparencySet(TO_BRIDGES), 0, 0, -5);
|
2006-02-01 07:36:15 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-25 22:07:40 +00:00
|
|
|
/**
|
|
|
|
* Draws the trambits over an already drawn (lower end) of a bridge.
|
|
|
|
* @param x the x of the bridge
|
|
|
|
* @param y the y of the bridge
|
|
|
|
* @param z the z of the bridge
|
|
|
|
* @param offset number representing whether to level or sloped and the direction
|
|
|
|
* @param overlay do we want to still see the road?
|
2008-04-03 19:55:40 +00:00
|
|
|
* @param head are we drawing bridge head?
|
2007-05-25 22:07:40 +00:00
|
|
|
*/
|
2008-04-03 19:55:40 +00:00
|
|
|
static void DrawBridgeTramBits(int x, int y, byte z, int offset, bool overlay, bool head)
|
2007-05-25 22:07:40 +00:00
|
|
|
{
|
|
|
|
static const SpriteID tram_offsets[2][6] = { { 107, 108, 109, 110, 111, 112 }, { 4, 5, 15, 16, 17, 18 } };
|
2007-07-13 15:12:36 +00:00
|
|
|
static const SpriteID back_offsets[6] = { 95, 96, 99, 102, 100, 101 };
|
2007-05-25 22:07:40 +00:00
|
|
|
static const SpriteID front_offsets[6] = { 97, 98, 103, 106, 104, 105 };
|
|
|
|
|
2007-09-19 16:36:42 +00:00
|
|
|
static const uint size_x[6] = { 1, 16, 16, 1, 16, 1 };
|
|
|
|
static const uint size_y[6] = { 16, 1, 1, 16, 1, 16 };
|
|
|
|
static const uint front_bb_offset_x[6] = { 15, 0, 0, 15, 0, 15 };
|
|
|
|
static const uint front_bb_offset_y[6] = { 0, 15, 15, 0, 15, 0 };
|
2007-05-26 10:40:34 +00:00
|
|
|
|
2007-09-19 16:36:42 +00:00
|
|
|
/* The sprites under the vehicles are drawn as SpriteCombine. StartSpriteCombine() has already been called
|
|
|
|
* The bounding boxes here are the same as for bridge front/roof */
|
2008-04-03 19:55:40 +00:00
|
|
|
if (head || !IsInvisibilitySet(TO_BRIDGES)) {
|
2008-04-08 21:28:47 +00:00
|
|
|
AddSortableSpriteToDraw(SPR_TRAMWAY_BASE + tram_offsets[overlay][offset], PAL_NONE,
|
|
|
|
x, y, size_x[offset], size_y[offset], 0x28, z,
|
|
|
|
!head && IsTransparencySet(TO_BRIDGES));
|
2008-04-03 19:55:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Do not draw catenary if it is set invisible */
|
2008-04-08 21:28:47 +00:00
|
|
|
if (!IsInvisibilitySet(TO_CATENARY)) {
|
|
|
|
AddSortableSpriteToDraw(SPR_TRAMWAY_BASE + back_offsets[offset], PAL_NONE,
|
|
|
|
x, y, size_x[offset], size_y[offset], 0x28, z,
|
|
|
|
IsTransparencySet(TO_CATENARY));
|
|
|
|
}
|
2007-09-19 16:36:42 +00:00
|
|
|
|
|
|
|
/* Start a new SpriteCombine for the front part */
|
|
|
|
EndSpriteCombine();
|
|
|
|
StartSpriteCombine();
|
2007-05-25 22:07:40 +00:00
|
|
|
|
|
|
|
/* For sloped sprites the bounding box needs to be higher, as the pylons stop on a higher point */
|
2008-04-08 21:28:47 +00:00
|
|
|
if (!IsInvisibilitySet(TO_CATENARY)) {
|
|
|
|
AddSortableSpriteToDraw(SPR_TRAMWAY_BASE + front_offsets[offset], PAL_NONE,
|
|
|
|
x, y, size_x[offset] + front_bb_offset_x[offset], size_y[offset] + front_bb_offset_y[offset], 0x28, z,
|
|
|
|
IsTransparencySet(TO_CATENARY), front_bb_offset_x[offset], front_bb_offset_y[offset]);
|
|
|
|
}
|
2007-05-25 22:07:40 +00:00
|
|
|
}
|
|
|
|
|
2005-10-19 08:34:37 +00:00
|
|
|
/**
|
2006-09-04 20:40:33 +00:00
|
|
|
* Draws a tunnel of bridge tile.
|
|
|
|
* For tunnels, this is rather simple, as you only needa draw the entrance.
|
|
|
|
* Bridges are a bit more complex. base_offset is where the sprite selection comes into play
|
|
|
|
* and it works a bit like a bitmask.<p> For bridge heads:
|
2007-04-04 03:21:14 +00:00
|
|
|
* @param ti TileInfo of the structure to draw
|
2006-09-04 20:40:33 +00:00
|
|
|
* <ul><li>Bit 0: direction</li>
|
|
|
|
* <li>Bit 1: northern or southern heads</li>
|
|
|
|
* <li>Bit 2: Set if the bridge head is sloped</li>
|
|
|
|
* <li>Bit 3 and more: Railtype Specific subset</li>
|
|
|
|
* </ul>
|
|
|
|
* Please note that in this code, "roads" are treated as railtype 1, whilst the real railtypes are 0, 2 and 3
|
|
|
|
*/
|
2004-08-09 17:04:08 +00:00
|
|
|
static void DrawTile_TunnelBridge(TileInfo *ti)
|
|
|
|
{
|
2007-01-14 19:57:49 +00:00
|
|
|
SpriteID image;
|
2008-02-13 03:21:19 +00:00
|
|
|
TransportType transport_type = GetTunnelBridgeTransportType(ti->tile);
|
2008-02-13 03:02:02 +00:00
|
|
|
DiagDirection tunnelbridge_direction = GetTunnelBridgeDirection(ti->tile);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-03-12 15:04:03 +00:00
|
|
|
if (IsTunnel(ti->tile)) {
|
2007-09-19 16:36:42 +00:00
|
|
|
/* Front view of tunnel bounding boxes:
|
|
|
|
*
|
|
|
|
* 122223 <- BB_Z_SEPARATOR
|
|
|
|
* 1 3
|
|
|
|
* 1 3 1,3 = empty helper BB
|
|
|
|
* 1 3 2 = SpriteCombine of tunnel-roof and catenary (tram & elrail)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
static const int _tunnel_BB[4][12] = {
|
|
|
|
/* tunnnel-roof | Z-separator | tram-catenary
|
|
|
|
* w h bb_x bb_y| x y w h |bb_x bb_y w h */
|
|
|
|
{ 1, 0, -15, -14, 0, 15, 16, 1, 0, 1, 16, 15 }, // NE
|
|
|
|
{ 0, 1, -14, -15, 15, 0, 1, 16, 1, 0, 15, 16 }, // SE
|
|
|
|
{ 1, 0, -15, -14, 0, 15, 16, 1, 0, 1, 16, 15 }, // SW
|
|
|
|
{ 0, 1, -14, -15, 15, 0, 1, 16, 1, 0, 15, 16 }, // NW
|
|
|
|
};
|
2008-02-13 03:02:02 +00:00
|
|
|
const int *BB_data = _tunnel_BB[tunnelbridge_direction];
|
2007-09-19 16:36:42 +00:00
|
|
|
|
|
|
|
bool catenary = false;
|
|
|
|
|
2008-02-13 03:21:19 +00:00
|
|
|
if (transport_type == TRANSPORT_RAIL) {
|
2006-03-17 10:10:31 +00:00
|
|
|
image = GetRailTypeInfo(GetRailType(ti->tile))->base_sprites.tunnel;
|
2005-10-13 16:00:14 +00:00
|
|
|
} else {
|
|
|
|
image = SPR_TUNNEL_ENTRY_REAR_ROAD;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-12-16 15:38:51 +00:00
|
|
|
if (HasTunnelBridgeSnowOrDesert(ti->tile)) image += 32;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-02-13 03:02:02 +00:00
|
|
|
image += tunnelbridge_direction * 2;
|
2007-01-14 19:57:49 +00:00
|
|
|
DrawGroundSprite(image, PAL_NONE);
|
2008-02-13 03:21:19 +00:00
|
|
|
if (transport_type == TRANSPORT_ROAD) {
|
2007-05-25 22:07:40 +00:00
|
|
|
RoadTypes rts = GetRoadTypes(ti->tile);
|
|
|
|
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(rts, ROADTYPE_TRAM)) {
|
2007-05-25 22:07:40 +00:00
|
|
|
static const SpriteID tunnel_sprites[2][4] = { { 28, 78, 79, 27 }, { 5, 76, 77, 4 } };
|
|
|
|
|
2008-02-13 03:02:02 +00:00
|
|
|
DrawGroundSprite(SPR_TRAMWAY_BASE + tunnel_sprites[rts - ROADTYPES_TRAM][tunnelbridge_direction], PAL_NONE);
|
2007-09-19 16:36:42 +00:00
|
|
|
|
2008-04-03 19:55:40 +00:00
|
|
|
/* Do not draw wires if they are invisible */
|
|
|
|
if (!IsInvisibilitySet(TO_CATENARY)) {
|
|
|
|
catenary = true;
|
|
|
|
StartSpriteCombine();
|
|
|
|
AddSortableSpriteToDraw(SPR_TRAMWAY_TUNNEL_WIRES + tunnelbridge_direction, PAL_NONE, ti->x, ti->y, BB_data[10], BB_data[11], TILE_HEIGHT, ti->z, IsTransparencySet(TO_CATENARY), BB_data[8], BB_data[9], BB_Z_SEPARATOR);
|
|
|
|
}
|
2007-05-25 22:07:40 +00:00
|
|
|
}
|
2008-05-08 16:48:29 +00:00
|
|
|
} else if (HasCatenaryDrawn(GetRailType(ti->tile))) {
|
2007-09-19 16:36:42 +00:00
|
|
|
catenary = true;
|
|
|
|
StartSpriteCombine();
|
|
|
|
DrawCatenaryOnTunnel(ti);
|
2007-05-20 22:43:26 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-09-19 16:36:42 +00:00
|
|
|
AddSortableSpriteToDraw(image + 1, PAL_NONE, ti->x + TILE_SIZE - 1, ti->y + TILE_SIZE - 1, BB_data[0], BB_data[1], TILE_HEIGHT, ti->z, false, BB_data[2], BB_data[3], BB_Z_SEPARATOR);
|
|
|
|
|
|
|
|
if (catenary) EndSpriteCombine();
|
|
|
|
|
|
|
|
/* Add helper BB for sprite sorting, that separate the tunnel from things beside of it */
|
|
|
|
AddSortableSpriteToDraw(SPR_EMPTY_BOUNDING_BOX, PAL_NONE, ti->x , ti->y , BB_data[6], BB_data[7], TILE_HEIGHT, ti->z);
|
|
|
|
AddSortableSpriteToDraw(SPR_EMPTY_BOUNDING_BOX, PAL_NONE, ti->x + BB_data[4], ti->y + BB_data[5], BB_data[6], BB_data[7], TILE_HEIGHT, ti->z);
|
|
|
|
|
2006-12-27 12:38:02 +00:00
|
|
|
DrawBridgeMiddle(ti);
|
2008-01-23 14:51:36 +00:00
|
|
|
} else { // IsBridge(ti->tile)
|
2007-01-14 19:57:49 +00:00
|
|
|
const PalSpriteID *psid;
|
2005-10-19 08:34:37 +00:00
|
|
|
int base_offset;
|
2007-12-16 15:38:51 +00:00
|
|
|
bool ice = HasTunnelBridgeSnowOrDesert(ti->tile);
|
2005-10-19 08:34:37 +00:00
|
|
|
|
2008-02-13 03:21:19 +00:00
|
|
|
if (transport_type == TRANSPORT_RAIL) {
|
2006-12-27 12:38:02 +00:00
|
|
|
base_offset = GetRailTypeInfo(GetRailType(ti->tile))->bridge_offset;
|
2007-04-04 03:21:14 +00:00
|
|
|
assert(base_offset != 8); // This one is used for roads
|
2006-03-16 15:16:27 +00:00
|
|
|
} else {
|
|
|
|
base_offset = 8;
|
2005-10-19 08:34:37 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-10-19 08:34:37 +00:00
|
|
|
/* as the lower 3 bits are used for other stuff, make sure they are clear */
|
|
|
|
assert( (base_offset & 0x07) == 0x00);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-02-13 03:02:02 +00:00
|
|
|
DrawFoundation(ti, GetBridgeFoundation(ti->tileh, DiagDirToAxis(tunnelbridge_direction)));
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-04-04 03:21:14 +00:00
|
|
|
/* HACK Wizardry to convert the bridge ramp direction into a sprite offset */
|
2008-02-13 03:02:02 +00:00
|
|
|
base_offset += (6 - tunnelbridge_direction) % 4;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-12-27 12:38:02 +00:00
|
|
|
if (ti->tileh == SLOPE_FLAT) base_offset += 4; // sloped bridge head
|
2006-03-29 16:30:26 +00:00
|
|
|
|
2006-12-27 12:38:02 +00:00
|
|
|
/* Table number 6 always refers to the bridge heads for any bridge type */
|
2008-06-11 13:54:01 +00:00
|
|
|
if (transport_type != TRANSPORT_WATER) {
|
|
|
|
psid = &GetBridgeSpriteTable(GetBridgeType(ti->tile), 6)[base_offset];
|
|
|
|
} else {
|
|
|
|
psid = _aqueduct_sprites + base_offset;
|
|
|
|
}
|
2005-10-19 08:34:37 +00:00
|
|
|
|
2006-12-27 12:38:02 +00:00
|
|
|
if (!ice) {
|
|
|
|
DrawClearLandTile(ti, 3);
|
|
|
|
} else {
|
2007-01-14 19:57:49 +00:00
|
|
|
DrawGroundSprite(SPR_FLAT_SNOWY_TILE + _tileh_to_sprite[ti->tileh], PAL_NONE);
|
2006-12-27 12:38:02 +00:00
|
|
|
}
|
2005-10-19 08:34:37 +00:00
|
|
|
|
2007-04-04 03:21:14 +00:00
|
|
|
/* draw ramp */
|
2007-01-14 19:57:49 +00:00
|
|
|
|
2007-09-19 16:36:42 +00:00
|
|
|
/* Draw Trambits as SpriteCombine */
|
2008-02-13 03:21:19 +00:00
|
|
|
if (transport_type == TRANSPORT_ROAD) StartSpriteCombine();
|
2007-09-19 16:36:42 +00:00
|
|
|
|
2006-12-27 12:38:02 +00:00
|
|
|
/* HACK set the height of the BB of a sloped ramp to 1 so a vehicle on
|
|
|
|
* it doesn't disappear behind it
|
|
|
|
*/
|
2008-04-03 19:55:40 +00:00
|
|
|
/* Bridge heads are drawn solid no matter how invisibility/transparency is set */
|
|
|
|
AddSortableSpriteToDraw(psid->sprite, psid->pal, ti->x, ti->y, 16, 16, ti->tileh == SLOPE_FLAT ? 0 : 8, ti->z);
|
2006-12-27 12:38:02 +00:00
|
|
|
|
2008-02-13 03:21:19 +00:00
|
|
|
if (transport_type == TRANSPORT_ROAD) {
|
2007-05-25 22:07:40 +00:00
|
|
|
RoadTypes rts = GetRoadTypes(ti->tile);
|
|
|
|
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(rts, ROADTYPE_TRAM)) {
|
2008-02-13 03:02:02 +00:00
|
|
|
uint offset = tunnelbridge_direction;
|
2007-05-26 21:34:38 +00:00
|
|
|
uint z = ti->z;
|
2007-05-25 22:07:40 +00:00
|
|
|
if (ti->tileh != SLOPE_FLAT) {
|
|
|
|
offset = (offset + 1) & 1;
|
2007-05-26 21:34:38 +00:00
|
|
|
z += TILE_HEIGHT;
|
2007-05-25 22:07:40 +00:00
|
|
|
} else {
|
|
|
|
offset += 2;
|
|
|
|
}
|
2007-09-19 16:36:42 +00:00
|
|
|
/* DrawBridgeTramBits() calls EndSpriteCombine() and StartSpriteCombine() */
|
2008-04-03 19:55:40 +00:00
|
|
|
DrawBridgeTramBits(ti->x, ti->y, z, offset, HasBit(rts, ROADTYPE_ROAD), true);
|
2007-05-25 22:07:40 +00:00
|
|
|
}
|
2007-09-19 16:36:42 +00:00
|
|
|
EndSpriteCombine();
|
2008-05-08 16:48:29 +00:00
|
|
|
} else if (HasCatenaryDrawn(GetRailType(ti->tile))) {
|
2007-05-25 22:07:40 +00:00
|
|
|
DrawCatenary(ti);
|
|
|
|
}
|
|
|
|
|
2006-12-27 12:38:02 +00:00
|
|
|
DrawBridgeMiddle(ti);
|
|
|
|
}
|
|
|
|
}
|
2006-06-07 19:35:21 +00:00
|
|
|
|
|
|
|
|
2006-12-27 12:38:02 +00:00
|
|
|
/** Compute bridge piece. Computes the bridge piece to display depending on the position inside the bridge.
|
|
|
|
* bridges pieces sequence (middle parts)
|
|
|
|
* bridge len 1: 0
|
|
|
|
* bridge len 2: 0 1
|
|
|
|
* bridge len 3: 0 4 1
|
|
|
|
* bridge len 4: 0 2 3 1
|
|
|
|
* bridge len 5: 0 2 5 3 1
|
|
|
|
* bridge len 6: 0 2 3 2 3 1
|
|
|
|
* bridge len 7: 0 2 3 4 2 3 1
|
|
|
|
* #0 - always as first, #1 - always as last (if len>1)
|
|
|
|
* #2,#3 are to pair in order
|
|
|
|
* for odd bridges: #5 is going in the bridge middle if on even position, #4 on odd (counting from 0)
|
|
|
|
* @param north Northernmost tile of bridge
|
|
|
|
* @param south Southernmost tile of bridge
|
|
|
|
* @return Index of bridge piece
|
|
|
|
*/
|
|
|
|
static uint CalcBridgePiece(uint north, uint south)
|
|
|
|
{
|
|
|
|
if (north == 1) {
|
|
|
|
return 0;
|
|
|
|
} else if (south == 1) {
|
|
|
|
return 1;
|
|
|
|
} else if (north < south) {
|
|
|
|
return north & 1 ? 3 : 2;
|
|
|
|
} else if (north > south) {
|
|
|
|
return south & 1 ? 2 : 3;
|
|
|
|
} else {
|
|
|
|
return north & 1 ? 5 : 4;
|
|
|
|
}
|
|
|
|
}
|
2006-06-07 19:35:21 +00:00
|
|
|
|
|
|
|
|
2006-12-27 12:38:02 +00:00
|
|
|
void DrawBridgeMiddle(const TileInfo* ti)
|
|
|
|
{
|
2007-09-19 16:36:42 +00:00
|
|
|
/* Sectional view of bridge bounding boxes:
|
|
|
|
*
|
|
|
|
* 1 2 1,2 = SpriteCombine of Bridge front/(back&floor) and TramCatenary
|
|
|
|
* 1 2 3 = empty helper BB
|
|
|
|
* 1 7 2 4,5 = pillars under higher bridges
|
|
|
|
* 1 6 88888 6 2 6 = elrail-pylons
|
|
|
|
* 1 6 88888 6 2 7 = elrail-wire
|
|
|
|
* 1 6 88888 6 2 <- TILE_HEIGHT 8 = rail-vehicle on bridge
|
|
|
|
* 3333333333333 <- BB_Z_SEPARATOR
|
|
|
|
* <- unused
|
|
|
|
* 4 5 <- BB_HEIGHT_UNDER_BRIDGE
|
|
|
|
* 4 5
|
|
|
|
* 4 5
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Z position of the bridge sprites relative to bridge height (downwards) */
|
|
|
|
static const int BRIDGE_Z_START = 3;
|
|
|
|
|
2006-12-27 12:38:02 +00:00
|
|
|
if (!IsBridgeAbove(ti->tile)) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-06-11 17:10:36 +00:00
|
|
|
TileIndex rampnorth = GetNorthernBridgeEnd(ti->tile);
|
|
|
|
TileIndex rampsouth = GetSouthernBridgeEnd(ti->tile);
|
|
|
|
TransportType transport_type = GetTunnelBridgeTransportType(rampsouth);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-06-11 17:10:36 +00:00
|
|
|
Axis axis = GetBridgeAxis(ti->tile);
|
|
|
|
uint piece = CalcBridgePiece(
|
2008-01-23 22:34:04 +00:00
|
|
|
GetTunnelBridgeLength(ti->tile, rampnorth) + 1,
|
|
|
|
GetTunnelBridgeLength(ti->tile, rampsouth) + 1
|
2006-12-27 12:38:02 +00:00
|
|
|
);
|
2006-03-29 16:30:26 +00:00
|
|
|
|
2008-06-11 17:10:36 +00:00
|
|
|
const PalSpriteID *psid;
|
|
|
|
bool drawfarpillar;
|
2008-06-11 13:54:01 +00:00
|
|
|
if (transport_type != TRANSPORT_WATER) {
|
2008-06-11 17:10:36 +00:00
|
|
|
BridgeType type = GetBridgeType(rampsouth);
|
|
|
|
drawfarpillar = !HasBit(GetBridgeSpec(type)->flags, 0);
|
|
|
|
|
|
|
|
uint base_offset;
|
2008-06-11 13:54:01 +00:00
|
|
|
if (transport_type == TRANSPORT_RAIL) {
|
|
|
|
base_offset = GetRailTypeInfo(GetRailType(rampsouth))->bridge_offset;
|
|
|
|
} else {
|
|
|
|
base_offset = 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
psid = base_offset + GetBridgeSpriteTable(type, piece);
|
2006-12-27 12:38:02 +00:00
|
|
|
} else {
|
2008-06-11 17:10:36 +00:00
|
|
|
drawfarpillar = true;
|
2008-06-11 13:54:01 +00:00
|
|
|
psid = _aqueduct_sprites;
|
2006-12-27 12:38:02 +00:00
|
|
|
}
|
2008-06-11 17:10:36 +00:00
|
|
|
|
2007-01-14 19:57:49 +00:00
|
|
|
if (axis != AXIS_X) psid += 4;
|
2006-06-02 13:05:41 +00:00
|
|
|
|
2008-06-11 17:10:36 +00:00
|
|
|
int x = ti->x;
|
|
|
|
int y = ti->y;
|
2007-05-25 22:07:40 +00:00
|
|
|
uint bridge_z = GetBridgeHeight(rampsouth);
|
2008-06-11 17:10:36 +00:00
|
|
|
uint z = bridge_z - BRIDGE_Z_START;
|
2007-09-19 16:36:42 +00:00
|
|
|
|
|
|
|
/* Add a bounding box, that separates the bridge from things below it. */
|
|
|
|
AddSortableSpriteToDraw(SPR_EMPTY_BOUNDING_BOX, PAL_NONE, x, y, 16, 16, 1, bridge_z - TILE_HEIGHT + BB_Z_SEPARATOR);
|
|
|
|
|
|
|
|
/* Draw Trambits as SpriteCombine */
|
2008-02-13 03:21:19 +00:00
|
|
|
if (transport_type == TRANSPORT_ROAD) StartSpriteCombine();
|
2006-12-27 12:38:02 +00:00
|
|
|
|
2007-09-19 16:36:42 +00:00
|
|
|
/* Draw floor and far part of bridge*/
|
2008-04-03 19:55:40 +00:00
|
|
|
if (!IsInvisibilitySet(TO_BRIDGES)) {
|
|
|
|
if (axis == AXIS_X) {
|
|
|
|
AddSortableSpriteToDraw(psid->sprite, psid->pal, x, y, 16, 1, 0x28, z, IsTransparencySet(TO_BRIDGES), 0, 0, BRIDGE_Z_START);
|
|
|
|
} else {
|
|
|
|
AddSortableSpriteToDraw(psid->sprite, psid->pal, x, y, 1, 16, 0x28, z, IsTransparencySet(TO_BRIDGES), 0, 0, BRIDGE_Z_START);
|
|
|
|
}
|
2006-12-27 12:38:02 +00:00
|
|
|
}
|
2006-06-02 13:05:41 +00:00
|
|
|
|
2007-01-14 19:57:49 +00:00
|
|
|
psid++;
|
2006-06-02 13:05:41 +00:00
|
|
|
|
2008-02-13 03:21:19 +00:00
|
|
|
if (transport_type == TRANSPORT_ROAD) {
|
2007-05-25 22:07:40 +00:00
|
|
|
RoadTypes rts = GetRoadTypes(rampsouth);
|
|
|
|
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(rts, ROADTYPE_TRAM)) {
|
2007-09-19 16:36:42 +00:00
|
|
|
/* DrawBridgeTramBits() calls EndSpriteCombine() and StartSpriteCombine() */
|
2008-04-03 19:55:40 +00:00
|
|
|
DrawBridgeTramBits(x, y, bridge_z, axis ^ 1, HasBit(rts, ROADTYPE_ROAD), false);
|
2007-09-19 16:36:42 +00:00
|
|
|
} else {
|
|
|
|
EndSpriteCombine();
|
|
|
|
StartSpriteCombine();
|
2007-05-25 22:07:40 +00:00
|
|
|
}
|
2008-05-08 16:48:29 +00:00
|
|
|
} else if (HasCatenaryDrawn(GetRailType(rampsouth))) {
|
2008-04-23 19:47:23 +00:00
|
|
|
DrawCatenaryOnBridge(ti);
|
2007-05-25 11:01:44 +00:00
|
|
|
}
|
|
|
|
|
2007-04-04 03:21:14 +00:00
|
|
|
/* draw roof, the component of the bridge which is logically between the vehicle and the camera */
|
2008-04-03 19:55:40 +00:00
|
|
|
if (!IsInvisibilitySet(TO_BRIDGES)) {
|
|
|
|
if (axis == AXIS_X) {
|
|
|
|
y += 12;
|
|
|
|
if (psid->sprite & SPRITE_MASK) AddSortableSpriteToDraw(psid->sprite, psid->pal, x, y, 16, 4, 0x28, z, IsTransparencySet(TO_BRIDGES), 0, 3, BRIDGE_Z_START);
|
|
|
|
} else {
|
|
|
|
x += 12;
|
|
|
|
if (psid->sprite & SPRITE_MASK) AddSortableSpriteToDraw(psid->sprite, psid->pal, x, y, 4, 16, 0x28, z, IsTransparencySet(TO_BRIDGES), 3, 0, BRIDGE_Z_START);
|
|
|
|
}
|
2006-12-27 12:38:02 +00:00
|
|
|
}
|
|
|
|
|
2007-09-19 16:36:42 +00:00
|
|
|
/* Draw TramFront as SpriteCombine */
|
2008-02-13 03:21:19 +00:00
|
|
|
if (transport_type == TRANSPORT_ROAD) EndSpriteCombine();
|
2007-09-19 16:36:42 +00:00
|
|
|
|
2008-04-03 19:55:40 +00:00
|
|
|
/* Do not draw anything more if bridges are invisible */
|
|
|
|
if (IsInvisibilitySet(TO_BRIDGES)) return;
|
|
|
|
|
2007-01-14 19:57:49 +00:00
|
|
|
psid++;
|
2006-12-27 12:38:02 +00:00
|
|
|
if (ti->z + 5 == z) {
|
2007-04-04 03:21:14 +00:00
|
|
|
/* draw poles below for small bridges */
|
2007-01-14 19:57:49 +00:00
|
|
|
if (psid->sprite != 0) {
|
2007-07-26 14:07:11 +00:00
|
|
|
SpriteID image = psid->sprite;
|
|
|
|
SpriteID pal = psid->pal;
|
2007-11-10 01:17:15 +00:00
|
|
|
if (IsTransparencySet(TO_BRIDGES)) {
|
2007-11-20 13:35:54 +00:00
|
|
|
SetBit(image, PALETTE_MODIFIER_TRANSPARENT);
|
2007-01-14 19:57:49 +00:00
|
|
|
pal = PALETTE_TO_TRANSPARENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
DrawGroundSpriteAt(image, pal, x, y, z);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2008-05-29 15:13:28 +00:00
|
|
|
} else if (_settings_client.gui.bridge_pillars) {
|
2007-04-04 03:21:14 +00:00
|
|
|
/* draw pillars below for high bridges */
|
2008-06-11 17:10:36 +00:00
|
|
|
DrawBridgePillars(psid, ti, axis, drawfarpillar, x, y, z);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-27 12:38:02 +00:00
|
|
|
|
2006-08-06 16:32:49 +00:00
|
|
|
static uint GetSlopeZ_TunnelBridge(TileIndex tile, uint x, uint y)
|
2005-10-19 14:49:46 +00:00
|
|
|
{
|
2006-08-06 16:32:49 +00:00
|
|
|
uint z;
|
|
|
|
Slope tileh = GetTileSlope(tile, &z);
|
|
|
|
|
|
|
|
x &= 0xF;
|
|
|
|
y &= 0xF;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-04-12 05:19:19 +00:00
|
|
|
if (IsTunnel(tile)) {
|
2007-12-16 15:38:51 +00:00
|
|
|
uint pos = (DiagDirToAxis(GetTunnelBridgeDirection(tile)) == AXIS_X ? y : x);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-04-04 03:21:14 +00:00
|
|
|
/* In the tunnel entrance? */
|
2006-04-12 05:19:19 +00:00
|
|
|
if (5 <= pos && pos <= 10) return z;
|
2008-01-23 14:51:36 +00:00
|
|
|
} else { // IsBridge(tile)
|
2007-12-16 15:38:51 +00:00
|
|
|
DiagDirection dir = GetTunnelBridgeDirection(tile);
|
2006-12-27 12:38:02 +00:00
|
|
|
uint pos = (DiagDirToAxis(dir) == AXIS_X ? y : x);
|
|
|
|
|
2007-07-26 16:51:10 +00:00
|
|
|
z += ApplyFoundationToSlope(GetBridgeFoundation(tileh, DiagDirToAxis(dir)), &tileh);
|
|
|
|
|
2007-04-04 03:21:14 +00:00
|
|
|
/* On the bridge ramp? */
|
2006-12-27 12:38:02 +00:00
|
|
|
if (5 <= pos && pos <= 10) {
|
|
|
|
uint delta;
|
|
|
|
|
2008-01-22 16:08:17 +00:00
|
|
|
if (tileh != SLOPE_FLAT) return z + TILE_HEIGHT;
|
2006-12-27 12:38:02 +00:00
|
|
|
|
|
|
|
switch (dir) {
|
|
|
|
default: NOT_REACHED();
|
|
|
|
case DIAGDIR_NE: delta = (TILE_SIZE - 1 - x) / 2; break;
|
|
|
|
case DIAGDIR_SE: delta = y / 2; break;
|
|
|
|
case DIAGDIR_SW: delta = x / 2; break;
|
|
|
|
case DIAGDIR_NW: delta = (TILE_SIZE - 1 - y) / 2; break;
|
2006-04-12 05:19:19 +00:00
|
|
|
}
|
2006-12-27 12:38:02 +00:00
|
|
|
return z + 1 + delta;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-12 05:19:19 +00:00
|
|
|
return z + GetPartialZ(x, y, tileh);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-07-26 16:51:10 +00:00
|
|
|
static Foundation GetFoundation_TunnelBridge(TileIndex tile, Slope tileh)
|
2005-11-14 19:48:04 +00:00
|
|
|
{
|
2007-12-16 15:38:51 +00:00
|
|
|
return IsTunnel(tile) ? FOUNDATION_NONE : GetBridgeFoundation(tileh, DiagDirToAxis(GetTunnelBridgeDirection(tile)));
|
2004-08-13 18:27:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
static void GetAcceptedCargo_TunnelBridge(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_TunnelBridge(TileIndex tile, TileDesc *td)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-06-11 16:24:00 +00:00
|
|
|
TransportType tt = GetTunnelBridgeTransportType(tile);
|
|
|
|
|
2006-03-12 15:04:03 +00:00
|
|
|
if (IsTunnel(tile)) {
|
2008-06-11 16:24:00 +00:00
|
|
|
td->str = (tt == TRANSPORT_RAIL) ? STR_5017_RAILROAD_TUNNEL : STR_5018_ROAD_TUNNEL;
|
|
|
|
} else { // IsBridge(tile)
|
|
|
|
td->str = (tt == TRANSPORT_WATER) ? STR_AQUEDUCT : GetBridgeSpec(GetBridgeType(tile))->transport_name[tt];
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2008-05-21 22:15:39 +00:00
|
|
|
td->owner[0] = GetTileOwner(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
static void AnimateTile_TunnelBridge(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
/* not used */
|
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
static void TileLoop_TunnelBridge(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-12-16 19:30:42 +00:00
|
|
|
bool snow_or_desert = HasTunnelBridgeSnowOrDesert(tile);
|
2008-05-29 15:13:28 +00:00
|
|
|
switch (_settings_game.game_creation.landscape) {
|
2007-03-22 03:42:43 +00:00
|
|
|
case LT_ARCTIC:
|
2007-03-20 13:47:00 +00:00
|
|
|
if (snow_or_desert != (GetTileZ(tile) > GetSnowLine())) {
|
2007-12-16 19:30:42 +00:00
|
|
|
SetTunnelBridgeSnowOrDesert(tile, !snow_or_desert);
|
2006-07-22 14:31:56 +00:00
|
|
|
MarkTileDirtyByTile(tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-02-13 21:15:00 +00:00
|
|
|
break;
|
|
|
|
|
2007-03-22 03:42:43 +00:00
|
|
|
case LT_TROPIC:
|
2006-12-29 09:10:44 +00:00
|
|
|
if (GetTropicZone(tile) == TROPICZONE_DESERT && !snow_or_desert) {
|
2007-12-16 19:30:42 +00:00
|
|
|
SetTunnelBridgeSnowOrDesert(tile, true);
|
2004-08-09 17:04:08 +00:00
|
|
|
MarkTileDirtyByTile(tile);
|
|
|
|
}
|
2006-02-13 21:15:00 +00:00
|
|
|
break;
|
2007-12-16 19:30:42 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
static void ClickTile_TunnelBridge(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
/* not used */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-20 17:49:50 +00:00
|
|
|
static TrackStatus GetTileTrackStatus_TunnelBridge(TileIndex tile, TransportType mode, uint sub_mode, DiagDirection side)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-02-13 03:21:19 +00:00
|
|
|
TransportType transport_type = GetTunnelBridgeTransportType(tile);
|
|
|
|
if (transport_type != mode || (transport_type == TRANSPORT_ROAD && (GetRoadTypes(tile) & sub_mode) == 0)) return 0;
|
2008-02-18 16:11:31 +00:00
|
|
|
|
|
|
|
DiagDirection dir = GetTunnelBridgeDirection(tile);
|
|
|
|
if (side != INVALID_DIAGDIR && side != ReverseDiagDir(dir)) return 0;
|
2008-05-14 18:31:21 +00:00
|
|
|
return CombineTrackStatus(TrackBitsToTrackdirBits(DiagDirToDiagTrackBits(dir)), TRACKDIR_BIT_NONE);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-09-18 20:56:44 +00:00
|
|
|
static void ChangeTileOwner_TunnelBridge(TileIndex tile, PlayerID old_player, PlayerID new_player)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-06-04 11:56:32 +00:00
|
|
|
if (!IsTileOwner(tile, old_player)) return;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-10-14 15:49:43 +00:00
|
|
|
if (new_player != PLAYER_SPECTATOR) {
|
2005-06-04 12:13:24 +00:00
|
|
|
SetTileOwner(tile, new_player);
|
2006-08-28 18:53:03 +00:00
|
|
|
} else {
|
2008-02-09 15:07:31 +00:00
|
|
|
if (CmdFailed(DoCommand(tile, 0, 0, DC_EXEC | DC_BANKRUPT, CMD_LANDSCAPE_CLEAR))) {
|
2007-05-28 21:32:26 +00:00
|
|
|
/* When clearing the bridge/tunnel failed there are still vehicles on/in
|
|
|
|
* the bridge/tunnel. As all *our* vehicles are already removed, they
|
2008-06-11 15:56:55 +00:00
|
|
|
* must be of another owner. Therefore this can't be rail tunnel/bridge.
|
2007-05-28 21:32:26 +00:00
|
|
|
* In that case we can safely reassign the ownership to OWNER_NONE. */
|
2008-06-11 15:56:55 +00:00
|
|
|
assert(GetTunnelBridgeTransportType(tile) != TRANSPORT_RAIL);
|
2007-05-28 21:32:26 +00:00
|
|
|
SetTileOwner(tile, OWNER_NONE);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-22 14:38:37 +00:00
|
|
|
static const byte _tunnel_fractcoord_1[4] = {0x8E, 0x18, 0x81, 0xE8};
|
|
|
|
static const byte _tunnel_fractcoord_2[4] = {0x81, 0x98, 0x87, 0x38};
|
|
|
|
static const byte _tunnel_fractcoord_3[4] = {0x82, 0x88, 0x86, 0x48};
|
|
|
|
static const byte _exit_tunnel_track[4] = {1, 2, 1, 2};
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-13 22:27:27 +00:00
|
|
|
/** Get the trackdir of the exit of a tunnel */
|
|
|
|
static const Trackdir _road_exit_tunnel_state[DIAGDIR_END] = {
|
|
|
|
TRACKDIR_X_SW, TRACKDIR_Y_NW, TRACKDIR_X_NE, TRACKDIR_Y_SE
|
|
|
|
};
|
2004-08-09 17:04:08 +00:00
|
|
|
static const byte _road_exit_tunnel_frame[4] = {2, 7, 9, 4};
|
|
|
|
|
2006-08-22 14:38:37 +00:00
|
|
|
static const byte _tunnel_fractcoord_4[4] = {0x52, 0x85, 0x98, 0x29};
|
|
|
|
static const byte _tunnel_fractcoord_5[4] = {0x92, 0x89, 0x58, 0x25};
|
|
|
|
static const byte _tunnel_fractcoord_6[4] = {0x92, 0x89, 0x56, 0x45};
|
|
|
|
static const byte _tunnel_fractcoord_7[4] = {0x52, 0x85, 0x96, 0x49};
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-12-21 22:50:51 +00:00
|
|
|
static VehicleEnterTileStatus VehicleEnter_TunnelBridge(Vehicle *v, TileIndex tile, int x, int y)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-12-27 12:38:02 +00:00
|
|
|
int z = GetSlopeZ(x, y) - v->z_pos;
|
|
|
|
|
2007-11-19 18:58:04 +00:00
|
|
|
if (abs(z) > 2) return VETSB_CANNOT_ENTER;
|
2008-02-13 03:02:02 +00:00
|
|
|
const DiagDirection dir = GetTunnelBridgeDirection(tile);
|
2006-12-27 12:38:02 +00:00
|
|
|
|
2006-03-12 15:04:03 +00:00
|
|
|
if (IsTunnel(tile)) {
|
2006-02-06 09:18:04 +00:00
|
|
|
byte fc;
|
2006-03-06 20:28:28 +00:00
|
|
|
DiagDirection vdir;
|
2006-02-06 09:18:04 +00:00
|
|
|
|
2007-03-08 16:27:54 +00:00
|
|
|
if (v->type == VEH_TRAIN) {
|
2006-02-01 06:32:03 +00:00
|
|
|
fc = (x & 0xF) + (y << 4);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-03-06 20:28:28 +00:00
|
|
|
vdir = DirToDiagDir(v->direction);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-02-13 10:46:45 +00:00
|
|
|
if (v->u.rail.track != TRACK_BIT_WORMHOLE && dir == vdir) {
|
2005-11-18 23:41:03 +00:00
|
|
|
if (IsFrontEngine(v) && fc == _tunnel_fractcoord_1[dir]) {
|
2007-03-04 22:14:32 +00:00
|
|
|
if (!PlayVehicleSound(v, VSE_TUNNEL) && RailVehInfo(v->engine_type)->engclass == 0) {
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayVehicleFx(SND_05_TRAIN_THROUGH_TUNNEL, v);
|
2006-09-27 18:17:01 +00:00
|
|
|
}
|
2007-02-13 10:26:53 +00:00
|
|
|
return VETSB_CONTINUE;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
if (fc == _tunnel_fractcoord_2[dir]) {
|
|
|
|
v->tile = tile;
|
2007-01-10 18:56:51 +00:00
|
|
|
v->u.rail.track = TRACK_BIT_WORMHOLE;
|
2004-08-09 17:04:08 +00:00
|
|
|
v->vehstatus |= VS_HIDDEN;
|
2007-02-13 10:26:53 +00:00
|
|
|
return VETSB_ENTERED_WORMHOLE;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-06 20:28:28 +00:00
|
|
|
if (dir == ReverseDiagDir(vdir) && fc == _tunnel_fractcoord_3[dir] && z == 0) {
|
2004-08-11 22:07:08 +00:00
|
|
|
/* We're at the tunnel exit ?? */
|
2004-08-09 17:04:08 +00:00
|
|
|
v->tile = tile;
|
2007-01-10 18:56:51 +00:00
|
|
|
v->u.rail.track = (TrackBits)_exit_tunnel_track[dir];
|
2005-02-06 22:36:08 +00:00
|
|
|
assert(v->u.rail.track);
|
2004-08-09 17:04:08 +00:00
|
|
|
v->vehstatus &= ~VS_HIDDEN;
|
2007-02-13 10:26:53 +00:00
|
|
|
return VETSB_ENTERED_WORMHOLE;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2007-03-08 16:27:54 +00:00
|
|
|
} else if (v->type == VEH_ROAD) {
|
2006-02-01 06:32:03 +00:00
|
|
|
fc = (x & 0xF) + (y << 4);
|
2006-03-06 20:28:28 +00:00
|
|
|
vdir = DirToDiagDir(v->direction);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-04-04 03:21:14 +00:00
|
|
|
/* Enter tunnel? */
|
2007-02-13 22:27:27 +00:00
|
|
|
if (v->u.road.state != RVSB_WORMHOLE && dir == vdir) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (fc == _tunnel_fractcoord_4[dir] ||
|
|
|
|
fc == _tunnel_fractcoord_5[dir]) {
|
|
|
|
v->tile = tile;
|
2007-02-13 22:27:27 +00:00
|
|
|
v->u.road.state = RVSB_WORMHOLE;
|
2004-09-10 19:02:27 +00:00
|
|
|
v->vehstatus |= VS_HIDDEN;
|
2007-02-13 10:26:53 +00:00
|
|
|
return VETSB_ENTERED_WORMHOLE;
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2007-02-13 10:26:53 +00:00
|
|
|
return VETSB_CONTINUE;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-06 20:28:28 +00:00
|
|
|
if (dir == ReverseDiagDir(vdir) && (
|
2006-02-01 06:32:03 +00:00
|
|
|
/* We're at the tunnel exit ?? */
|
|
|
|
fc == _tunnel_fractcoord_6[dir] ||
|
|
|
|
fc == _tunnel_fractcoord_7[dir]
|
|
|
|
) &&
|
2004-08-09 17:04:08 +00:00
|
|
|
z == 0) {
|
|
|
|
v->tile = tile;
|
|
|
|
v->u.road.state = _road_exit_tunnel_state[dir];
|
|
|
|
v->u.road.frame = _road_exit_tunnel_frame[dir];
|
|
|
|
v->vehstatus &= ~VS_HIDDEN;
|
2007-02-13 10:26:53 +00:00
|
|
|
return VETSB_ENTERED_WORMHOLE;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
2008-01-23 14:51:36 +00:00
|
|
|
} else { // IsBridge(tile)
|
2006-12-27 12:38:02 +00:00
|
|
|
|
2008-06-11 13:54:01 +00:00
|
|
|
if (v->IsPrimaryVehicle() && v->type != VEH_SHIP) {
|
2006-12-27 12:38:02 +00:00
|
|
|
/* modify speed of vehicle */
|
2008-02-05 05:21:02 +00:00
|
|
|
uint16 spd = GetBridgeSpec(GetBridgeType(tile))->speed;
|
2006-12-27 12:38:02 +00:00
|
|
|
|
2007-03-08 16:27:54 +00:00
|
|
|
if (v->type == VEH_ROAD) spd *= 2;
|
2006-12-27 12:38:02 +00:00
|
|
|
if (v->cur_speed > spd) v->cur_speed = spd;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DirToDiagDir(v->direction) == dir) {
|
|
|
|
switch (dir) {
|
|
|
|
default: NOT_REACHED();
|
2007-02-13 10:26:53 +00:00
|
|
|
case DIAGDIR_NE: if ((x & 0xF) != 0) return VETSB_CONTINUE; break;
|
|
|
|
case DIAGDIR_SE: if ((y & 0xF) != TILE_SIZE - 1) return VETSB_CONTINUE; break;
|
|
|
|
case DIAGDIR_SW: if ((x & 0xF) != TILE_SIZE - 1) return VETSB_CONTINUE; break;
|
|
|
|
case DIAGDIR_NW: if ((y & 0xF) != 0) return VETSB_CONTINUE; break;
|
2006-12-27 12:38:02 +00:00
|
|
|
}
|
2008-06-11 13:54:01 +00:00
|
|
|
switch (v->type) {
|
|
|
|
case VEH_TRAIN:
|
|
|
|
v->u.rail.track = TRACK_BIT_WORMHOLE;
|
|
|
|
ClrBit(v->u.rail.flags, VRF_GOINGUP);
|
|
|
|
ClrBit(v->u.rail.flags, VRF_GOINGDOWN);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VEH_ROAD:
|
|
|
|
v->u.road.state = RVSB_WORMHOLE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VEH_SHIP:
|
|
|
|
v->u.ship.state = TRACK_BIT_WORMHOLE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: NOT_REACHED();
|
2006-12-27 12:38:02 +00:00
|
|
|
}
|
2007-02-13 10:26:53 +00:00
|
|
|
return VETSB_ENTERED_WORMHOLE;
|
2006-12-27 12:38:02 +00:00
|
|
|
} else if (DirToDiagDir(v->direction) == ReverseDiagDir(dir)) {
|
|
|
|
v->tile = tile;
|
2008-06-11 13:54:01 +00:00
|
|
|
switch (v->type) {
|
|
|
|
case VEH_TRAIN:
|
|
|
|
if (v->u.rail.track == TRACK_BIT_WORMHOLE) {
|
|
|
|
v->u.rail.track = (DiagDirToAxis(dir) == AXIS_X ? TRACK_BIT_X : TRACK_BIT_Y);
|
|
|
|
return VETSB_ENTERED_WORMHOLE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VEH_ROAD:
|
|
|
|
if (v->u.road.state == RVSB_WORMHOLE) {
|
|
|
|
v->u.road.state = _road_exit_tunnel_state[dir];
|
|
|
|
v->u.road.frame = 0;
|
|
|
|
return VETSB_ENTERED_WORMHOLE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VEH_SHIP:
|
|
|
|
if (v->u.ship.state == TRACK_BIT_WORMHOLE) {
|
|
|
|
v->u.ship.state = (DiagDirToAxis(dir) == AXIS_X ? TRACK_BIT_X : TRACK_BIT_Y);
|
|
|
|
return VETSB_ENTERED_WORMHOLE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: NOT_REACHED();
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-02-13 10:26:53 +00:00
|
|
|
return VETSB_CONTINUE;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-08-30 17:17:04 +00:00
|
|
|
static CommandCost TerraformTile_TunnelBridge(TileIndex tile, uint32 flags, uint z_new, Slope tileh_new)
|
|
|
|
{
|
2008-06-11 14:51:31 +00:00
|
|
|
if (_settings_game.construction.build_on_slopes && AutoslopeEnabled() && IsBridge(tile) && GetTunnelBridgeTransportType(tile) != TRANSPORT_WATER) {
|
2007-12-16 15:38:51 +00:00
|
|
|
DiagDirection direction = GetTunnelBridgeDirection(tile);
|
2007-09-14 22:27:40 +00:00
|
|
|
Axis axis = DiagDirToAxis(direction);
|
|
|
|
CommandCost res;
|
2008-01-21 15:48:00 +00:00
|
|
|
uint z_old;
|
|
|
|
Slope tileh_old = GetTileSlope(tile, &z_old);
|
2007-09-14 22:27:40 +00:00
|
|
|
|
|
|
|
/* Check if new slope is valid for bridges in general (so we can savely call GetBridgeFoundation()) */
|
|
|
|
if ((direction == DIAGDIR_NW) || (direction == DIAGDIR_NE)) {
|
2008-01-21 15:48:00 +00:00
|
|
|
CheckBridgeSlopeSouth(axis, &tileh_old, &z_old);
|
|
|
|
res = CheckBridgeSlopeSouth(axis, &tileh_new, &z_new);
|
2007-09-14 22:27:40 +00:00
|
|
|
} else {
|
2008-01-21 15:48:00 +00:00
|
|
|
CheckBridgeSlopeNorth(axis, &tileh_old, &z_old);
|
|
|
|
res = CheckBridgeSlopeNorth(axis, &tileh_new, &z_new);
|
2007-09-14 22:27:40 +00:00
|
|
|
}
|
|
|
|
|
2008-01-21 15:48:00 +00:00
|
|
|
/* Surface slope is valid and remains unchanged? */
|
|
|
|
if (!CmdFailed(res) && (z_old == z_new) && (tileh_old == tileh_new)) return CommandCost(EXPENSES_CONSTRUCTION, _price.terraform);
|
2007-09-14 22:27:40 +00:00
|
|
|
}
|
|
|
|
|
2007-08-30 17:17:04 +00:00
|
|
|
return DoCommand(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR);
|
|
|
|
}
|
|
|
|
|
2007-01-10 18:56:51 +00:00
|
|
|
extern const TileTypeProcs _tile_type_tunnelbridge_procs = {
|
2006-08-22 14:38:37 +00:00
|
|
|
DrawTile_TunnelBridge, /* draw_tile_proc */
|
|
|
|
GetSlopeZ_TunnelBridge, /* get_slope_z_proc */
|
|
|
|
ClearTile_TunnelBridge, /* clear_tile_proc */
|
|
|
|
GetAcceptedCargo_TunnelBridge, /* get_accepted_cargo_proc */
|
|
|
|
GetTileDesc_TunnelBridge, /* get_tile_desc_proc */
|
|
|
|
GetTileTrackStatus_TunnelBridge, /* get_tile_track_status_proc */
|
|
|
|
ClickTile_TunnelBridge, /* click_tile_proc */
|
|
|
|
AnimateTile_TunnelBridge, /* animate_tile_proc */
|
|
|
|
TileLoop_TunnelBridge, /* tile_loop_clear */
|
|
|
|
ChangeTileOwner_TunnelBridge, /* change_tile_owner_clear */
|
|
|
|
NULL, /* get_produced_cargo_proc */
|
|
|
|
VehicleEnter_TunnelBridge, /* vehicle_enter_tile_proc */
|
2007-07-26 16:51:10 +00:00
|
|
|
GetFoundation_TunnelBridge, /* get_foundation_proc */
|
2007-08-30 17:17:04 +00:00
|
|
|
TerraformTile_TunnelBridge, /* terraform_tile_proc */
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|