summaryrefslogtreecommitdiff
path: root/road_map.c
blob: 45aba060574b5cd0f3d7c188e0782e66dd5231ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* $Id$ */

#include "stdafx.h"
#include "openttd.h"
#include "functions.h"
#include "road_map.h"
#include "station.h"


RoadBits GetAnyRoadBits(TileIndex tile)
{
	switch (GetTileType(tile)) {
		case MP_STREET:
			switch (GetRoadType(tile)) {
				default:
				case ROAD_NORMAL:   return GetRoadBits(tile);
				case ROAD_CROSSING: return GetCrossingRoadBits(tile);
				case ROAD_DEPOT:    return DiagDirToRoadBits(GB(_m[tile].m5, 0, 2));
			}

		case MP_STATION:
			if (!IsRoadStationTile(tile)) return 0;
			return DiagDirToRoadBits(GetRoadStationDir(tile));

		case MP_TUNNELBRIDGE:
			if (_m[tile].m5 & 0x80) {
				// bridge
				if (_m[tile].m5 & 0x40) {
					// middle part
					if ((_m[tile].m5 & 0x38) != 0x28) return 0; // no road under bridge
					return _m[tile].m5 & 1 ? ROAD_X : ROAD_Y;
				} else {
					// ending
					if (GB(_m[tile].m5, 1, 2) != TRANSPORT_ROAD) return 0; // not a road bridge
					return _m[tile].m5 & 1 ? ROAD_Y : ROAD_X;
				}
			} else {
				// tunnel
				if (GB(_m[tile].m5, 2, 2) != TRANSPORT_ROAD) return 0; // not a road tunnel
				return DiagDirToRoadBits(ReverseDiagDir(GB(_m[tile].m5, 0, 2)));
			}

		default: return 0;
	}
}


TrackBits GetAnyRoadTrackBits(TileIndex tile)
{
	uint32 r = GetTileTrackStatus(tile, TRANSPORT_ROAD);
	return (byte)(r | (r >> 8));
}