table/build_industry.h
author belugas
Wed, 26 Apr 2006 21:10:01 +0000
changeset 3669 753648f181a0
parent 3663 548dfb4ad4cc
child 3689 50a3fd4ba752
permissions -rw-r--r--
(svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
Renaming GetIndustrySpecification to GetIndustrySpec. Looks better.
Removing the _industry_prod_up/down/close_strings
in favor of IndustrySpec.closure/production_up/down_text;
A few reformatting along the way.
Work of tfc_team
2186
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 1786
diff changeset
     1
/* $Id$ */
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 1786
diff changeset
     2
3654
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3494
diff changeset
     3
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3494
diff changeset
     4
typedef struct IndustryTileTable {
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3494
diff changeset
     5
	TileIndexDiffC ti;
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3494
diff changeset
     6
	IndustryGfx gfx;
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3494
diff changeset
     7
} IndustryTileTable;
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3494
diff changeset
     8
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3494
diff changeset
     9
typedef struct IndustrySpec {
3669
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
    10
	/** Tables with the 'layout' of different composition of GFXes */
3654
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3494
diff changeset
    11
	const IndustryTileTable *const *table;
3669
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
    12
	/** Number of elements in the table */
3654
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3494
diff changeset
    13
	byte num_table;
3669
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
    14
	/** Industries this industry cannot be close to */
3663
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
    15
	IndustryType conflicting[3];
3669
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
    16
	/** index to a procedure to check for conflicting circumstances */
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
    17
	byte check_proc;
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
    18
3654
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3494
diff changeset
    19
	CargoID produced_cargo[2];
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3494
diff changeset
    20
	byte production_rate[2];
3669
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
    21
	/** The minimum amount of cargo transported to the stations; if the
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
    22
	 * waiting cargo is less than this number, no cargo is moved to it*/
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
    23
	byte minimal_cargo;
3654
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3494
diff changeset
    24
	CargoID accepts_cargo[3];
3669
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
    25
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
    26
	StringID closure_text;
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
    27
	StringID production_up_text;
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
    28
	StringID production_down_text;
3654
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3494
diff changeset
    29
} IndustrySpec;
c09872510a61 (svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
belugas
parents: 3494
diff changeset
    30
909
65cdb609b7a6 (svn r1396) Introduce TileIndexDiffC - the compile time version of TileIndexDiff
tron
parents: 0
diff changeset
    31
#define MK(x,y, m) {{x, y}, m}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    32
909
65cdb609b7a6 (svn r1396) Introduce TileIndexDiffC - the compile time version of TileIndexDiff
tron
parents: 0
diff changeset
    33
#define MKEND {{-0x80, 0}, 0}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    34
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    35
static const IndustryTileTable _tile_table_coal_mine_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    36
	MK(1,1, 0),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    37
	MK(1,2, 2),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    38
	MK(0,0, 5),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    39
	MK(1,0, 6),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    40
	MK(2,0, 3),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    41
	MK(2,2, 3),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    42
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    43
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    44
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    45
static const IndustryTileTable _tile_table_coal_mine_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    46
	MK(1,1, 0),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    47
	MK(1,2, 2),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    48
	MK(2,0, 0),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    49
	MK(2,1, 2),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    50
	MK(1,0, 3),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    51
	MK(0,0, 3),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    52
	MK(0,1, 4),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    53
	MK(0,2, 4),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    54
	MK(2,2, 4),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    55
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    56
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    57
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    58
static const IndustryTileTable _tile_table_coal_mine_2[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    59
	MK(0,0, 0),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    60
	MK(0,1, 2),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    61
	MK(0,2, 5),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    62
	MK(1,0, 3),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    63
	MK(1,1, 3),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    64
	MK(1,2, 6),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    65
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    66
};
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 IndustryTileTable _tile_table_coal_mine_3[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    69
	MK(0,1, 0),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    70
	MK(0,2, 2),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    71
	MK(0,3, 4),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    72
	MK(1,0, 5),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    73
	MK(1,1, 0),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    74
	MK(1,2, 2),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    75
	MK(1,3, 3),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    76
	MK(2,0, 6),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    77
	MK(2,1, 4),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    78
	MK(2,2, 3),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    79
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    80
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    81
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    82
static const IndustryTileTable * const _tile_table_coal_mine[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    83
	_tile_table_coal_mine_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    84
	_tile_table_coal_mine_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    85
	_tile_table_coal_mine_2,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    86
	_tile_table_coal_mine_3,
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
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    89
static const IndustryTileTable _tile_table_power_station_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    90
	MK(0,0, 7),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    91
	MK(0,1, 9),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    92
	MK(1,0, 7),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    93
	MK(1,1, 8),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    94
	MK(2,0, 7),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    95
	MK(2,1, 8),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    96
	MK(3,0, 10),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    97
	MK(3,1, 10),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    98
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    99
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   100
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   101
static const IndustryTileTable _tile_table_power_station_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   102
	MK(0,1, 7),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   103
	MK(0,2, 7),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   104
	MK(1,0, 8),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   105
	MK(1,1, 8),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   106
	MK(1,2, 7),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   107
	MK(2,0, 9),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   108
	MK(2,1, 10),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   109
	MK(2,2, 9),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   110
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   111
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   112
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   113
static const IndustryTileTable _tile_table_power_station_2[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   114
	MK(0,0, 7),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   115
	MK(0,1, 7),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   116
	MK(1,0, 9),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   117
	MK(1,1, 8),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   118
	MK(2,0, 10),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   119
	MK(2,1, 9),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   120
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   121
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   122
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   123
static const IndustryTileTable * const _tile_table_power_station[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   124
	_tile_table_power_station_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   125
	_tile_table_power_station_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   126
	_tile_table_power_station_2,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   127
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   128
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   129
static const IndustryTileTable _tile_table_sawmill_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   130
	MK(1,0, 14),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   131
	MK(1,1, 12),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   132
	MK(1,2, 11),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   133
	MK(2,0, 14),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   134
	MK(2,1, 13),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   135
	MK(0,0, 15),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   136
	MK(0,1, 15),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   137
	MK(0,2, 12),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   138
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   139
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   140
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   141
static const IndustryTileTable _tile_table_sawmill_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   142
	MK(0,0, 15),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   143
	MK(0,1, 11),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   144
	MK(0,2, 14),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   145
	MK(1,0, 15),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   146
	MK(1,1, 13),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   147
	MK(1,2, 12),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   148
	MK(2,0, 11),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   149
	MK(2,1, 13),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   150
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   151
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   152
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   153
static const IndustryTileTable * const _tile_table_sawmill[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   154
	_tile_table_sawmill_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   155
	_tile_table_sawmill_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   156
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   157
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   158
static const IndustryTileTable _tile_table_forest_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   159
	MK(0,0, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   160
	MK(0,1, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   161
	MK(0,2, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   162
	MK(0,3, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   163
	MK(1,0, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   164
	MK(1,1, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   165
	MK(1,2, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   166
	MK(1,3, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   167
	MK(2,0, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   168
	MK(2,1, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   169
	MK(2,2, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   170
	MK(2,3, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   171
	MK(3,0, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   172
	MK(3,1, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   173
	MK(3,2, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   174
	MK(3,3, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   175
	MK(1,4, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   176
	MK(2,4, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   177
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   178
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   179
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   180
static const IndustryTileTable _tile_table_forest_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   181
	MK(0,0, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   182
	MK(1,0, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   183
	MK(2,0, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   184
	MK(3,0, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   185
	MK(4,0, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   186
	MK(0,1, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   187
	MK(1,1, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   188
	MK(2,1, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   189
	MK(3,1, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   190
	MK(4,1, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   191
	MK(0,2, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   192
	MK(1,2, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   193
	MK(2,2, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   194
	MK(3,2, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   195
	MK(4,2, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   196
	MK(0,3, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   197
	MK(1,3, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   198
	MK(2,3, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   199
	MK(3,3, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   200
	MK(4,3, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   201
	MK(1,4, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   202
	MK(2,4, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   203
	MK(3,4, 16),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   204
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   205
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   206
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   207
static const IndustryTileTable * const _tile_table_forest[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   208
	_tile_table_forest_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   209
	_tile_table_forest_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   210
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   211
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   212
static const IndustryTileTable _tile_table_oil_refinery_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   213
	MK(0,0, 20),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   214
	MK(0,1, 21),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   215
	MK(0,2, 22),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   216
	MK(0,3, 21),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   217
	MK(1,0, 20),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   218
	MK(1,1, 19),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   219
	MK(1,2, 22),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   220
	MK(1,3, 20),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   221
	MK(2,1, 18),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   222
	MK(2,2, 18),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   223
	MK(2,3, 18),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   224
	MK(3,2, 18),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   225
	MK(3,3, 18),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   226
	MK(2,0, 23),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   227
	MK(3,1, 23),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   228
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   229
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   230
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   231
static const IndustryTileTable _tile_table_oil_refinery_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   232
	MK(0,0, 18),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   233
	MK(0,1, 18),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   234
	MK(0,2, 21),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   235
	MK(0,3, 22),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   236
	MK(0,4, 20),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   237
	MK(1,0, 18),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   238
	MK(1,1, 18),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   239
	MK(1,2, 19),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   240
	MK(1,3, 20),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   241
	MK(2,0, 18),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   242
	MK(2,1, 18),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   243
	MK(2,2, 19),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   244
	MK(2,3, 22),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   245
	MK(1,4, 23),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   246
	MK(2,4, 23),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   247
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   248
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   249
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   250
static const IndustryTileTable * const _tile_table_oil_refinery[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   251
	_tile_table_oil_refinery_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   252
	_tile_table_oil_refinery_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   253
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   254
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   255
static const IndustryTileTable _tile_table_oil_rig_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   256
	MK(0,0, 24),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   257
	MK(0,1, 24),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   258
	MK(0,2, 25),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   259
	MK(1,0, 26),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   260
	MK(1,1, 27),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   261
	MK(1,2, 28),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   262
	MK(-4,-5, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   263
	MK(-4,-4, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   264
	MK(-4,-3, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   265
	MK(-4,-2, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   266
	MK(-4,-1, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   267
	MK(-4,0, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   268
	MK(-4,1, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   269
	MK(-4,2, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   270
	MK(-4,3, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   271
	MK(-4,4, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   272
	MK(-4,5, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   273
	MK(-3,5, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   274
	MK(-2,5, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   275
	MK(-1,5, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   276
	MK(0,6, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   277
	MK(1,6, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   278
	MK(2,6, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   279
	MK(3,6, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   280
	MK(4,6, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   281
	MK(5,6, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   282
	MK(5,5, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   283
	MK(5,4, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   284
	MK(5,3, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   285
	MK(5,2, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   286
	MK(5,1, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   287
	MK(5,0, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   288
	MK(5,-1, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   289
	MK(5,-2, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   290
	MK(5,-3, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   291
	MK(5,-4, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   292
	MK(4,-4, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   293
	MK(3,-4, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   294
	MK(2,-4, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   295
	MK(1,-4, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   296
	MK(0,-4, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   297
	MK(-1,-5, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   298
	MK(-2,-5, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   299
	MK(-3,-5, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   300
	MK(2,0, 255),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   301
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   302
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   303
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   304
static const IndustryTileTable * const _tile_table_oil_rig[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   305
	_tile_table_oil_rig_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   306
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   307
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   308
static const IndustryTileTable _tile_table_factory_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   309
	MK(0,0, 39),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   310
	MK(0,1, 40),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   311
	MK(1,0, 41),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   312
	MK(1,1, 42),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   313
	MK(0,2, 39),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   314
	MK(0,3, 40),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   315
	MK(1,2, 41),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   316
	MK(1,3, 42),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   317
	MK(2,1, 39),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   318
	MK(2,2, 40),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   319
	MK(3,1, 41),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   320
	MK(3,2, 42),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   321
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   322
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   323
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   324
static const IndustryTileTable _tile_table_factory_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   325
	MK(0,0, 39),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   326
	MK(0,1, 40),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   327
	MK(1,0, 41),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   328
	MK(1,1, 42),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   329
	MK(2,0, 39),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   330
	MK(2,1, 40),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   331
	MK(3,0, 41),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   332
	MK(3,1, 42),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   333
	MK(1,2, 39),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   334
	MK(1,3, 40),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   335
	MK(2,2, 41),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   336
	MK(2,3, 42),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   337
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   338
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   339
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   340
static const IndustryTileTable * const _tile_table_factory[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   341
	_tile_table_factory_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   342
	_tile_table_factory_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   343
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   344
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   345
static const IndustryTileTable _tile_table_printing_works_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   346
	MK(0,0, 43),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   347
	MK(0,1, 44),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   348
	MK(1,0, 45),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   349
	MK(1,1, 46),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   350
	MK(0,2, 43),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   351
	MK(0,3, 44),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   352
	MK(1,2, 45),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   353
	MK(1,3, 46),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   354
	MK(2,1, 43),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   355
	MK(2,2, 44),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   356
	MK(3,1, 45),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   357
	MK(3,2, 46),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   358
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   359
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   360
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   361
static const IndustryTileTable _tile_table_printing_works_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   362
	MK(0,0, 43),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   363
	MK(0,1, 44),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   364
	MK(1,0, 45),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   365
	MK(1,1, 46),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   366
	MK(2,0, 43),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   367
	MK(2,1, 44),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   368
	MK(3,0, 45),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   369
	MK(3,1, 46),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   370
	MK(1,2, 43),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   371
	MK(1,3, 44),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   372
	MK(2,2, 45),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   373
	MK(2,3, 46),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   374
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   375
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   376
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   377
static const IndustryTileTable * const _tile_table_printing_works[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   378
	_tile_table_printing_works_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   379
	_tile_table_printing_works_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   380
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   381
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   382
static const IndustryTileTable _tile_table_steel_mill_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   383
	MK(2,1, 52),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   384
	MK(2,2, 53),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   385
	MK(3,1, 54),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   386
	MK(3,2, 55),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   387
	MK(0,0, 56),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   388
	MK(1,0, 57),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   389
	MK(0,1, 56),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   390
	MK(1,1, 57),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   391
	MK(0,2, 56),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   392
	MK(1,2, 57),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   393
	MK(2,0, 56),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   394
	MK(3,0, 57),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   395
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   396
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   397
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   398
static const IndustryTileTable _tile_table_steel_mill_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   399
	MK(0,0, 52),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   400
	MK(0,1, 53),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   401
	MK(1,0, 54),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   402
	MK(1,1, 55),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   403
	MK(2,0, 52),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   404
	MK(2,1, 53),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   405
	MK(3,0, 54),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   406
	MK(3,1, 55),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   407
	MK(0,2, 56),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   408
	MK(1,2, 57),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   409
	MK(2,2, 56),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   410
	MK(3,2, 57),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   411
	MK(1,3, 56),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   412
	MK(2,3, 57),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   413
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   414
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   415
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   416
static const IndustryTileTable * const _tile_table_steel_mill[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   417
	_tile_table_steel_mill_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   418
	_tile_table_steel_mill_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   419
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   420
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   421
static const IndustryTileTable _tile_table_farm_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   422
	MK(1,0, 33),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   423
	MK(1,1, 34),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   424
	MK(1,2, 36),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   425
	MK(0,0, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   426
	MK(0,1, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   427
	MK(0,2, 36),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   428
	MK(2,0, 35),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   429
	MK(2,1, 38),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   430
	MK(2,2, 38),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   431
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   432
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   433
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   434
static const IndustryTileTable _tile_table_farm_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   435
	MK(1,1, 33),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   436
	MK(1,2, 34),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   437
	MK(0,0, 35),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   438
	MK(0,1, 36),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   439
	MK(0,2, 36),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   440
	MK(0,3, 35),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   441
	MK(1,0, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   442
	MK(1,3, 38),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   443
	MK(2,0, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   444
	MK(2,1, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   445
	MK(2,2, 38),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   446
	MK(2,3, 38),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   447
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   448
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   449
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   450
static const IndustryTileTable _tile_table_farm_2[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   451
	MK(2,0, 33),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   452
	MK(2,1, 34),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   453
	MK(0,0, 36),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   454
	MK(0,1, 36),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   455
	MK(0,2, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   456
	MK(0,3, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   457
	MK(1,0, 35),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   458
	MK(1,1, 38),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   459
	MK(1,2, 38),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   460
	MK(1,3, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   461
	MK(2,2, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   462
	MK(2,3, 35),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   463
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   464
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   465
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   466
static const IndustryTileTable * const _tile_table_farm[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   467
	_tile_table_farm_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   468
	_tile_table_farm_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   469
	_tile_table_farm_2,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   470
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   471
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   472
static const IndustryTileTable _tile_table_copper_mine_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   473
	MK(0,0, 47),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   474
	MK(0,1, 49),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   475
	MK(0,2, 51),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   476
	MK(1,0, 47),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   477
	MK(1,1, 49),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   478
	MK(1,2, 50),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   479
	MK(2,0, 51),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   480
	MK(2,1, 51),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   481
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   482
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   483
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   484
static const IndustryTileTable _tile_table_copper_mine_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   485
	MK(0,0, 50),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   486
	MK(0,1, 47),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   487
	MK(0,2, 49),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   488
	MK(1,0, 47),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   489
	MK(1,1, 49),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   490
	MK(1,2, 51),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   491
	MK(2,0, 51),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   492
	MK(2,1, 47),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   493
	MK(2,2, 49),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   494
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   495
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   496
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   497
static const IndustryTileTable * const _tile_table_copper_mine[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   498
	_tile_table_copper_mine_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   499
	_tile_table_copper_mine_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   500
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   501
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   502
static const IndustryTileTable _tile_table_oil_well_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   503
	MK(0,0, 29),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   504
	MK(1,0, 29),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   505
	MK(2,0, 29),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   506
	MK(0,1, 29),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   507
	MK(0,2, 29),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   508
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   509
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   510
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   511
static const IndustryTileTable _tile_table_oil_well_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   512
	MK(0,0, 29),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   513
	MK(1,0, 29),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   514
	MK(1,1, 29),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   515
	MK(2,2, 29),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   516
	MK(2,3, 29),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   517
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   518
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   519
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   520
static const IndustryTileTable * const _tile_table_oil_well[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   521
	_tile_table_oil_well_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   522
	_tile_table_oil_well_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   523
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   524
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   525
static const IndustryTileTable _tile_table_bank_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   526
	MK(0,0, 58),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   527
	MK(1,0, 59),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   528
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   529
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   530
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   531
static const IndustryTileTable * const _tile_table_bank[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   532
	_tile_table_bank_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   533
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   534
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   535
static const IndustryTileTable _tile_table_food_process_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   536
	MK(0,0, 60),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   537
	MK(1,0, 60),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   538
	MK(2,0, 60),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   539
	MK(0,1, 60),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   540
	MK(1,1, 60),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   541
	MK(2,1, 60),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   542
	MK(0,2, 61),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   543
	MK(1,2, 61),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   544
	MK(2,2, 63),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   545
	MK(0,3, 62),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   546
	MK(1,3, 62),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   547
	MK(2,3, 63),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   548
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   549
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   550
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   551
static const IndustryTileTable _tile_table_food_process_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   552
	MK(0,0, 61),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   553
	MK(1,0, 60),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   554
	MK(2,0, 61),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   555
	MK(3,0, 61),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   556
	MK(0,1, 62),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   557
	MK(1,1, 63),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   558
	MK(2,1, 63),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   559
	MK(3,1, 63),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   560
	MK(0,2, 60),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   561
	MK(1,2, 60),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   562
	MK(2,2, 60),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   563
	MK(3,2, 60),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   564
	MK(0,3, 62),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   565
	MK(1,3, 62),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   566
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   567
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   568
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   569
static const IndustryTileTable * const _tile_table_food_process[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   570
	_tile_table_food_process_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   571
	_tile_table_food_process_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   572
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   573
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   574
static const IndustryTileTable _tile_table_paper_mill_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   575
	MK(0,0, 64),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   576
	MK(1,0, 65),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   577
	MK(2,0, 66),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   578
	MK(3,0, 67),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   579
	MK(0,1, 68),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   580
	MK(1,1, 69),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   581
	MK(2,1, 67),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   582
	MK(3,1, 67),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   583
	MK(0,2, 66),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   584
	MK(1,2, 71),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   585
	MK(2,2, 71),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   586
	MK(3,2, 70),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   587
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   588
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   589
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   590
static const IndustryTileTable * const _tile_table_paper_mill[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   591
	_tile_table_paper_mill_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   592
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   593
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   594
static const IndustryTileTable _tile_table_gold_mine_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   595
	MK(0,0, 72),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   596
	MK(0,1, 73),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   597
	MK(0,2, 74),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   598
	MK(0,3, 75),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   599
	MK(1,0, 76),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   600
	MK(1,1, 77),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   601
	MK(1,2, 78),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   602
	MK(1,3, 79),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   603
	MK(2,0, 80),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   604
	MK(2,1, 81),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   605
	MK(2,2, 82),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   606
	MK(2,3, 83),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   607
	MK(3,0, 84),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   608
	MK(3,1, 85),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   609
	MK(3,2, 86),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   610
	MK(3,3, 87),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   611
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   612
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   613
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   614
static const IndustryTileTable * const _tile_table_gold_mine[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   615
	_tile_table_gold_mine_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   616
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   617
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   618
static const IndustryTileTable _tile_table_bank2_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   619
	MK(0,0, 89),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   620
	MK(1,0, 90),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   621
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   622
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   623
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   624
static const IndustryTileTable * const _tile_table_bank2[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   625
	_tile_table_bank2_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   626
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   627
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   628
static const IndustryTileTable _tile_table_diamond_mine_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   629
	MK(0,0, 91),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   630
	MK(0,1, 92),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   631
	MK(0,2, 93),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   632
	MK(1,0, 94),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   633
	MK(1,1, 95),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   634
	MK(1,2, 96),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   635
	MK(2,0, 97),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   636
	MK(2,1, 98),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   637
	MK(2,2, 99),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   638
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   639
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   640
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   641
static const IndustryTileTable * const _tile_table_diamond_mine[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   642
	_tile_table_diamond_mine_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   643
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   644
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   645
static const IndustryTileTable _tile_table_iron_mine_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   646
	MK(0,0, 100),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   647
	MK(0,1, 101),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   648
	MK(0,2, 102),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   649
	MK(0,3, 103),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   650
	MK(1,0, 104),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   651
	MK(1,1, 105),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   652
	MK(1,2, 106),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   653
	MK(1,3, 107),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   654
	MK(2,0, 108),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   655
	MK(2,1, 109),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   656
	MK(2,2, 110),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   657
	MK(2,3, 111),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   658
	MK(3,0, 112),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   659
	MK(3,1, 113),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   660
	MK(3,2, 114),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   661
	MK(3,3, 115),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   662
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   663
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   664
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   665
static const IndustryTileTable * const _tile_table_iron_mine[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   666
	_tile_table_iron_mine_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   667
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   668
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   669
static const IndustryTileTable _tile_table_fruit_plantation_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   670
	MK(0,0, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   671
	MK(0,1, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   672
	MK(0,2, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   673
	MK(0,3, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   674
	MK(1,0, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   675
	MK(1,1, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   676
	MK(1,2, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   677
	MK(1,3, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   678
	MK(2,0, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   679
	MK(2,1, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   680
	MK(2,2, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   681
	MK(2,3, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   682
	MK(3,0, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   683
	MK(3,1, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   684
	MK(3,2, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   685
	MK(3,3, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   686
	MK(4,0, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   687
	MK(4,1, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   688
	MK(4,2, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   689
	MK(4,3, 116),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   690
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   691
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   692
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   693
static const IndustryTileTable * const _tile_table_fruit_plantation[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   694
	_tile_table_fruit_plantation_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   695
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   696
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   697
static const IndustryTileTable _tile_table_rubber_plantation_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   698
	MK(0,0, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   699
	MK(0,1, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   700
	MK(0,2, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   701
	MK(0,3, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   702
	MK(1,0, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   703
	MK(1,1, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   704
	MK(1,2, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   705
	MK(1,3, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   706
	MK(2,0, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   707
	MK(2,1, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   708
	MK(2,2, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   709
	MK(2,3, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   710
	MK(3,0, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   711
	MK(3,1, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   712
	MK(3,2, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   713
	MK(3,3, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   714
	MK(4,0, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   715
	MK(4,1, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   716
	MK(4,2, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   717
	MK(4,3, 117),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   718
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   719
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   720
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   721
static const IndustryTileTable * const _tile_table_rubber_plantation[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   722
	_tile_table_rubber_plantation_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   723
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   724
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   725
static const IndustryTileTable _tile_table_water_supply_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   726
	MK(0,0, 118),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   727
	MK(0,1, 119),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   728
	MK(1,0, 118),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   729
	MK(1,1, 119),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   730
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   731
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   732
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   733
static const IndustryTileTable * const _tile_table_water_supply[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   734
	_tile_table_water_supply_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   735
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   736
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   737
static const IndustryTileTable _tile_table_water_tower_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   738
	MK(0,0, 120),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   739
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   740
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   741
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   742
static const IndustryTileTable * const _tile_table_water_tower[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   743
	_tile_table_water_tower_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   744
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   745
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   746
static const IndustryTileTable _tile_table_factory2_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   747
	MK(0,0, 121),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   748
	MK(0,1, 122),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   749
	MK(1,0, 123),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   750
	MK(1,1, 124),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   751
	MK(0,2, 121),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   752
	MK(0,3, 122),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   753
	MK(1,2, 123),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   754
	MK(1,3, 124),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   755
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   756
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   757
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   758
static const IndustryTileTable _tile_table_factory2_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   759
	MK(0,0, 121),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   760
	MK(0,1, 122),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   761
	MK(1,0, 123),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   762
	MK(1,1, 124),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   763
	MK(2,0, 121),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   764
	MK(2,1, 122),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   765
	MK(3,0, 123),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   766
	MK(3,1, 124),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   767
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   768
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   769
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   770
static const IndustryTileTable * const _tile_table_factory2[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   771
	_tile_table_factory2_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   772
	_tile_table_factory2_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   773
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   774
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   775
static const IndustryTileTable _tile_table_farm2_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   776
	MK(1,0, 33),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   777
	MK(1,1, 34),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   778
	MK(1,2, 36),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   779
	MK(0,0, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   780
	MK(0,1, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   781
	MK(0,2, 36),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   782
	MK(2,0, 35),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   783
	MK(2,1, 38),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   784
	MK(2,2, 38),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   785
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   786
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   787
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   788
static const IndustryTileTable _tile_table_farm2_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   789
	MK(1,1, 33),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   790
	MK(1,2, 34),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   791
	MK(0,0, 35),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   792
	MK(0,1, 36),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   793
	MK(0,2, 36),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   794
	MK(0,3, 35),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   795
	MK(1,0, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   796
	MK(1,3, 38),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   797
	MK(2,0, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   798
	MK(2,1, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   799
	MK(2,2, 38),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   800
	MK(2,3, 38),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   801
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   802
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   803
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   804
static const IndustryTileTable _tile_table_farm2_2[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   805
	MK(2,0, 33),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   806
	MK(2,1, 34),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   807
	MK(0,0, 36),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   808
	MK(0,1, 36),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   809
	MK(0,2, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   810
	MK(0,3, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   811
	MK(1,0, 35),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   812
	MK(1,1, 38),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   813
	MK(1,2, 38),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   814
	MK(1,3, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   815
	MK(2,2, 37),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   816
	MK(2,3, 35),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   817
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   818
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   819
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   820
static const IndustryTileTable * const _tile_table_farm2[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   821
	_tile_table_farm2_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   822
	_tile_table_farm2_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   823
	_tile_table_farm2_2,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   824
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   825
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   826
static const IndustryTileTable _tile_table_lumber_mill_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   827
	MK(0,0, 125),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   828
	MK(0,1, 126),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   829
	MK(1,0, 127),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   830
	MK(1,1, 128),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   831
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   832
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   833
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   834
static const IndustryTileTable * const _tile_table_lumber_mill[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   835
	_tile_table_lumber_mill_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   836
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   837
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   838
static const IndustryTileTable _tile_table_cotton_candy_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   839
	MK(0,0, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   840
	MK(0,1, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   841
	MK(0,2, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   842
	MK(0,3, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   843
	MK(1,0, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   844
	MK(1,1, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   845
	MK(1,2, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   846
	MK(1,3, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   847
	MK(2,0, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   848
	MK(2,1, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   849
	MK(2,2, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   850
	MK(2,3, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   851
	MK(3,0, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   852
	MK(3,1, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   853
	MK(3,2, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   854
	MK(3,3, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   855
	MK(1,4, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   856
	MK(2,4, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   857
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   858
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   859
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   860
static const IndustryTileTable _tile_table_cotton_candy_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   861
	MK(0,0, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   862
	MK(1,0, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   863
	MK(2,0, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   864
	MK(3,0, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   865
	MK(4,0, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   866
	MK(0,1, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   867
	MK(1,1, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   868
	MK(2,1, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   869
	MK(3,1, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   870
	MK(4,1, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   871
	MK(0,2, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   872
	MK(1,2, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   873
	MK(2,2, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   874
	MK(3,2, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   875
	MK(4,2, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   876
	MK(0,3, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   877
	MK(1,3, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   878
	MK(2,3, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   879
	MK(3,3, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   880
	MK(4,3, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   881
	MK(1,4, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   882
	MK(2,4, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   883
	MK(3,4, 129),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   884
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   885
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   886
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   887
static const IndustryTileTable * const _tile_table_cotton_candy[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   888
	_tile_table_cotton_candy_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   889
	_tile_table_cotton_candy_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   890
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   891
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   892
static const IndustryTileTable _tile_table_candy_factory_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   893
	MK(0,0, 131),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   894
	MK(0,1, 132),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   895
	MK(1,0, 133),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   896
	MK(1,1, 134),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   897
	MK(0,2, 131),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   898
	MK(0,3, 132),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   899
	MK(1,2, 133),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   900
	MK(1,3, 134),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   901
	MK(2,1, 131),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   902
	MK(2,2, 132),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   903
	MK(3,1, 133),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   904
	MK(3,2, 134),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   905
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   906
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   907
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   908
static const IndustryTileTable _tile_table_candy_factory_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   909
	MK(0,0, 131),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   910
	MK(0,1, 132),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   911
	MK(1,0, 133),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   912
	MK(1,1, 134),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   913
	MK(2,0, 131),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   914
	MK(2,1, 132),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   915
	MK(3,0, 133),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   916
	MK(3,1, 134),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   917
	MK(1,2, 131),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   918
	MK(1,3, 132),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   919
	MK(2,2, 133),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   920
	MK(2,3, 134),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   921
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   922
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   923
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   924
static const IndustryTileTable * const _tile_table_candy_factory[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   925
	_tile_table_candy_factory_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   926
	_tile_table_candy_factory_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   927
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   928
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   929
static const IndustryTileTable _tile_table_battery_farm_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   930
	MK(0,0, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   931
	MK(0,1, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   932
	MK(0,2, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   933
	MK(0,3, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   934
	MK(1,0, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   935
	MK(1,1, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   936
	MK(1,2, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   937
	MK(1,3, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   938
	MK(2,0, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   939
	MK(2,1, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   940
	MK(2,2, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   941
	MK(2,3, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   942
	MK(3,0, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   943
	MK(3,1, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   944
	MK(3,2, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   945
	MK(3,3, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   946
	MK(4,0, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   947
	MK(4,1, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   948
	MK(4,2, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   949
	MK(4,3, 135),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   950
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   951
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   952
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   953
static const IndustryTileTable * const _tile_table_battery_farm[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   954
	_tile_table_battery_farm_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   955
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   956
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   957
static const IndustryTileTable _tile_table_cola_wells_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   958
	MK(0,0, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   959
	MK(0,1, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   960
	MK(0,2, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   961
	MK(1,0, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   962
	MK(1,1, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   963
	MK(1,2, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   964
	MK(2,1, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   965
	MK(2,2, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   966
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   967
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   968
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   969
static const IndustryTileTable _tile_table_cola_wells_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   970
	MK(0,1, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   971
	MK(0,2, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   972
	MK(0,3, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   973
	MK(1,0, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   974
	MK(1,1, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   975
	MK(1,2, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   976
	MK(2,1, 137),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   977
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   978
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   979
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   980
static const IndustryTileTable * const _tile_table_cola_wells[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   981
	_tile_table_cola_wells_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   982
	_tile_table_cola_wells_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   983
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   984
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   985
static const IndustryTileTable _tile_table_toy_shop_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   986
	MK(0,0, 138),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   987
	MK(0,1, 139),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   988
	MK(1,0, 140),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   989
	MK(1,1, 141),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   990
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   991
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   992
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   993
static const IndustryTileTable * const _tile_table_toy_shop[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   994
	_tile_table_toy_shop_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   995
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   996
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   997
static const IndustryTileTable _tile_table_toy_factory_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   998
	MK(0,0, 147),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   999
	MK(0,1, 142),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1000
	MK(1,0, 147),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1001
	MK(1,1, 143),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1002
	MK(2,0, 147),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1003
	MK(2,1, 144),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1004
	MK(3,0, 146),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1005
	MK(3,1, 145),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1006
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1007
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1008
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1009
static const IndustryTileTable * const _tile_table_toy_factory[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1010
	_tile_table_toy_factory_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1011
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1012
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1013
static const IndustryTileTable _tile_table_plastic_fountain_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1014
	MK(0,0, 148),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1015
	MK(0,1, 151),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1016
	MK(0,2, 154),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1017
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1018
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1019
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1020
static const IndustryTileTable _tile_table_plastic_fountain_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1021
	MK(0,0, 148),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1022
	MK(1,0, 151),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1023
	MK(2,0, 154),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1024
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1025
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1026
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1027
static const IndustryTileTable * const _tile_table_plastic_fountain[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1028
	_tile_table_plastic_fountain_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1029
	_tile_table_plastic_fountain_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1030
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1031
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1032
static const IndustryTileTable _tile_table_fizzy_drink_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1033
	MK(0,0, 156),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1034
	MK(0,1, 157),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1035
	MK(1,0, 158),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1036
	MK(1,1, 159),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1037
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1038
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1039
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1040
static const IndustryTileTable * const _tile_table_fizzy_drink[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1041
	_tile_table_fizzy_drink_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1042
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1043
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1044
static const IndustryTileTable _tile_table_bubble_generator_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1045
	MK(0,0, 163),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1046
	MK(0,1, 160),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1047
	MK(1,0, 163),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1048
	MK(1,1, 161),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1049
	MK(2,0, 163),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1050
	MK(2,1, 162),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1051
	MK(0,2, 163),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1052
	MK(0,3, 160),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1053
	MK(1,2, 163),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1054
	MK(1,3, 161),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1055
	MK(2,2, 163),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1056
	MK(2,3, 162),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1057
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1058
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1059
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1060
static const IndustryTileTable * const _tile_table_bubble_generator[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1061
	_tile_table_bubble_generator_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1062
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1063
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1064
static const IndustryTileTable _tile_table_toffee_quarry_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1065
	MK(0,0, 164),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1066
	MK(1,0, 165),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1067
	MK(2,0, 166),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1068
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1069
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1070
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1071
static const IndustryTileTable * const _tile_table_toffee_quarry[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1072
	_tile_table_toffee_quarry_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1073
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1074
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1075
static const IndustryTileTable _tile_table_sugar_mine_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1076
	MK(0,0, 167),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1077
	MK(0,1, 168),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1078
	MK(1,0, 169),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1079
	MK(1,1, 170),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1080
	MK(2,0, 171),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1081
	MK(2,1, 172),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1082
	MK(3,0, 173),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1083
	MK(3,1, 174),
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1084
	MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1085
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1086
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1087
static const IndustryTileTable * const _tile_table_sugar_mine[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1088
	_tile_table_sugar_mine_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1089
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1090
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1091
#undef MK
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1092
#undef MKEND
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1093
3663
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1094
/* Procedures that can be run to check whether an industry may
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1095
 * build at location the given to the procedure */
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1096
typedef enum CheckProcs {
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1097
	CHECK_NOTHING    = 0,
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1098
	CHECK_FOREST     = 1,
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1099
	CHECK_OIL        = 2,
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1100
	CHECK_FARM       = 3,
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1101
	CHECK_PLANTATION = 4,
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1102
	CHECK_WATER      = 5,
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1103
	CHECK_LUMBERMILL = 6,
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1104
	CHECK_BUBBLEGEN  = 7,
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1105
	CHECK_END,
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1106
} CheckProc;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1107
3669
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1108
#define MK(tbl, c1, c2, c3, proc, p1, r1, p2, r2, m, a1, a2, a3, s1, s2, s3) \
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1109
	{tbl, lengthof(tbl), {c1, c2, c3}, proc, {p1, p2}, {r1, r2}, m,            \
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1110
	 {a1, a2, a3},  s1, s2, s3}
3663
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1111
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1112
static const IndustrySpec _industry_specs[] = {
3669
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1113
	/* Format:
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1114
	   tile table
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1115
	   cannot be close to these industries (3 times)           check proc
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1116
	   (produced cargo + rate) (twice)       minimum cargo moved to station
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1117
	   3 accepted cargo
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1118
	   messages : Closure                    production up                      production down   */
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1119
	MK(_tile_table_coal_mine,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1120
	   IT_POWER_STATION,  IT_INVALID,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1121
	   CT_COAL,       15, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1122
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1123
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4836_NEW_COAL_SEAM_FOUND_AT,   STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1124
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1125
	MK(_tile_table_power_station,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1126
	   IT_COAL_MINE,      IT_INVALID,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1127
	   CT_INVALID,     0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1128
	   CT_COAL,           CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1129
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1130
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1131
	MK(_tile_table_sawmill,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1132
	   IT_FOREST,         IT_INVALID,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1133
	   CT_GOODS,       0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1134
	   CT_WOOD,           CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1135
	   STR_4833_SUPPLY_PROBLEMS_CAUSE_TO,    STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1136
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1137
	MK(_tile_table_forest,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1138
	   IT_SAWMILL,        IT_PAPER_MILL,     IT_INVALID,       CHECK_FOREST,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1139
	   CT_WOOD,       13, CT_INVALID,     0, 30,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1140
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1141
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_483A_INSECT_INFESTATION_CAUSES),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1142
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1143
	MK(_tile_table_oil_refinery,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1144
	   IT_OIL_RIG,        IT_INVALID,        IT_INVALID,       CHECK_OIL,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1145
	   CT_GOODS,       0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1146
	   CT_OIL,            CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1147
	   STR_4833_SUPPLY_PROBLEMS_CAUSE_TO,    STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1148
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1149
	MK(_tile_table_oil_rig,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1150
	   IT_OIL_REFINERY,   IT_INVALID,        IT_INVALID,       CHECK_OIL,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1151
	   CT_OIL,        15, CT_PASSENGERS,  2, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1152
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1153
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4837_NEW_OIL_RESERVES_FOUND,   STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1154
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1155
	MK(_tile_table_factory,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1156
	   IT_FARM,           IT_STEEL_MILL,     IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1157
	   CT_GOODS,       0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1158
	   CT_LIVESTOCK,      CT_GRAIN,          CT_STEEL,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1159
	   STR_4833_SUPPLY_PROBLEMS_CAUSE_TO,    STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1160
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1161
	MK(_tile_table_printing_works,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1162
	   IT_PAPER_MILL,     IT_INVALID,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1163
	   CT_GOODS,       0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1164
	   CT_PAPER,          CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1165
	   STR_4833_SUPPLY_PROBLEMS_CAUSE_TO,    STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1166
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1167
	MK(_tile_table_steel_mill,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1168
	   IT_IRON_MINE,      IT_FACTORY,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1169
	   CT_STEEL,       0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1170
	   CT_IRON_ORE,       CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1171
	   STR_4833_SUPPLY_PROBLEMS_CAUSE_TO,    STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1172
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1173
	MK(_tile_table_farm,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1174
	   IT_FACTORY,        IT_FOOD_PROCESS,   IT_INVALID,       CHECK_FARM,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1175
	   CT_GRAIN,      10, CT_LIVESTOCK,  10, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1176
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1177
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4838_IMPROVED_FARMING_METHODS, STR_483A_INSECT_INFESTATION_CAUSES),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1178
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1179
	MK(_tile_table_copper_mine,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1180
	   IT_FACTORY_2,      IT_INVALID,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1181
	   CT_COPPER_ORE, 10, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1182
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1183
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1184
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1185
	MK(_tile_table_oil_well,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1186
	   IT_OIL_REFINERY,   IT_INVALID,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1187
	   CT_OIL,        12, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1188
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1189
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4837_NEW_OIL_RESERVES_FOUND,   STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1190
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1191
	MK(_tile_table_bank,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1192
	   IT_BANK_TEMP,      IT_INVALID,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1193
	   CT_VALUABLES,   6, CT_INVALID,      0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1194
	   CT_VALUABLES,      CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1195
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1196
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1197
	MK(_tile_table_food_process,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1198
	   IT_FRUIT_PLANTATION, IT_FARM,         IT_FARM_2,        CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1199
	   CT_FOOD,        0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1200
	   CT_FRUIT,          CT_MAIZE,          CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1201
	   STR_4833_SUPPLY_PROBLEMS_CAUSE_TO,    STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1202
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1203
	MK(_tile_table_paper_mill,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1204
	   IT_FOREST,         IT_PRINTING_WORKS, IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1205
	   CT_PAPER,       0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1206
	   CT_WOOD,           CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1207
	   STR_4833_SUPPLY_PROBLEMS_CAUSE_TO,    STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1208
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1209
	MK(_tile_table_gold_mine,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1210
	   IT_BANK_TROPIC_ARCTIC, IT_INVALID,    IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1211
	   CT_GOLD,        7, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1212
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1213
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1214
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1215
	MK(_tile_table_bank2,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1216
	   IT_GOLD_MINE,      IT_DIAMOND_MINE,   IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1217
	   CT_INVALID,     0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1218
	   CT_GOLD,           CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1219
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1220
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1221
	MK(_tile_table_diamond_mine,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1222
	   IT_BANK_TROPIC_ARCTIC, IT_INVALID,    IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1223
	   CT_DIAMONDS,    7, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1224
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1225
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1226
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1227
	MK(_tile_table_iron_mine,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1228
	   IT_STEEL_MILL,     IT_INVALID,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1229
	   CT_IRON_ORE,   10, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1230
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1231
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1232
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1233
	MK(_tile_table_fruit_plantation,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1234
	   IT_FOOD_PROCESS,   IT_INVALID,        IT_INVALID,       CHECK_PLANTATION,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1235
	   CT_FRUIT,      10, CT_INVALID,     0, 15,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1236
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1237
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4838_IMPROVED_FARMING_METHODS, STR_483A_INSECT_INFESTATION_CAUSES),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1238
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1239
	MK(_tile_table_rubber_plantation,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1240
	   IT_FACTORY_2,      IT_INVALID,        IT_INVALID,       CHECK_PLANTATION,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1241
	   CT_RUBBER,     10, CT_INVALID,     0, 15,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1242
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1243
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4838_IMPROVED_FARMING_METHODS, STR_483A_INSECT_INFESTATION_CAUSES),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1244
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1245
	MK(_tile_table_water_supply,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1246
	   IT_WATER_TOWER,    IT_INVALID,        IT_INVALID,       CHECK_WATER,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1247
	   CT_WATER,      12, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1248
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1249
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1250
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1251
	MK(_tile_table_water_tower,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1252
	   IT_WATER_SUPPLY,   IT_INVALID,        IT_INVALID,       CHECK_WATER,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1253
	   CT_INVALID,     0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1254
	   CT_WATER,          CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1255
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1256
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1257
	MK(_tile_table_factory2,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1258
	   IT_RUBBER_PLANTATION, IT_COPPER_MINE, IT_LUMBER_MILL,   CHECK_PLANTATION,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1259
	   CT_GOODS,       0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1260
	   CT_RUBBER,         CT_COPPER_ORE,     CT_WOOD,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1261
	   STR_4833_SUPPLY_PROBLEMS_CAUSE_TO,    STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1262
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1263
	MK(_tile_table_farm2,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1264
	   IT_FOOD_PROCESS,   IT_INVALID,        IT_INVALID,       CHECK_PLANTATION,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1265
	   CT_MAIZE,      11, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1266
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1267
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4838_IMPROVED_FARMING_METHODS, STR_483A_INSECT_INFESTATION_CAUSES),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1268
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1269
	MK(_tile_table_lumber_mill,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1270
	   IT_FACTORY_2,      IT_INVALID,        IT_INVALID,       CHECK_LUMBERMILL,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1271
	   CT_WOOD,        0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1272
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1273
	   STR_4834_LACK_OF_NEARBY_TREES_CAUSES, STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1274
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1275
	MK(_tile_table_cotton_candy,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1276
	   IT_CANDY_FACTORY,  IT_INVALID,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1277
	   CT_COTTON_CANDY, 13, CT_INVALID,   0, 30,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1278
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1279
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4838_IMPROVED_FARMING_METHODS, STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1280
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1281
	MK(_tile_table_candy_factory,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1282
	   IT_COTTON_CANDY,   IT_TOFFEE_QUARRY,  IT_SUGAR_MINE,    CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1283
	   CT_CANDY,       0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1284
	   CT_SUGAR,          CT_TOFFEE,         CT_COTTON_CANDY,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1285
	   STR_4833_SUPPLY_PROBLEMS_CAUSE_TO,    STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1286
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1287
	MK(_tile_table_battery_farm,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1288
	   IT_TOY_FACTORY,    IT_INVALID,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1289
	   CT_BATTERIES,  11, CT_INVALID,     0, 30,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1290
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1291
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4838_IMPROVED_FARMING_METHODS, STR_483A_INSECT_INFESTATION_CAUSES),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1292
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1293
	MK(_tile_table_cola_wells,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1294
	   IT_FIZZY_DRINK_FACTORY, IT_INVALID,   IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1295
	   CT_COLA,       12, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1296
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1297
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1298
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1299
	MK(_tile_table_toy_shop,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1300
	   IT_TOY_FACTORY,    IT_INVALID,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1301
	   CT_INVALID,     0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1302
	   CT_TOYS,           CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1303
	   STR_4833_SUPPLY_PROBLEMS_CAUSE_TO,    STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1304
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1305
	MK(_tile_table_toy_factory,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1306
	   IT_PLASTIC_FOUNTAINS, IT_BATTERY_FARM, IT_TOY_SHOP,     CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1307
	   CT_TOYS,        0, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1308
	   CT_PLASTIC,        CT_BATTERIES,      CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1309
	   STR_4833_SUPPLY_PROBLEMS_CAUSE_TO,    STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1310
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1311
	MK(_tile_table_plastic_fountain,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1312
	   IT_TOY_FACTORY,    IT_INVALID,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1313
	   CT_PLASTIC,    14, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1314
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1315
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1316
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1317
	MK(_tile_table_fizzy_drink,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1318
	   IT_COLA_WELLS,     IT_BUBBLE_GENERATOR, IT_INVALID,     CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1319
	   CT_FIZZY_DRINKS, 0, CT_INVALID,    0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1320
	   CT_COLA,           CT_BUBBLES,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1321
	   STR_4833_SUPPLY_PROBLEMS_CAUSE_TO,    STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1322
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1323
	MK(_tile_table_bubble_generator,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1324
	   IT_FIZZY_DRINK_FACTORY, IT_INVALID,   IT_INVALID,       CHECK_BUBBLEGEN,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1325
	   CT_BUBBLES,    13, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1326
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1327
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1328
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1329
	MK(_tile_table_toffee_quarry,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1330
	   IT_CANDY_FACTORY,  IT_INVALID,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1331
	   CT_TOFFEE,     10, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1332
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1333
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1334
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1335
	MK(_tile_table_sugar_mine,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1336
	   IT_CANDY_FACTORY,  IT_INVALID,        IT_INVALID,       CHECK_NOTHING,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1337
	   CT_SUGAR,      11, CT_INVALID,     0, 5,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1338
	   CT_INVALID,        CT_INVALID,        CT_INVALID,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1339
	   STR_4832_ANNOUNCES_IMMINENT_CLOSURE,  STR_4835_INCREASES_PRODUCTION,     STR_4839_PRODUCTION_DOWN_BY_50),
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1340
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1341
#undef MK
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1342
3663
548dfb4ad4cc (svn r4578) CodeChange : Cleanup of industry_cmd (Step-2).
belugas
parents: 3662
diff changeset
  1343
const byte _industry_type_costs[] = {
3669
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1344
	210,  30,  28, 200,  31, 240,  26,  26,  27, 250, 205, 220, 193,  26,
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1345
	 28, 208,  19, 213, 220, 225, 218, 199,  14,  26, 250,  17, 195,  26,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1346
	187, 193,  17,  20, 192,  22, 203, 213, 210
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1347
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1348
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 909
diff changeset
  1349
const byte _build_industry_types[4][12] = {
3669
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1350
	{  1,  2,  4,  6,  8,  0,  3,  5,  9, 11, 18 },
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1351
	{  1, 14,  4, 13,  7,  0,  3,  9, 11, 15 },
753648f181a0 (svn r4584) CodeChange : Cleanup of industry_cmd (Step-3).
belugas
parents: 3663
diff changeset
  1352
	{ 25, 13,  4, 23, 22, 11, 17, 10, 24, 19, 20, 21 },
1786
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 909
diff changeset
  1353
	{ 27, 30, 31, 33, 26, 28, 29, 32, 34, 35, 36 },
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 909
diff changeset
  1354
};
7cfd46c3fcc4 (svn r2290) - CodeChange: protect the next batch of commands. This brings us to a total of 61, which is 53% :)
Darkvater
parents: 909
diff changeset
  1355
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1356
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1357
static const byte _industry_create_table_0[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1358
	4, 4,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1359
	5, 3,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1360
	5, 2,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1361
	8, 0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1362
	5, 1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1363
	4, 11,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1364
	5, 18,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1365
	9, 9,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1366
	5, 8,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1367
	5, 6,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1368
	0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1369
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1370
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1371
static const byte _industry_create_table_1[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1372
	4, 4,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1373
	5, 3,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1374
	5, 14,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1375
	8, 0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1376
	5, 1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1377
	5, 11,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1378
	5, 13,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1379
	9, 9,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1380
	4, 15,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1381
	5, 7,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1382
	6, 16,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1383
	0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1384
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1385
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1386
static const byte _industry_create_table_2[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1387
	4, 4,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1388
	5, 11,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1389
	5, 16,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1390
	4, 13,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1391
	4, 17,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1392
	4, 10,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1393
	4, 19,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1394
	4, 20,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1395
	4, 21,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1396
	8, 22,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1397
	4, 13,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1398
	4, 23,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1399
	2, 24,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1400
	0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1401
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1402
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1403
static const byte _industry_create_table_3[] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1404
	5, 26,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1405
	5, 27,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1406
	4, 28,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1407
	5, 29,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1408
	4, 30,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1409
	5, 31,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1410
	5, 32,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1411
	4, 33,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1412
	5, 34,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1413
	5, 35,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1414
	4, 36,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1415
	0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1416
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1417
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1418
static const byte * const _industry_create_table[4] = {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1419
	_industry_create_table_0,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1420
	_industry_create_table_1,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1421
	_industry_create_table_2,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1422
	_industry_create_table_3,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1423
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1424
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1425
2598
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1426
#define PAS CT_PASSENGERS
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1427
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1428
#define COL CT_COAL
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1429
#define RUB CT_RUBBER
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1430
#define SUG CT_SUGAR
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1431
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1432
#define MAL CT_MAIL
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1433
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1434
#define OIL CT_OIL
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1435
#define TOY CT_TOYS
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1436
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1437
#define LIV CT_LIVESTOCK // Fruit too
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1438
#define BAT CT_BATTERIES
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1439
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1440
#define GRA CT_GRAIN
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1441
#define WHT CT_WHEAT // Maize too
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1442
#define TOF CT_TOFFEE
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1443
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1444
#define WOD CT_WOOD
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1445
#define CLA CT_COLA
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1446
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1447
#define IRN CT_IRON_ORE
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1448
#define COP CT_COPPER_ORE
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1449
#define CCY CT_COTTON_CANDY
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1450
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1451
#define STL CT_STEEL
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1452
#define PAP CT_PAPER
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1453
#define WAT CT_WATER
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1454
#define BBL CT_BUBBLES
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1455
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1456
#define VAL CT_VALUABLES
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1457
#define GLD CT_GOLD // Diamonds too
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1458
#define PLC CT_PLASTIC
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1459
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1460
#define INV CT_INVALID
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1461
3494
ba64f1689870 (svn r4345) -Codechange: Similar to airport tiles, rename _industry_map5_ arrays to _industry_sections
celestar
parents: 2598
diff changeset
  1462
static const CargoID _industry_section_accepts_1[] = {
2598
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1463
	INV, INV, INV, PAS, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1464
	PAS, INV, INV, PAS, PAS, PAS, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1465
	INV, INV, INV, INV, INV, INV, INV, PAS,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1466
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1467
	INV, PAS, PAS, INV, INV, INV, INV, GRA,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1468
	GRA, GRA, GRA, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1469
	INV, INV, PAS, PAS, PAS, PAS, PAS, PAS,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1470
	PAS, PAS, PAS, PAS, WHT, WHT, WHT, WHT,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1471
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1472
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1473
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1474
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1475
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1476
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1477
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1478
	INV, COP, COP, COP, COP, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1479
	INV, INV, INV, CCY, CCY, CCY, CCY, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1480
	INV, INV, INV, INV, INV, INV, BAT, BAT,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1481
	BAT, BAT, BAT, BAT, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1482
	INV, INV, INV, INV, BBL, BBL, BBL, BBL,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1483
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1484
	INV, INV, INV, INV, INV, INV, INV
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1485
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1486
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1487
3494
ba64f1689870 (svn r4345) -Codechange: Similar to airport tiles, rename _industry_map5_ arrays to _industry_sections
celestar
parents: 2598
diff changeset
  1488
static const CargoID _industry_section_accepts_2[] = {
2598
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1489
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1490
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1491
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1492
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1493
	INV, INV, INV, INV, INV, INV, INV, STL,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1494
	STL, STL, STL, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1495
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1496
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1497
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1498
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1499
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1500
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1501
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1502
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1503
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1504
	INV, WOD, WOD, WOD, WOD, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1505
	INV, INV, INV, TOF, TOF, TOF, TOF, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1506
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1507
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1508
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1509
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1510
	INV, INV, INV, INV, INV, INV, INV
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1511
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1512
3494
ba64f1689870 (svn r4345) -Codechange: Similar to airport tiles, rename _industry_map5_ arrays to _industry_sections
celestar
parents: 2598
diff changeset
  1513
static const CargoID _industry_section_accepts_3[] = {
2598
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1514
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1515
	COL, INV, INV, INV, INV, WOD, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1516
	INV, INV, INV, INV, OIL, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1517
	PAS, MAL, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1518
	INV, INV, INV, INV, INV, INV, INV, LIV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1519
	LIV, LIV, LIV, PAP, PAP, PAP, PAP, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1520
	INV, INV, INV, INV, IRN, IRN, IRN, IRN,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1521
	IRN, IRN, VAL, VAL, LIV, LIV, LIV, LIV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1522
	WOD, WOD, WOD, WOD, WOD, WOD, WOD, WOD,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1523
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1524
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1525
	INV, GLD, GLD, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1526
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1527
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1528
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1529
	WAT, RUB, RUB, RUB, RUB, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1530
	INV, INV, INV, SUG, SUG, SUG, SUG, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1531
	INV, INV, TOY, TOY, TOY, TOY, PLC, PLC,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1532
	PLC, PLC, PLC, PLC, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1533
	INV, INV, INV, INV, CLA, CLA, CLA, CLA,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1534
	INV, INV, INV, INV, INV, INV, INV, INV,
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1535
	INV, INV, INV, INV, INV, INV, INV
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1536
};
2598
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1537
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1538
#undef PAS
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1539
#undef COL
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1540
#undef RUB
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1541
#undef SUG
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1542
#undef MAL
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1543
#undef OIL
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1544
#undef TOY
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1545
#undef LIV
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1546
#undef BAT
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1547
#undef GRA
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1548
#undef WHT
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1549
#undef TOF
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1550
#undef WOD
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1551
#undef CLA
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1552
#undef IRN
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1553
#undef COP
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1554
#undef CCY
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1555
#undef STL
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1556
#undef PAP
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1557
#undef WAT
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1558
#undef BBL
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1559
#undef VAL
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1560
#undef GLD
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1561
#undef PLC
d69238b81415 (svn r3135) Use symbolic names in the tables, which hold the information about accepted goods of industry tiles, instead of magic numbers
tron
parents: 2186
diff changeset
  1562
#undef INV