src/table/road_land.h
author celestar
Wed, 13 Jun 2007 12:05:56 +0000
branchgamebalance
changeset 9912 1ac8aac92385
parent 5983 8fb0a46d60b8
child 6720 35756db7e577
permissions -rw-r--r--
(svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
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
5920
16287dbdc64e (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5726
diff changeset
     3
#define TILE_SEQ_LINE(img, pal, dx, dy, sx, sy) { dx, dy, 0, sx, sy, 20, img, pal },
16287dbdc64e (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5726
diff changeset
     4
#define TILE_SEQ_END() { 0, 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[] = {
5920
16287dbdc64e (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5726
diff changeset
     7
	TILE_SEQ_LINE(0x584 | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 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[] = {
5920
16287dbdc64e (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5726
diff changeset
    12
	TILE_SEQ_LINE(0x580, PAL_NONE, 0, 0, 1, 16)
16287dbdc64e (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5726
diff changeset
    13
	TILE_SEQ_LINE(0x581 | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 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[] = {
5920
16287dbdc64e (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5726
diff changeset
    18
	TILE_SEQ_LINE(0x582, PAL_NONE, 0, 0, 16, 1)
16287dbdc64e (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5726
diff changeset
    19
	TILE_SEQ_LINE(0x583 | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 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[] = {
5920
16287dbdc64e (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5726
diff changeset
    24
	TILE_SEQ_LINE(0x585 | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 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[] = {
5920
16287dbdc64e (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5726
diff changeset
    29
	{ 0xA4A, PAL_NONE, _road_depot_NE },
16287dbdc64e (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5726
diff changeset
    30
	{ 0xA4A, PAL_NONE, _road_depot_SE },
16287dbdc64e (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5726
diff changeset
    31
	{ 0xA4A, PAL_NONE, _road_depot_SW },
16287dbdc64e (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5726
diff changeset
    32
	{ 0xA4A, PAL_NONE, _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
9912
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    35
static const DrawTileSeqStruct _tram_depot_NE[] = {
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    36
	TILE_SEQ_LINE(SPR_TRAMWAY_BASE + 0x35 | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 0, 15, 16, 1)
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    37
	TILE_SEQ_END()
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    38
};
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    39
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    40
static const DrawTileSeqStruct _tram_depot_SE[] = {
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    41
	TILE_SEQ_LINE(SPR_TRAMWAY_BASE + 0x31, PAL_NONE, 0, 0, 1, 16)
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    42
	TILE_SEQ_LINE(SPR_TRAMWAY_BASE + 0x32 | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 15, 0, 1, 16)
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    43
	TILE_SEQ_END()
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    44
};
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    45
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    46
static const DrawTileSeqStruct _tram_depot_SW[] = {
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    47
	TILE_SEQ_LINE(SPR_TRAMWAY_BASE + 0x33, PAL_NONE, 0, 0, 16, 1)
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    48
	TILE_SEQ_LINE(SPR_TRAMWAY_BASE + 0x34 | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 0, 15, 16, 1)
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    49
	TILE_SEQ_END()
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    50
};
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    51
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    52
static const DrawTileSeqStruct _tram_depot_NW[] = {
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    53
	TILE_SEQ_LINE(SPR_TRAMWAY_BASE + 0x36 | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 15, 0, 1, 16)
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    54
	TILE_SEQ_END()
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    55
};
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    56
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    57
static const DrawTileSprites _tram_depot[] = {
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    58
	{ 0xA4A, PAL_NONE, _tram_depot_NE },
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    59
	{ 0xA4A, PAL_NONE, _tram_depot_SE },
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    60
	{ 0xA4A, PAL_NONE, _tram_depot_SW },
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    61
	{ 0xA4A, PAL_NONE, _tram_depot_NW }
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    62
};
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    63
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    64
#undef TILE_SEQ_BEGIN
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    65
#undef TILE_SEQ_LINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    66
#undef TILE_SEQ_END
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    67
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
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
    70
	0,     0x546, 0x545, 0x53B, 0x544, 0x534, 0x53E, 0x539,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    71
  0x543, 0x53C, 0x535, 0x538, 0x53D, 0x537, 0x53A, 0x536
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    72
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    73
9912
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    74
static const SpriteID _road_frontwire_sprites_1[16] = {
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    75
	0, 0x37, 0x37, 0x3F, 0x37, 0x37, 0x43, 0x37, 0x37, 0x3F, 0x37, 0x37, 0x3F, 0x37, 0x37, 0x37
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    76
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    77
9912
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    78
static const SpriteID _road_backpole_sprites_1[16] = {
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    79
	0, 0x38, 0x39, 0x40, 0x38, 0x38, 0x43, 0x3E, 0x39, 0x41, 0x39, 0x3C, 0x42, 0x3B, 0x3D, 0x3A
1ac8aac92385 (svn r10136) [gamebalance] -Sync: r9900:10100 from trunk
celestar
parents: 5983
diff changeset
    80
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    81
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    82
#define MAKELINE(a, b, c) { a, b, c },
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    83
#define ENDLINE { 0, 0, 0 }
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    84
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
    85
static const DrawRoadTileStruct _roadside_nothing[] = {
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    86
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    87
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    88
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    89
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
    90
	MAKELINE(0x57f,  1,  8)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    91
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    92
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    93
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    94
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
    95
	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
    96
	MAKELINE(0x57e, 14,  8)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    97
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    98
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    99
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   100
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
   101
	MAKELINE(0x57e,  8,  1)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   102
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   103
};
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
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
   106
	MAKELINE(0x57f,  1,  8)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   107
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   108
};
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
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
   111
	MAKELINE(0x57f,  8, 14)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   112
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   113
};
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
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
   116
	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
   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_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
   122
	MAKELINE(0x57f,  8, 14)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   123
	ENDLINE
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
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   126
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
   127
	MAKELINE(0x57e,  8,  1)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   128
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   129
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   130
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   131
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
   132
	MAKELINE(0x57e, 14,  8)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   133
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   134
};
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
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
   137
	MAKELINE(0x57e,  8,  1)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   138
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   139
};
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   140
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   141
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
   142
	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
   143
	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
   144
	MAKELINE(0x1212, 10, 12)
1398
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_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
   170
	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
   171
	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
   172
	MAKELINE(0x1212,  2, 12)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   173
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   174
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   175
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   176
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
   177
	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
   178
	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
   179
	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
   180
	MAKELINE(0x1212, 10, 12)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   181
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   182
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   183
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   184
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
   185
	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
   186
	MAKELINE(0x1212, 10, 12)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   187
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   188
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   189
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   190
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
   191
	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
   192
	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
   193
	MAKELINE(0x1212, 12, 10)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   194
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   195
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   196
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   197
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
   198
	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
   199
	MAKELINE(0x1212, 12, 10)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   200
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   201
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   202
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   203
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
   204
	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
   205
	MAKELINE(0x1212, 10, 0)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   206
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   207
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   208
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   209
#undef MAKELINE
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   210
#undef ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   211
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   212
static const DrawRoadTileStruct* const _roadside_none[] = {
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   213
	_roadside_nothing, _roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   214
	_roadside_nothing, _roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   215
	_roadside_nothing, _roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   216
	_roadside_nothing, _roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   217
	_roadside_nothing, _roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   218
	_roadside_nothing, _roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   219
	_roadside_nothing, _roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   220
	_roadside_nothing, _roadside_nothing
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   221
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   222
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   223
static const DrawRoadTileStruct* const _roadside_lamps[] = {
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   224
	_roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   225
	_roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   226
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   227
	_road_display_datas2_3,
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   228
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   229
	_road_display_datas2_5,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   230
	_road_display_datas2_6,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   231
	_road_display_datas2_7,
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   232
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   233
	_road_display_datas2_9,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   234
	_road_display_datas2_10,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   235
	_road_display_datas2_11,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   236
	_road_display_datas2_12,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   237
	_road_display_datas2_13,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   238
	_road_display_datas2_14,
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   239
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   240
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   241
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   242
static const DrawRoadTileStruct* const _roadside_trees[] = {
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   243
	_roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   244
	_roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   245
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   246
	_road_display_datas2_19,
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   247
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   248
	_road_display_datas2_21,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   249
	_road_display_datas2_22,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   250
	_road_display_datas2_23,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   251
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   252
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   253
	_road_display_datas2_25,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   254
	_road_display_datas2_26,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   255
	_road_display_datas2_27,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   256
	_road_display_datas2_28,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   257
	_road_display_datas2_29,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   258
	_road_display_datas2_30,
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   259
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   260
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   261
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   262
static const DrawRoadTileStruct* const * const _road_display_table[] = {
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   263
	_roadside_none,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   264
	_roadside_none,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   265
	_roadside_none,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   266
	_roadside_lamps,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   267
	_roadside_none,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   268
	_roadside_trees,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   269
};