summaryrefslogtreecommitdiff
path: root/tunnelbridge_cmd.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-09-05 16:15:22 +0000
committertruelight <truelight@openttd.org>2004-09-05 16:15:22 +0000
commit10d54ac604b2d4d761877de1ceda07ceb3aa96bf (patch)
treeee4a252395acdf618350f3ff31b92a1b493f12ef /tunnelbridge_cmd.c
parent1846563cf89fc4cdd41691ddadac6b56dd8c2e58 (diff)
downloadopenttd-10d54ac604b2d4d761877de1ceda07ceb3aa96bf.tar.xz
(svn r160) -Codechange: made GetTileTrackStatus more readable (blathijs)
-Fix: some minor fixes around GetTileTrackStatus (blathijs)
Diffstat (limited to 'tunnelbridge_cmd.c')
-rw-r--r--tunnelbridge_cmd.c39
1 files changed, 27 insertions, 12 deletions
diff --git a/tunnelbridge_cmd.c b/tunnelbridge_cmd.c
index 7a7af310a..2ded3e90c 100644
--- a/tunnelbridge_cmd.c
+++ b/tunnelbridge_cmd.c
@@ -1296,34 +1296,49 @@ static void ClickTile_TunnelBridge(uint tile)
}
-static uint32 GetTileTrackStatus_TunnelBridge(uint tile, int mode)
+static uint32 GetTileTrackStatus_TunnelBridge(uint tile, TransportType mode)
{
uint32 result;
- byte t, m5 = _map5[tile];
+ byte m5 = _map5[tile];
if ((m5 & 0xF0) == 0) {
- if (((m5 & 0xC) >> 1) == mode) { /* XXX: possible problem when switching mode constants */
+ /* This is a tunnel */
+ if (((m5 & 0xC) >> 2) == mode) {
+ /* Tranport in the tunnel is compatible */
return m5&1 ? 0x202 : 0x101;
}
} else if (m5 & 0x80) {
+ /* This is a bridge */
result = 0;
- if ((m5 & 6) == mode) {
+ if (((m5 & 0x6) >> 1) == mode) {
+ /* Transport over the bridge is compatible */
result = m5&1 ? 0x202 : 0x101;
}
if (m5 & 0x40) {
- t = m5;
- if (!(t & 0x20)) {
- if ((t &= 0x18) != 8)
+ /* Bridge middle part */
+ if (!(m5 & 0x20)) {
+ /* Clear ground or water underneath */
+ if ((m5 &= 0x18) != 8)
+ /* Clear ground */
+ return result;
+ else
+ if (mode != TRANSPORT_WATER)
+ return result;
+ } else {
+ /* Transport underneath */
+ if ((m5 & 0x18) >> 3 != mode)
+ /* Incompatible transport underneath */
return result;
- t = (t&0xE7) | 0x30;
}
-
- if ((t & 0x18) >> 2 != mode)
- return result;
-
+ /* If we've not returned yet, there is a compatible
+ * transport or water beneath, so we can add it to
+ * result */
+ /* Why is this xor'd ? Can't it just be or'd? */
result ^= m5&1 ? 0x101 : 0x202;
}
return result;
+ } else {
+ assert(0); /* This should never occur */
}
return 0;
}