src/table/road_land.h
author frosch
Fri, 15 Feb 2008 18:40:42 +0000
changeset 9067 88f2bc991236
parent 9066 29d5a0dfc329
child 9247 a566e3903a14
permissions -rw-r--r--
(svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
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
9066
29d5a0dfc329 (svn r12148) -Codechange: Merge 'image' and 'pal' of DrawTileSeqStruct into one PalSpriteID
frosch
parents: 9064
diff changeset
     3
#define TILE_SEQ_LINE(img, pal, dx, dy, sx, sy) { dx, dy, 0, sx, sy, 20, {img, pal} },
29d5a0dfc329 (svn r12148) -Codechange: Merge 'image' and 'pal' of DrawTileSeqStruct into one PalSpriteID
frosch
parents: 9064
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[] = {
9067
88f2bc991236 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 9066
diff changeset
    29
	{ {0xA4A, PAL_NONE}, _road_depot_NE },
88f2bc991236 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 9066
diff changeset
    30
	{ {0xA4A, PAL_NONE}, _road_depot_SE },
88f2bc991236 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 9066
diff changeset
    31
	{ {0xA4A, PAL_NONE}, _road_depot_SW },
88f2bc991236 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 9066
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
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    35
static const DrawTileSeqStruct _tram_depot_NE[] = {
8624
c5753e14d8dc (svn r11689) -Fix: compilation error and most of warnings for gcc 4.3
smatz
parents: 7724
diff changeset
    36
	TILE_SEQ_LINE((SPR_TRAMWAY_BASE + 0x35) | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 0, 15, 16, 1)
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    37
	TILE_SEQ_END()
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    38
};
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    39
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    40
static const DrawTileSeqStruct _tram_depot_SE[] = {
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    41
	TILE_SEQ_LINE(SPR_TRAMWAY_BASE + 0x31, PAL_NONE, 0, 0, 1, 16)
8624
c5753e14d8dc (svn r11689) -Fix: compilation error and most of warnings for gcc 4.3
smatz
parents: 7724
diff changeset
    42
	TILE_SEQ_LINE((SPR_TRAMWAY_BASE + 0x32) | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 15, 0, 1, 16)
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    43
	TILE_SEQ_END()
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    44
};
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    45
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    46
static const DrawTileSeqStruct _tram_depot_SW[] = {
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    47
	TILE_SEQ_LINE(SPR_TRAMWAY_BASE + 0x33, PAL_NONE, 0, 0, 16, 1)
8624
c5753e14d8dc (svn r11689) -Fix: compilation error and most of warnings for gcc 4.3
smatz
parents: 7724
diff changeset
    48
	TILE_SEQ_LINE((SPR_TRAMWAY_BASE + 0x34) | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 0, 15, 16, 1)
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    49
	TILE_SEQ_END()
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    50
};
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    51
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    52
static const DrawTileSeqStruct _tram_depot_NW[] = {
8624
c5753e14d8dc (svn r11689) -Fix: compilation error and most of warnings for gcc 4.3
smatz
parents: 7724
diff changeset
    53
	TILE_SEQ_LINE((SPR_TRAMWAY_BASE + 0x36) | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 15, 0, 1, 16)
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    54
	TILE_SEQ_END()
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    55
};
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    56
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    57
static const DrawTileSprites _tram_depot[] = {
9067
88f2bc991236 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 9066
diff changeset
    58
	{ {0xA4A, PAL_NONE}, _tram_depot_NE },
88f2bc991236 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 9066
diff changeset
    59
	{ {0xA4A, PAL_NONE}, _tram_depot_SE },
88f2bc991236 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 9066
diff changeset
    60
	{ {0xA4A, PAL_NONE}, _tram_depot_SW },
88f2bc991236 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 9066
diff changeset
    61
	{ {0xA4A, PAL_NONE}, _tram_depot_NW }
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    62
};
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    63
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    64
#undef TILE_SEQ_LINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    65
#undef TILE_SEQ_END
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    66
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    67
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    68
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
    69
	0,     0x546, 0x545, 0x53B, 0x544, 0x534, 0x53E, 0x539,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    70
  0x543, 0x53C, 0x535, 0x538, 0x53D, 0x537, 0x53A, 0x536
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    71
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    72
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    73
static const SpriteID _road_frontwire_sprites_1[16] = {
7724
879d459ecb0c (svn r10507) -Fix [FS#1019]: apparantly we used the wrong sprites for some pieces of the tram catenary (even though TTDP did so too).
rubidium
parents: 7187
diff changeset
    74
	0, 0x54, 0x55, 0x5B, 0x54, 0x54, 0x5E, 0x5A, 0x55, 0x5C, 0x55, 0x58, 0x5D, 0x57, 0x59, 0x56
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    75
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    76
7187
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    77
static const SpriteID _road_backpole_sprites_1[16] = {
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    78
	0, 0x38, 0x39, 0x40, 0x38, 0x38, 0x43, 0x3E, 0x39, 0x41, 0x39, 0x3C, 0x42, 0x3B, 0x3D, 0x3A
f7dc3204d457 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5983
diff changeset
    79
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    80
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    81
#define MAKELINE(a, b, c) { a, b, c },
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    82
#define ENDLINE { 0, 0, 0 }
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    83
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
    84
static const DrawRoadTileStruct _roadside_nothing[] = {
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    85
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    86
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    87
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    88
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
    89
	MAKELINE(0x57f,  1,  8)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    90
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    91
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    92
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    93
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
    94
	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
    95
	MAKELINE(0x57e, 14,  8)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    96
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    97
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    98
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    99
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
   100
	MAKELINE(0x57e,  8,  1)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   101
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   102
};
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
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
   105
	MAKELINE(0x57f,  1,  8)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   106
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   107
};
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
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
   110
	MAKELINE(0x57f,  8, 14)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   111
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   112
};
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
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
   115
	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
   116
	MAKELINE(0x57e,  8,  1)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   117
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   118
};
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
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
   121
	MAKELINE(0x57f,  8, 14)
1398
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_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
   126
	MAKELINE(0x57e,  8,  1)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   127
	ENDLINE
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
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   130
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
   131
	MAKELINE(0x57e, 14,  8)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   132
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   133
};
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
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
   136
	MAKELINE(0x57e,  8,  1)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   137
	ENDLINE
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   138
};
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
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
   141
	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
   142
	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
   143
	MAKELINE(0x1212, 10, 12)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   144
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   145
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   146
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   147
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
   148
	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
   149
	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
   150
	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
   151
	MAKELINE(0x1212, 12, 10)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   152
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   153
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   154
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   155
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
   156
	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
   157
	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
   158
	MAKELINE(0x1212,  0, 10)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   159
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   160
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   161
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   162
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
   163
	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
   164
	MAKELINE(0x1212,  0, 10)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   165
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   166
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   167
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   168
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
   169
	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
   170
	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
   171
	MAKELINE(0x1212,  2, 12)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   172
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   173
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   174
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   175
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
   176
	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
   177
	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
   178
	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
   179
	MAKELINE(0x1212, 10, 12)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   180
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   181
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   182
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   183
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
   184
	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
   185
	MAKELINE(0x1212, 10, 12)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   186
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   187
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   188
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   189
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
   190
	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
   191
	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
   192
	MAKELINE(0x1212, 12, 10)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   193
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   194
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   195
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   196
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
   197
	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
   198
	MAKELINE(0x1212, 12, 10)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   199
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   200
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   201
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   202
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
   203
	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
   204
	MAKELINE(0x1212, 10, 0)
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   205
	ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   206
};
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
#undef MAKELINE
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   209
#undef ENDLINE
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   210
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   211
static const DrawRoadTileStruct* const _roadside_none[] = {
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   212
	_roadside_nothing, _roadside_nothing,
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
0
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
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   222
static const DrawRoadTileStruct* const _roadside_lamps[] = {
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   223
	_roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   224
	_roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   225
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   226
	_road_display_datas2_3,
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   227
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   228
	_road_display_datas2_5,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   229
	_road_display_datas2_6,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   230
	_road_display_datas2_7,
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   231
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   232
	_road_display_datas2_9,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   233
	_road_display_datas2_10,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   234
	_road_display_datas2_11,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   235
	_road_display_datas2_12,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   236
	_road_display_datas2_13,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   237
	_road_display_datas2_14,
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   238
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   239
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   240
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   241
static const DrawRoadTileStruct* const _roadside_trees[] = {
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   242
	_roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   243
	_roadside_nothing,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   244
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   245
	_road_display_datas2_19,
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   246
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   247
	_road_display_datas2_21,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   248
	_road_display_datas2_22,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   249
	_road_display_datas2_23,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   250
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   251
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   252
	_road_display_datas2_25,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   253
	_road_display_datas2_26,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   254
	_road_display_datas2_27,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   255
	_road_display_datas2_28,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   256
	_road_display_datas2_29,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   257
	_road_display_datas2_30,
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   258
	_roadside_nothing,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   259
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   260
1398
2299b334e660 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   261
static const DrawRoadTileStruct* const * const _road_display_table[] = {
5983
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   262
	_roadside_none,
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_lamps,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   266
	_roadside_none,
8fb0a46d60b8 (svn r8275) -Fix
tron
parents: 5920
diff changeset
   267
	_roadside_trees,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   268
};