author | tron |
Fri, 24 Mar 2006 08:00:45 +0000 | |
changeset 3314 | 6aaeba4b92e8 |
parent 3275 | 23e21691c3c0 |
child 3338 | 7cff208f0446 |
permissions | -rw-r--r-- |
2186 | 1 |
/* $Id$ */ |
2 |
||
0 | 3 |
#include "stdafx.h" |
1891
862800791170
(svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents:
1796
diff
changeset
|
4 |
#include "openttd.h" |
3189
bf047128dee7
(svn r3846) Add functions to set the type of stuff (clear, water, rail, road) under bridges
tron
parents:
3183
diff
changeset
|
5 |
#include "bridge_map.h" |
1363
775a7ee52369
(svn r1867) Include tables/sprites.h only in files which need it
tron
parents:
1359
diff
changeset
|
6 |
#include "table/sprites.h" |
507
04b5403aaf6b
(svn r815) Include strings.h only in the files which need it.
tron
parents:
497
diff
changeset
|
7 |
#include "table/strings.h" |
2163
b17b313113a0
(svn r2673) Include functions.h directly, not globally via openttd.h
tron
parents:
2148
diff
changeset
|
8 |
#include "functions.h" |
679
04ca2cd69420
(svn r1117) Move map arrays and some related macros into their own files map.c and map.h
tron
parents:
588
diff
changeset
|
9 |
#include "map.h" |
1209
2e00193652b2
(svn r1713) Split off several functions which query/set information about a single tile from map.h and put them into a seperate file tile.h
tron
parents:
1132
diff
changeset
|
10 |
#include "tile.h" |
0 | 11 |
#include "vehicle.h" |
12 |
#include "viewport.h" |
|
13 |
#include "command.h" |
|
14 |
#include "town.h" |
|
149
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
15 |
#include "news.h" |
337
cbe0c766c947
(svn r513) Merge revisions 402, 416, 417, 478, 479, 511, 512 from map to trunk
tron
parents:
314
diff
changeset
|
16 |
#include "sound.h" |
1313
f1013ec3d318
(svn r1817) -Codechange: Moved depot-functions to depot.c
truelight
parents:
1214
diff
changeset
|
17 |
#include "depot.h" |
1752
d65cd19f7117
(svn r2256) - Fix: Trains cannot find a depot when they are in a tunnel. (glx)
matthijs
parents:
1632
diff
changeset
|
18 |
#include "vehicle_gui.h" |
2676
59b65b4fb480
(svn r3218) -Feature: Multiheaded train engines will now stay in the same train
bjarni
parents:
2657
diff
changeset
|
19 |
#include "train.h" |
3111
750f37699a13
(svn r3714) Add functions to turn tiles into water and shore tiles
tron
parents:
3017
diff
changeset
|
20 |
#include "water_map.h" |
149
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
21 |
|
2261
d3554e5d3e86
(svn r2781) Fix some of the issues with variables in .h files.
ludde
parents:
2186
diff
changeset
|
22 |
const SpriteID _water_shore_sprites[15] = { |
2517
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
23 |
0, |
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
24 |
SPR_SHORE_TILEH_1, |
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
25 |
SPR_SHORE_TILEH_2, |
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
26 |
SPR_SHORE_TILEH_3, |
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
27 |
SPR_SHORE_TILEH_4, |
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
28 |
0, |
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
29 |
SPR_SHORE_TILEH_6, |
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
30 |
0, |
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
31 |
SPR_SHORE_TILEH_8, |
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
32 |
SPR_SHORE_TILEH_9, |
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
33 |
0, |
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
34 |
0, |
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
35 |
SPR_SHORE_TILEH_12, |
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
36 |
0, |
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
37 |
0 |
2261
d3554e5d3e86
(svn r2781) Fix some of the issues with variables in .h files.
ludde
parents:
2186
diff
changeset
|
38 |
}; |
d3554e5d3e86
(svn r2781) Fix some of the issues with variables in .h files.
ludde
parents:
2186
diff
changeset
|
39 |
|
d3554e5d3e86
(svn r2781) Fix some of the issues with variables in .h files.
ludde
parents:
2186
diff
changeset
|
40 |
|
149
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
41 |
static void FloodVehicle(Vehicle *v); |
0 | 42 |
|
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
43 |
static bool IsClearWaterTile(TileIndex tile) |
0 | 44 |
{ |
2652
733e6877ccb1
(svn r3194) Don't use FindLandscapeHeightByTile() when it's overkill
tron
parents:
2639
diff
changeset
|
45 |
return |
733e6877ccb1
(svn r3194) Don't use FindLandscapeHeightByTile() when it's overkill
tron
parents:
2639
diff
changeset
|
46 |
IsTileType(tile, MP_WATER) && |
733e6877ccb1
(svn r3194) Don't use FindLandscapeHeightByTile() when it's overkill
tron
parents:
2639
diff
changeset
|
47 |
_m[tile].m5 == 0 && |
733e6877ccb1
(svn r3194) Don't use FindLandscapeHeightByTile() when it's overkill
tron
parents:
2639
diff
changeset
|
48 |
GetTileSlope(tile, NULL) == 0; |
0 | 49 |
} |
50 |
||
1784
d0698aac0c2e
(svn r2288) - CodeChange: protected the next batch of commands (41 so far, out of 115).
Darkvater
parents:
1752
diff
changeset
|
51 |
/** Build a ship depot. |
d0698aac0c2e
(svn r2288) - CodeChange: protected the next batch of commands (41 so far, out of 115).
Darkvater
parents:
1752
diff
changeset
|
52 |
* @param x,y tile coordinates where ship depot is built |
2657
c418f625b2fd
(svn r3199) -Fix: There are only 2 possible directions for ship depots, not 4
tron
parents:
2652
diff
changeset
|
53 |
* @param p1 depot direction (0 == X or 1 == Y) |
1784
d0698aac0c2e
(svn r2288) - CodeChange: protected the next batch of commands (41 so far, out of 115).
Darkvater
parents:
1752
diff
changeset
|
54 |
* @param p2 unused |
0 | 55 |
*/ |
56 |
int32 CmdBuildShipDepot(int x, int y, uint32 flags, uint32 p1, uint32 p2) |
|
57 |
{ |
|
1784
d0698aac0c2e
(svn r2288) - CodeChange: protected the next batch of commands (41 so far, out of 115).
Darkvater
parents:
1752
diff
changeset
|
58 |
TileIndex tile, tile2; |
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
59 |
|
0 | 60 |
int32 cost, ret; |
1313
f1013ec3d318
(svn r1817) -Codechange: Moved depot-functions to depot.c
truelight
parents:
1214
diff
changeset
|
61 |
Depot *depot; |
0 | 62 |
|
63 |
SET_EXPENSES_TYPE(EXPENSES_CONSTRUCTION); |
|
64 |
||
2657
c418f625b2fd
(svn r3199) -Fix: There are only 2 possible directions for ship depots, not 4
tron
parents:
2652
diff
changeset
|
65 |
if (p1 > 1) return CMD_ERROR; |
1784
d0698aac0c2e
(svn r2288) - CodeChange: protected the next batch of commands (41 so far, out of 115).
Darkvater
parents:
1752
diff
changeset
|
66 |
|
1980
6c5917cfcb78
(svn r2486) Turn TILE_FROM_XY into an inline function and rename it to TileVirtXY
tron
parents:
1977
diff
changeset
|
67 |
tile = TileVirtXY(x, y); |
1784
d0698aac0c2e
(svn r2288) - CodeChange: protected the next batch of commands (41 so far, out of 115).
Darkvater
parents:
1752
diff
changeset
|
68 |
if (!EnsureNoVehicle(tile)) return CMD_ERROR; |
0 | 69 |
|
1981 | 70 |
tile2 = tile + (p1 ? TileDiffXY(0, 1) : TileDiffXY(1, 0)); |
1784
d0698aac0c2e
(svn r2288) - CodeChange: protected the next batch of commands (41 so far, out of 115).
Darkvater
parents:
1752
diff
changeset
|
71 |
if (!EnsureNoVehicle(tile2)) return CMD_ERROR; |
0 | 72 |
|
73 |
if (!IsClearWaterTile(tile) || !IsClearWaterTile(tile2)) |
|
74 |
return_cmd_error(STR_3801_MUST_BE_BUILT_ON_WATER); |
|
75 |
||
76 |
ret = DoCommandByTile(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR); |
|
1784
d0698aac0c2e
(svn r2288) - CodeChange: protected the next batch of commands (41 so far, out of 115).
Darkvater
parents:
1752
diff
changeset
|
77 |
if (CmdFailed(ret)) return CMD_ERROR; |
0 | 78 |
ret = DoCommandByTile(tile2, 0, 0, flags, CMD_LANDSCAPE_CLEAR); |
1784
d0698aac0c2e
(svn r2288) - CodeChange: protected the next batch of commands (41 so far, out of 115).
Darkvater
parents:
1752
diff
changeset
|
79 |
if (CmdFailed(ret)) return CMD_ERROR; |
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
80 |
|
0 | 81 |
// pretend that we're not making land from the water even though we actually are. |
82 |
cost = 0; |
|
83 |
||
1313
f1013ec3d318
(svn r1817) -Codechange: Moved depot-functions to depot.c
truelight
parents:
1214
diff
changeset
|
84 |
depot = AllocateDepot(); |
1784
d0698aac0c2e
(svn r2288) - CodeChange: protected the next batch of commands (41 so far, out of 115).
Darkvater
parents:
1752
diff
changeset
|
85 |
if (depot == NULL) return CMD_ERROR; |
0 | 86 |
|
87 |
if (flags & DC_EXEC) { |
|
1313
f1013ec3d318
(svn r1817) -Codechange: Moved depot-functions to depot.c
truelight
parents:
1214
diff
changeset
|
88 |
depot->xy = tile; |
0 | 89 |
_last_built_ship_depot_tile = tile; |
1313
f1013ec3d318
(svn r1817) -Codechange: Moved depot-functions to depot.c
truelight
parents:
1214
diff
changeset
|
90 |
depot->town_index = ClosestTownFromTile(tile, (uint)-1)->index; |
0 | 91 |
|
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
92 |
ModifyTile(tile, |
0 | 93 |
MP_SETTYPE(MP_WATER) | MP_MAPOWNER_CURRENT | MP_MAP5 | MP_MAP2_CLEAR | MP_MAP3LO_CLEAR | MP_MAP3HI_CLEAR, |
94 |
(0x80 + p1*2) |
|
95 |
); |
|
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
96 |
|
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
97 |
ModifyTile(tile2, |
0 | 98 |
MP_SETTYPE(MP_WATER) | MP_MAPOWNER_CURRENT | MP_MAP5 | MP_MAP2_CLEAR | MP_MAP3LO_CLEAR | MP_MAP3HI_CLEAR, |
99 |
(0x81 + p1*2) |
|
100 |
); |
|
101 |
} |
|
102 |
||
103 |
return cost + _price.build_ship_depot; |
|
104 |
} |
|
105 |
||
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
106 |
static int32 RemoveShipDepot(TileIndex tile, uint32 flags) |
0 | 107 |
{ |
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
108 |
TileIndex tile2; |
0 | 109 |
|
2951 | 110 |
if (!CheckTileOwnership(tile)) return CMD_ERROR; |
111 |
if (!EnsureNoVehicle(tile)) return CMD_ERROR; |
|
0 | 112 |
|
2049
538e73c53f54
(svn r2558) Change the internal map format from 7 arrays to one array of structs, this doesn't change the saved format for now. It's a stepping stone for further changes.
tron
parents:
1981
diff
changeset
|
113 |
tile2 = tile + ((_m[tile].m5 & 2) ? TileDiffXY(0, 1) : TileDiffXY(1, 0)); |
0 | 114 |
|
2951 | 115 |
if (!EnsureNoVehicle(tile2)) return CMD_ERROR; |
0 | 116 |
|
117 |
if (flags & DC_EXEC) { |
|
1313
f1013ec3d318
(svn r1817) -Codechange: Moved depot-functions to depot.c
truelight
parents:
1214
diff
changeset
|
118 |
/* Kill the depot */ |
f1013ec3d318
(svn r1817) -Codechange: Moved depot-functions to depot.c
truelight
parents:
1214
diff
changeset
|
119 |
DoDeleteDepot(tile); |
0 | 120 |
|
3111
750f37699a13
(svn r3714) Add functions to turn tiles into water and shore tiles
tron
parents:
3017
diff
changeset
|
121 |
MakeWater(tile); |
750f37699a13
(svn r3714) Add functions to turn tiles into water and shore tiles
tron
parents:
3017
diff
changeset
|
122 |
MakeWater(tile2); |
750f37699a13
(svn r3714) Add functions to turn tiles into water and shore tiles
tron
parents:
3017
diff
changeset
|
123 |
MarkTileDirtyByTile(tile); |
750f37699a13
(svn r3714) Add functions to turn tiles into water and shore tiles
tron
parents:
3017
diff
changeset
|
124 |
MarkTileDirtyByTile(tile2); |
0 | 125 |
} |
126 |
||
127 |
return _price.remove_ship_depot; |
|
128 |
} |
|
129 |
||
130 |
// build a shiplift |
|
3157
3f35e2d9c8e3
(svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents:
3111
diff
changeset
|
131 |
static int32 DoBuildShiplift(TileIndex tile, DiagDirection dir, uint32 flags) |
0 | 132 |
{ |
133 |
int32 ret; |
|
134 |
int delta; |
|
135 |
||
136 |
// middle tile |
|
137 |
ret = DoCommandByTile(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR); |
|
2737
fb1556b8f5e0
(svn r3282) - Codechange: Replace tests against CMD_ERROR with CmdFailed()
peter1138
parents:
2676
diff
changeset
|
138 |
if (CmdFailed(ret)) return CMD_ERROR; |
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
139 |
|
900 | 140 |
delta = TileOffsByDir(dir); |
0 | 141 |
// lower tile |
142 |
ret = DoCommandByTile(tile - delta, 0, 0, flags, CMD_LANDSCAPE_CLEAR); |
|
2737
fb1556b8f5e0
(svn r3282) - Codechange: Replace tests against CMD_ERROR with CmdFailed()
peter1138
parents:
2676
diff
changeset
|
143 |
if (CmdFailed(ret)) return CMD_ERROR; |
0 | 144 |
if (GetTileSlope(tile - delta, NULL)) return_cmd_error(STR_1000_LAND_SLOPED_IN_WRONG_DIRECTION); |
145 |
||
146 |
// upper tile |
|
147 |
ret = DoCommandByTile(tile + delta, 0, 0, flags, CMD_LANDSCAPE_CLEAR); |
|
2737
fb1556b8f5e0
(svn r3282) - Codechange: Replace tests against CMD_ERROR with CmdFailed()
peter1138
parents:
2676
diff
changeset
|
148 |
if (CmdFailed(ret)) return CMD_ERROR; |
0 | 149 |
if (GetTileSlope(tile + delta, NULL)) return_cmd_error(STR_1000_LAND_SLOPED_IN_WRONG_DIRECTION); |
150 |
||
151 |
if (flags & DC_EXEC) { |
|
152 |
ModifyTile(tile, MP_SETTYPE(MP_WATER) | MP_MAPOWNER | MP_MAP5 | MP_MAP2_CLEAR | MP_MAP3LO_CLEAR | MP_MAP3HI_CLEAR, OWNER_WATER, 0x10 + dir); |
|
153 |
ModifyTile(tile - delta, MP_SETTYPE(MP_WATER) | MP_MAPOWNER | MP_MAP5 | MP_MAP2_CLEAR | MP_MAP3LO_CLEAR | MP_MAP3HI_CLEAR, OWNER_WATER, 0x14 + dir); |
|
154 |
ModifyTile(tile + delta, MP_SETTYPE(MP_WATER) | MP_MAPOWNER | MP_MAP5 | MP_MAP2_CLEAR | MP_MAP3LO_CLEAR | MP_MAP3HI_CLEAR, OWNER_WATER, 0x18 + dir); |
|
155 |
} |
|
156 |
||
157 |
return _price.clear_water * 22 >> 3; |
|
158 |
} |
|
159 |
||
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
160 |
static int32 RemoveShiplift(TileIndex tile, uint32 flags) |
0 | 161 |
{ |
2493
f6b4300cc2b0
(svn r3019) -Codechange: Replace explicit shifting/anding/oring with GB and SB
tron
parents:
2436
diff
changeset
|
162 |
TileIndexDiff delta = TileOffsByDir(GB(_m[tile].m5, 0, 2)); |
0 | 163 |
|
164 |
// make sure no vehicle is on the tile. |
|
165 |
if (!EnsureNoVehicle(tile) || !EnsureNoVehicle(tile + delta) || !EnsureNoVehicle(tile - delta)) |
|
166 |
return CMD_ERROR; |
|
167 |
||
168 |
if (flags & DC_EXEC) { |
|
169 |
DoClearSquare(tile); |
|
170 |
DoClearSquare(tile + delta); |
|
171 |
DoClearSquare(tile - delta); |
|
172 |
} |
|
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
173 |
|
0 | 174 |
return _price.clear_water * 2; |
175 |
} |
|
176 |
||
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
177 |
static void MarkTilesAroundDirty(TileIndex tile) |
0 | 178 |
{ |
179 |
MarkTileDirtyByTile(TILE_ADDXY(tile, 0, 1)); |
|
180 |
MarkTileDirtyByTile(TILE_ADDXY(tile, 0, -1)); |
|
181 |
MarkTileDirtyByTile(TILE_ADDXY(tile, 1, 0)); |
|
182 |
MarkTileDirtyByTile(TILE_ADDXY(tile, -1, 0)); |
|
183 |
} |
|
184 |
||
1796
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
185 |
/** Builds a lock (ship-lift) |
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
186 |
* @param x,y tile coordinates where to place the lock |
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
187 |
* @param p1 unused |
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
188 |
* @param p2 unused |
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
189 |
*/ |
0 | 190 |
int32 CmdBuildLock(int x, int y, uint32 flags, uint32 p1, uint32 p2) |
191 |
{ |
|
1980
6c5917cfcb78
(svn r2486) Turn TILE_FROM_XY into an inline function and rename it to TileVirtXY
tron
parents:
1977
diff
changeset
|
192 |
TileIndex tile = TileVirtXY(x, y); |
3157
3f35e2d9c8e3
(svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents:
3111
diff
changeset
|
193 |
DiagDirection dir; |
889
64d2f7d5f02b
(svn r1375) -Fix: [1050990] Buying trains sometimes accounted for incorrectly. Was the result of the cost getting reset in a recursive call of docommand. That is fixed. In addition all cost-commands are typed explicitely. Please do not forget to do so or your costs will be credited to construction if you are unlucky.
darkvater
parents:
863
diff
changeset
|
194 |
|
64d2f7d5f02b
(svn r1375) -Fix: [1050990] Buying trains sometimes accounted for incorrectly. Was the result of the cost getting reset in a recursive call of docommand. That is fixed. In addition all cost-commands are typed explicitely. Please do not forget to do so or your costs will be credited to construction if you are unlucky.
darkvater
parents:
863
diff
changeset
|
195 |
SET_EXPENSES_TYPE(EXPENSES_CONSTRUCTION); |
0 | 196 |
|
3157
3f35e2d9c8e3
(svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents:
3111
diff
changeset
|
197 |
switch (GetTileSlope(tile, NULL)) { |
3f35e2d9c8e3
(svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents:
3111
diff
changeset
|
198 |
case 3: dir = DIAGDIR_SW; break; |
3f35e2d9c8e3
(svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents:
3111
diff
changeset
|
199 |
case 6: dir = DIAGDIR_SE; break; |
3f35e2d9c8e3
(svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents:
3111
diff
changeset
|
200 |
case 9: dir = DIAGDIR_NW; break; |
3f35e2d9c8e3
(svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents:
3111
diff
changeset
|
201 |
case 12: dir = DIAGDIR_NE; break; |
3f35e2d9c8e3
(svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents:
3111
diff
changeset
|
202 |
default: return_cmd_error(STR_1000_LAND_SLOPED_IN_WRONG_DIRECTION); |
1796
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
203 |
} |
3157
3f35e2d9c8e3
(svn r3783) Replace further ints and magic numbers by Direction, DiagDirection and friends
tron
parents:
3111
diff
changeset
|
204 |
return DoBuildShiplift(tile, dir, flags); |
0 | 205 |
} |
206 |
||
1796
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
207 |
/** Build a piece of canal. |
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
208 |
* @param x,y end tile of stretch-dragging |
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
209 |
* @param p1 start tile of stretch-dragging |
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
210 |
* @param p2 unused |
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
211 |
*/ |
0 | 212 |
int32 CmdBuildCanal(int x, int y, uint32 flags, uint32 p1, uint32 p2) |
213 |
{ |
|
3177 | 214 |
int32 cost; |
1632
10c391e108b7
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
Darkvater
parents:
1605
diff
changeset
|
215 |
int size_x, size_y; |
1796
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
216 |
int sx, sy; |
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
217 |
|
2934
3f29a7212713
(svn r3490) -Fix: A bunch (10) of off-by-one errors when checking if a TileIndex points to a tile on the map
tron
parents:
2737
diff
changeset
|
218 |
if (p1 >= MapSize()) return CMD_ERROR; |
1796
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
219 |
|
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
220 |
sx = TileX(p1); |
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
221 |
sy = TileY(p1); |
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
222 |
/* x,y are in pixel-coordinates, transform to tile-coordinates |
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
223 |
* to be able to use the BEGIN_TILE_LOOP() macro */ |
1632
10c391e108b7
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
Darkvater
parents:
1605
diff
changeset
|
224 |
x >>= 4; y >>= 4; |
10c391e108b7
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
Darkvater
parents:
1605
diff
changeset
|
225 |
|
0 | 226 |
SET_EXPENSES_TYPE(EXPENSES_CONSTRUCTION); |
227 |
||
1632
10c391e108b7
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
Darkvater
parents:
1605
diff
changeset
|
228 |
if (x < sx) intswap(x, sx); |
10c391e108b7
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
Darkvater
parents:
1605
diff
changeset
|
229 |
if (y < sy) intswap(y, sy); |
10c391e108b7
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
Darkvater
parents:
1605
diff
changeset
|
230 |
size_x = (x - sx) + 1; |
10c391e108b7
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
Darkvater
parents:
1605
diff
changeset
|
231 |
size_y = (y - sy) + 1; |
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
232 |
|
1796
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
233 |
/* Outside the editor you can only drag canals, and not areas */ |
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
234 |
if (_game_mode != GM_EDITOR && (sx != x && sy != y)) return CMD_ERROR; |
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
235 |
|
0 | 236 |
cost = 0; |
1981 | 237 |
BEGIN_TILE_LOOP(tile, size_x, size_y, TileXY(sx, sy)) { |
1796
614d996f6be7
(svn r2300) - CodeChange: check the last number of commands, now only the refit ones remain, and some server-only commands.
Darkvater
parents:
1784
diff
changeset
|
238 |
if (GetTileSlope(tile, NULL) != 0) return_cmd_error(STR_0007_FLAT_LAND_REQUIRED); |
0 | 239 |
|
3183
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
240 |
// can't make water of water! |
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
241 |
if (IsTileType(tile, MP_WATER)) continue; |
1632
10c391e108b7
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
Darkvater
parents:
1605
diff
changeset
|
242 |
|
3183
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
243 |
/* is middle piece of a bridge? */ |
3234
a2791a480b71
(svn r3907) Replace many bridge related direct map accesses with calls to shiny new functions and mark some strange constructs with XXX
tron
parents:
3189
diff
changeset
|
244 |
if (IsBridgeTile(tile) && IsBridgeMiddle(tile)) { |
a2791a480b71
(svn r3907) Replace many bridge related direct map accesses with calls to shiny new functions and mark some strange constructs with XXX
tron
parents:
3189
diff
changeset
|
245 |
if (IsTransportUnderBridge(tile)) { |
3183
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
246 |
return_cmd_error(STR_5800_OBJECT_IN_THE_WAY); |
3234
a2791a480b71
(svn r3907) Replace many bridge related direct map accesses with calls to shiny new functions and mark some strange constructs with XXX
tron
parents:
3189
diff
changeset
|
247 |
} |
3177 | 248 |
|
3234
a2791a480b71
(svn r3907) Replace many bridge related direct map accesses with calls to shiny new functions and mark some strange constructs with XXX
tron
parents:
3189
diff
changeset
|
249 |
if (IsWaterUnderBridge(tile)) return_cmd_error(STR_1007_ALREADY_BUILT); |
3177 | 250 |
|
3189
bf047128dee7
(svn r3846) Add functions to set the type of stuff (clear, water, rail, road) under bridges
tron
parents:
3183
diff
changeset
|
251 |
if (flags & DC_EXEC) SetWaterUnderBridge(tile); |
3183
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
252 |
} else { |
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
253 |
/* no bridge, try to clear it. */ |
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
254 |
int32 ret = DoCommandByTile(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR); |
0 | 255 |
|
3183
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
256 |
if (CmdFailed(ret)) return ret; |
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
257 |
cost += ret; |
3177 | 258 |
|
3189
bf047128dee7
(svn r3846) Add functions to set the type of stuff (clear, water, rail, road) under bridges
tron
parents:
3183
diff
changeset
|
259 |
if (flags & DC_EXEC) MakeWater(tile); |
3183
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
260 |
} |
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
261 |
|
3189
bf047128dee7
(svn r3846) Add functions to set the type of stuff (clear, water, rail, road) under bridges
tron
parents:
3183
diff
changeset
|
262 |
if (flags & DC_EXEC) { |
bf047128dee7
(svn r3846) Add functions to set the type of stuff (clear, water, rail, road) under bridges
tron
parents:
3183
diff
changeset
|
263 |
MarkTileDirtyByTile(tile); |
bf047128dee7
(svn r3846) Add functions to set the type of stuff (clear, water, rail, road) under bridges
tron
parents:
3183
diff
changeset
|
264 |
MarkTilesAroundDirty(tile); |
bf047128dee7
(svn r3846) Add functions to set the type of stuff (clear, water, rail, road) under bridges
tron
parents:
3183
diff
changeset
|
265 |
} |
3183
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
266 |
|
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
267 |
cost += _price.clear_water; |
1632
10c391e108b7
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
Darkvater
parents:
1605
diff
changeset
|
268 |
} END_TILE_LOOP(tile, size_x, size_y, 0); |
0 | 269 |
|
3183
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
270 |
if (cost == 0) { |
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
271 |
return_cmd_error(STR_1007_ALREADY_BUILT); |
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
272 |
} else { |
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
273 |
return cost; |
90c676e6a50d
(svn r3829) Reduce the use of _error_message by directly returning error codes instead of using this global variable
tron
parents:
3177
diff
changeset
|
274 |
} |
0 | 275 |
} |
276 |
||
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
277 |
static int32 ClearTile_Water(TileIndex tile, byte flags) |
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
278 |
{ |
2049
538e73c53f54
(svn r2558) Change the internal map format from 7 arrays to one array of structs, this doesn't change the saved format for now. It's a stepping stone for further changes.
tron
parents:
1981
diff
changeset
|
279 |
byte m5 = _m[tile].m5; |
0 | 280 |
|
281 |
if (m5 <= 1) { // water and shore |
|
282 |
// Allow building on water? It's ok to build on shores. |
|
283 |
if (flags & DC_NO_WATER && m5 != 1) |
|
284 |
return_cmd_error(STR_3807_CAN_T_BUILD_ON_WATER); |
|
285 |
||
286 |
// Make sure no vehicle is on the tile |
|
2951 | 287 |
if (!EnsureNoVehicle(tile)) return CMD_ERROR; |
0 | 288 |
|
289 |
// Make sure it's not an edge tile. |
|
3017
a75caf4efa2d
(svn r3597) Miscellaneous (I like that word) changes: Fix some indentation, add consts, reduce indentation level by short-circuit logic, convert if cascades to switch, whitespace, bracing, plus some minor stuff
tron
parents:
2989
diff
changeset
|
290 |
if (!IS_INT_INSIDE(TileX(tile), 1, MapMaxX() - 1) || |
a75caf4efa2d
(svn r3597) Miscellaneous (I like that word) changes: Fix some indentation, add consts, reduce indentation level by short-circuit logic, convert if cascades to switch, whitespace, bracing, plus some minor stuff
tron
parents:
2989
diff
changeset
|
291 |
!IS_INT_INSIDE(TileY(tile), 1, MapMaxY() - 1)) { |
0 | 292 |
return_cmd_error(STR_0002_TOO_CLOSE_TO_EDGE_OF_MAP); |
3017
a75caf4efa2d
(svn r3597) Miscellaneous (I like that word) changes: Fix some indentation, add consts, reduce indentation level by short-circuit logic, convert if cascades to switch, whitespace, bracing, plus some minor stuff
tron
parents:
2989
diff
changeset
|
293 |
} |
0 | 294 |
|
295 |
if (m5 == 0) { |
|
2951 | 296 |
if (flags & DC_EXEC) DoClearSquare(tile); |
0 | 297 |
return _price.clear_water; |
298 |
} else if (m5 == 1) { |
|
3017
a75caf4efa2d
(svn r3597) Miscellaneous (I like that word) changes: Fix some indentation, add consts, reduce indentation level by short-circuit logic, convert if cascades to switch, whitespace, bracing, plus some minor stuff
tron
parents:
2989
diff
changeset
|
299 |
uint slope = GetTileSlope(tile,NULL); |
a75caf4efa2d
(svn r3597) Miscellaneous (I like that word) changes: Fix some indentation, add consts, reduce indentation level by short-circuit logic, convert if cascades to switch, whitespace, bracing, plus some minor stuff
tron
parents:
2989
diff
changeset
|
300 |
|
a75caf4efa2d
(svn r3597) Miscellaneous (I like that word) changes: Fix some indentation, add consts, reduce indentation level by short-circuit logic, convert if cascades to switch, whitespace, bracing, plus some minor stuff
tron
parents:
2989
diff
changeset
|
301 |
if (flags & DC_EXEC) DoClearSquare(tile); |
0 | 302 |
if (slope == 8 || slope == 4 || slope == 2 || slope == 1) { |
303 |
return _price.clear_water; |
|
3017
a75caf4efa2d
(svn r3597) Miscellaneous (I like that word) changes: Fix some indentation, add consts, reduce indentation level by short-circuit logic, convert if cascades to switch, whitespace, bracing, plus some minor stuff
tron
parents:
2989
diff
changeset
|
304 |
} else { |
a75caf4efa2d
(svn r3597) Miscellaneous (I like that word) changes: Fix some indentation, add consts, reduce indentation level by short-circuit logic, convert if cascades to switch, whitespace, bracing, plus some minor stuff
tron
parents:
2989
diff
changeset
|
305 |
return _price.purchase_land; |
0 | 306 |
} |
3017
a75caf4efa2d
(svn r3597) Miscellaneous (I like that word) changes: Fix some indentation, add consts, reduce indentation level by short-circuit logic, convert if cascades to switch, whitespace, bracing, plus some minor stuff
tron
parents:
2989
diff
changeset
|
307 |
} else { |
0 | 308 |
return CMD_ERROR; |
3017
a75caf4efa2d
(svn r3597) Miscellaneous (I like that word) changes: Fix some indentation, add consts, reduce indentation level by short-circuit logic, convert if cascades to switch, whitespace, bracing, plus some minor stuff
tron
parents:
2989
diff
changeset
|
309 |
} |
0 | 310 |
} else if ((m5 & 0x10) == 0x10) { |
311 |
// shiplift |
|
312 |
||
909
65cdb609b7a6
(svn r1396) Introduce TileIndexDiffC - the compile time version of TileIndexDiff
tron
parents:
900
diff
changeset
|
313 |
static const TileIndexDiffC _shiplift_tomiddle_offs[] = { |
65cdb609b7a6
(svn r1396) Introduce TileIndexDiffC - the compile time version of TileIndexDiff
tron
parents:
900
diff
changeset
|
314 |
{ 0, 0}, {0, 0}, { 0, 0}, {0, 0}, // middle |
65cdb609b7a6
(svn r1396) Introduce TileIndexDiffC - the compile time version of TileIndexDiff
tron
parents:
900
diff
changeset
|
315 |
{-1, 0}, {0, 1}, { 1, 0}, {0, -1}, // lower |
65cdb609b7a6
(svn r1396) Introduce TileIndexDiffC - the compile time version of TileIndexDiff
tron
parents:
900
diff
changeset
|
316 |
{ 1, 0}, {0, -1}, {-1, 0}, {0, 1}, // upper |
0 | 317 |
}; |
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
318 |
|
0 | 319 |
if (flags & DC_AUTO) return_cmd_error(STR_2004_BUILDING_MUST_BE_DEMOLISHED); |
320 |
// don't allow water to delete it. |
|
321 |
if (_current_player == OWNER_WATER) return CMD_ERROR; |
|
322 |
// move to the middle tile.. |
|
909
65cdb609b7a6
(svn r1396) Introduce TileIndexDiffC - the compile time version of TileIndexDiff
tron
parents:
900
diff
changeset
|
323 |
return RemoveShiplift(tile + ToTileIndexDiff(_shiplift_tomiddle_offs[m5 & 0xF]), flags); |
0 | 324 |
} else { |
325 |
// ship depot |
|
2549 | 326 |
if (flags & DC_AUTO) return_cmd_error(STR_2004_BUILDING_MUST_BE_DEMOLISHED); |
0 | 327 |
|
2549 | 328 |
switch (m5) { |
329 |
case 0x80: break; |
|
330 |
case 0x81: tile -= TileDiffXY(1, 0); break; |
|
331 |
case 0x82: break; |
|
332 |
case 0x83: tile -= TileDiffXY(0, 1); break; |
|
333 |
default: return CMD_ERROR; |
|
334 |
} |
|
0 | 335 |
|
2951 | 336 |
return RemoveShipDepot(tile, flags); |
0 | 337 |
} |
338 |
} |
|
339 |
||
340 |
// return true if a tile is a water tile. |
|
1048 | 341 |
static bool IsWateredTile(TileIndex tile) |
0 | 342 |
{ |
2049
538e73c53f54
(svn r2558) Change the internal map format from 7 arrays to one array of structs, this doesn't change the saved format for now. It's a stepping stone for further changes.
tron
parents:
1981
diff
changeset
|
343 |
byte m5 = _m[tile].m5; |
1048 | 344 |
|
1214
8262981ac274
(svn r1718) Use the enum TileType as parameter/return type for [GS]etTileType() instead of plain int.
tron
parents:
1209
diff
changeset
|
345 |
switch (GetTileType(tile)) { |
1048 | 346 |
case MP_WATER: |
347 |
// true, if not coast/riverbank |
|
348 |
return m5 != 1; |
|
349 |
||
350 |
case MP_STATION: |
|
351 |
// returns true if it is a dock-station |
|
352 |
// m5 inside values is m5 < 75 all stations, 83 <= m5 <= 114 new airports |
|
353 |
return !(m5 < 75 || (m5 >= 83 && m5 <= 114)); |
|
354 |
||
355 |
case MP_TUNNELBRIDGE: |
|
3234
a2791a480b71
(svn r3907) Replace many bridge related direct map accesses with calls to shiny new functions and mark some strange constructs with XXX
tron
parents:
3189
diff
changeset
|
356 |
return IsBridge(tile) && IsBridgeMiddle(tile) && IsWaterUnderBridge(tile); |
1048 | 357 |
|
358 |
default: |
|
359 |
return false; |
|
360 |
} |
|
0 | 361 |
} |
362 |
||
363 |
// draw a canal styled water tile with dikes around |
|
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
364 |
void DrawCanalWater(TileIndex tile) |
0 | 365 |
{ |
366 |
uint wa; |
|
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
367 |
|
0 | 368 |
// determine the edges around with water. |
369 |
wa = IsWateredTile(TILE_ADDXY(tile, -1, 0)) << 0; |
|
370 |
wa += IsWateredTile(TILE_ADDXY(tile, 0, 1)) << 1; |
|
371 |
wa += IsWateredTile(TILE_ADDXY(tile, 1, 0)) << 2; |
|
372 |
wa += IsWateredTile(TILE_ADDXY(tile, 0, -1)) << 3; |
|
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
373 |
|
0 | 374 |
if (!(wa & 1)) DrawGroundSprite(SPR_CANALS_BASE + 57); |
375 |
if (!(wa & 2)) DrawGroundSprite(SPR_CANALS_BASE + 58); |
|
376 |
if (!(wa & 4)) DrawGroundSprite(SPR_CANALS_BASE + 59); |
|
377 |
if (!(wa & 8)) DrawGroundSprite(SPR_CANALS_BASE + 60); |
|
378 |
||
379 |
// right corner |
|
2989 | 380 |
switch (wa & 0x03) { |
381 |
case 0: DrawGroundSprite(SPR_CANALS_BASE + 57 + 4); break; |
|
382 |
case 3: if (!IsWateredTile(TILE_ADDXY(tile, -1, 1))) DrawGroundSprite(SPR_CANALS_BASE + 57 + 8); break; |
|
383 |
} |
|
0 | 384 |
|
385 |
// bottom corner |
|
2989 | 386 |
switch (wa & 0x06) { |
387 |
case 0: DrawGroundSprite(SPR_CANALS_BASE + 57 + 5); break; |
|
388 |
case 6: if (!IsWateredTile(TILE_ADDXY(tile, 1, 1))) DrawGroundSprite(SPR_CANALS_BASE + 57 + 9); break; |
|
389 |
} |
|
0 | 390 |
|
391 |
// left corner |
|
2989 | 392 |
switch (wa & 0x0C) { |
393 |
case 0: DrawGroundSprite(SPR_CANALS_BASE + 57 + 6); break; |
|
394 |
case 12: if (!IsWateredTile(TILE_ADDXY(tile, 1, -1))) DrawGroundSprite(SPR_CANALS_BASE + 57 + 10); break; |
|
395 |
} |
|
0 | 396 |
|
397 |
// upper corner |
|
2989 | 398 |
switch (wa & 0x09) { |
399 |
case 0: DrawGroundSprite(SPR_CANALS_BASE + 57 + 7); break; |
|
400 |
case 9: if (!IsWateredTile(TILE_ADDXY(tile, -1, -1))) DrawGroundSprite(SPR_CANALS_BASE + 57 + 11); break; |
|
401 |
} |
|
0 | 402 |
} |
403 |
||
404 |
typedef struct LocksDrawTileStruct { |
|
405 |
int8 delta_x, delta_y, delta_z; |
|
406 |
byte width, height, depth; |
|
407 |
SpriteID image; |
|
408 |
} LocksDrawTileStruct; |
|
409 |
||
410 |
#include "table/water_land.h" |
|
411 |
||
2436
7d5df545bd5d
(svn r2962) - const correctness for all Get* functions and most Draw* functions that don't change their pointer parameters
Darkvater
parents:
2261
diff
changeset
|
412 |
static void DrawWaterStuff(const TileInfo *ti, const WaterDrawTileStruct *wdts, |
1399
61e7c68e9da6
(svn r1903) Replace some casts and macro magic with proper typing, similar to r1902
tron
parents:
1363
diff
changeset
|
413 |
uint32 palette, uint base |
61e7c68e9da6
(svn r1903) Replace some casts and macro magic with proper typing, similar to r1902
tron
parents:
1363
diff
changeset
|
414 |
) |
0 | 415 |
{ |
1399
61e7c68e9da6
(svn r1903) Replace some casts and macro magic with proper typing, similar to r1902
tron
parents:
1363
diff
changeset
|
416 |
DrawGroundSprite(wdts++->image); |
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
417 |
|
1399
61e7c68e9da6
(svn r1903) Replace some casts and macro magic with proper typing, similar to r1902
tron
parents:
1363
diff
changeset
|
418 |
for (; wdts->delta_x != 0x80; wdts++) { |
2989 | 419 |
uint32 image = wdts->image + base; |
0 | 420 |
if (_display_opt & DO_TRANS_BUILDINGS) { |
2148
542ea702738c
(svn r2658) -Codechange: Use MAKE_TRANSPARENT to display a transparented sprite
celestar
parents:
2049
diff
changeset
|
421 |
MAKE_TRANSPARENT(image); |
497
4d1c889526ee
(svn r787) Invert the sense of the DO_TRANS_BUILDINGS flag to be consistent with its own name and all other DO_* flags.
tron
parents:
473
diff
changeset
|
422 |
} else { |
0 | 423 |
image |= palette; |
424 |
} |
|
425 |
AddSortableSpriteToDraw(image, ti->x + wdts->delta_x, ti->y + wdts->delta_y, wdts->width, wdts->height, wdts->unk, ti->z + wdts->delta_z); |
|
426 |
} |
|
427 |
} |
|
428 |
||
429 |
static void DrawTile_Water(TileInfo *ti) |
|
430 |
{ |
|
431 |
// draw water tile |
|
432 |
if (ti->map5 == 0) { |
|
2517
6e3832ddd0f6
(svn r3046) Replace some numbers with sprite names and fix a typo in the sprite list
tron
parents:
2502
diff
changeset
|
433 |
DrawGroundSprite(SPR_FLAT_WATER_TILE); |
0 | 434 |
if (ti->z != 0) DrawCanalWater(ti->tile); |
435 |
return; |
|
436 |
} |
|
437 |
||
438 |
// draw shore |
|
439 |
if (ti->map5 == 1) { |
|
440 |
assert(ti->tileh < 16); |
|
441 |
DrawGroundSprite(_water_shore_sprites[ti->tileh]); |
|
442 |
return; |
|
443 |
} |
|
444 |
||
445 |
// draw shiplift |
|
446 |
if ((ti->map5 & 0xF0) == 0x10) { |
|
1399
61e7c68e9da6
(svn r1903) Replace some casts and macro magic with proper typing, similar to r1902
tron
parents:
1363
diff
changeset
|
447 |
const WaterDrawTileStruct *t = _shiplift_display_seq[ti->map5 & 0xF]; |
61e7c68e9da6
(svn r1903) Replace some casts and macro magic with proper typing, similar to r1902
tron
parents:
1363
diff
changeset
|
448 |
DrawWaterStuff(ti, t, 0, ti->z > t[3].delta_y ? 24 : 0); |
0 | 449 |
return; |
450 |
} |
|
451 |
||
1901
03bf9bf99319
(svn r2407) Use {Get,Is}TileOwner to get/check the owner of a tile and fix some bogus reads of _map_owner
tron
parents:
1891
diff
changeset
|
452 |
DrawWaterStuff(ti, _shipdepot_display_seq[ti->map5 & 0x7F], PLAYER_SPRITE_COLOR(GetTileOwner(ti->tile)), 0); |
0 | 453 |
} |
454 |
||
455 |
void DrawShipDepotSprite(int x, int y, int image) |
|
456 |
{ |
|
1399
61e7c68e9da6
(svn r1903) Replace some casts and macro magic with proper typing, similar to r1902
tron
parents:
1363
diff
changeset
|
457 |
const WaterDrawTileStruct *wdts = _shipdepot_display_seq[image]; |
0 | 458 |
|
1399
61e7c68e9da6
(svn r1903) Replace some casts and macro magic with proper typing, similar to r1902
tron
parents:
1363
diff
changeset
|
459 |
DrawSprite(wdts++->image, x, y); |
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
460 |
|
1399
61e7c68e9da6
(svn r1903) Replace some casts and macro magic with proper typing, similar to r1902
tron
parents:
1363
diff
changeset
|
461 |
for (; wdts->delta_x != 0x80; wdts++) { |
0 | 462 |
Point pt = RemapCoords(wdts->delta_x, wdts->delta_y, wdts->delta_z); |
463 |
DrawSprite(wdts->image + PLAYER_SPRITE_COLOR(_local_player), x + pt.x, y + pt.y); |
|
464 |
} |
|
465 |
} |
|
466 |
||
467 |
||
2537 | 468 |
static uint GetSlopeZ_Water(const TileInfo* ti) |
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
469 |
{ |
2537 | 470 |
return GetPartialZ(ti->x & 0xF, ti->y & 0xF, ti->tileh) + ti->z; |
0 | 471 |
} |
472 |
||
2436
7d5df545bd5d
(svn r2962) - const correctness for all Get* functions and most Draw* functions that don't change their pointer parameters
Darkvater
parents:
2261
diff
changeset
|
473 |
static uint GetSlopeTileh_Water(const TileInfo *ti) |
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
474 |
{ |
39 | 475 |
return ti->tileh; |
476 |
} |
|
477 |
||
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
478 |
static void GetAcceptedCargo_Water(TileIndex tile, AcceptedCargo ac) |
0 | 479 |
{ |
480 |
/* not used */ |
|
481 |
} |
|
482 |
||
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
483 |
static void GetTileDesc_Water(TileIndex tile, TileDesc *td) |
0 | 484 |
{ |
2951 | 485 |
if (_m[tile].m5 == 0 && TilePixelHeight(tile) == 0) { |
0 | 486 |
td->str = STR_3804_WATER; |
2951 | 487 |
} else if (_m[tile].m5 == 0) { |
0 | 488 |
td->str = STR_LANDINFO_CANAL; |
2951 | 489 |
} else if (_m[tile].m5 == 1) { |
0 | 490 |
td->str = STR_3805_COAST_OR_RIVERBANK; |
2951 | 491 |
} else if ((_m[tile].m5 & 0xF0) == 0x10) { |
0 | 492 |
td->str = STR_LANDINFO_LOCK; |
2951 | 493 |
} else { |
0 | 494 |
td->str = STR_3806_SHIP_DEPOT; |
2951 | 495 |
} |
0 | 496 |
|
1901
03bf9bf99319
(svn r2407) Use {Get,Is}TileOwner to get/check the owner of a tile and fix some bogus reads of _map_owner
tron
parents:
1891
diff
changeset
|
497 |
td->owner = GetTileOwner(tile); |
0 | 498 |
} |
499 |
||
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
500 |
static void AnimateTile_Water(TileIndex tile) |
0 | 501 |
{ |
502 |
/* not used */ |
|
503 |
} |
|
504 |
||
1075 | 505 |
static void TileLoopWaterHelper(TileIndex tile, const TileIndexDiffC *offs) |
0 | 506 |
{ |
1075 | 507 |
TileIndex target = TILE_ADD(tile, ToTileIndexDiff(offs[0])); |
0 | 508 |
|
509 |
// type of this tile mustn't be water already. |
|
2639 | 510 |
if (IsTileType(target, MP_WATER)) return; |
0 | 511 |
|
1075 | 512 |
if (TileHeight(TILE_ADD(tile, ToTileIndexDiff(offs[1]))) != 0 || |
2639 | 513 |
TileHeight(TILE_ADD(tile, ToTileIndexDiff(offs[2]))) != 0) { |
1075 | 514 |
return; |
2639 | 515 |
} |
1075 | 516 |
|
517 |
if (TileHeight(TILE_ADD(tile, ToTileIndexDiff(offs[3]))) != 0 || |
|
518 |
TileHeight(TILE_ADD(tile, ToTileIndexDiff(offs[4]))) != 0) { |
|
0 | 519 |
// make coast.. |
1214
8262981ac274
(svn r1718) Use the enum TileType as parameter/return type for [GS]etTileType() instead of plain int.
tron
parents:
1209
diff
changeset
|
520 |
switch (GetTileType(target)) { |
1076
03a5f2b0a5c2
(svn r1577) Fix: [1103301] Railroad tracks on slopes weren't flooded
tron
parents:
1075
diff
changeset
|
521 |
case MP_RAILWAY: { |
3267
feff95208a9f
(svn r3979) Move GetRailFoundation() to rail_map.h and use it and friends to get information about rail tiles
tron
parents:
3234
diff
changeset
|
522 |
TrackBits tracks; |
feff95208a9f
(svn r3979) Move GetRailFoundation() to rail_map.h and use it and friends to get information about rail tiles
tron
parents:
3234
diff
changeset
|
523 |
uint slope; |
feff95208a9f
(svn r3979) Move GetRailFoundation() to rail_map.h and use it and friends to get information about rail tiles
tron
parents:
3234
diff
changeset
|
524 |
|
3275 | 525 |
if (!IsPlainRailTile(target)) break; |
3267
feff95208a9f
(svn r3979) Move GetRailFoundation() to rail_map.h and use it and friends to get information about rail tiles
tron
parents:
3234
diff
changeset
|
526 |
|
feff95208a9f
(svn r3979) Move GetRailFoundation() to rail_map.h and use it and friends to get information about rail tiles
tron
parents:
3234
diff
changeset
|
527 |
tracks = GetTrackBits(target); |
feff95208a9f
(svn r3979) Move GetRailFoundation() to rail_map.h and use it and friends to get information about rail tiles
tron
parents:
3234
diff
changeset
|
528 |
slope = GetTileSlope(target, NULL); |
1076
03a5f2b0a5c2
(svn r1577) Fix: [1103301] Railroad tracks on slopes weren't flooded
tron
parents:
1075
diff
changeset
|
529 |
if (!( |
3268
d61a35c2028c
(svn r3980) Fix glitch in r3979 spotted by Rubidium. Maybe I'm getting too old for this...
tron
parents:
3267
diff
changeset
|
530 |
(slope == 1 && tracks == TRACK_BIT_RIGHT) || |
d61a35c2028c
(svn r3980) Fix glitch in r3979 spotted by Rubidium. Maybe I'm getting too old for this...
tron
parents:
3267
diff
changeset
|
531 |
(slope == 2 && tracks == TRACK_BIT_UPPER) || |
d61a35c2028c
(svn r3980) Fix glitch in r3979 spotted by Rubidium. Maybe I'm getting too old for this...
tron
parents:
3267
diff
changeset
|
532 |
(slope == 4 && tracks == TRACK_BIT_LEFT) || |
3267
feff95208a9f
(svn r3979) Move GetRailFoundation() to rail_map.h and use it and friends to get information about rail tiles
tron
parents:
3234
diff
changeset
|
533 |
(slope == 8 && tracks == TRACK_BIT_LOWER) |
feff95208a9f
(svn r3979) Move GetRailFoundation() to rail_map.h and use it and friends to get information about rail tiles
tron
parents:
3234
diff
changeset
|
534 |
)) { |
1076
03a5f2b0a5c2
(svn r1577) Fix: [1103301] Railroad tracks on slopes weren't flooded
tron
parents:
1075
diff
changeset
|
535 |
break; |
3267
feff95208a9f
(svn r3979) Move GetRailFoundation() to rail_map.h and use it and friends to get information about rail tiles
tron
parents:
3234
diff
changeset
|
536 |
} |
1076
03a5f2b0a5c2
(svn r1577) Fix: [1103301] Railroad tracks on slopes weren't flooded
tron
parents:
1075
diff
changeset
|
537 |
} |
03a5f2b0a5c2
(svn r1577) Fix: [1103301] Railroad tracks on slopes weren't flooded
tron
parents:
1075
diff
changeset
|
538 |
/* FALLTHROUGH */ |
03a5f2b0a5c2
(svn r1577) Fix: [1103301] Railroad tracks on slopes weren't flooded
tron
parents:
1075
diff
changeset
|
539 |
|
1075 | 540 |
case MP_CLEAR: |
541 |
case MP_TREES: |
|
542 |
_current_player = OWNER_WATER; |
|
2737
fb1556b8f5e0
(svn r3282) - Codechange: Replace tests against CMD_ERROR with CmdFailed()
peter1138
parents:
2676
diff
changeset
|
543 |
if (!CmdFailed(DoCommandByTile(target, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR))) { |
3111
750f37699a13
(svn r3714) Add functions to turn tiles into water and shore tiles
tron
parents:
3017
diff
changeset
|
544 |
MakeShore(target); |
750f37699a13
(svn r3714) Add functions to turn tiles into water and shore tiles
tron
parents:
3017
diff
changeset
|
545 |
MarkTileDirtyByTile(target); |
1075 | 546 |
} |
547 |
break; |
|
548 |
||
1091
0f113f2ed794
(svn r1592) -Fix: [1090495] Slopes under high bridges weren't flooded
tron
parents:
1076
diff
changeset
|
549 |
case MP_TUNNELBRIDGE: |
3234
a2791a480b71
(svn r3907) Replace many bridge related direct map accesses with calls to shiny new functions and mark some strange constructs with XXX
tron
parents:
3189
diff
changeset
|
550 |
if (IsBridge(target) && IsBridgeMiddle(target) && IsClearUnderBridge(target)) { |
3189
bf047128dee7
(svn r3846) Add functions to set the type of stuff (clear, water, rail, road) under bridges
tron
parents:
3183
diff
changeset
|
551 |
SetWaterUnderBridge(target); |
3165
0d54b953fb10
(svn r3792) -Fix: Mark the right tile as dirty. It's just a graphical glitch which happend in r1592
tron
parents:
3157
diff
changeset
|
552 |
MarkTileDirtyByTile(target); |
1091
0f113f2ed794
(svn r1592) -Fix: [1090495] Slopes under high bridges weren't flooded
tron
parents:
1076
diff
changeset
|
553 |
} |
0f113f2ed794
(svn r1592) -Fix: [1090495] Slopes under high bridges weren't flooded
tron
parents:
1076
diff
changeset
|
554 |
break; |
0f113f2ed794
(svn r1592) -Fix: [1090495] Slopes under high bridges weren't flooded
tron
parents:
1076
diff
changeset
|
555 |
|
1075 | 556 |
default: |
557 |
break; |
|
0 | 558 |
} |
559 |
} else { |
|
3234
a2791a480b71
(svn r3907) Replace many bridge related direct map accesses with calls to shiny new functions and mark some strange constructs with XXX
tron
parents:
3189
diff
changeset
|
560 |
if (IsBridgeTile(target) && IsBridgeMiddle(target)) { |
a2791a480b71
(svn r3907) Replace many bridge related direct map accesses with calls to shiny new functions and mark some strange constructs with XXX
tron
parents:
3189
diff
changeset
|
561 |
if (IsWaterUnderBridge(target) || |
a2791a480b71
(svn r3907) Replace many bridge related direct map accesses with calls to shiny new functions and mark some strange constructs with XXX
tron
parents:
3189
diff
changeset
|
562 |
(IsTransportUnderBridge(target) && GetTransportTypeUnderBridge(target) == TRANSPORT_WATER)) { // XXX does this happen at all? |
0 | 563 |
return; |
564 |
} |
|
3234
a2791a480b71
(svn r3907) Replace many bridge related direct map accesses with calls to shiny new functions and mark some strange constructs with XXX
tron
parents:
3189
diff
changeset
|
565 |
SetWaterUnderBridge(target); |
a2791a480b71
(svn r3907) Replace many bridge related direct map accesses with calls to shiny new functions and mark some strange constructs with XXX
tron
parents:
3189
diff
changeset
|
566 |
MarkTileDirtyByTile(target); |
a2791a480b71
(svn r3907) Replace many bridge related direct map accesses with calls to shiny new functions and mark some strange constructs with XXX
tron
parents:
3189
diff
changeset
|
567 |
return; |
0 | 568 |
} |
569 |
||
570 |
_current_player = OWNER_WATER; |
|
149
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
571 |
{ |
1605
279dd2265cae
(svn r2109) -Fix: use FindVehicleOnTileZ(tile, 0) over FindVehicleBetween(tile, tile, 0)
truelight
parents:
1399
diff
changeset
|
572 |
Vehicle *v = FindVehicleOnTileZ(target, 0); |
1075 | 573 |
if (v != NULL) FloodVehicle(v); |
149
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
574 |
} |
1075 | 575 |
|
2737
fb1556b8f5e0
(svn r3282) - Codechange: Replace tests against CMD_ERROR with CmdFailed()
peter1138
parents:
2676
diff
changeset
|
576 |
if (!CmdFailed(DoCommandByTile(target, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR))) { |
3111
750f37699a13
(svn r3714) Add functions to turn tiles into water and shore tiles
tron
parents:
3017
diff
changeset
|
577 |
MakeWater(target); |
750f37699a13
(svn r3714) Add functions to turn tiles into water and shore tiles
tron
parents:
3017
diff
changeset
|
578 |
MarkTileDirtyByTile(target); |
1075 | 579 |
} |
0 | 580 |
} |
581 |
} |
|
582 |
||
149
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
583 |
static void FloodVehicle(Vehicle *v) |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
584 |
{ |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
585 |
if (!(v->vehstatus & VS_CRASHED)) { |
168
79f9ed5b23e6
(svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents:
164
diff
changeset
|
586 |
uint16 pass = 0; |
149
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
587 |
|
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
588 |
if (v->type == VEH_Road) { // flood bus/truck |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
589 |
pass = 1; // driver |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
590 |
if (v->cargo_type == CT_PASSENGERS) |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
591 |
pass += v->cargo_count; |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
592 |
|
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
593 |
v->vehstatus |= VS_CRASHED; |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
594 |
v->u.road.crashed_ctr = 2000; // max 2220, disappear pretty fast |
588 | 595 |
RebuildVehicleLists(); |
2549 | 596 |
} else if (v->type == VEH_Train) { |
597 |
Vehicle* u; |
|
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
598 |
|
149
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
599 |
v = GetFirstVehicleInChain(v); |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
600 |
u = v; |
2676
59b65b4fb480
(svn r3218) -Feature: Multiheaded train engines will now stay in the same train
bjarni
parents:
2657
diff
changeset
|
601 |
if (IsFrontEngine(v)) pass = 4; // driver |
149
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
602 |
|
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
603 |
// crash all wagons, and count passangers |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
604 |
BEGIN_ENUM_WAGONS(v) |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
605 |
if (v->cargo_type == CT_PASSENGERS) pass += v->cargo_count; |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
606 |
v->vehstatus |= VS_CRASHED; |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
607 |
END_ENUM_WAGONS(v) |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
608 |
|
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
609 |
v = u; |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
610 |
v->u.rail.crash_anim_pos = 4000; // max 4440, disappear pretty fast |
588 | 611 |
RebuildVehicleLists(); |
2549 | 612 |
} else { |
168
79f9ed5b23e6
(svn r169) -Fix: move around sort-widgets a bit so it looks more natural
darkvater
parents:
164
diff
changeset
|
613 |
return; |
2549 | 614 |
} |
149
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
615 |
|
755
80091de50044
(svn r1211) -Feature: Introduce sticky windows to all vehicle windows...Just make sure you do not sticky more than 23 at a time. Also a lot of places in the code invalidated the 'status bar' of the vehicle, referring to it as widget 4. This is now widget 5 and has been #definitized
darkvater
parents:
726
diff
changeset
|
616 |
InvalidateWindowWidget(WC_VEHICLE_VIEW, v->index, STATUS_BAR); |
149
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
617 |
InvalidateWindow(WC_VEHICLE_DEPOT, v->tile); |
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
618 |
|
534
306bc86eb23e
(svn r901) Small step in the process to clean up the DPARAM mess:
tron
parents:
507
diff
changeset
|
619 |
SetDParam(0, pass); |
149
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
620 |
AddNewsItem(STR_B006_FLOOD_VEHICLE_DESTROYED, |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
621 |
NEWS_FLAGS(NM_THIN, NF_VIEWPORT|NF_VEHICLE, NT_ACCIDENT, 0), |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
622 |
v->index, |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
623 |
0); |
2549 | 624 |
CreateEffectVehicleRel(v, 4, 4, 8, EV_EXPLOSION_LARGE); |
625 |
SndPlayVehicleFx(SND_12_EXPLOSION, v); |
|
714
503e96f37d46
(svn r1166) Fix: [ 1040119 ] Flooded wagons in depots don't keep constantly exploding any more
dominik
parents:
679
diff
changeset
|
626 |
} |
149
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
627 |
} |
5f7d4b21df01
(svn r150) -Fix: [1010833] Turning on the magic bulldozer removes oil rigs
darkvater
parents:
43
diff
changeset
|
628 |
|
0 | 629 |
// called from tunnelbridge_cmd |
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
630 |
void TileLoop_Water(TileIndex tile) |
0 | 631 |
{ |
909
65cdb609b7a6
(svn r1396) Introduce TileIndexDiffC - the compile time version of TileIndexDiff
tron
parents:
900
diff
changeset
|
632 |
static const TileIndexDiffC _tile_loop_offs_array[][5] = { |
0 | 633 |
// tile to mod shore? shore? |
909
65cdb609b7a6
(svn r1396) Introduce TileIndexDiffC - the compile time version of TileIndexDiff
tron
parents:
900
diff
changeset
|
634 |
{{-1, 0}, {0, 0}, {0, 1}, {-1, 0}, {-1, 1}}, |
65cdb609b7a6
(svn r1396) Introduce TileIndexDiffC - the compile time version of TileIndexDiff
tron
parents:
900
diff
changeset
|
635 |
{{ 0, 1}, {0, 1}, {1, 1}, { 0, 2}, { 1, 2}}, |
65cdb609b7a6
(svn r1396) Introduce TileIndexDiffC - the compile time version of TileIndexDiff
tron
parents:
900
diff
changeset
|
636 |
{{ 1, 0}, {1, 0}, {1, 1}, { 2, 0}, { 2, 1}}, |
65cdb609b7a6
(svn r1396) Introduce TileIndexDiffC - the compile time version of TileIndexDiff
tron
parents:
900
diff
changeset
|
637 |
{{ 0, -1}, {0, 0}, {1, 0}, { 0, -1}, { 1, -1}} |
0 | 638 |
}; |
639 |
||
926
a6d140a6a4de
(svn r1414) Move TileIndex, TILE_MASK and GET_TILE_[XY] to map.h and turn the latter into inline functions names Tile[XY]
tron
parents:
909
diff
changeset
|
640 |
if (IS_INT_INSIDE(TileX(tile), 1, MapSizeX() - 3 + 1) && |
a6d140a6a4de
(svn r1414) Move TileIndex, TILE_MASK and GET_TILE_[XY] to map.h and turn the latter into inline functions names Tile[XY]
tron
parents:
909
diff
changeset
|
641 |
IS_INT_INSIDE(TileY(tile), 1, MapSizeY() - 3 + 1)) { |
2989 | 642 |
uint i; |
643 |
||
2639 | 644 |
for (i = 0; i != lengthof(_tile_loop_offs_array); i++) { |
0 | 645 |
TileLoopWaterHelper(tile, _tile_loop_offs_array[i]); |
2639 | 646 |
} |
0 | 647 |
} |
314 | 648 |
// _current_player can be changed by TileLoopWaterHelper.. reset it back |
649 |
// here |
|
650 |
_current_player = OWNER_NONE; |
|
43
3b93861c5478
(svn r44) Fix: Coast line near edge of map and near oilrigs (Dribbel)
dominik
parents:
39
diff
changeset
|
651 |
|
3b93861c5478
(svn r44) Fix: Coast line near edge of map and near oilrigs (Dribbel)
dominik
parents:
39
diff
changeset
|
652 |
// edges |
2951 | 653 |
if (TileX(tile) == 0 && IS_INT_INSIDE(TileY(tile), 1, MapSizeY() - 3 + 1)) { //NE |
43
3b93861c5478
(svn r44) Fix: Coast line near edge of map and near oilrigs (Dribbel)
dominik
parents:
39
diff
changeset
|
654 |
TileLoopWaterHelper(tile, _tile_loop_offs_array[2]); |
2951 | 655 |
} |
43
3b93861c5478
(svn r44) Fix: Coast line near edge of map and near oilrigs (Dribbel)
dominik
parents:
39
diff
changeset
|
656 |
|
2639 | 657 |
if (TileX(tile) == MapSizeX() - 2 && IS_INT_INSIDE(TileY(tile), 1, MapSizeY() - 3 + 1)) { //SW |
43
3b93861c5478
(svn r44) Fix: Coast line near edge of map and near oilrigs (Dribbel)
dominik
parents:
39
diff
changeset
|
658 |
TileLoopWaterHelper(tile, _tile_loop_offs_array[0]); |
2639 | 659 |
} |
43
3b93861c5478
(svn r44) Fix: Coast line near edge of map and near oilrigs (Dribbel)
dominik
parents:
39
diff
changeset
|
660 |
|
2639 | 661 |
if (TileY(tile) == 0 && IS_INT_INSIDE(TileX(tile), 1, MapSizeX() - 3 + 1)) { //NW |
43
3b93861c5478
(svn r44) Fix: Coast line near edge of map and near oilrigs (Dribbel)
dominik
parents:
39
diff
changeset
|
662 |
TileLoopWaterHelper(tile, _tile_loop_offs_array[1]); |
2639 | 663 |
} |
43
3b93861c5478
(svn r44) Fix: Coast line near edge of map and near oilrigs (Dribbel)
dominik
parents:
39
diff
changeset
|
664 |
|
2639 | 665 |
if (TileY(tile) == MapSizeY() - 2 && IS_INT_INSIDE(TileX(tile), 1, MapSizeX() - 3 + 1)) { //SE |
43
3b93861c5478
(svn r44) Fix: Coast line near edge of map and near oilrigs (Dribbel)
dominik
parents:
39
diff
changeset
|
666 |
TileLoopWaterHelper(tile, _tile_loop_offs_array[3]); |
2639 | 667 |
} |
0 | 668 |
} |
669 |
||
670 |
||
671 |
static const byte _coast_tracks[16] = {0, 32, 4, 0, 16, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0}; |
|
672 |
static const byte _shipdepot_tracks[4] = {1,1,2,2}; |
|
673 |
static const byte _shiplift_tracks[12] = {1,2,1,2,1,2,1,2,1,2,1,2}; |
|
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
674 |
static uint32 GetTileTrackStatus_Water(TileIndex tile, TransportType mode) |
0 | 675 |
{ |
676 |
uint m5; |
|
677 |
uint b; |
|
678 |
||
2951 | 679 |
if (mode != TRANSPORT_WATER) return 0; |
0 | 680 |
|
2049
538e73c53f54
(svn r2558) Change the internal map format from 7 arrays to one array of structs, this doesn't change the saved format for now. It's a stepping stone for further changes.
tron
parents:
1981
diff
changeset
|
681 |
m5 = _m[tile].m5; |
2951 | 682 |
if (m5 == 0) return 0x3F3F; |
0 | 683 |
|
684 |
if (m5 == 1) { |
|
2951 | 685 |
b = _coast_tracks[GetTileSlope(tile, NULL) & 0xF]; |
686 |
return b + (b << 8); |
|
0 | 687 |
} |
688 |
||
2951 | 689 |
if ((m5 & 0x10) == 0x10) { |
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
690 |
// |
0 | 691 |
b = _shiplift_tracks[m5 & 0xF]; |
2951 | 692 |
return b + (b << 8); |
0 | 693 |
} |
694 |
||
2951 | 695 |
if (!(m5 & 0x80)) return 0; |
0 | 696 |
|
697 |
b = _shipdepot_tracks[m5 & 0x7F]; |
|
2951 | 698 |
return b + (b << 8); |
0 | 699 |
} |
700 |
||
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
701 |
extern void ShowShipDepotWindow(TileIndex tile); |
0 | 702 |
|
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
703 |
static void ClickTile_Water(TileIndex tile) |
0 | 704 |
{ |
2049
538e73c53f54
(svn r2558) Change the internal map format from 7 arrays to one array of structs, this doesn't change the saved format for now. It's a stepping stone for further changes.
tron
parents:
1981
diff
changeset
|
705 |
byte m5 = _m[tile].m5 - 0x80; |
193
0a7025304867
(svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents:
168
diff
changeset
|
706 |
|
0 | 707 |
if (IS_BYTE_INSIDE(m5, 0, 3+1)) { |
708 |
if (m5 & 1) |
|
1981 | 709 |
tile += (m5 == 1) ? TileDiffXY(-1, 0) : TileDiffXY(0, -1); |
0 | 710 |
ShowShipDepotWindow(tile); |
711 |
} |
|
712 |
} |
|
713 |
||
2436
7d5df545bd5d
(svn r2962) - const correctness for all Get* functions and most Draw* functions that don't change their pointer parameters
Darkvater
parents:
2261
diff
changeset
|
714 |
static void ChangeTileOwner_Water(TileIndex tile, PlayerID old_player, PlayerID new_player) |
0 | 715 |
{ |
1901
03bf9bf99319
(svn r2407) Use {Get,Is}TileOwner to get/check the owner of a tile and fix some bogus reads of _map_owner
tron
parents:
1891
diff
changeset
|
716 |
if (!IsTileOwner(tile, old_player)) return; |
0 | 717 |
|
2502 | 718 |
if (new_player != OWNER_SPECTATOR) { |
1902 | 719 |
SetTileOwner(tile, new_player); |
0 | 720 |
} else { |
721 |
DoCommandByTile(tile, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR); |
|
722 |
} |
|
723 |
} |
|
724 |
||
1977
37bbebf94434
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents:
1902
diff
changeset
|
725 |
static uint32 VehicleEnter_Water(Vehicle *v, TileIndex tile, int x, int y) |
0 | 726 |
{ |
727 |
return 0; |
|
728 |
} |
|
729 |
||
1093
4fdc46eaf423
(svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile
tron
parents:
1091
diff
changeset
|
730 |
void InitializeDock(void) |
0 | 731 |
{ |
732 |
_last_built_ship_depot_tile = 0; |
|
733 |
} |
|
734 |
||
735 |
const TileTypeProcs _tile_type_water_procs = { |
|
736 |
DrawTile_Water, /* draw_tile_proc */ |
|
737 |
GetSlopeZ_Water, /* get_slope_z_proc */ |
|
738 |
ClearTile_Water, /* clear_tile_proc */ |
|
739 |
GetAcceptedCargo_Water, /* get_accepted_cargo_proc */ |
|
740 |
GetTileDesc_Water, /* get_tile_desc_proc */ |
|
741 |
GetTileTrackStatus_Water, /* get_tile_track_status_proc */ |
|
742 |
ClickTile_Water, /* click_tile_proc */ |
|
743 |
AnimateTile_Water, /* animate_tile_proc */ |
|
744 |
TileLoop_Water, /* tile_loop_clear */ |
|
745 |
ChangeTileOwner_Water, /* change_tile_owner_clear */ |
|
746 |
NULL, /* get_produced_cargo_proc */ |
|
747 |
VehicleEnter_Water, /* vehicle_enter_tile_proc */ |
|
748 |
NULL, /* vehicle_leave_tile_proc */ |
|
39 | 749 |
GetSlopeTileh_Water, /* get_slope_tileh_proc */ |
0 | 750 |
}; |