table/road_land.h
author celestar
Fri, 29 Dec 2006 11:03:39 +0000
branchcustombridgeheads
changeset 5593 3e0dd1f014ca
parent 4344 5d0e40cd67b9
permissions -rw-r--r--
(svn r7610) [cbh] - Codechange: Created seperate Tile Type Procs for tunnel and bridge tiles
2186
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 1398
diff changeset
     1
/* $Id$ */
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 1398
diff changeset
     2
4232
628628eaa4fc (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
     3
#define TILE_SEQ_LINE(img, dx, dy, sx, sy) { dx, dy, 0, sx, sy, 20, img },
628628eaa4fc (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
     4
#define TILE_SEQ_END() { 0, 0, 0, 0, 0, 0, 0 }
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     5
4232
628628eaa4fc (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
     6
static const DrawTileSeqStruct _road_depot_NE[] = {
2187
2a51f8925eeb (svn r2702) -Codechange: Cleaned up the sprite code and replaced many magic numbers
celestar
parents: 2186
diff changeset
     7
	TILE_SEQ_LINE(0x584 | PALETTE_MODIFIER_COLOR, 0, 15, 16, 1)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     8
	TILE_SEQ_END()
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     9
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    10
4232
628628eaa4fc (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
    11
static const DrawTileSeqStruct _road_depot_SE[] = {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    12
	TILE_SEQ_LINE(0x580, 0, 0, 1, 16)
2187
2a51f8925eeb (svn r2702) -Codechange: Cleaned up the sprite code and replaced many magic numbers
celestar
parents: 2186
diff changeset
    13
	TILE_SEQ_LINE(0x581 | PALETTE_MODIFIER_COLOR, 15, 0, 1, 16)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    14
	TILE_SEQ_END()
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    15
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    16
4232
628628eaa4fc (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
    17
static const DrawTileSeqStruct _road_depot_SW[] = {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    18
	TILE_SEQ_LINE(0x582, 0, 0, 16, 1)
2187
2a51f8925eeb (svn r2702) -Codechange: Cleaned up the sprite code and replaced many magic numbers
celestar
parents: 2186
diff changeset
    19
	TILE_SEQ_LINE(0x583 | PALETTE_MODIFIER_COLOR, 0, 15, 16, 1)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    20
	TILE_SEQ_END()
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    21
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    22
4232
628628eaa4fc (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
    23
static const DrawTileSeqStruct _road_depot_NW[] = {
2187
2a51f8925eeb (svn r2702) -Codechange: Cleaned up the sprite code and replaced many magic numbers
celestar
parents: 2186
diff changeset
    24
	TILE_SEQ_LINE(0x585 | PALETTE_MODIFIER_COLOR, 15, 0, 1, 16)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    25
	TILE_SEQ_END()
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    26
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    27
4232
628628eaa4fc (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
    28
static const DrawTileSprites _road_depot[] = {
628628eaa4fc (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
    29
	{ 0xA4A, _road_depot_NE },
628628eaa4fc (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
    30
	{ 0xA4A, _road_depot_SE },
628628eaa4fc (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
    31
	{ 0xA4A, _road_depot_SW },
628628eaa4fc (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
    32
	{ 0xA4A, _road_depot_NW }
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    33
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    34
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    35
#undef TILE_SEQ_BEGIN
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    36
#undef TILE_SEQ_LINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    37
#undef TILE_SEQ_END
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    38
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    39
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    40
static const SpriteID _road_tile_sprites_1[16] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
    41
	0,     0x546, 0x545, 0x53B, 0x544, 0x534, 0x53E, 0x539,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    42
  0x543, 0x53C, 0x535, 0x538, 0x53D, 0x537, 0x53A, 0x536
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    43
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    44
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    45
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    46
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    47
#define MAKELINE(a, b, c) { a, b, c },
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    48
#define ENDLINE { 0, 0, 0 }
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    49
static const DrawRoadTileStruct _road_display_datas2_0[] = {
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    50
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    51
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    52
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    53
static const DrawRoadTileStruct _road_display_datas2_1[] = {
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    54
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    55
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    56
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    57
static const DrawRoadTileStruct _road_display_datas2_2[] = {
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    58
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    59
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    60
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    61
static const DrawRoadTileStruct _road_display_datas2_3[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
    62
	MAKELINE(0x57f,  1,  8)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    63
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    64
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    65
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    66
static const DrawRoadTileStruct _road_display_datas2_4[] = {
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    67
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    68
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    69
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    70
static const DrawRoadTileStruct _road_display_datas2_5[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
    71
	MAKELINE(0x57f,  1,  8)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
    72
	MAKELINE(0x57e, 14,  8)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    73
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    74
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    75
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    76
static const DrawRoadTileStruct _road_display_datas2_6[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
    77
	MAKELINE(0x57e,  8,  1)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    78
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    79
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    80
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    81
static const DrawRoadTileStruct _road_display_datas2_7[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
    82
	MAKELINE(0x57f,  1,  8)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    83
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    84
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    85
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    86
static const DrawRoadTileStruct _road_display_datas2_8[] = {
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    87
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    88
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    89
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    90
static const DrawRoadTileStruct _road_display_datas2_9[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
    91
	MAKELINE(0x57f,  8, 14)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    92
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    93
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    94
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    95
static const DrawRoadTileStruct _road_display_datas2_10[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
    96
	MAKELINE(0x57f,  8, 14)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
    97
	MAKELINE(0x57e,  8,  1)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    98
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    99
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   100
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   101
static const DrawRoadTileStruct _road_display_datas2_11[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   102
	MAKELINE(0x57f,  8, 14)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   103
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   104
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   105
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   106
static const DrawRoadTileStruct _road_display_datas2_12[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   107
	MAKELINE(0x57e,  8,  1)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   108
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   109
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   110
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   111
static const DrawRoadTileStruct _road_display_datas2_13[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   112
	MAKELINE(0x57e, 14,  8)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   113
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   114
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   115
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   116
static const DrawRoadTileStruct _road_display_datas2_14[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   117
	MAKELINE(0x57e,  8,  1)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   118
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   119
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   120
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   121
static const DrawRoadTileStruct _road_display_datas2_15[] = {
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   122
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   123
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   124
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   125
static const DrawRoadTileStruct _road_display_datas2_16[] = {
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   126
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   127
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   128
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   129
static const DrawRoadTileStruct _road_display_datas2_17[] = {
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   130
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   131
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   132
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   133
static const DrawRoadTileStruct _road_display_datas2_18[] = {
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   134
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   135
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   136
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   137
static const DrawRoadTileStruct _road_display_datas2_19[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   138
	MAKELINE(0x1212,  0,  2)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   139
	MAKELINE(0x1212,  3,  9)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   140
	MAKELINE(0x1212, 10, 12)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   141
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   142
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   143
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   144
static const DrawRoadTileStruct _road_display_datas2_20[] = {
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   145
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   146
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   147
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   148
static const DrawRoadTileStruct _road_display_datas2_21[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   149
	MAKELINE(0x1212,  0,  2)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   150
	MAKELINE(0x1212,  0, 10)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   151
	MAKELINE(0x1212, 12,  2)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   152
	MAKELINE(0x1212, 12, 10)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   153
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   154
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   155
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   156
static const DrawRoadTileStruct _road_display_datas2_22[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   157
	MAKELINE(0x1212, 10,  0)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   158
	MAKELINE(0x1212,  3,  3)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   159
	MAKELINE(0x1212,  0, 10)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   160
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   161
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   162
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   163
static const DrawRoadTileStruct _road_display_datas2_23[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   164
	MAKELINE(0x1212,  0,  2)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   165
	MAKELINE(0x1212,  0, 10)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   166
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   167
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   168
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   169
static const DrawRoadTileStruct _road_display_datas2_24[] = {
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   170
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   171
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   172
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   173
static const DrawRoadTileStruct _road_display_datas2_25[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   174
	MAKELINE(0x1212, 12,  2)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   175
	MAKELINE(0x1212,  9,  9)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   176
	MAKELINE(0x1212,  2, 12)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   177
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   178
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   179
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   180
static const DrawRoadTileStruct _road_display_datas2_26[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   181
	MAKELINE(0x1212,  2,  0)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   182
	MAKELINE(0x1212, 10,  0)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   183
	MAKELINE(0x1212,  2, 12)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   184
	MAKELINE(0x1212, 10, 12)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   185
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   186
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   187
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   188
static const DrawRoadTileStruct _road_display_datas2_27[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   189
	MAKELINE(0x1212,  2, 12)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   190
	MAKELINE(0x1212, 10, 12)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   191
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   192
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   193
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   194
static const DrawRoadTileStruct _road_display_datas2_28[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   195
	MAKELINE(0x1212,  2,  0)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   196
	MAKELINE(0x1212,  9,  3)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   197
	MAKELINE(0x1212, 12, 10)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   198
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   199
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   200
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   201
static const DrawRoadTileStruct _road_display_datas2_29[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   202
	MAKELINE(0x1212, 12,  2)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   203
	MAKELINE(0x1212, 12, 10)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   204
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   205
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   206
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   207
static const DrawRoadTileStruct _road_display_datas2_30[] = {
4344
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   208
	MAKELINE(0x1212,  2, 0)
5d0e40cd67b9 (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4232
diff changeset
   209
	MAKELINE(0x1212, 10, 0)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   210
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   211
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   212
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   213
static const DrawRoadTileStruct _road_display_datas2_31[] = {
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   214
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   215
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   216
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   217
static const DrawRoadTileStruct _road_display_datas2_32[] = {
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   218
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   219
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   220
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   221
#undef MAKELINE
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   222
#undef ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   223
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   224
static const DrawRoadTileStruct* const _road_display_table_1[] = {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   225
	_road_display_datas2_32,_road_display_datas2_32,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   226
	_road_display_datas2_32,_road_display_datas2_32,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   227
	_road_display_datas2_32,_road_display_datas2_32,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   228
	_road_display_datas2_32,_road_display_datas2_32,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   229
	_road_display_datas2_32,_road_display_datas2_32,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   230
	_road_display_datas2_32,_road_display_datas2_32,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   231
	_road_display_datas2_32,_road_display_datas2_32,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   232
	_road_display_datas2_32,_road_display_datas2_32,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   233
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   234
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   235
static const DrawRoadTileStruct* const _road_display_table_2[] = {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   236
	_road_display_datas2_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   237
	_road_display_datas2_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   238
	_road_display_datas2_2,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   239
	_road_display_datas2_3,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   240
	_road_display_datas2_4,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   241
	_road_display_datas2_5,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   242
	_road_display_datas2_6,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   243
	_road_display_datas2_7,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   244
	_road_display_datas2_8,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   245
	_road_display_datas2_9,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   246
	_road_display_datas2_10,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   247
	_road_display_datas2_11,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   248
	_road_display_datas2_12,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   249
	_road_display_datas2_13,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   250
	_road_display_datas2_14,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   251
	_road_display_datas2_15,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   252
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   253
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   254
static const DrawRoadTileStruct* const _road_display_table_3[] = {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   255
	_road_display_datas2_16,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   256
	_road_display_datas2_17,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   257
	_road_display_datas2_18,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   258
	_road_display_datas2_19,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   259
	_road_display_datas2_20,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   260
	_road_display_datas2_21,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   261
	_road_display_datas2_22,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   262
	_road_display_datas2_23,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   263
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   264
	_road_display_datas2_24,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   265
	_road_display_datas2_25,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   266
	_road_display_datas2_26,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   267
	_road_display_datas2_27,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   268
	_road_display_datas2_28,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   269
	_road_display_datas2_29,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   270
	_road_display_datas2_30,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   271
	_road_display_datas2_31,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   272
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   273
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   274
static const DrawRoadTileStruct* const * const _road_display_table[] = {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   275
	_road_display_table_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   276
	_road_display_table_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   277
	_road_display_table_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   278
	_road_display_table_2,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   279
	_road_display_table_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   280
	_road_display_table_3,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   281
};