src/table/road_land.h
author miham
Sat, 23 Feb 2008 11:42:41 +0000
changeset 8627 79cb9a4fb8d1
parent 8571 53c94d717e99
child 8751 d4f1d5f212a7
permissions -rw-r--r--
(svn r12218) -Update: WebTranslator2 update to 2008-02-23 12:39:10
brazilian_portuguese - 13 fixed, 51 changed by fukumori (64)
bulgarian - 12 fixed by thetitan (12)
catalan - 13 fixed by arnaullv (13)
czech - 13 fixed, 8 changed by Hadez (21)
dutch - 13 fixed by habell (13)
estonian - 13 fixed, 3 changed by kristjans (16)
french - 13 fixed, 20 changed by glx (33)
hungarian - 13 fixed by miham (13)
italian - 13 fixed, 8 changed by lorenzodv (21)
japanese - 13 fixed by ickoonite (13)
korean - 14 fixed by leejaeuk5 (14)
portuguese - 2 fixed by nars (2)
slovak - 13 fixed by lengyel (13)
slovenian - 1 fixed by Necrolyte (1)
spanish - 13 fixed by eusebio (13)
swedish - 1 fixed by ChrillDeVille (1)
ukrainian - 13 fixed, 1 deleted, 124 changed by mad (138)
2186
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 1398
diff changeset
     1
/* $Id$ */
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 1398
diff changeset
     2
8570
f50de4804ff1 (svn r12148) -Codechange: Merge 'image' and 'pal' of DrawTileSeqStruct into one PalSpriteID
frosch
parents: 8568
diff changeset
     3
#define TILE_SEQ_LINE(img, pal, dx, dy, sx, sy) { dx, dy, 0, sx, sy, 20, {img, pal} },
f50de4804ff1 (svn r12148) -Codechange: Merge 'image' and 'pal' of DrawTileSeqStruct into one PalSpriteID
frosch
parents: 8568
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
136a11474264 (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
     6
static const DrawTileSeqStruct _road_depot_NE[] = {
5669
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
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
136a11474264 (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
    11
static const DrawTileSeqStruct _road_depot_SE[] = {
5669
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    12
	TILE_SEQ_LINE(0x580, PAL_NONE, 0, 0, 1, 16)
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
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
136a11474264 (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
    17
static const DrawTileSeqStruct _road_depot_SW[] = {
5669
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
diff changeset
    18
	TILE_SEQ_LINE(0x582, PAL_NONE, 0, 0, 16, 1)
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
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
136a11474264 (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
    23
static const DrawTileSeqStruct _road_depot_NW[] = {
5669
631901f52707 (svn r8129) -Codechange: Change data tables to use split off palette map. And
peter1138
parents: 5475
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
136a11474264 (svn r5796) Use DrawTileSprites/DrawTileSeqStruct for road depot drawing data, too
tron
parents: 4212
diff changeset
    28
static const DrawTileSprites _road_depot[] = {
8571
53c94d717e99 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 8570
diff changeset
    29
	{ {0xA4A, PAL_NONE}, _road_depot_NE },
53c94d717e99 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 8570
diff changeset
    30
	{ {0xA4A, PAL_NONE}, _road_depot_SE },
53c94d717e99 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 8570
diff changeset
    31
	{ {0xA4A, PAL_NONE}, _road_depot_SW },
53c94d717e99 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 8570
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
6691
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    35
static const DrawTileSeqStruct _tram_depot_NE[] = {
8128
6856dfdd65f7 (svn r11689) -Fix: compilation error and most of warnings for gcc 4.3
smatz
parents: 7228
diff changeset
    36
	TILE_SEQ_LINE((SPR_TRAMWAY_BASE + 0x35) | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 0, 15, 16, 1)
6691
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    37
	TILE_SEQ_END()
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    38
};
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    39
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    40
static const DrawTileSeqStruct _tram_depot_SE[] = {
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    41
	TILE_SEQ_LINE(SPR_TRAMWAY_BASE + 0x31, PAL_NONE, 0, 0, 1, 16)
8128
6856dfdd65f7 (svn r11689) -Fix: compilation error and most of warnings for gcc 4.3
smatz
parents: 7228
diff changeset
    42
	TILE_SEQ_LINE((SPR_TRAMWAY_BASE + 0x32) | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 15, 0, 1, 16)
6691
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    43
	TILE_SEQ_END()
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    44
};
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    45
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    46
static const DrawTileSeqStruct _tram_depot_SW[] = {
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    47
	TILE_SEQ_LINE(SPR_TRAMWAY_BASE + 0x33, PAL_NONE, 0, 0, 16, 1)
8128
6856dfdd65f7 (svn r11689) -Fix: compilation error and most of warnings for gcc 4.3
smatz
parents: 7228
diff changeset
    48
	TILE_SEQ_LINE((SPR_TRAMWAY_BASE + 0x34) | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 0, 15, 16, 1)
6691
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    49
	TILE_SEQ_END()
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    50
};
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    51
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    52
static const DrawTileSeqStruct _tram_depot_NW[] = {
8128
6856dfdd65f7 (svn r11689) -Fix: compilation error and most of warnings for gcc 4.3
smatz
parents: 7228
diff changeset
    53
	TILE_SEQ_LINE((SPR_TRAMWAY_BASE + 0x36) | (1 << PALETTE_MODIFIER_COLOR), PAL_NONE, 15, 0, 1, 16)
6691
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    54
	TILE_SEQ_END()
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    55
};
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    56
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    57
static const DrawTileSprites _tram_depot[] = {
8571
53c94d717e99 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 8570
diff changeset
    58
	{ {0xA4A, PAL_NONE}, _tram_depot_NE },
53c94d717e99 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 8570
diff changeset
    59
	{ {0xA4A, PAL_NONE}, _tram_depot_SE },
53c94d717e99 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 8570
diff changeset
    60
	{ {0xA4A, PAL_NONE}, _tram_depot_SW },
53c94d717e99 (svn r12149) -Codechange: Merge 'ground_sprite' and 'ground_pal' of DrawTileSprites into one PalSpriteID
frosch
parents: 8570
diff changeset
    61
	{ {0xA4A, PAL_NONE}, _tram_depot_NW }
6691
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    62
};
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    63
1398
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    64
#undef TILE_SEQ_LINE
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    65
#undef TILE_SEQ_END
3c5c97aba203 (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
7e123fec5b0b (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
6691
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    73
static const SpriteID _road_frontwire_sprites_1[16] = {
7228
24f0a19ca622 (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: 6691
diff changeset
    74
	0, 0x54, 0x55, 0x5B, 0x54, 0x54, 0x5E, 0x5A, 0x55, 0x5C, 0x55, 0x58, 0x5D, 0x57, 0x59, 0x56
6691
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    75
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    76
6691
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    77
static const SpriteID _road_backpole_sprites_1[16] = {
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    78
	0, 0x38, 0x39, 0x40, 0x38, 0x38, 0x43, 0x3E, 0x39, 0x41, 0x39, 0x3C, 0x42, 0x3B, 0x3D, 0x3A
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 5732
diff changeset
    79
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    80
1398
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    81
#define MAKELINE(a, b, c) { a, b, c },
3c5c97aba203 (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
5732
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
    84
static const DrawRoadTileStruct _roadside_nothing[] = {
1398
3c5c97aba203 (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    88
static const DrawRoadTileStruct _road_display_datas2_3[] = {
4344
7e123fec5b0b (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
3c5c97aba203 (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    93
static const DrawRoadTileStruct _road_display_datas2_5[] = {
4344
7e123fec5b0b (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)
7e123fec5b0b (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
3c5c97aba203 (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
    99
static const DrawRoadTileStruct _road_display_datas2_6[] = {
4344
7e123fec5b0b (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   101
	ENDLINE
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   102
};
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   103
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   104
static const DrawRoadTileStruct _road_display_datas2_7[] = {
4344
7e123fec5b0b (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   106
	ENDLINE
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   107
};
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   108
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   109
static const DrawRoadTileStruct _road_display_datas2_9[] = {
4344
7e123fec5b0b (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   111
	ENDLINE
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   112
};
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   113
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   114
static const DrawRoadTileStruct _road_display_datas2_10[] = {
4344
7e123fec5b0b (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)
7e123fec5b0b (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   117
	ENDLINE
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   118
};
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   119
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   120
static const DrawRoadTileStruct _road_display_datas2_11[] = {
4344
7e123fec5b0b (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   122
	ENDLINE
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   123
};
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   124
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   125
static const DrawRoadTileStruct _road_display_datas2_12[] = {
4344
7e123fec5b0b (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   127
	ENDLINE
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   128
};
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   129
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   130
static const DrawRoadTileStruct _road_display_datas2_13[] = {
4344
7e123fec5b0b (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   132
	ENDLINE
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   133
};
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   134
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   135
static const DrawRoadTileStruct _road_display_datas2_14[] = {
4344
7e123fec5b0b (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   137
	ENDLINE
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   138
};
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   139
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   140
static const DrawRoadTileStruct _road_display_datas2_19[] = {
4344
7e123fec5b0b (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)
7e123fec5b0b (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)
7e123fec5b0b (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
3c5c97aba203 (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   147
static const DrawRoadTileStruct _road_display_datas2_21[] = {
4344
7e123fec5b0b (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)
7e123fec5b0b (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)
7e123fec5b0b (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)
7e123fec5b0b (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
3c5c97aba203 (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   155
static const DrawRoadTileStruct _road_display_datas2_22[] = {
4344
7e123fec5b0b (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)
7e123fec5b0b (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)
7e123fec5b0b (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
3c5c97aba203 (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   162
static const DrawRoadTileStruct _road_display_datas2_23[] = {
4344
7e123fec5b0b (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)
7e123fec5b0b (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
3c5c97aba203 (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   168
static const DrawRoadTileStruct _road_display_datas2_25[] = {
4344
7e123fec5b0b (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)
7e123fec5b0b (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)
7e123fec5b0b (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
3c5c97aba203 (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   175
static const DrawRoadTileStruct _road_display_datas2_26[] = {
4344
7e123fec5b0b (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)
7e123fec5b0b (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)
7e123fec5b0b (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)
7e123fec5b0b (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
3c5c97aba203 (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   183
static const DrawRoadTileStruct _road_display_datas2_27[] = {
4344
7e123fec5b0b (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)
7e123fec5b0b (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
3c5c97aba203 (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   189
static const DrawRoadTileStruct _road_display_datas2_28[] = {
4344
7e123fec5b0b (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)
7e123fec5b0b (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)
7e123fec5b0b (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
3c5c97aba203 (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   196
static const DrawRoadTileStruct _road_display_datas2_29[] = {
4344
7e123fec5b0b (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)
7e123fec5b0b (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
3c5c97aba203 (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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   202
static const DrawRoadTileStruct _road_display_datas2_30[] = {
4344
7e123fec5b0b (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)
7e123fec5b0b (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
3c5c97aba203 (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
3c5c97aba203 (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
5732
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   211
static const DrawRoadTileStruct* const _roadside_none[] = {
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   212
	_roadside_nothing, _roadside_nothing,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   213
	_roadside_nothing, _roadside_nothing,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   214
	_roadside_nothing, _roadside_nothing,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   215
	_roadside_nothing, _roadside_nothing,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   216
	_roadside_nothing, _roadside_nothing,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   217
	_roadside_nothing, _roadside_nothing,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   218
	_roadside_nothing, _roadside_nothing,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
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
5732
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   222
static const DrawRoadTileStruct* const _roadside_lamps[] = {
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   223
	_roadside_nothing,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   224
	_roadside_nothing,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
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,
5732
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
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,
5732
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
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,
5732
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
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
5732
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   241
static const DrawRoadTileStruct* const _roadside_trees[] = {
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   242
	_roadside_nothing,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   243
	_roadside_nothing,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
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,
5732
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
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
5732
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
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,
5732
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
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
3c5c97aba203 (svn r1902) Replace some casts with proper typing
tron
parents: 222
diff changeset
   261
static const DrawRoadTileStruct* const * const _road_display_table[] = {
5732
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   262
	_roadside_none,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   263
	_roadside_none,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   264
	_roadside_none,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   265
	_roadside_lamps,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   266
	_roadside_none,
20d674f37c75 (svn r8275) -Fix
tron
parents: 5669
diff changeset
   267
	_roadside_trees,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   268
};