summaryrefslogtreecommitdiff
path: root/docs/landscape.html
blob: db5fcd3b323dfe283cdb1c9c6dd6222e6d62e4f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>

<head>
 <meta name="Author" content="Marcin Grzegorczyk">
 <meta name="Description" content="Structure of OpenTTD (OTTD) landscape arrays">
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 <title>OpenTTD Landscape Internals</title>
</head>

<body>

 <h3><a name="Landscape">Landscape</a></h3>
 <p>Seven attributes (counting &quot;<span style="font-weight: bold;">type_height</span>&quot;) hold the informations about a tile.<BR>
  These attributes are referred to as
  "<span style="font-weight: bold;">type_height</span>",
  "<span style="font-weight: bold;">m1</span>", "<span style="font-weight: bold;">m2</span>",
  "<span style="font-weight: bold;">m3</span>", "<span style="font-weight: bold;">m4</span>",
  "<span style="font-weight: bold;">m5</span>" and "<span style="font-weight: bold;">m6</span>".<BR>
  The most important value is the class of a tile, stored in the upper 4 bits
  of the <span style="font-weight: bold;">type_height</span> attribute. The lower 4 bits are used to encode the height and
  slope data.
 </p>

 Special Attribute : <span style="font-weight: bold;">m6</span>. There are 4 bits of it that are used accross multiple tile classes<br>
 <ul>
  <li>
   <a name = "bridge_direction">
   Bits 7..6 :
   <table border="1">
    <tr bgcolor="#CCCCCC"><td colspan="2">Presence and direction of bridge above,<br>for tiles that support this.</td></tr>
    <tr><td><tt>00</tt>&nbsp; </td><td>no bridge</td></tr>
    <tr><td><tt>01</tt>&nbsp; </td><td>Axis X (North-East)</td></tr>
    <tr><td><tt>02</tt>&nbsp; </td><td>Axis Y (South-West)</td></tr>
   </table>
  </li>
  <li>
   <a name = "tropic_zone">
   Bits 1..0 :
   <table border="1">
    <tr bgcolor="#CCCCCC"><td colspan="2">Only meaningfull in tropic climate.<br>It contains the definition of the two available zones</td></tr>
    <tr><td><tt>00</tt>&nbsp; </td><td>invalid zone</td></tr>
    <tr><td><tt>01</tt>&nbsp; </td><td>desert</td></tr>
    <tr><td><tt>02</tt>&nbsp; </td><td>rain forest</td></tr>
   </table>
   In any other climate, those 2 bits are free of use.
  </li>
 </ul>
 <p>
  For a graphical representation of the tile-layout have a look at
  <a href="landscape_grid.html">Landscape grid</a> page.
 </p>

  The <a name="OwnershipInfo">owner of a tile</a>, as frequently associated with attribute m1,
  can be either players (human or AI) or "Game entities".
  They are identified using:
  <table border="1">
   <tr><td><tt>00</tt>&nbsp; </td><td align=left>current player</td></tr>
   <tr><td><tt>01..08</tt>&nbsp; </td><td align=left>AI or network players</td></tr>
   <tr><td><tt>0F</tt>&nbsp; </td><td align=left>a town owns the tile</td></tr>
   <tr><td><tt>10</tt>&nbsp; </td><td align=left>nobody owns the tile</td></tr>
   <tr><td><tt>11</tt>&nbsp; </td><td align=left>"water" owns the tile</td></tr>
   <tr><td><tt>FF</tt>&nbsp; </td><td align=left>spectator in MP or in scenario editor</td></tr>
  </table>

 <p>OTTD's class-specific periodic tile processing routine is called once every +256 ticks for each tile.</p>

 <table border=1 cellpadding=3>
  <tr bgcolor="#0099FF">
   <th align=left><font color="#FFFFFF">Class</font></th>
   <th align=left><font color="#FFFFFF">Meaning & details of encoding</font></th>
  </tr>
  <tr bgcolor="#CCCCCC">
   <td align=left><strong><a name="Class0"><tt> 0 </tt></a></strong></td>
   <td align=left>&nbsp;<strong>Ground </strong></td>
  </tr>
  <tr>
   <td valign=top nowrap>&nbsp;</td>
   <td>
    <ul>
     <li>m1: <a href="#OwnershipInfo">owner</a> of the tile (normally <tt>10</tt>)</li>
     <li>m4 bits 7..5: type of hedge on the SW border of the tile (1 through 6, or 0=none)</li>
     <li>m4 bits 4..2: same as 7..5, but for the SE border</li>
     <li>m5 bits 7..5: update counter, incremented on every periodic processing for tile types,
         other than <tt>03</tt>, <tt>07</tt>, <tt>0B</tt>, <tt>10</tt> and above.<BR>
         on wraparound, the tile is updated (for fields, the type of fields in m3 is increased, for other types the tile type in m5 is increased).<BR>
         For snow and desert, these bits are not used, tile is updated on every periodic processing.</li>
     <li>m5 bits 4..0: tile type:
      <table>
       <tr>
        <td nowrap valign=top><tt>00</tt>&nbsp; </td>
        <td align=left>bare land</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>01</tt>&nbsp; </td>
        <td align=left>1/3 grass</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>02</tt>&nbsp; </td>
        <td align=left>2/3 grass</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>03</tt>&nbsp; </td>
        <td align=left>full grass</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>07</tt>&nbsp; </td>
        <td align=left>rough land</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>0B</tt>&nbsp; </td>
        <td align=left>rocks</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>0F</tt>&nbsp; </td>
        <td align=left>fields; type of fields in m3 bits 3..0 (legal values: 0 through 9)<br>
             m2: Index into the array of industries (farms), INVALID_INDUSTRY (0xFFFF) if farm has been removed</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>10</tt>&nbsp; </td>
        <td align=left>1/4 snow</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>11</tt>&nbsp; </td>
        <td align=left>2/4 snow</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>12</tt>&nbsp; </td>
        <td align=left>3/4 snow</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>13</tt>&nbsp; </td>
        <td align=left>full snow</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>15</tt>&nbsp; </td>
        <td align=left>partial desert</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>17</tt>&nbsp; </td>
        <td align=left>full desert</td>
       </tr>
      </table>
     </li>
     <li>m6 bits 7..6 : Possibility of a bridge above, in the <a href="#bridge_direction">direction specified</a></li>
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
    </ul>
   </td>
  </tr>

  <tr bgcolor="#CCCCCC">
   <td valign=top nowrap><strong><a name="Class1"><tt> 1</tt></a></strong></td>
   <td><strong>Railway tracks</strong></td>
  </tr>
  <tr>
   <td valign=top nowrap>&nbsp;</td>
   <td>
    <ul>
     <li>m5 bit 7 clear: railway track
      <ul>
       <li>m1: <a href="#OwnershipInfo">owner</a> of the track</li>
       <li>m3 bits 3..0 = <a name="TrackType">track type</a>:
        <table>
         <tr>
          <td><tt>0</tt>&nbsp; </td>
          <td>conventional railway</td>
         </tr>

         <tr>
          <td><tt>1</tt>&nbsp; </td>
          <td>electrified railway</td>
         </tr>

         <tr>
          <td><tt>2</tt>&nbsp; </td>
          <td>monorail</td>
         </tr>

         <tr>
          <td><tt>3</tt>&nbsp; </td>
          <td>maglev</td>
         </tr>
        </table>
       </li>
       <li>m4 bits 3..0:
        <table>
         <tr>
          <td nowrap valign=top><tt>0</tt>&nbsp; </td>
          <td align=left>on bare land</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>1</tt>&nbsp; </td>
          <td align=left>on grass, no fences</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>2</tt>&nbsp; </td>
          <td align=left>fence on the NW side</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>3</tt>&nbsp; </td>
          <td align=left>fence on the SE side</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>4</tt>&nbsp; </td>
          <td align=left>fences on the NW and SE sides</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>5</tt>&nbsp; </td>
          <td align=left>fence on the NE side</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>6</tt>&nbsp; </td>
          <td align=left>fence on the SW side</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>7</tt>&nbsp; </td>
          <td align=left>fences on the NE and SW sides</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>8</tt>&nbsp; </td>
          <td align=left>fence on the E side (track in the W corner)</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>9</tt>&nbsp; </td>
          <td align=left>fence on the W side (track in the E corner)</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>A</tt>&nbsp; </td>
          <td align=left>fence on the S side (track in the N corner)</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>B</tt>&nbsp; </td>
          <td align=left>fence on the N side (track in the S corner)</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>C</tt>&nbsp; </td>
          <td align=left>on snow or desert</td>
         </tr>
        </table>
       </li>
       <li>m5 bits 5..0: track layout: bit set = track present:
        <table>
         <tr>
          <td nowrap valign=top>bit 0: </td>
          <td align=left>in the X direction</td>
         </tr>

         <tr>
          <td nowrap valign=top>bit 1: </td>
          <td align=left>in the Y direction</td>
         </tr>

         <tr>
          <td nowrap valign=top>bit 2: </td>
          <td align=left>in the north corner (direction W-E)</td>
         </tr>

         <tr>
          <td nowrap valign=top>bit 3: </td>
          <td align=left>in the south corner (direction W-E)</td>
         </tr>

         <tr>
          <td nowrap valign=top>bit 4: </td>
          <td align=left>in the west corner (direction N-S)</td>
         </tr>

         <tr>
          <td nowrap valign=top>bit 5: </td>
          <td align=left>in the east corner (direction N-S)</td>
         </tr>
        </table>
       </li>
      </ul>
     </li>
     <li>m5 bit 7 set: railway depot / checkpoints
      <ul>
       <li>m1: <a href="#OwnershipInfo">owner</a> of the depot / checkpoint</li>
       <li>m2: For waypoints, index into the array of waypoints.</li>
       <li>m3 bits 3..0 = <a href="#TrackType">track type</a></li>
       <li>m4 bits 3..0 = ground type, as per m4 bits 3..0 for railway tiles.</li>
       <li>m5 value C0..C3: railway depot
        <table>
         <tr>
          <td colspan=2>m5 bits 1..0</td>
         </tr>

         <tr>
          <td colspan=2>direction: exit towards:</td>
         </tr>

         <tr>
          <td><tt>00</tt>&nbsp; </td>
          <td>NE</td>
         </tr>

         <tr>
          <td><tt>01</tt>&nbsp; </td>
          <td>SE</td>
         </tr>

         <tr>
          <td><tt>02</tt>&nbsp; </td>
          <td>SW</td>
         </tr>

         <tr>
          <td><tt>03</tt>&nbsp; </td>
          <td>NW</td>
         </tr>
        </table>
       </li>
       <li>m5 value 80..81: checkpoint
        <table>
         <tr>
          <td colspan=2>bit 0</td>
         </tr>

         <tr>
          <td>clear</td>
          <td>in X direction</td>
         </tr>

         <tr>
          <td>set</td>
          <td>in Y direction</td>
         </tr>
        </table>
       </li>
      </ul>
    </li>
    <li>m5 bit 6 set = with signals:
     <ul>
      <li>m2 bits 7..4: bit clear = signal shows red; same bits as in m3</li>
      <li>m2 bit 2: set = semaphore signals, clear = light signals </li>
      <li>m2 bits 1..0 : type of signal
       <table>
         <tr>
          <td nowrap="nowrap" valign="top"><tt>00</tt>: </td>
          <td align="left">normal signals</td>
         </tr>

         <tr>
          <td nowrap="nowrap" valign="top"><tt>01</tt>: </td>
          <td align="left">pre-signals</td>
         </tr>

         <tr>
          <td nowrap="nowrap" valign="top"><tt>10</tt>: </td>
          <td align="left">exit-signals</td>
         </tr>

         <tr>
          <td nowrap="nowrap" valign="top"><tt>11</tt>: </td>
          <td align="left">combo-signals</td>
         </tr>
        </table>
       </li>

       <li>m3 bits 7..4: bit set = signal present:
        <ul>
         <li>For track in the X direction:
          <table>
           <tr>
            <td nowrap="nowrap" valign="top">bit 6: </td>
            <td align="left">signal in the SW direction</td>
           </tr>

           <tr>
            <td nowrap="nowrap" valign="top">bit 7: </td>
            <td align="left">signal in the NE direction</td>
           </tr>
          </table>
         </li>

         <li>For track in the Y direction:
          <table>
           <tr>
            <td nowrap="nowrap" valign="top">bit 6: </td>
            <td align="left">signal in the NW direction</td>
           </tr>

           <tr>
            <td nowrap="nowrap" valign="top">bit 7: </td>
            <td align="left">signal in the SE direction</td>
           </tr>
          </table>
         </li>

         <li>For tracks in the W-E direction:
          <table>
           <tr>
            <td nowrap="nowrap" valign="top">bit 4: </td>
            <td align="left">signal in the W direction on the track in the S corner</td>
           </tr>

           <tr>
            <td nowrap="nowrap" valign="top">bit 5: </td>
            <td align="left">signal in the E direction on the track in the S corner</td>
           </tr>

           <tr>
            <td nowrap="nowrap" valign="top">bit 6: </td>
            <td align="left">signal in the W direction on the track in the N corner</td>
           </tr>
           <tr>
            <td nowrap="nowrap" valign="top">bit 7: </td>
            <td align="left">signal in the E direction on the track in the N corner</td>
           </tr>
          </table>
         </li>

         <li>For tracks in the N-S direction:
          <table>
           <tr>
            <td nowrap="nowrap" valign="top">bit 4: </td>
            <td align="left">signal in the S direction on the track in the E corner</td>
           </tr>

           <tr>
            <td nowrap="nowrap" valign="top">bit 5: </td>
            <td align="left">signal in the N direction on the track in the E corner</td>
           </tr>

           <tr>
            <td nowrap="nowrap" valign="top">bit 6: </td>
            <td align="left">signal in the S direction on the track in the W corner</td>
           </tr>

           <tr>
            <td nowrap="nowrap" valign="top">bit 7: </td>
            <td align="left">signal in the N direction on the track in the W corner</td>
           </tr>
          </table>
         </li>
        </ul>
       </li>
      </ul>
     </li>
     <li>m6 bits 7..6 : Possibility of a bridge above, in the <a href="#bridge_direction">direction specified</a></li>
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
    </ul>
   </td>
  </tr>

  <tr bgcolor="#CCCCCC">
   <td valign=top nowrap><strong><a name="Class2"><tt> 2</tt></a></strong></td>
   <td><strong>Roads</strong></td>
  </tr>
  <tr>
   <td valign=top nowrap>&nbsp;</td>
   <td>
    <ul>
     <li>m5 bits 7..4 clear: road
      <ul>
       <li>m1: <a href="#OwnershipInfo">owner</a> of the road</li>
       <li>m2: Index into the array of towns, 0 for non-town roads</li>
       <li>m3 bit 7 set = on snow or desert</li>
       <li>m3 bits 6..4:
        <table>
         <tr>
          <td><tt>0</tt>&nbsp; </td>
          <td>on bare land</td>
         </tr>
         <tr>
          <td><tt>1</tt>&nbsp; </td>
          <td>on grass</td>
         </tr>
         <tr>
          <td><tt>2</tt>&nbsp; </td>
          <td>paved</td>
         </tr>
         <tr>
          <td><tt>3</tt>&nbsp; </td>
          <td>with streetlights</td>
         </tr>
         <tr>
          <td><tt>5</tt>&nbsp; </td>
          <td>tree-lined</td>
         </tr>
         <tr>
          <td><tt>6</tt>&nbsp; </td>
          <td>on grass with road works</td>
         </tr>
         <tr>
          <td><tt>7</tt>&nbsp; </td>
          <td>paved with road works</td>
         </tr>
        </table>
       </li>
       <li>m3 bits 3..0: counter for the roadworks</li>
       <li>m5 bits 3..0: road layout: bit set = road piece present:
        <table>
         <tr>
          <td nowrap valign=top>bit 0: </td>
          <td align=left>NW piece</td>
         </tr>
         <tr>
          <td nowrap valign=top>bit 1: </td>
          <td align=left>SW piece</td>
         </tr>
         <tr>
          <td nowrap valign=top>bit 2: </td>
          <td align=left>SE piece</td>
         </tr>
         <tr>
          <td nowrap valign=top>bit 3: </td>
          <td align=left>NE piece</td>
         </tr>
        </table>
       </li>
      </ul>
     </li>
     <li>m5 bit 5 set: road depot
      <ul>
       <li>m1: <a href="#OwnershipInfo">owner</a> of the depot</li>
       <li>m3 bit 7 set = on snow or desert (not displayed, but set internally)</li>
       <li>m5 bits 3..0 - direction: exit towards: <tt>0</tt> = NE, <tt>1</tt> = SE, <tt>2</tt> = SW, <tt>3</tt> = NW</li>
      </ul>
     </li>
     <li>m5 bit 4 set, bits 7..5 clear: level crossing
      <ul>
       <li>m1: <a href="#OwnershipInfo">owner</a> of the railway track</li>
       <li>m2: Index into the array of towns, 0 for non-town roads</li>
       <li>m3 bit 7 set = on snow or desert</li>
       <li>m3 bits 6..4: <tt>0</tt> - on bare land, <tt>1</tt> - on grass, <tt>2</tt> or higher - paved</li>
       <li>m3 bits 3..0: <a href="#TrackType">track type</a></li>
       <li>m4: <a href="#OwnershipInfo">owner</a> of the road</li>
       <li>m5 bit 3: clear - road in the X direction, set - road in the Y direction (railway track always perpendicular)</li>
       <li>m5 bit 2: set if crossing lights are on</li>
      </ul>
     </li>
     <li>m6 bits 7..6 : Possibility of a bridge above, in the <a href="#bridge_direction">direction specified</a></li>
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
    </ul>
   </td>
  </tr>

  <tr bgcolor="#CCCCCC">
   <td valign=top nowrap><strong><a name="Class3"><tt> 3</tt></a></strong></td>
   <td><strong>Town building </strong></td>
  </tr>
  <tr>
   <td valign=top nowrap>&nbsp;</td>
   <td>
    <ul>
     <li>m2: Index into the array of towns</li>
     <li>m3 bits 7..6: stage of construction (<tt>3</tt> = completed)</li>
     <li>m4: <a name="HouseTypes">town building type</a>:<br>
      <small>Note: In the climate list, 'sub-arctic' means below the snow line, and 'snow' means above the snow line in the sub-arctic climate.</small>
      <table>
       <tr>
        <th align=left>Type&nbsp;</th>
        <th align=left>Size&nbsp;</th>
        <th align=left>Climates&nbsp;</th>
        <th align=left>Description</th>
       </tr>

       <tr>
        <td nowrap valign=top><tt>00</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>01</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>02</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>small block of flats</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>03</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>church</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>04</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate, sub-arctic, sub-tropical</td>
        <td align=left>large office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>05</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>large office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>06</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>town houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>07</tt>..<tt>08</tt>&nbsp; </td>
        <td>1&times;2</td>
        <td>temperate</td>
        <td align=left>hotel</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>09</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate, sub-arctic, sub-tropical&nbsp;&nbsp;</td>
        <td align=left>statue</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>0A</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate, sub-arctic, sub-tropical</td>
        <td align=left>fountain</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>0B</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>park (with a pond)</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>0C</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>park (with an alley)</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>0D</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>0E</tt>..<tt>10</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>various types of shops and offices</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>11</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate, sub-arctic, sub-tropical</td>
        <td align=left>modern office building</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>12</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>warehouse</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>13</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>office block (with spiral stairway on the side)</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>14</tt>..<tt>17</tt>&nbsp; </td>
        <td>2&times;2</td>
        <td>temperate</td>
        <td align=left>stadium</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>18</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>old houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>19</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>cottages</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>1A</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>1B</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>flats</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>1C</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>1D</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>shops and offices</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>1E</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate, sub-tropical</td>
        <td align=left>shops and offices</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>1F</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>theatre</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>20</tt>..<tt>23</tt>&nbsp; </td>
        <td>2&times;2</td>
        <td>temperate, sub-arctic, sub-tropical</td>
        <td align=left>stadium (modern style)</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>24</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate, sub-arctic, sub-tropical</td>
        <td align=left>offices (the modern 'vertical tube' style)</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>25</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-arctic</td>
        <td align=left>houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>26</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>27</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>temperate</td>
        <td align=left>cinema</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>28</tt>..<tt>2B</tt>&nbsp; </td>
        <td>2&times;2</td>
        <td>temperate</td>
        <td align=left>shopping mall</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>2C</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-arctic</td>
        <td align=left>flats</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>2D</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>flats</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>2E</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-arctic</td>
        <td align=left>houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>2F</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>30</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-arctic</td>
        <td align=left>houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>31</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>32</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-arctic, sub-tropical</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>33</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>34</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-arctic</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>35</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>36</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-arctic, sub-tropical</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>37</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>38</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-arctic</td>
        <td align=left>houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>39</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>3A</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-arctic</td>
        <td align=left>shops and offices</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>3B</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>shops and offices</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>3C</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-arctic</td>
        <td align=left>church</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>3D</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>church</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>3E</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-arctic</td>
        <td align=left>houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>3F</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>40</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-arctic</td>
        <td align=left>shops and offices</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>41</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>shops and offices</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>42</tt>..<tt>43</tt>&nbsp; </td>
        <td>1&times;2</td>
        <td>sub-arctic</td>
        <td align=left>hotel</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>44</tt>..<tt>45</tt>&nbsp; </td>
        <td>1&times;2</td>
        <td>snow</td>
        <td align=left>hotel</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>46</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-arctic, sub-tropical</td>
        <td align=left>shops and offices</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>47</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>shops and offices</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>48</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-arctic</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>49</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>snow</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>4A</tt>..<tt>4B</tt>&nbsp; </td>
        <td>2&times;1</td>
        <td>sub-arctic</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>4C</tt>..<tt>4D</tt>&nbsp; </td>
        <td>2&times;1</td>
        <td>snow</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>4E</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-tropical</td>
        <td align=left>houses (with a tree in a corner)</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>4F</tt>, <tt>50</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-tropical</td>
        <td align=left>houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>51</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-tropical</td>
        <td align=left>houses (suburb-type)</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>52</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-tropical</td>
        <td align=left>flats</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>53</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-tropical</td>
        <td align=left>church</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>54</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-tropical</td>
        <td align=left>houses (with two trees in front)</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>55</tt>, <tt>56</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-tropical</td>
        <td align=left>flats</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>57</tt>..<tt>58</tt>&nbsp; </td>
        <td>2&times;1</td>
        <td>sub-tropical</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>59</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-tropical</td>
        <td align=left>flats</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>5A</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>sub-tropical</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>5B</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>toyland</td>
        <td align=left>church</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>5C</tt>..<tt>61</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>toyland</td>
        <td align=left>various types of toyland houses</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>62</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>toyland</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>63</tt>..<tt>64</tt>&nbsp; </td>
        <td>1&times;2</td>
        <td>toyland</td>
        <td align=left>houses ('shoe' style)</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>65</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>toyland</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>66</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>toyland</td>
        <td align=left>igloo</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>67</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>toyland</td>
        <td align=left>tepees</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>68</tt>, <tt>69</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>toyland</td>
        <td align=left>shops and offices</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>6A</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>toyland</td>
        <td align=left>tall office block</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>6B</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>toyland</td>
        <td align=left>statue</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>6C</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>toyland</td>
        <td align=left>teapot-house</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>6D</tt>&nbsp; </td>
        <td>1&times;1</td>
        <td>toyland</td>
        <td align=left>piggy-bank</td>
       </tr>
      </table>
     </li>
     <li>m5 bits 2..0: construction counter, for buildings under construction incremented on every periodic tile processing<br>
         On wraparound the stage of construction in m3 is increased
     </li>
     <li>for large office blocks (types <tt>04</tt> and <tt>05</tt>):
      <ul>
       <li>m1 bits 6..0: position of the lift</li>
       <li>m1 bit 7: if set the lift is moving</li>
       <li>m5 bit 7: if set then m5 bits 5..0 hold the destination floor of the lift, which could be 0..6, except 1.<br>
           So the building has 6 effective floors. This is due to the fact that the first floor is 2 'normal' floors high.<br>
           One 'normal' floor has a height of 6 lift positions.</li>
      </ul>
     </li>
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
    </ul>
   </td>
  </tr>

  <tr bgcolor="#CCCCCC">
   <td valign=top nowrap><strong><a name="Class4"><tt> 4 </tt></a></strong></td>
   <td><strong>Trees </strong></td>
  </tr>
  <tr>
   <td valign=top nowrap>&nbsp;</td>
   <td>
    <ul>
     <li>m1: <a href="#OwnershipInfo">owner</a> (normally <tt>10</tt>)</li>
     <li>m2 bits 5..4:
      <table>

       <tr>
        <td nowrap valign=top><tt>0</tt>&nbsp; </td>
        <td align=left>on grass</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>1</tt>&nbsp; </td>
        <td align=left>on rough land</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>2</tt>&nbsp; </td>
        <td align=left>on snow or desert; m2 bits 7..6 - amount of snow or desert (for desert always set to 3 in TTD)</td>
       </tr>
      </table>
     </li>
     <li>m2 bits 3..0: update counter, incremented on every periodic processing.<br>
          on wraparound the growth status is updated (or, if it's <tt>3</tt>, a random action is taken)</li>
     <li>m3 bits 7..0: type of trees:
      <table>
       <tr>
        <td nowrap valign=top><tt>00</tt>..<tt>0B</tt>&nbsp; </td>
        <td align=left>temperate climate trees</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>0C</tt>..<tt>13</tt>&nbsp; </td>
        <td align=left>sub-arctic climate trees</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>14</tt>..<tt>1A</tt>&nbsp; </td>
        <td align=left>rainforest trees</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>1B</tt> </td>
        <td align=left>cactus plants</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>1C</tt>..<tt>1F</tt>&nbsp; </td>
        <td align=left>sub-tropical climate, non-rainforest, non-desert trees</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>20</tt>..<tt>28</tt>&nbsp; </td>
        <td align=left>toyland trees</td>
       </tr>
      </table>
      <small>Note: the actually displayed set of trees depends on both type and number of trees</small>
     </li>
     <li>m4 bits 7..5: type of hedge on the SW border of the tile (1 through 6, or 0=none)</li>
     <li>m4 bits 4..2: type of hedge on the SE border of the tile (1 through 6, or 0=none)</li>
     <li>m5 bits 7..6: number of trees minus one</li>
     <li>m5 bits 2..0: growth status:
      <table border="0">
       <tr>
        <td><tt>0</tt>..<tt>2</tt>&nbsp;</td>
        <td>one of trees is growing&nbsp;</td>
       </tr>
       <tr>
        <td><tt>3</tt>&nbsp;</td>
        <td>all trees are fully grown&nbsp;</td>
       </tr>
       <tr>
        <td><tt>4</tt>..<tt>6</tt>&nbsp;</td>
        <td>one of trees is withering&nbsp;</td>
       </tr>
      </table>
     </li>
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
    </ul>
   </td>
  </tr>

  <tr bgcolor="#CCCCCC">
   <td valign=top nowrap><strong><a name="Class5"><tt> 5</tt></a></strong></td>
   <td><strong>Station tiles</strong></td>
  </tr>
  <tr>
   <td valign=top nowrap>&nbsp;</td>
   <td>
    <ul>
     <li>m1: <a href="#OwnershipInfo">owner</a> of the station</li>
     <li>m2: index into the array of stations</li>
     <li>m3 bits 7..4: persistent random data for newstations</li>
     <li>m3 bits 3..0: <a href="#TrackType">track type</a> for railway stations, must be 0 for all the other stations</li>
     <li>m4: custom station id; 0 means standard graphics</li>
     <li>m5: tile type:
      <table>
       <tr>
        <td nowrap valign=top><tt>00</tt>..<tt>07</tt>&nbsp; </td>
        <td align=left>railway station
         <table>
          <tr>
           <td><tt>00</tt>..<tt>01</tt>&nbsp; </td>
           <td align=left>open platform</td>
          </tr>
          <tr>
           <td><tt>02</tt>..<tt>03</tt>&nbsp; </td>
           <td align=left>open platform with station building</td>
          </tr>
          <tr>
           <td><tt>04</tt>....<tt>07</tt>&nbsp; </td>
           <td align=left>roofed platform</td>
          </tr>
          <tr>
           <td colspan=2>bit 0: clear = in X direction, set = in Y direction</td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>08</tt>..<tt>33</tt>&nbsp; </td>
        <td align=left>large airport
         <table>
          <tr>
           <td nowrap valign=top><tt>0B</tt>&nbsp; </td>
           <td align=left>pad 1</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>16</tt>..<tt>19</tt>&nbsp; </td>
           <td align=left>runway middle</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>1A</tt>&nbsp; </td>
           <td align=left>runway ending</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>1C</tt>&nbsp; </td>
           <td align=left>control tower</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>20</tt>&nbsp; </td>
           <td align=left>hangar</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>21</tt>&nbsp; </td>
           <td align=left>pad 3</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>22</tt>&nbsp; </td>
           <td align=left>pad 2</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>27</tt>..<tt>32</tt>&nbsp; </td>
           <td align=left>radar (animated)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>33</tt>&nbsp; </td>
           <td align=left>transmitter</td>
          </tr>
          <tr>
           <td colspan=2>The initial layout of a large airport is (rows in Y direction, columns in X direction):
<pre>
1F 1B 1E 33 26 1A
09 24 0B 0C 0D 16
21 1D 23 0E 0F 17
09 22 0D 11 10 18
09 08 14 13 12 19
20 0A 15 1C 27 1A
</pre>
           </td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>34</tt>..<tt>41</tt>&nbsp; </td>
        <td align=left>small airport
         <table>
          <tr>
           <td nowrap valign=top><tt>3A</tt>..<tt>3D</tt>&nbsp; </td>
           <td align=left>field with the wind meter (animated)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>3E</tt>&nbsp; </td>
           <td align=left>runway south ending</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>3F</tt>&nbsp; </td>
           <td align=left>runway middle</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>40</tt>&nbsp; </td>
           <td align=left>runway north ending</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>41</tt>&nbsp; </td>
           <td align=left>hangar</td>
          </tr>
          <tr>
           <td colspan=2>The initial layout of a small airport is (rows in Y direction, columns in X direction):
<pre>
36 3A 40
35 39 3F
34 38 3F
41 37 3E
</pre>
           </td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>42</tt> </td>
        <td align=left>heliport</td>
       </tr>
       <tr>
        <td nowrap valign=top><tt>43</tt>..<tt>46</tt>&nbsp; </td>
        <td align=left>lorry loading area : exit towards:
         <table>
          <tr>
           <td><tt>43</tt>&nbsp; </td>
           <td align=left>NE</td>
          </tr>
          <tr>
           <td><tt>44</tt>&nbsp; </td>
           <td align=left>SE</td>
          </tr>
          <tr>
           <td><tt>45</tt>&nbsp; </td>
           <td align=left>SW</td>
          </tr>
          <tr>
           <td><tt>46</tt>&nbsp; </td>
           <td align=left>NW</td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>47</tt>..<tt>4A</tt>&nbsp; </td>
        <td align=left>bus station : exit towards:
         <table>
          <tr>
           <td><tt>47</tt>&nbsp; </td>
           <td align=left>NE</td>
          </tr>
          <tr>
           <td><tt>48</tt>&nbsp; </td>
           <td align=left>SE</td>
          </tr>
          <tr>
           <td><tt>49</tt>&nbsp; </td>
           <td align=left>SW</td>
          </tr>
          <tr>
           <td><tt>4A</tt>&nbsp; </td>
           <td align=left>NW</td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>4B</tt> </td>
        <td align=left>oilfield</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>4C</tt>..<tt>51</tt>&nbsp; </td>
        <td align=left>ship dock
         <table>
          <tr>
           <td><tt>4C</tt>&nbsp; </td>
           <td align=left>SW coast part</td>
          </tr>
          <tr>
           <td><tt>4D</tt>&nbsp; </td>
           <td align=left>NW coast part</td>
          </tr>
          <tr>
           <td><tt>4E</tt>&nbsp; </td>
           <td align=left>NE coast part</td>
          </tr>
          <tr>
           <td><tt>4F</tt>&nbsp; </td>
           <td align=left>SE coast part</td>
          </tr>
          <tr>
           <td><tt>50</tt>&nbsp; </td>
           <td align=left>X direction water part</td>
          </tr>
          <tr>
           <td><tt>51</tt>&nbsp; </td>
           <td align=left>Y direction water part</td>
          </tr>
         </table>
        </td>
       </tr>
       <tr>
        <td nowrap valign=top><tt>52</tt> </td>
        <td align=left>buoy</td>
       </tr>
       <tr>
        <td nowrap valign=top><tt>53</tt>..<tt>A7</tt>&nbsp; </td>
        <td align=left>used by RichK's larger airports</td>
       </tr>
      </table>
     </li>
     <li>m6 bit 3: 1 when a drive through road stop is built over a town owned road, otherwise 0</li>
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
    </ul>
   </td>
  </tr>

  <tr bgcolor="#CCCCCC">
   <td valign=top nowrap><strong><a name="Class6"><tt> 6 </tt></a></strong></td>
   <td><strong>Water</strong></td>
  </tr>
  <tr>
   <td valign=top nowrap>&nbsp;</td>
   <td>
    <ul>
     <li>m1: <a href="#OwnershipInfo">owner</a> (for water and coasts normally <tt>11</tt>)</li>
     <li>m5: tile type:
      <table>
       <tr>
        <td nowrap valign=top><tt>00</tt>&nbsp; </td>
        <td align=left>water</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>01</tt>&nbsp; </td>
        <td align=left>coast or riverbank</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>10</tt>..<tt>1B</tt>&nbsp; </td>
        <td align=left>canal locks
         <table>
          <tr>
           <td nowrap valign=top><tt>10</tt>&nbsp; </td>
           <td align=left>middle part, (SW-NE direction)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>11</tt>&nbsp; </td>
           <td align=left>middle part, (NW-SE direction)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>12</tt>&nbsp; </td>
           <td align=left>middle part, (NE-SW direction)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>13</tt>&nbsp; </td>
           <td align=left>middle part, (SE-NW direction)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>14</tt>&nbsp; </td>
           <td align=left>lower part, (SW-NE direction)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>15</tt>&nbsp; </td>
           <td align=left>lower part, (NW-SE direction)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>16</tt>&nbsp; </td>
           <td align=left>lower part, (NE-SW direction)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>17</tt>&nbsp; </td>
           <td align=left>lower part, (SE-NW direction)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>18</tt>&nbsp; </td>
           <td align=left>upper part, (SW-NE direction)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>19</tt>&nbsp; </td>
           <td align=left>upper part, (NW-SE direction)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>1A</tt>&nbsp; </td>
           <td align=left>upper part, (NE-SW direction)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>1B</tt>&nbsp; </td>
           <td align=left>upper part, (SE-NW direction)</td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>80</tt>..<tt>83</tt>&nbsp; </td>
        <td align=left>ship depots
         <table>
          <tr>
           <td nowrap valign=top><tt>80</tt>&nbsp; </td>
           <td align=left>ship depot, NE part (X direction)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>81</tt>&nbsp; </td>
           <td align=left>ship depot, SW part (X direction)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>82</tt>&nbsp; </td>
           <td align=left>ship depot, NW part (Y direction)</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>83</tt>&nbsp; </td>
           <td align=left>ship depot, SE part (Y direction)</td>
          </tr>
         </table>
        </td>
       </tr>
      </table>
     </li>
     <li>m6 bits 7..6 : Possibility of a bridge above, in the <a href="#bridge_direction">direction specified</a></li>
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
    </ul>
   </td>
  </tr>

  <tr bgcolor="#CCCCCC">
   <td valign=top nowrap><strong><a name="Class7"><tt> 7 </tt></a></strong></td>
   <td><strong>Void </strong></td>
  </tr>
  <tr>
   <td valign=top nowrap>&nbsp;</td>
   <td>Tiles of this class form an invisible, one tile wide border at the south (bottom) edges of the map,<br>
       so as to protect several algorithms from the consequences of a wraparound at the edges.
   </td>
  </tr>

  <tr bgcolor="#CCCCCC">
   <td valign=top nowrap><strong><a name="Class8"><tt> 8</tt></a></strong></td>
   <td><strong>Industry tile </strong></td>
  </tr>
  <tr>
   <td valign=top nowrap>&nbsp;</td>
   <td>
    <ul>
     <li>m1 bit 7: clear = under construction
      <ul>
       <li>m1 bits 4..2: construction counter, for buildings under construction incremented on every periodic tile processing</li>
       <li>m1 bits 1..0: stage of construction (<tt>3</tt> = completed), incremented when the construction counter wraps around<br>
           the meaning is different for some animated tiles which are never under construction (types <tt>01</tt>, <tt>1E</tt>..<tt>20</tt>, <tt>30</tt>, <tt>58</tt>; see above)</li>
      </ul>
     </li>
     <li>m2: index into the array of industries</li>
     <li>m5: type:<br>
      <small>(note: this is not the same as the industry type, which is stored in the array of industries)</small>

      <table>
       <tr>
        <td nowrap valign=top><tt>00</tt>..<tt>06</tt>&nbsp; </td>
        <td align=left>coal mine
         <table>
          <tr>
           <td nowrap valign=top><tt>00</tt>&nbsp; </td>
           <td align=left>wheel tower when not animated</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>01</tt>&nbsp; </td>
           <td align=left>wheel tower when animated<br>
            animation state in m3 bits 5..0; m3 bit 6 set = sound already generated</td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>07</tt>..<tt>0A</tt>&nbsp; </td>
        <td align=left>power station
         <table>
          <tr>
           <td nowrap valign=top><tt>08</tt>&nbsp; </td>
           <td align=left>chimney</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>0A</tt>&nbsp; </td>
           <td align=left>transformer; animation progress in m3(valid range <tt>0</tt>..<tt>7</tt>)</td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>0B</tt>..<tt>0F</tt>&nbsp; </td>
        <td align=left>sawmill</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>10</tt>..<tt>11</tt>&nbsp; </td>
        <td align=left>forest
         <table>
          <tr>
           <td nowrap valign=top><tt>11</tt>&nbsp; </td>
           <td align=left>trees cut down</td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>12</tt>..<tt>17</tt>&nbsp; </td>
        <td align=left>oil refinery</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>18</tt>..<tt>1C</tt>&nbsp; </td>
        <td align=left>oil rig</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>1D</tt>..<tt>20</tt>&nbsp; </td>
        <td align=left>oil wells
         <table>
          <tr>
           <td nowrap valign=top><tt>1D</tt>&nbsp; </td>
           <td align=left>not animated</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>1E</tt>..<tt>20</tt>&nbsp; </td>
           <td align=left>various stages of animation; progress of animation in m3</td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>21</tt>..<tt>26</tt>&nbsp; </td>
        <td align=left>farm</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>27</tt>..<tt>2A</tt>&nbsp; </td>
        <td align=left>factory (temperate climate)</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>2B</tt>..<tt>2E</tt>&nbsp; </td>
        <td align=left>printing works</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>2F</tt>..<tt>33</tt>&nbsp; </td>
        <td align=left>copper ore mine
         <table>
          <tr>
           <td nowrap valign=top><tt>2F</tt>&nbsp; </td>
           <td align=left>wheel tower when not animated</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>30</tt>&nbsp; </td>
           <td align=left>wheel tower when animated; animation state in m3 bits 5..0; m3 bit 6 set = sound already generated</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>31</tt>&nbsp; </td>
           <td align=left>chimney</td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>34</tt>..<tt>39</tt>&nbsp; </td>
        <td align=left>steel mill</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>3A</tt>..<tt>3B</tt>&nbsp; </td>
        <td align=left>bank (temperate climate)</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>3C</tt>..<tt>3F</tt>&nbsp; </td>
        <td align=left>food processing plant</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>40</tt>..<tt>47</tt>&nbsp; </td>
        <td align=left>paper mill</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>48</tt>..<tt>58</tt>&nbsp; </td>
        <td align=left>gold mine
         <table>
          <tr>
           <td nowrap valign=top><tt>4F</tt>&nbsp; </td>
           <td align=left>wheel tower when not animated</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>58</tt>&nbsp; </td>
           <td align=left>wheel tower when animated; animation state in m3 bits 5..0; m3 bit 6 set = sound already generated</td>
          </tr>
         </table></td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>59</tt>..<tt>5A</tt>&nbsp; </td>
        <td align=left>bank (sub-arctic or sub-tropical climate)</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>5B</tt>..<tt>63</tt>&nbsp; </td>
        <td align=left>diamond mine</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>64</tt>..<tt>73</tt>&nbsp; </td>
        <td align=left>iron ore mine</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>74</tt></td>
        <td align=left>fruit plantation</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>75</tt></td>
        <td align=left>rubber plantation</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>76</tt>..<tt>77</tt>&nbsp; </td>
        <td align=left>water supply</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>78</tt></td>
        <td align=left>water tower</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>79</tt>..<tt>7C</tt>&nbsp; </td>
        <td align=left>factory (sub-tropical climate)</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>7D</tt>..<tt>80</tt>&nbsp; </td>
        <td align=left>lumber mill</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>81</tt>..<tt>82</tt>&nbsp; </td>
        <td align=left>candyfloss forest
         <table>
          <tr>
           <td nowrap valign=top><tt>82</tt>&nbsp; </td>
           <td align=left>candyfloss 'trees' cut down</td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>83</tt>..<tt>86</tt>&nbsp; </td>
        <td align=left>sweet factory</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>87</tt>..<tt>88</tt>&nbsp; </td>
        <td align=left>battery farm
         <table>
          <tr>
           <td nowrap valign=top><tt>88</tt>&nbsp; </td>
           <td align=left>batteries 'reaped'</td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>89</tt></td>
        <td align=left>cola wells</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>8A</tt>..<tt>8D</tt>&nbsp; </td>
        <td align=left>toy shop</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>8E</tt>..<tt>93</tt>&nbsp; </td>
        <td align=left>toy factory
         <table>
          <tr>
           <td nowrap valign=top><tt>8F</tt>&nbsp; </td>
           <td align=left>Animated part; animation state in m3 (valid range <tt>00</tt>..<tt>31</tt>)<br>
                        Tile animation is started (m4 zeroed) on the periodic processing.<br>
                        While the animation is in progress, m4 holds the number
                        of animation cycles that have already taken place.<br>
                        when this number reaches 8 the animation is stopped.</td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>94</tt>..<tt>9B</tt>&nbsp; </td>
        <td align=left>plastic fountains (various stages of cyclic animation)</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>9C</tt>..<tt>9F</tt>&nbsp; </td>
        <td align=left>fizzy drink factory</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>A0</tt>..<tt>A3</tt>&nbsp; </td>
        <td align=left>bubble generator
         <table>
          <tr>
           <td nowrap valign=top><tt>A1</tt>&nbsp; </td>
           <td align=left>generators</td>
          </tr>
          <tr>
           <td nowrap valign=top><tt>A2</tt>&nbsp; </td>
           <td align=left>bubble capture facility; animation state in m3 (valid range <tt>00</tt>..<tt>27</tt>)</td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>A4</tt>..<tt>A6</tt>&nbsp; </td>
        <td align=left>toffee quarry
         <table>
          <tr>
           <td nowrap valign=top><tt>A5</tt>&nbsp; </td>
           <td align=left>animated part; animation state in m3 (valid range <tt>00</tt>..<tt>45</tt>)</td>
          </tr>
         </table>
        </td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>A7</tt>..<tt>AE</tt>&nbsp; </td>
        <td align=left>sugar mine
         <table>
          <tr>
           <td nowrap valign=top><tt>AE</tt>&nbsp; </td>
           <td align=left>animated part; animation state in m3 (valid range <tt>00</tt>..<tt>5F</tt>)</td>
          </tr>
         </table>
        </td>
       </tr>
      </table>
     </li>
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
    </ul>
   </td>
  </tr>

  <tr bgcolor="#CCCCCC">
   <td valign=top nowrap><strong><a name="Class9"><tt> 9</tt></a></strong></td>
   <td><strong>Tunnel / bridge</strong></td>
  </tr>
  <tr>
   <td valign=top nowrap>&nbsp;</td>
   <td>
    <ul>
     <li>m5 bits 7..4 clear: tunnel entrance/exit
      <ul>
       <li>m1: <a href="#OwnershipInfo">owner</a> of the tunnel</li>
       <li>m3 bits 3..0 = <a href="#TrackType">track type</a> for railway tunnel, must be 0 for road tunnel</li>
       <li>m4 bit 7 set = on snow or desert</li>
       <li>m5 bits 3..2: <tt>0</tt> - railway tunnel, <tt>1</tt> - road tunnel</li>
       <li>m5 bits 1..0 - direction: entrance towards: <tt>0</tt> = NE, <tt>1</tt> = SE, <tt>2</tt> = SW, <tt>3</tt> = NW</li>
      </ul>
     </li>
     <li>m5 bit 7 set: bridge ramp
      <ul>
       <li>m1: <a href="#OwnershipInfo">owner</a> of the bridge</li>
       <li>m2 bits 7..4: <a name="BridgeType">bridge type</a>:
        <table>
         <tr>
          <th align=left>Type&nbsp;</th>
          <th align=left>Max. speed (mph)&nbsp;</th>
          <th align=left>Description</th>
         </tr>

         <tr>
          <td nowrap valign=top><tt>0</tt>&nbsp; </td>
          <td align=center>20</td>
          <td align=left>wooden</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>1</tt>&nbsp; </td>
          <td align=center>30</td>
          <td align=left>concrete</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>2</tt>&nbsp; </td>
          <td align=center>40</td>
          <td align=left>girder, steel</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>3</tt>&nbsp; </td>
          <td align=center>50</td>
          <td align=left>suspension, concrete</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>4</tt>&nbsp; </td>
          <td align=center>60</td>
          <td align=left>suspension, steel</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>5</tt>&nbsp; </td>
          <td align=center>70</td>
          <td align=left>suspension, steel</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>6</tt>&nbsp; </td>
          <td align=center>100</td>
          <td align=left>cantilever, steel</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>7</tt>&nbsp; </td>
          <td align=center>130</td>
          <td align=left>cantilever, steel</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>8</tt>&nbsp; </td>
          <td align=center>150</td>
          <td align=left>cantilever, steel</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>9</tt>&nbsp; </td>
          <td align=center>160</td>
          <td align=left>girder, steel</td>
         </tr>

         <tr>
          <td nowrap valign=top><tt>A</tt>&nbsp; </td>
          <td align=center>200</td>
          <td align=left>tubular, steel</td>
         </tr>
        </table>
       </li>
       <li>m3 bits 3..0 = <a href="#TrackType">type of track</a> on the bridge, must be 0 for road bridge</li>
       <li>m4 bit 7 set = on snow or desert</li>
       <li>m5 bits 3..2: <tt>0</tt> - railway bridge, <tt>1</tt> - road bridge</li>
       <li>m5 bits 1..0: DiagDirection onto the bridge</li>
      </ul>
     </li>
     <li>m6 bits 7..6 : Possibility of a bridge above, in the <a href="#bridge_direction">direction specified</a></li>
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
    </ul>
   </td>
  </tr>

  <tr bgcolor="#CCCCCC">
   <td valign=top nowrap><strong><a name="ClassA"><tt> A</tt></a></strong></td>
   <td><strong><tt>Unmovables</tt></strong></td>
  </tr>
  <tr>
   <td valign=top nowrap>&nbsp;</td>
   <td>
    <ul>
     <li>m1: <a href="#OwnershipInfo">owner</a> of the object (for lighthouses and transmitters normally <tt>10</tt>)</li>
     <li>m5: tile type:
      <table>
       <tr>
        <td nowrap valign=top><tt>00</tt>&nbsp; </td>
        <td align=left>transmitter</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>01</tt>&nbsp; </td>
        <td align=left>lighthouse</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>02</tt>&nbsp; </td>
        <td align=left>company statue</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>03</tt>&nbsp; </td>
        <td align=left>company-owned land</td>
       </tr>

       <tr>
        <td nowrap valign=top><tt>80</tt>..<tt>93</tt>&nbsp; </td>
        <td align=left>company headquarters (5 sets of 4 tiles each, updated quarterly depending on the company performance)</td>
       </tr>
      </table>
     </li>
     <li>m6 bits 7..6 : Possibility of a bridge above, in the <a href="#bridge_direction">direction specified</a></li>
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
    </ul>
   </td>
  </tr>
  <tr>
   <td colspan=2>Classes <tt>B</tt> through <tt>F</tt> are reserved. The presence
      of a tile in one of the reserved classes will crash OTTD.</td>
  </tr>
 </table>


 <hr>
 Original Copyright &copy; 2003 by Marcin Grzegorczyk for TTDLX.<br>
 Transport Tycoon and Transport Tycoon Deluxe are Copyright &copy; by Chris Sawyer.<br>
 All the other trademarks are the property of their respective owners.<br>
</body>

</html>