| | | 1 | Index: src/station_cmd.cpp
|
|---|
| | | 2 | ===================================================================
|
|---|
| | | 3 | --- src/station_cmd.cpp (revision 27632)
|
|---|
| | | 4 | +++ src/station_cmd.cpp (working copy)
|
|---|
| | | 5 | @@ -2504,6 +2504,9 @@
|
|---|
| | | 6 | return_cmd_error(STR_ERROR_SITE_UNSUITABLE);
|
|---|
| | | 7 | }
|
|---|
| | | 8 |
|
|---|
| | | 9 | + ret = EnsureNoShipOnDiagDir(tile_cur, ReverseDiagDir(direction));
|
|---|
| | | 10 | + if (ret.Failed()) return ret;
|
|---|
| | | 11 | +
|
|---|
| | | 12 | TileArea dock_area = TileArea(tile + ToTileIndexDiff(_dock_tileoffs_chkaround[direction]),
|
|---|
| | | 13 | _dock_w_chk[direction], _dock_h_chk[direction]);
|
|---|
| | | 14 |
|
|---|
| | | 15 | Index: src/vehicle.cpp
|
|---|
| | | 16 | ===================================================================
|
|---|
| | | 17 | --- src/vehicle.cpp (revision 27632)
|
|---|
| | | 18 | +++ src/vehicle.cpp (working copy)
|
|---|
| | | 19 | @@ -484,6 +484,24 @@
|
|---|
| | | 20 | return CommandCost();
|
|---|
| | | 21 | }
|
|---|
| | | 22 |
|
|---|
| | | 23 | +/**
|
|---|
| | | 24 | +* Ensure there is no ship on the water at the given diagonal direction.
|
|---|
| | | 25 | +* @param tile Position to examine.
|
|---|
| | | 26 | +* @param diag_dir Diagonal direction
|
|---|
| | | 27 | +* @return Succeeded command (water is free) or failed command (a ship is found).
|
|---|
| | | 28 | +*/
|
|---|
| | | 29 | +CommandCost EnsureNoShipOnDiagDir(TileIndex tile, DiagDirection diag_dir)
|
|---|
| | | 30 | +{
|
|---|
| | | 31 | + if (HasTileWaterClass(tile)) {
|
|---|
| | | 32 | + TrackBits tb = TrackStatusToTrackBits(GetTileTrackStatus(tile, TRANSPORT_WATER, 0));
|
|---|
| | | 33 | + if (((diag_dir == DIAGDIR_NE && (tb & TRACK_BIT_3WAY_NE) != 0) || (diag_dir == DIAGDIR_SE && (tb & TRACK_BIT_3WAY_SE) != 0) || (diag_dir == DIAGDIR_NW && (tb & TRACK_BIT_3WAY_NW) != 0) || (diag_dir == DIAGDIR_SW && (tb & TRACK_BIT_3WAY_SW) != 0) && !IsShipDepotTile(tile) && IsTileType(tile, MP_WATER) && !IsLock(tile))) {
|
|---|
| | | 34 | + CommandCost ret = EnsureNoVehicleOnGround(tile);
|
|---|
| | | 35 | + if (ret.Failed()) return ret;
|
|---|
| | | 36 | + }
|
|---|
| | | 37 | + }
|
|---|
| | | 38 | + return CommandCost();
|
|---|
| | | 39 | +}
|
|---|
| | | 40 | +
|
|---|
| | | 41 | /** Procedure called for every vehicle found in tunnel/bridge in the hash map */
|
|---|
| | | 42 | static Vehicle *GetVehicleTunnelBridgeProc(Vehicle *v, void *data)
|
|---|
| | | 43 | {
|
|---|
| | | 44 | Index: src/vehicle_func.h
|
|---|
| | | 45 | ===================================================================
|
|---|
| | | 46 | --- src/vehicle_func.h (revision 27632)
|
|---|
| | | 47 | +++ src/vehicle_func.h (working copy)
|
|---|
| | | 48 | @@ -165,6 +165,7 @@
|
|---|
| | | 49 |
|
|---|
| | | 50 | CommandCost EnsureNoVehicleOnGround(TileIndex tile);
|
|---|
| | | 51 | CommandCost EnsureNoTrainOnTrackBits(TileIndex tile, TrackBits track_bits);
|
|---|
| | | 52 | +CommandCost EnsureNoShipOnDiagDir(TileIndex tile, DiagDirection diag_dir);
|
|---|
| | | 53 |
|
|---|
| | | 54 | extern VehicleID _new_vehicle_id;
|
|---|
| | | 55 | extern uint16 _returned_refit_capacity;
|
|---|
| 11 | + if (HasTileWaterClass(tc)) {
| 11 | + ret = EnsureNoShipOnDiagDir(tc, dir_rotate);
|
|---|
| 12 | + tb = TrackStatusToTrackBits(GetTileTrackStatus(tc, TRANSPORT_WATER, 0));
| 12 | + if (ret.Failed()) return ret;
|
|---|
| 13 | + if (((axis == AXIS_Y && (tb & TRACK_BIT_3WAY_NE) != 0) || (axis == AXIS_X && (tb & TRACK_BIT_3WAY_SE) != 0) && !IsShipDepotTile(tc) && IsTileType(tc, MP_WATER) && !IsLock(tc))) {
| 13 | +
|
|---|
| 14 | + ret = EnsureNoVehicleOnGround(tc);
| | |
|---|
| 15 | + if (ret.Failed()) return ret;
| | |
|---|
| 16 | + }
| | |
|---|
| 17 | + }
| | |
|---|
| 19 | + if (HasTileWaterClass(tc)) {
| 19 | + ret = EnsureNoShipOnDiagDir(tc, dir_rotate);
|
|---|
| 20 | + tb = TrackStatusToTrackBits(GetTileTrackStatus(tc, TRANSPORT_WATER, 0));
| 20 | + if (ret.Failed()) return ret;
|
|---|
| 21 | + if (((axis == AXIS_Y && (tb & TRACK_BIT_3WAY_NE) != 0) || (axis == AXIS_X && (tb & TRACK_BIT_3WAY_SE) != 0) && !IsShipDepotTile(tc) && IsTileType(tc, MP_WATER) && !IsLock(tc))) {
| 21 | +
|
|---|
| 22 | + ret = EnsureNoVehicleOnGround(tc);
| 22 | + dir_rotate = ReverseDiagDir(dir_rotate);
|
|---|
| 23 | + if (ret.Failed()) return ret;
| | |
|---|
| 24 | + }
| | |
|---|
| 25 | + }
| | |
|---|
| 27 | + if (HasTileWaterClass(tc)) {
| 27 | + ret = EnsureNoShipOnDiagDir(tc, dir_rotate);
|
|---|
| 28 | + tb = TrackStatusToTrackBits(GetTileTrackStatus(tc, TRANSPORT_WATER, 0));
| 28 | + if (ret.Failed()) return ret;
|
|---|
| 29 | + if (((axis == AXIS_Y && (tb & TRACK_BIT_3WAY_SW) != 0) || (axis == AXIS_X && (tb & TRACK_BIT_3WAY_NW) != 0) && !IsShipDepotTile(tc) && IsTileType(tc, MP_WATER) && !IsLock(tc))) {
| 29 | +
|
|---|
| 30 | + ret = EnsureNoVehicleOnGround(tc);
| | |
|---|
| 31 | + if (ret.Failed()) return ret;
| | |
|---|
| 32 | + }
| | |
|---|
| 33 | + }
| | |
|---|
| 35 | + if (HasTileWaterClass(tc)) {
| 35 | + ret = EnsureNoShipOnDiagDir(tc, dir_rotate);
|
|---|
| 36 | + tb = TrackStatusToTrackBits(GetTileTrackStatus(tc, TRANSPORT_WATER, 0));
| 36 | + if (ret.Failed()) return ret;
|
|---|
| 37 | + if (((axis == AXIS_Y && (tb & TRACK_BIT_3WAY_SW) != 0) || (axis == AXIS_X && (tb & TRACK_BIT_3WAY_NW) != 0) && !IsShipDepotTile(tc) && IsTileType(tc, MP_WATER) && !IsLock(tc))) {
| 37 | +
|
|---|
| 38 | + ret = EnsureNoVehicleOnGround(tc);
| | |
|---|
| 39 | + if (ret.Failed()) return ret;
| | |
|---|
| 40 | + }
| | |
|---|
| 41 | + }
| | |
|---|
| 53 | + if (HasTileWaterClass(tc)) {
| 53 | + CommandCost ret = EnsureNoShipOnDiagDir(tc, dir_rotate);
|
|---|
| 54 | + tb = TrackStatusToTrackBits(GetTileTrackStatus(tc, TRANSPORT_WATER, 0));
| 54 | + if (ret.Failed()) return ret;
|
|---|
| 55 | + if (((axis == AXIS_Y && (tb & TRACK_BIT_3WAY_NE) != 0) || (axis == AXIS_X && (tb & TRACK_BIT_3WAY_SE) != 0) && !IsShipDepotTile(tc) && IsTileType(tc, MP_WATER) && !IsLock(tc))) {
| 55 | +
|
|---|
| 56 | + ret = EnsureNoVehicleOnGround(tc);
| | |
|---|
| 57 | + if (ret.Failed()) return ret;
| | |
|---|
| 58 | + }
| | |
|---|
| 59 | + }
| | |
|---|
| 61 | + if (HasTileWaterClass(tc)) {
| 61 | + ret = EnsureNoShipOnDiagDir(tc, dir_rotate);
|
|---|
| 62 | + tb = TrackStatusToTrackBits(GetTileTrackStatus(tc, TRANSPORT_WATER, 0));
| 62 | + if (ret.Failed()) return ret;
|
|---|
| 63 | + if (((axis == AXIS_Y && (tb & TRACK_BIT_3WAY_NE) != 0) || (axis == AXIS_X && (tb & TRACK_BIT_3WAY_SE) != 0) && !IsShipDepotTile(tc) && IsTileType(tc, MP_WATER) && !IsLock(tc))) {
| 63 | +
|
|---|
| 64 | + ret = EnsureNoVehicleOnGround(tc);
| 64 | + dir_rotate = ReverseDiagDir(dir_rotate);
|
|---|
| 65 | + if (ret.Failed()) return ret;
| | |
|---|
| 66 | + }
| | |
|---|
| 67 | + }
| | |
|---|
| 69 | + if (HasTileWaterClass(tc)) {
| 69 | + ret = EnsureNoShipOnDiagDir(tc, dir_rotate);
|
|---|
| 70 | + tb = TrackStatusToTrackBits(GetTileTrackStatus(tc, TRANSPORT_WATER, 0));
| 70 | + if (ret.Failed()) return ret;
|
|---|
| 71 | + if (((axis == AXIS_Y && (tb & TRACK_BIT_3WAY_SW) != 0) || (axis == AXIS_X && (tb & TRACK_BIT_3WAY_NW) != 0) && !IsShipDepotTile(tc) && IsTileType(tc, MP_WATER) && !IsLock(tc))) {
| 71 | +
|
|---|
| 72 | + ret = EnsureNoVehicleOnGround(tc);
| | |
|---|
| 73 | + if (ret.Failed()) return ret;
| | |
|---|
| 74 | + }
| | |
|---|
| 75 | + }
| | |
|---|
| 77 | + if (HasTileWaterClass(tc)) {
| 77 | + ret = EnsureNoShipOnDiagDir(tc, dir_rotate);
|
|---|
| 78 | + tb = TrackStatusToTrackBits(GetTileTrackStatus(tc, TRANSPORT_WATER, 0));
| 78 | + if (ret.Failed()) return ret;
|
|---|
| 79 | + if (((axis == AXIS_Y && (tb & TRACK_BIT_3WAY_SW) != 0) || (axis == AXIS_X && (tb & TRACK_BIT_3WAY_NW) != 0) && !IsShipDepotTile(tc) && IsTileType(tc, MP_WATER) && !IsLock(tc))) {
| 79 | +
|
|---|
| 80 | + ret = EnsureNoVehicleOnGround(tc);
| | |
|---|
| 81 | + if (ret.Failed()) return ret;
| | |
|---|
| 82 | + }
| | |
|---|
| 83 | + }
| | |
|---|