docs/landscape.html
author rubidium
Fri, 07 Dec 2007 21:14:54 +0000
changeset 8029 6cc607fe1d3d
parent 7771 a900b80b48f2
child 8368 dcee6c9440b5
permissions -rw-r--r--
(svn r11589) -Fix [FS#1514]: when ship depots got destroyed they always returned to water, even when it should've been canals.
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
     1
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
     2
<html>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
     3
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
     4
<head>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
     5
 <meta name="Author" content="Marcin Grzegorczyk">
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
     6
 <meta name="Description" content="Structure of OpenTTD (OTTD) landscape arrays">
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
     7
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
     8
 <title>OpenTTD Landscape Internals</title>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
     9
</head>
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
    10
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
    11
<body>
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
    12
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    13
 <h3><a name="Landscape">Landscape</a></h3>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    14
 <p>Seven attributes (counting &quot;<span style="font-weight: bold;">type_height</span>&quot;) hold the informations about a tile.<BR>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    15
  These attributes are referred to as
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    16
  "<span style="font-weight: bold;">type_height</span>",
5803
ff09caee2a0d (svn r8365) -Cleanup: Remove unneeded and dead links, install Owner informations, add attribute m6.
belugas
parents: 5644
diff changeset
    17
  "<span style="font-weight: bold;">m1</span>", "<span style="font-weight: bold;">m2</span>",
ff09caee2a0d (svn r8365) -Cleanup: Remove unneeded and dead links, install Owner informations, add attribute m6.
belugas
parents: 5644
diff changeset
    18
  "<span style="font-weight: bold;">m3</span>", "<span style="font-weight: bold;">m4</span>",
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    19
  "<span style="font-weight: bold;">m5</span>" and "<span style="font-weight: bold;">m6</span>".<BR>
5803
ff09caee2a0d (svn r8365) -Cleanup: Remove unneeded and dead links, install Owner informations, add attribute m6.
belugas
parents: 5644
diff changeset
    20
  The most important value is the class of a tile, stored in the upper 4 bits
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    21
  of the <span style="font-weight: bold;">type_height</span> attribute. The lower 4 bits are used to encode the height and
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    22
  slope data.
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    23
 </p>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    24
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    25
 Special Attribute : <span style="font-weight: bold;">m6</span>. There are 4 bits of it that are used accross multiple tile classes<br>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    26
 <ul>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    27
  <li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    28
   <a name = "bridge_direction">
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    29
   Bits 7..6 :
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    30
   <table border="1">
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    31
    <tr bgcolor="#CCCCCC"><td colspan="2">Presence and direction of bridge above,<br>for tiles that support this.</td></tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    32
    <tr><td><tt>00</tt>&nbsp; </td><td>no bridge</td></tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    33
    <tr><td><tt>01</tt>&nbsp; </td><td>Axis X (North-East)</td></tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    34
    <tr><td><tt>02</tt>&nbsp; </td><td>Axis Y (South-West)</td></tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    35
   </table>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    36
  </li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    37
  <li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    38
   <a name = "tropic_zone">
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    39
   Bits 1..0 :
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    40
   <table border="1">
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    41
    <tr bgcolor="#CCCCCC"><td colspan="2">Only meaningfull in tropic climate.<br>It contains the definition of the two available zones</td></tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    42
    <tr><td><tt>00</tt>&nbsp; </td><td>invalid zone</td></tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    43
    <tr><td><tt>01</tt>&nbsp; </td><td>desert</td></tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    44
    <tr><td><tt>02</tt>&nbsp; </td><td>rain forest</td></tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    45
   </table>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    46
   In any other climate, those 2 bits are free of use.
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    47
  </li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    48
 </ul>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    49
 <p>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    50
  For a graphical representation of the tile-layout have a look at
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    51
  <a href="landscape_grid.html">Landscape grid</a> page.
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    52
 </p>
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
    53
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    54
  The <a name="OwnershipInfo">owner of a tile</a>, as frequently associated with attribute m1,
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    55
  can be either players (human or AI) or "Game entities".
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    56
  They are identified using:
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    57
  <table border="1">
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    58
   <tr><td><tt>00</tt>&nbsp; </td><td align=left>current player</td></tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    59
   <tr><td><tt>01..08</tt>&nbsp; </td><td align=left>AI or network players</td></tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    60
   <tr><td><tt>0F</tt>&nbsp; </td><td align=left>a town owns the tile</td></tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    61
   <tr><td><tt>10</tt>&nbsp; </td><td align=left>nobody owns the tile</td></tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    62
   <tr><td><tt>11</tt>&nbsp; </td><td align=left>"water" owns the tile</td></tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    63
   <tr><td><tt>FF</tt>&nbsp; </td><td align=left>spectator in MP or in scenario editor</td></tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    64
  </table>
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
    65
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    66
 <p>OTTD's class-specific periodic tile processing routine is called once every +256 ticks for each tile.</p>
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
    67
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    68
 <table border=1 cellpadding=3>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    69
  <tr bgcolor="#0099FF">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    70
   <th align=left><font color="#FFFFFF">Class</font></th>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    71
   <th align=left><font color="#FFFFFF">Meaning & details of encoding</font></th>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    72
  </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    73
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    74
   <td align=left><strong><a name="Class0"><tt> 0 </tt></a></strong></td>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
    75
   <td align=left>&nbsp;<strong>Ground </strong></td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    76
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    77
  <tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    78
   <td valign=top nowrap>&nbsp;</td>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    79
   <td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    80
    <ul>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    81
     <li>m1: <a href="#OwnershipInfo">owner</a> of the tile (normally <tt>10</tt>)</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    82
     <li>m4 bits 7..5: type of hedge on the SW border of the tile (1 through 6, or 0=none)</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    83
     <li>m4 bits 4..2: same as 7..5, but for the SE border</li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    84
     <li>m5 bits 7..5: update counter, incremented on every periodic processing for tile types,
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    85
         other than <tt>03</tt>, <tt>07</tt>, <tt>0B</tt>, <tt>10</tt> and above.<BR>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
    86
         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>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    87
         For snow and desert, these bits are not used, tile is updated on every periodic processing.</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    88
     <li>m5 bits 4..0: tile type:
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    89
      <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    90
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    91
        <td nowrap valign=top><tt>00</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    92
        <td align=left>bare land</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    93
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    94
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    95
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    96
        <td nowrap valign=top><tt>01</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    97
        <td align=left>1/3 grass</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    98
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    99
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   100
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   101
        <td nowrap valign=top><tt>02</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   102
        <td align=left>2/3 grass</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   103
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   104
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   105
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   106
        <td nowrap valign=top><tt>03</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   107
        <td align=left>full grass</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   108
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   109
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   110
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   111
        <td nowrap valign=top><tt>07</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   112
        <td align=left>rough land</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   113
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   114
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   115
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   116
        <td nowrap valign=top><tt>0B</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   117
        <td align=left>rocks</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   118
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   119
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   120
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   121
        <td nowrap valign=top><tt>0F</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   122
        <td align=left>fields; type of fields in m3 bits 3..0 (legal values: 0 through 9)<br>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   123
             m2: Index into the array of industries (farms), INVALID_INDUSTRY (0xFFFF) if farm has been removed</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   124
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   125
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   126
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   127
        <td nowrap valign=top><tt>10</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   128
        <td align=left>1/4 snow</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   129
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   130
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   131
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   132
        <td nowrap valign=top><tt>11</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   133
        <td align=left>2/4 snow</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   134
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   135
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   136
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   137
        <td nowrap valign=top><tt>12</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   138
        <td align=left>3/4 snow</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   139
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   140
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   141
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   142
        <td nowrap valign=top><tt>13</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   143
        <td align=left>full snow</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   144
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   145
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   146
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   147
        <td nowrap valign=top><tt>15</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   148
        <td align=left>partial desert</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   149
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   150
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   151
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   152
        <td nowrap valign=top><tt>17</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   153
        <td align=left>full desert</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   154
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   155
      </table>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   156
     </li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   157
     <li>m6 bits 7..6 : Possibility of a bridge above, in the <a href="#bridge_direction">direction specified</a></li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   158
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   159
    </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   160
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   161
  </tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   162
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   163
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   164
   <td valign=top nowrap><strong><a name="Class1"><tt> 1</tt></a></strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   165
   <td><strong>Railway tracks</strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   166
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   167
  <tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   168
   <td valign=top nowrap>&nbsp;</td>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   169
   <td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   170
    <ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   171
     <li>m5 bit 7 clear: railway track
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   172
      <ul>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   173
       <li>m1: <a href="#OwnershipInfo">owner</a> of the track</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   174
       <li>m3 bits 3..0 = <a name="TrackType">track type</a>:
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   175
        <table>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   176
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   177
          <td><tt>0</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   178
          <td>conventional railway</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   179
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   181
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   182
          <td><tt>1</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   183
          <td>electrified railway</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   184
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   185
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   186
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   187
          <td><tt>2</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   188
          <td>monorail</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   189
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   190
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   191
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   192
          <td><tt>3</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   193
          <td>maglev</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   194
         </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   195
        </table>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   196
       </li>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   197
       <li>m4 bits 3..0:
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   198
        <table>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   199
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   200
          <td nowrap valign=top><tt>0</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   201
          <td align=left>on bare land</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   202
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   203
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   204
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   205
          <td nowrap valign=top><tt>1</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   206
          <td align=left>on grass, no fences</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   207
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   208
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   209
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   210
          <td nowrap valign=top><tt>2</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   211
          <td align=left>fence on the NW side</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   212
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   213
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   214
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   215
          <td nowrap valign=top><tt>3</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   216
          <td align=left>fence on the SE side</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   217
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   218
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   219
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   220
          <td nowrap valign=top><tt>4</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   221
          <td align=left>fences on the NW and SE sides</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   222
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   223
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   224
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   225
          <td nowrap valign=top><tt>5</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   226
          <td align=left>fence on the NE side</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   227
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   228
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   229
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   230
          <td nowrap valign=top><tt>6</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   231
          <td align=left>fence on the SW side</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   232
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   233
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   234
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   235
          <td nowrap valign=top><tt>7</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   236
          <td align=left>fences on the NE and SW sides</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   237
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   238
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   239
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   240
          <td nowrap valign=top><tt>8</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   241
          <td align=left>fence on the E side (track in the W corner)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   242
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   243
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   244
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   245
          <td nowrap valign=top><tt>9</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   246
          <td align=left>fence on the W side (track in the E corner)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   247
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   248
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   249
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   250
          <td nowrap valign=top><tt>A</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   251
          <td align=left>fence on the S side (track in the N corner)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   252
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   253
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   254
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   255
          <td nowrap valign=top><tt>B</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   256
          <td align=left>fence on the N side (track in the S corner)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   257
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   258
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   259
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   260
          <td nowrap valign=top><tt>C</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   261
          <td align=left>on snow or desert</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   262
         </tr>
7771
a900b80b48f2 (svn r11320) -Codechange: make lower halftiles at coast floodable. Patch by frosch.
rubidium
parents: 7621
diff changeset
   263
a900b80b48f2 (svn r11320) -Codechange: make lower halftiles at coast floodable. Patch by frosch.
rubidium
parents: 7621
diff changeset
   264
         <tr>
a900b80b48f2 (svn r11320) -Codechange: make lower halftiles at coast floodable. Patch by frosch.
rubidium
parents: 7621
diff changeset
   265
          <td nowrap valign=top><tt>D</tt>&nbsp; </td>
a900b80b48f2 (svn r11320) -Codechange: make lower halftiles at coast floodable. Patch by frosch.
rubidium
parents: 7621
diff changeset
   266
          <td align=left>on grass with fence and water on the lower halftile</td>
a900b80b48f2 (svn r11320) -Codechange: make lower halftiles at coast floodable. Patch by frosch.
rubidium
parents: 7621
diff changeset
   267
         </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   268
        </table>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   269
       </li>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   270
       <li>m5 bits 5..0: track layout: bit set = track present:
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   271
        <table>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   272
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   273
          <td nowrap valign=top>bit 0: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   274
          <td align=left>in the X direction</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   275
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   276
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   277
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   278
          <td nowrap valign=top>bit 1: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   279
          <td align=left>in the Y direction</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   280
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   281
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   282
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   283
          <td nowrap valign=top>bit 2: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   284
          <td align=left>in the north corner (direction W-E)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   285
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   286
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   287
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   288
          <td nowrap valign=top>bit 3: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   289
          <td align=left>in the south corner (direction W-E)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   290
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   291
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   292
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   293
          <td nowrap valign=top>bit 4: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   294
          <td align=left>in the west corner (direction N-S)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   295
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   296
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   297
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   298
          <td nowrap valign=top>bit 5: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   299
          <td align=left>in the east corner (direction N-S)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   300
         </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   301
        </table>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   302
       </li>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   303
      </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   304
     </li>
6172
e6d7a5b3d63f (svn r8935) -Codechange: unification of track type between road and rail tiles, unification of ground type between normal rail tiles and depots/waypoints and removing the need for RailTileSubType.
rubidium
parents: 6068
diff changeset
   305
     <li>m5 bit 7 set: railway depot / checkpoints
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   306
      <ul>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   307
       <li>m1: <a href="#OwnershipInfo">owner</a> of the depot / checkpoint</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   308
       <li>m2: For waypoints, index into the array of waypoints.</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   309
       <li>m3 bits 3..0 = <a href="#TrackType">track type</a></li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   310
       <li>m4 bits 3..0 = ground type, as per m4 bits 3..0 for railway tiles.</li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   311
       <li>m5 value C0..C3: railway depot
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   312
        <table>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   313
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   314
          <td colspan=2>m5 bits 1..0</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   315
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   316
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   317
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   318
          <td colspan=2>direction: exit towards:</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   319
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   320
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   321
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   322
          <td><tt>00</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   323
          <td>NE</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   324
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   325
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   326
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   327
          <td><tt>01</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   328
          <td>SE</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   329
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   330
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   331
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   332
          <td><tt>02</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   333
          <td>SW</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   334
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   335
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   336
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   337
          <td><tt>03</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   338
          <td>NW</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   339
         </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   340
        </table>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   341
       </li>
6172
e6d7a5b3d63f (svn r8935) -Codechange: unification of track type between road and rail tiles, unification of ground type between normal rail tiles and depots/waypoints and removing the need for RailTileSubType.
rubidium
parents: 6068
diff changeset
   342
       <li>m5 value 80..81: checkpoint
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   343
        <table>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   344
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   345
          <td colspan=2>bit 0</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   346
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   347
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   348
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   349
          <td>clear</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   350
          <td>in X direction</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   351
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   352
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   353
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   354
          <td>set</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   355
          <td>in Y direction</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   356
         </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   357
        </table>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   358
       </li>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   359
      </ul>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   360
    </li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   361
    <li>m5 bit 6 set = with signals:
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   362
     <ul>
6770
408585d467f9 (svn r10006) -Fix (FS#362): allow different signal types on one tile
glx
parents: 6764
diff changeset
   363
      <li>m4 bits 7..4: bit clear = signal shows red; same bits as in m3</li>
408585d467f9 (svn r10006) -Fix (FS#362): allow different signal types on one tile
glx
parents: 6764
diff changeset
   364
      <li>m2 bit 2 <i>(6)</i>: set = semaphore signals, clear = light signals <i>(lower and right tracks)</i></li>
408585d467f9 (svn r10006) -Fix (FS#362): allow different signal types on one tile
glx
parents: 6764
diff changeset
   365
      <li>m2 bits 1..0 <i>(5..4)</i>: type of signal <i>(lower and right tracks)</i>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   366
       <table>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   367
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   368
          <td nowrap="nowrap" valign="top"><tt>00</tt>: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   369
          <td align="left">normal signals</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   370
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   371
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   372
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   373
          <td nowrap="nowrap" valign="top"><tt>01</tt>: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   374
          <td align="left">pre-signals</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   375
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   376
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   377
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   378
          <td nowrap="nowrap" valign="top"><tt>10</tt>: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   379
          <td align="left">exit-signals</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   380
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   381
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   382
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   383
          <td nowrap="nowrap" valign="top"><tt>11</tt>: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   384
          <td align="left">combo-signals</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   385
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   386
        </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   387
       </li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   388
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   389
       <li>m3 bits 7..4: bit set = signal present:
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   390
        <ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   391
         <li>For track in the X direction:
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   392
          <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   393
           <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   394
            <td nowrap="nowrap" valign="top">bit 6: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   395
            <td align="left">signal in the SW direction</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   396
           </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   397
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   398
           <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   399
            <td nowrap="nowrap" valign="top">bit 7: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   400
            <td align="left">signal in the NE direction</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   401
           </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   402
          </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   403
         </li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   404
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   405
         <li>For track in the Y direction:
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   406
          <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   407
           <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   408
            <td nowrap="nowrap" valign="top">bit 6: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   409
            <td align="left">signal in the NW direction</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   410
           </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   411
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   412
           <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   413
            <td nowrap="nowrap" valign="top">bit 7: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   414
            <td align="left">signal in the SE direction</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   415
           </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   416
          </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   417
         </li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   418
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   419
         <li>For tracks in the W-E direction:
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   420
          <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   421
           <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   422
            <td nowrap="nowrap" valign="top">bit 4: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   423
            <td align="left">signal in the W direction on the track in the S corner</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   424
           </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   425
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   426
           <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   427
            <td nowrap="nowrap" valign="top">bit 5: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   428
            <td align="left">signal in the E direction on the track in the S corner</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   429
           </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   430
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   431
           <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   432
            <td nowrap="nowrap" valign="top">bit 6: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   433
            <td align="left">signal in the W direction on the track in the N corner</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   434
           </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   435
           <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   436
            <td nowrap="nowrap" valign="top">bit 7: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   437
            <td align="left">signal in the E direction on the track in the N corner</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   438
           </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   439
          </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   440
         </li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   441
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   442
         <li>For tracks in the N-S direction:
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   443
          <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   444
           <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   445
            <td nowrap="nowrap" valign="top">bit 4: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   446
            <td align="left">signal in the S direction on the track in the E corner</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   447
           </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   448
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   449
           <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   450
            <td nowrap="nowrap" valign="top">bit 5: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   451
            <td align="left">signal in the N direction on the track in the E corner</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   452
           </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   453
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   454
           <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   455
            <td nowrap="nowrap" valign="top">bit 6: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   456
            <td align="left">signal in the S direction on the track in the W corner</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   457
           </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   458
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   459
           <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   460
            <td nowrap="nowrap" valign="top">bit 7: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   461
            <td align="left">signal in the N direction on the track in the W corner</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   462
           </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   463
          </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   464
         </li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   465
        </ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   466
       </li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   467
      </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   468
     </li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   469
     <li>m6 bits 7..6 : Possibility of a bridge above, in the <a href="#bridge_direction">direction specified</a></li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   470
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   471
    </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   472
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   473
  </tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   474
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   475
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   476
   <td valign=top nowrap><strong><a name="Class2"><tt> 2</tt></a></strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   477
   <td><strong>Roads</strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   478
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   479
  <tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   480
   <td valign=top nowrap>&nbsp;</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   481
   <td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   482
    <ul>
6682
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   483
     <li>m5 bits 7..6 clear: road
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   484
      <ul>
6682
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   485
       <li>m1: <a href="#OwnershipInfo">owner</a> of the road type #1</li>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   486
       <li>m2: Index into the array of towns, 0 for non-town roads</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   487
       <li>m3 bit 7 set = on snow or desert</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   488
       <li>m3 bits 6..4:
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   489
        <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   490
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   491
          <td><tt>0</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   492
          <td>on bare land</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   493
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   494
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   495
          <td><tt>1</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   496
          <td>on grass</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   497
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   498
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   499
          <td><tt>2</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   500
          <td>paved</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   501
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   502
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   503
          <td><tt>3</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   504
          <td>with streetlights</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   505
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   506
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   507
          <td><tt>5</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   508
          <td>tree-lined</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   509
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   510
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   511
          <td><tt>6</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   512
          <td>on grass with road works</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   513
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   514
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   515
          <td><tt>7</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   516
          <td>paved with road works</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   517
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   518
        </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   519
       </li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   520
       <li>m3 bits 3..0: counter for the roadworks</li>
6682
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   521
       <li>m4 bits 3..0: road layout road type #1: bit set = road piece present:
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   522
        <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   523
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   524
          <td nowrap valign=top>bit 0: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   525
          <td align=left>NW piece</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   526
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   527
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   528
          <td nowrap valign=top>bit 1: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   529
          <td align=left>SW piece</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   530
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   531
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   532
          <td nowrap valign=top>bit 2: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   533
          <td align=left>SE piece</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   534
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   535
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   536
          <td nowrap valign=top>bit 3: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   537
          <td align=left>NE piece</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   538
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   539
        </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   540
       </li>
6682
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   541
       <li>m4 bits 7..4: road layout road type #2
6764
d09d8d618a07 (svn r9999) -Feature: make it possible to disallow busses and lorries to go a specific way on straight pieces of road.
rubidium
parents: 6682
diff changeset
   542
       <li>m5 bits 5..4: bits to disallow vehicles to go a specific direction
d09d8d618a07 (svn r9999) -Feature: make it possible to disallow busses and lorries to go a specific way on straight pieces of road.
rubidium
parents: 6682
diff changeset
   543
       <li>m5 bits 3..0: owner of road type #2
6682
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   544
       <li>m6 bits 5..2: road layout road type #3
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   545
       <li>m7 bits 7..5: road types
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   546
       <li>m7 bits 4..0: owner of road type #3
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   547
       </li>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   548
      </ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   549
     </li>
6682
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   550
     <li>m5 bit 7 set, bit 6 clear: road depot
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   551
      <ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   552
       <li>m1: <a href="#OwnershipInfo">owner</a> of the depot</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   553
       <li>m3 bit 7 set = on snow or desert (not displayed, but set internally)</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   554
       <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>
6682
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   555
       <li>m7 bits 7..5: road types
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   556
      </ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   557
     </li>
6682
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   558
     <li>m5 bit 6 set, bit 7 clear: level crossing
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   559
      <ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   560
       <li>m1: <a href="#OwnershipInfo">owner</a> of the railway track</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   561
       <li>m2: Index into the array of towns, 0 for non-town roads</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   562
       <li>m3 bit 7 set = on snow or desert</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   563
       <li>m3 bits 6..4: <tt>0</tt> - on bare land, <tt>1</tt> - on grass, <tt>2</tt> or higher - paved</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   564
       <li>m3 bits 3..0: <a href="#TrackType">track type</a></li>
6682
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   565
       <li>m4 bit 6: clear - road in the X direction, set - road in the Y direction (railway track always perpendicular)</li>
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   566
       <li>m4 bit 5: set if crossing lights are on</li>
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   567
       <li>m4 bits 4..0: <a href="#OwnershipInfo">owner</a> of the road type #1</li>
6764
d09d8d618a07 (svn r9999) -Feature: make it possible to disallow busses and lorries to go a specific way on straight pieces of road.
rubidium
parents: 6682
diff changeset
   568
       <li>m5 bits 3..0: owner of road type #2
6682
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   569
       <li>m7 bits 7..5: road types
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   570
       <li>m7 bits 4..0: owner of road type #3
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   571
      </ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   572
     </li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   573
     <li>m6 bits 7..6 : Possibility of a bridge above, in the <a href="#bridge_direction">direction specified</a></li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   574
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   575
    </ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   576
   </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   577
  </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   578
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   579
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   580
   <td valign=top nowrap><strong><a name="Class3"><tt> 3</tt></a></strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   581
   <td><strong>Town building </strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   582
  </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   583
  <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   584
   <td valign=top nowrap>&nbsp;</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   585
   <td>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   586
    <ul>
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   587
     <li>m1 : Random bits <a href="#newhouses">(newhouses)</a> </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   588
     <li>m2 : index into the array of industries</li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   589
     <li>m3 bit 7 :
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   590
      <ul>
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   591
       <li> set : House is complete
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   592
        <ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   593
         <li>m5 : age of House. Maximum been 255, which means 255 years and more</li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   594
        </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   595
       </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   596
       <li> clear : House is in construction
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   597
        <ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   598
         <li>m5 bits 7..5 : free</li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   599
         <li>m5 bits 4..3 : construction stage</li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   600
         <li>m5 bits 2..0 : construction counter</li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   601
        </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   602
       </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   603
      </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   604
     <li>m3 bit 6 : 9th bit of house type (m4), allowing 512 different types.</li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   605
     <li>m3 bits 5..0 : triggers activated <a href="#newhouses">(newhouses)</a></li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   606
     <li>m4 : <a href="landscape_externals.html">town building type</a> (with m3[6] bit)</li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   607
     <li>m5 : see m3 bit 7</li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   608
     <li>m6 :
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   609
      <ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   610
       <li>If <a href="#newhouses">newhouses</a> is activated
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   611
        <ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   612
         <li>bits 7..3 : Current animation frame</li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   613
         <li>bit 2 : free</li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   614
        </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   615
       </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   616
       <li>Standard behaviour
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   617
        <ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   618
         <li>bits 7..2 : lift position (for houses type 04 and 05)</li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   619
        </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   620
       </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   621
       <li>bits 1..0 : tropic zone specifier</li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   622
      </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   623
     </li>
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   624
     <li>m7 :
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   625
      <ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   626
       <li>If <a href="#newhouses">newhouses</a> is activated
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   627
        <ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   628
         <li>Periodic processing time remaining</li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   629
        </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   630
       </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   631
       <li>Standard behaviour (only for houses type 04 and 05)
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   632
        <ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   633
         <li>bits 7..4 : free</li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   634
         <li>bits 3..1 : lift destination.  Values can be 0..6, except 1.<br>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   635
             So the building has 6 effective floors. This is due to the fact that the first floor is 2 'normal' floors high.<br>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   636
             One 'normal' floor has a height of 6 lift positions.
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   637
         </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   638
         <li>bit 0 : Lift has destination when set</li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   639
        </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   640
       </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   641
      </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   642
     </li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   643
    </ul>
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   644
    <small><a name="newhouses">Newhouses is the name englobing a newGRF feature developped by TTDPatch devs (mainly Csaboka).<br>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   645
    It allows the replacement of the properties as well as the graphics of houses in the game.<br>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   646
    To distinguish between the standard behaviour and the newGRF one, HouseID (m4 + m3[6]) is tested for anything above 110.<br>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   647
    110 is the count of standard houses. So above 110 means there is a new definition of at least one house</small>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   648
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   649
  </tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   650
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   651
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   652
   <td valign=top nowrap><strong><a name="Class4"><tt> 4 </tt></a></strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   653
   <td><strong>Trees </strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   654
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   655
  <tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   656
   <td valign=top nowrap>&nbsp;</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   657
   <td>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   658
    <ul>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   659
     <li>m1: <a href="#OwnershipInfo">owner</a> (normally <tt>10</tt>)</li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   660
     <li>m2 bits 5..4:
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   661
      <table>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   662
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   663
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   664
        <td nowrap valign=top><tt>0</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   665
        <td align=left>on grass</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   666
       </tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   667
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   668
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   669
        <td nowrap valign=top><tt>1</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   670
        <td align=left>on rough land</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   671
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   672
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   673
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   674
        <td nowrap valign=top><tt>2</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   675
        <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>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   676
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   677
      </table>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   678
     </li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   679
     <li>m2 bits 3..0: update counter, incremented on every periodic processing.<br>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   680
          on wraparound the growth status is updated (or, if it's <tt>3</tt>, a random action is taken)</li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   681
     <li>m3 bits 7..0: type of trees:
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   682
      <table>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   683
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   684
        <td nowrap valign=top><tt>00</tt>..<tt>0B</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   685
        <td align=left>temperate climate trees</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   686
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   687
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   688
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   689
        <td nowrap valign=top><tt>0C</tt>..<tt>13</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   690
        <td align=left>sub-arctic climate trees</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   691
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   692
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   693
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   694
        <td nowrap valign=top><tt>14</tt>..<tt>1A</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   695
        <td align=left>rainforest trees</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   696
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   697
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   698
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   699
        <td nowrap valign=top><tt>1B</tt> </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   700
        <td align=left>cactus plants</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   701
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   702
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   703
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   704
        <td nowrap valign=top><tt>1C</tt>..<tt>1F</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   705
        <td align=left>sub-tropical climate, non-rainforest, non-desert trees</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   706
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   707
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   708
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   709
        <td nowrap valign=top><tt>20</tt>..<tt>28</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   710
        <td align=left>toyland trees</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   711
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   712
      </table>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   713
      <small>Note: the actually displayed set of trees depends on both type and number of trees</small>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   714
     </li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   715
     <li>m4 bits 7..5: type of hedge on the SW border of the tile (1 through 6, or 0=none)</li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   716
     <li>m4 bits 4..2: type of hedge on the SE border of the tile (1 through 6, or 0=none)</li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   717
     <li>m5 bits 7..6: number of trees minus one</li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   718
     <li>m5 bits 2..0: growth status:
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   719
      <table border="0">
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   720
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   721
        <td><tt>0</tt>..<tt>2</tt>&nbsp;</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   722
        <td>one of trees is growing&nbsp;</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   723
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   724
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   725
        <td><tt>3</tt>&nbsp;</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   726
        <td>all trees are fully grown&nbsp;</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   727
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   728
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   729
        <td><tt>4</tt>..<tt>6</tt>&nbsp;</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   730
        <td>one of trees is withering&nbsp;</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   731
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   732
      </table>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   733
     </li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   734
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   735
    </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   736
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   737
  </tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   738
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   739
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   740
   <td valign=top nowrap><strong><a name="Class5"><tt> 5</tt></a></strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   741
   <td><strong>Station tiles</strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   742
  </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   743
  <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   744
   <td valign=top nowrap>&nbsp;</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   745
   <td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   746
    <ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   747
     <li>m1: <a href="#OwnershipInfo">owner</a> of the station</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   748
     <li>m2: index into the array of stations</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   749
     <li>m3 bits 7..4: persistent random data for newstations</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   750
     <li>m3 bits 3..0: <a href="#TrackType">track type</a> for railway stations, must be 0 for all the other stations</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   751
     <li>m4: custom station id; 0 means standard graphics</li>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   752
     <li>m5: graphics index (range from 0..255 for each station type):
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   753
      <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   754
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   755
        <td nowrap valign=top><tt>00</tt>..<tt>07</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   756
        <td align=left>railway station
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   757
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   758
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   759
           <td><tt>00</tt>..<tt>01</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   760
           <td align=left>open platform</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   761
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   762
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   763
           <td><tt>02</tt>..<tt>03</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   764
           <td align=left>open platform with station building</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   765
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   766
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   767
           <td><tt>04</tt>....<tt>07</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   768
           <td align=left>roofed platform</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   769
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   770
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   771
           <td colspan=2>bit 0: clear = in X direction, set = in Y direction</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   772
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   773
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   774
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   775
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   776
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   777
       <tr>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   778
        <td nowrap valign=top><tt>00</tt>..<tt>8F</tt></td>
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   779
        <td align=left>all airports</td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   780
       </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   781
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   782
       <tr>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   783
        <td nowrap valign=top><tt>00</tt>..<tt>03</tt>&nbsp; </td>
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   784
        <td align=left>lorry loading area/truck station : exit towards:
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   785
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   786
          <tr>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   787
           <td><tt>00</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   788
           <td align=left>NE</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   789
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   790
          <tr>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   791
           <td><tt>01</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   792
           <td align=left>SE</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   793
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   794
          <tr>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   795
           <td><tt>02</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   796
           <td align=left>SW</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   797
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   798
          <tr>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   799
           <td><tt>03</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   800
           <td align=left>NW</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   801
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   802
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   803
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   804
       </tr>
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
   805
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   806
       <tr>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   807
        <td nowrap valign=top><tt>00</tt>..<tt>05</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   808
        <td align=left>ship dock
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   809
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   810
          <tr>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   811
           <td><tt>00</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   812
           <td align=left>SW coast part</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   813
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   814
          <tr>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   815
           <td><tt>01</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   816
           <td align=left>NW coast part</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   817
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   818
          <tr>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   819
           <td><tt>02</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   820
           <td align=left>NE coast part</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   821
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   822
          <tr>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   823
           <td><tt>03</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   824
           <td align=left>SE coast part</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   825
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   826
          <tr>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   827
           <td><tt>04</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   828
           <td align=left>X direction water part</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   829
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   830
          <tr>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   831
           <td><tt>05</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   832
           <td align=left>Y direction water part</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   833
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   834
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   835
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   836
       </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   837
      </table>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   838
     </li>
7272
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   839
     <li>m6 bits 3..5: the station type (rail, airport, truck, bus, oilrig, dock, buoy)</li>
d47fc9e22d1c (svn r10601) -Codechange: store (and use) the type of stations instead of hardcoding station types by graphics IDs.
rubidium
parents: 6770
diff changeset
   840
     <li>m6 bit 2: 1 when a drive through road stop is built over a town owned road, otherwise 0</li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   841
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   842
    </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   843
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   844
  </tr>
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
   845
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   846
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   847
   <td valign=top nowrap><strong><a name="Class6"><tt> 6 </tt></a></strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   848
   <td><strong>Water</strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   849
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   850
  <tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   851
   <td valign=top nowrap>&nbsp;</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   852
   <td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   853
    <ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   854
     <li>m1: <a href="#OwnershipInfo">owner</a> (for water and coasts normally <tt>11</tt>)</li>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   855
     <li>m5: tile type:
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   856
      <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   857
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   858
        <td nowrap valign=top><tt>00</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   859
        <td align=left>water</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   860
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   861
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   862
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   863
        <td nowrap valign=top><tt>01</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   864
        <td align=left>coast or riverbank</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   865
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   866
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   867
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   868
        <td nowrap valign=top><tt>10</tt>..<tt>1B</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   869
        <td align=left>canal locks
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   870
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   871
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   872
           <td nowrap valign=top><tt>10</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   873
           <td align=left>middle part, (SW-NE direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   874
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   875
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   876
           <td nowrap valign=top><tt>11</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   877
           <td align=left>middle part, (NW-SE direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   878
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   879
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   880
           <td nowrap valign=top><tt>12</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   881
           <td align=left>middle part, (NE-SW direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   882
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   883
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   884
           <td nowrap valign=top><tt>13</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   885
           <td align=left>middle part, (SE-NW direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   886
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   887
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   888
           <td nowrap valign=top><tt>14</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   889
           <td align=left>lower part, (SW-NE direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   890
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   891
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   892
           <td nowrap valign=top><tt>15</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   893
           <td align=left>lower part, (NW-SE direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   894
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   895
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   896
           <td nowrap valign=top><tt>16</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   897
           <td align=left>lower part, (NE-SW direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   898
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   899
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   900
           <td nowrap valign=top><tt>17</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   901
           <td align=left>lower part, (SE-NW direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   902
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   903
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   904
           <td nowrap valign=top><tt>18</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   905
           <td align=left>upper part, (SW-NE direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   906
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   907
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   908
           <td nowrap valign=top><tt>19</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   909
           <td align=left>upper part, (NW-SE direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   910
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   911
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   912
           <td nowrap valign=top><tt>1A</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   913
           <td align=left>upper part, (NE-SW direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   914
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   915
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   916
           <td nowrap valign=top><tt>1B</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   917
           <td align=left>upper part, (SE-NW direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   918
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   919
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   920
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   921
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   922
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   923
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   924
        <td nowrap valign=top><tt>80</tt>..<tt>83</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   925
        <td align=left>ship depots
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   926
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   927
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   928
           <td nowrap valign=top><tt>80</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   929
           <td align=left>ship depot, NE part (X direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   930
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   931
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   932
           <td nowrap valign=top><tt>81</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   933
           <td align=left>ship depot, SW part (X direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   934
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   935
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   936
           <td nowrap valign=top><tt>82</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   937
           <td align=left>ship depot, NW part (Y direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   938
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   939
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   940
           <td nowrap valign=top><tt>83</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   941
           <td align=left>ship depot, SE part (Y direction)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   942
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   943
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   944
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   945
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   946
      </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   947
     </li>
8029
6cc607fe1d3d (svn r11589) -Fix [FS#1514]: when ship depots got destroyed they always returned to water, even when it should've been canals.
rubidium
parents: 7771
diff changeset
   948
     <li>m4: Owner of the water</li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   949
     <li>m6 bits 7..6 : Possibility of a bridge above, in the <a href="#bridge_direction">direction specified</a></li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   950
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   951
    </ul>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   952
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   953
  </tr>
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
   954
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   955
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   956
   <td valign=top nowrap><strong><a name="Class7"><tt> 7 </tt></a></strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   957
   <td><strong>Void </strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   958
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   959
  <tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   960
   <td valign=top nowrap>&nbsp;</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   961
   <td>Tiles of this class form an invisible, one tile wide border at the south (bottom) edges of the map,<br>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   962
       so as to protect several algorithms from the consequences of a wraparound at the edges.
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   963
   </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   964
  </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   965
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   966
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   967
   <td valign=top nowrap><strong><a name="Class8"><tt> 8</tt></a></strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   968
   <td><strong>Industry tile </strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   969
  </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   970
  <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   971
   <td valign=top nowrap>&nbsp;</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   972
   <td>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   973
    <ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   974
     <li>m1 bit 7: clear = under construction
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   975
      <ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   976
       <li>m1 bits 4..2: construction counter, for buildings under construction incremented on every periodic tile processing</li>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   977
       <li>m1 bits 1..0: stage of construction (<tt>3</tt> = completed), incremented when the construction counter wraps around<br>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   978
           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>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   979
      </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   980
     </li>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   981
     <li>m2: index into the array of industries</li>
7621
09824471f144 (svn r11151) -Codechange: add (partial) support for randomizing industry triggers (part of the backend for it). Furthermore update the documentation of the map's bits wrt to industries.
rubidium
parents: 7272
diff changeset
   982
     <li>m5: type (plus m6 bit 2):<br>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   983
      <small>(note: this is not the same as the industry type, which is stored in the array of industries)</small>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   984
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   985
      <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   986
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   987
        <td nowrap valign=top><tt>00</tt>..<tt>06</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   988
        <td align=left>coal mine
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   989
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   990
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   991
           <td nowrap valign=top><tt>00</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   992
           <td align=left>wheel tower when not animated</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   993
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   994
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   995
           <td nowrap valign=top><tt>01</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   996
           <td align=left>wheel tower when animated<br>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   997
            animation state in m3 bits 5..0; m3 bit 6 set = sound already generated</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   998
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   999
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1000
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1001
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1002
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1003
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1004
        <td nowrap valign=top><tt>07</tt>..<tt>0A</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1005
        <td align=left>power station
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1006
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1007
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1008
           <td nowrap valign=top><tt>08</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1009
           <td align=left>chimney</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1010
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1011
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1012
           <td nowrap valign=top><tt>0A</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1013
           <td align=left>transformer; animation progress in m3(valid range <tt>0</tt>..<tt>7</tt>)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1014
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1015
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1016
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1017
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1018
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1019
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1020
        <td nowrap valign=top><tt>0B</tt>..<tt>0F</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1021
        <td align=left>sawmill</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1022
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1023
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1024
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1025
        <td nowrap valign=top><tt>10</tt>..<tt>11</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1026
        <td align=left>forest
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1027
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1028
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1029
           <td nowrap valign=top><tt>11</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1030
           <td align=left>trees cut down</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1031
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1032
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1033
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1034
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1035
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1036
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1037
        <td nowrap valign=top><tt>12</tt>..<tt>17</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1038
        <td align=left>oil refinery</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1039
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1040
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1041
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1042
        <td nowrap valign=top><tt>18</tt>..<tt>1C</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1043
        <td align=left>oil rig</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1044
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1045
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1046
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1047
        <td nowrap valign=top><tt>1D</tt>..<tt>20</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1048
        <td align=left>oil wells
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1049
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1050
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1051
           <td nowrap valign=top><tt>1D</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1052
           <td align=left>not animated</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1053
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1054
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1055
           <td nowrap valign=top><tt>1E</tt>..<tt>20</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1056
           <td align=left>various stages of animation; progress of animation in m3</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1057
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1058
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1059
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1060
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1061
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1062
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1063
        <td nowrap valign=top><tt>21</tt>..<tt>26</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1064
        <td align=left>farm</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1065
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1066
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1067
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1068
        <td nowrap valign=top><tt>27</tt>..<tt>2A</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1069
        <td align=left>factory (temperate climate)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1070
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1071
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1072
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1073
        <td nowrap valign=top><tt>2B</tt>..<tt>2E</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1074
        <td align=left>printing works</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1075
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1076
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1077
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1078
        <td nowrap valign=top><tt>2F</tt>..<tt>33</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1079
        <td align=left>copper ore mine
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1080
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1081
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1082
           <td nowrap valign=top><tt>2F</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1083
           <td align=left>wheel tower when not animated</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1084
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1085
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1086
           <td nowrap valign=top><tt>30</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1087
           <td align=left>wheel tower when animated; animation state in m3 bits 5..0; m3 bit 6 set = sound already generated</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1088
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1089
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1090
           <td nowrap valign=top><tt>31</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1091
           <td align=left>chimney</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1092
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1093
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1094
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1095
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1096
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1097
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1098
        <td nowrap valign=top><tt>34</tt>..<tt>39</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1099
        <td align=left>steel mill</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1100
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1101
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1102
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1103
        <td nowrap valign=top><tt>3A</tt>..<tt>3B</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1104
        <td align=left>bank (temperate climate)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1105
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1106
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1107
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1108
        <td nowrap valign=top><tt>3C</tt>..<tt>3F</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1109
        <td align=left>food processing plant</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1110
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1111
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1112
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1113
        <td nowrap valign=top><tt>40</tt>..<tt>47</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1114
        <td align=left>paper mill</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1115
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1116
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1117
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1118
        <td nowrap valign=top><tt>48</tt>..<tt>58</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1119
        <td align=left>gold mine
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1120
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1121
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1122
           <td nowrap valign=top><tt>4F</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1123
           <td align=left>wheel tower when not animated</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1124
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1125
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1126
           <td nowrap valign=top><tt>58</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1127
           <td align=left>wheel tower when animated; animation state in m3 bits 5..0; m3 bit 6 set = sound already generated</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1128
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1129
         </table></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1130
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1131
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1132
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1133
        <td nowrap valign=top><tt>59</tt>..<tt>5A</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1134
        <td align=left>bank (sub-arctic or sub-tropical climate)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1135
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1136
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1137
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1138
        <td nowrap valign=top><tt>5B</tt>..<tt>63</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1139
        <td align=left>diamond mine</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1140
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1141
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1142
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1143
        <td nowrap valign=top><tt>64</tt>..<tt>73</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1144
        <td align=left>iron ore mine</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1145
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1146
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1147
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1148
        <td nowrap valign=top><tt>74</tt></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1149
        <td align=left>fruit plantation</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1150
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1151
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1152
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1153
        <td nowrap valign=top><tt>75</tt></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1154
        <td align=left>rubber plantation</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1155
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1156
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1157
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1158
        <td nowrap valign=top><tt>76</tt>..<tt>77</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1159
        <td align=left>water supply</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1160
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1161
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1162
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1163
        <td nowrap valign=top><tt>78</tt></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1164
        <td align=left>water tower</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1165
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1166
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1167
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1168
        <td nowrap valign=top><tt>79</tt>..<tt>7C</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1169
        <td align=left>factory (sub-tropical climate)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1170
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1171
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1172
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1173
        <td nowrap valign=top><tt>7D</tt>..<tt>80</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1174
        <td align=left>lumber mill</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1175
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1176
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1177
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1178
        <td nowrap valign=top><tt>81</tt>..<tt>82</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1179
        <td align=left>candyfloss forest
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1180
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1181
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1182
           <td nowrap valign=top><tt>82</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1183
           <td align=left>candyfloss 'trees' cut down</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1184
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1185
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1186
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1187
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1188
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1189
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1190
        <td nowrap valign=top><tt>83</tt>..<tt>86</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1191
        <td align=left>sweet factory</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1192
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1193
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1194
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1195
        <td nowrap valign=top><tt>87</tt>..<tt>88</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1196
        <td align=left>battery farm
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1197
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1198
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1199
           <td nowrap valign=top><tt>88</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1200
           <td align=left>batteries 'reaped'</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1201
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1202
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1203
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1204
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1205
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1206
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1207
        <td nowrap valign=top><tt>89</tt></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1208
        <td align=left>cola wells</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1209
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1210
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1211
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1212
        <td nowrap valign=top><tt>8A</tt>..<tt>8D</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1213
        <td align=left>toy shop</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1214
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1215
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1216
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1217
        <td nowrap valign=top><tt>8E</tt>..<tt>93</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1218
        <td align=left>toy factory
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1219
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1220
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1221
           <td nowrap valign=top><tt>8F</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1222
           <td align=left>Animated part; animation state in m3 (valid range <tt>00</tt>..<tt>31</tt>)<br>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1223
                        Tile animation is started (m4 zeroed) on the periodic processing.<br>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1224
                        While the animation is in progress, m4 holds the number
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1225
                        of animation cycles that have already taken place.<br>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1226
                        when this number reaches 8 the animation is stopped.</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1227
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1228
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1229
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1230
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1231
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1232
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1233
        <td nowrap valign=top><tt>94</tt>..<tt>9B</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1234
        <td align=left>plastic fountains (various stages of cyclic animation)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1235
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1236
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1237
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1238
        <td nowrap valign=top><tt>9C</tt>..<tt>9F</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1239
        <td align=left>fizzy drink factory</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1240
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1241
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1242
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1243
        <td nowrap valign=top><tt>A0</tt>..<tt>A3</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1244
        <td align=left>bubble generator
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1245
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1246
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1247
           <td nowrap valign=top><tt>A1</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1248
           <td align=left>generators</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1249
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1250
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1251
           <td nowrap valign=top><tt>A2</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1252
           <td align=left>bubble capture facility; animation state in m3 (valid range <tt>00</tt>..<tt>27</tt>)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1253
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1254
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1255
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1256
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1257
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1258
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1259
        <td nowrap valign=top><tt>A4</tt>..<tt>A6</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1260
        <td align=left>toffee quarry
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1261
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1262
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1263
           <td nowrap valign=top><tt>A5</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1264
           <td align=left>animated part; animation state in m3 (valid range <tt>00</tt>..<tt>45</tt>)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1265
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1266
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1267
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1268
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1269
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1270
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1271
        <td nowrap valign=top><tt>A7</tt>..<tt>AE</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1272
        <td align=left>sugar mine
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1273
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1274
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1275
           <td nowrap valign=top><tt>AE</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1276
           <td align=left>animated part; animation state in m3 (valid range <tt>00</tt>..<tt>5F</tt>)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1277
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1278
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1279
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1280
       </tr>
7621
09824471f144 (svn r11151) -Codechange: add (partial) support for randomizing industry triggers (part of the backend for it). Furthermore update the documentation of the map's bits wrt to industries.
rubidium
parents: 7272
diff changeset
  1281
       <tr>
09824471f144 (svn r11151) -Codechange: add (partial) support for randomizing industry triggers (part of the backend for it). Furthermore update the documentation of the map's bits wrt to industries.
rubidium
parents: 7272
diff changeset
  1282
        <td nowrap valign=top><tt>AF</tt>..<tt>1FF</tt>&nbsp; </td>
09824471f144 (svn r11151) -Codechange: add (partial) support for randomizing industry triggers (part of the backend for it). Furthermore update the documentation of the map's bits wrt to industries.
rubidium
parents: 7272
diff changeset
  1283
        <td align=left>NewGRF industries industry</td>
09824471f144 (svn r11151) -Codechange: add (partial) support for randomizing industry triggers (part of the backend for it). Furthermore update the documentation of the map's bits wrt to industries.
rubidium
parents: 7272
diff changeset
  1284
       </tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1285
      </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1286
     </li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1287
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
7621
09824471f144 (svn r11151) -Codechange: add (partial) support for randomizing industry triggers (part of the backend for it). Furthermore update the documentation of the map's bits wrt to industries.
rubidium
parents: 7272
diff changeset
  1288
     <li>m3: animation state</li>
09824471f144 (svn r11151) -Codechange: add (partial) support for randomizing industry triggers (part of the backend for it). Furthermore update the documentation of the map's bits wrt to industries.
rubidium
parents: 7272
diff changeset
  1289
     <li>m4: animation loop</li>
09824471f144 (svn r11151) -Codechange: add (partial) support for randomizing industry triggers (part of the backend for it). Furthermore update the documentation of the map's bits wrt to industries.
rubidium
parents: 7272
diff changeset
  1290
     <li>m6 bits 3..5: random triggers (NewGRF)</li>
09824471f144 (svn r11151) -Codechange: add (partial) support for randomizing industry triggers (part of the backend for it). Furthermore update the documentation of the map's bits wrt to industries.
rubidium
parents: 7272
diff changeset
  1291
     <li>m7: random bits (NewGRF)</li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1292
    </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1293
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1294
  </tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1295
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1296
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1297
   <td valign=top nowrap><strong><a name="Class9"><tt> 9</tt></a></strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1298
   <td><strong>Tunnel / bridge</strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1299
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1300
  <tr>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1301
   <td valign=top nowrap>&nbsp;</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1302
   <td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1303
    <ul>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1304
     <li>m5 bits 7..4 clear: tunnel entrance/exit
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1305
      <ul>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1306
       <li>m1: <a href="#OwnershipInfo">owner</a> of the tunnel</li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1307
       <li>m3 bits 3..0 = <a href="#TrackType">track type</a> for railway tunnel, must be 0 for road tunnel</li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1308
       <li>m4 bit 7 set = on snow or desert</li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1309
       <li>m5 bits 3..2: <tt>0</tt> - railway tunnel, <tt>1</tt> - road tunnel</li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1310
       <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>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1311
      </ul>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1312
     </li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1313
     <li>m5 bit 7 set: bridge ramp
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1314
      <ul>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1315
       <li>m1: <a href="#OwnershipInfo">owner</a> of the bridge</li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1316
       <li>m2 bits 7..4: <a name="BridgeType">bridge type</a>:
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1317
        <table>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1318
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1319
          <th align=left>Type&nbsp;</th>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1320
          <th align=left>Max. speed (mph)&nbsp;</th>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1321
          <th align=left>Description</th>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1322
         </tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1323
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1324
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1325
          <td nowrap valign=top><tt>0</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1326
          <td align=center>20</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1327
          <td align=left>wooden</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1328
         </tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1329
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1330
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1331
          <td nowrap valign=top><tt>1</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1332
          <td align=center>30</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1333
          <td align=left>concrete</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1334
         </tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1335
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1336
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1337
          <td nowrap valign=top><tt>2</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1338
          <td align=center>40</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1339
          <td align=left>girder, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1340
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1341
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1342
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1343
          <td nowrap valign=top><tt>3</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1344
          <td align=center>50</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1345
          <td align=left>suspension, concrete</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1346
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1347
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1348
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1349
          <td nowrap valign=top><tt>4</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1350
          <td align=center>60</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1351
          <td align=left>suspension, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1352
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1353
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1354
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1355
          <td nowrap valign=top><tt>5</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1356
          <td align=center>70</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1357
          <td align=left>suspension, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1358
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1359
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1360
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1361
          <td nowrap valign=top><tt>6</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1362
          <td align=center>100</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1363
          <td align=left>cantilever, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1364
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1365
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1366
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1367
          <td nowrap valign=top><tt>7</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1368
          <td align=center>130</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1369
          <td align=left>cantilever, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1370
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1371
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1372
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1373
          <td nowrap valign=top><tt>8</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1374
          <td align=center>150</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1375
          <td align=left>cantilever, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1376
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1377
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1378
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1379
          <td nowrap valign=top><tt>9</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1380
          <td align=center>160</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1381
          <td align=left>girder, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1382
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1383
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1384
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1385
          <td nowrap valign=top><tt>A</tt>&nbsp; </td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1386
          <td align=center>200</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1387
          <td align=left>tubular, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1388
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1389
        </table>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1390
       </li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1391
       <li>m3 bits 3..0 = <a href="#TrackType">type of track</a> on the bridge, must be 0 for road bridge</li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1392
       <li>m4 bit 7 set = on snow or desert</li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1393
       <li>m5 bits 3..2: <tt>0</tt> - railway bridge, <tt>1</tt> - road bridge</li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1394
       <li>m5 bits 1..0: DiagDirection onto the bridge</li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1395
      </ul>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1396
     </li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1397
     <li>m6 bits 7..6 : Possibility of a bridge above, in the <a href="#bridge_direction">direction specified</a></li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1398
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1399
    </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1400
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1401
  </tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1402
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1403
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1404
   <td valign=top nowrap><strong><a name="ClassA"><tt> A</tt></a></strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1405
   <td><strong><tt>Unmovables</tt></strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1406
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1407
  <tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1408
   <td valign=top nowrap>&nbsp;</td>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1409
   <td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1410
    <ul>
6287
cf769dca0063 (svn r9106) -Documentation: forgotten usage of m2 (storing TownID) in statue unmovable tile type
belugas
parents: 6184
diff changeset
  1411
     <li>m1 : <a href="#OwnershipInfo">owner</a> of the object (for lighthouses and transmitters normally <tt>10</tt>)</li>
cf769dca0063 (svn r9106) -Documentation: forgotten usage of m2 (storing TownID) in statue unmovable tile type
belugas
parents: 6184
diff changeset
  1412
     <li>m2 :
cf769dca0063 (svn r9106) -Documentation: forgotten usage of m2 (storing TownID) in statue unmovable tile type
belugas
parents: 6184
diff changeset
  1413
      <ul>
cf769dca0063 (svn r9106) -Documentation: forgotten usage of m2 (storing TownID) in statue unmovable tile type
belugas
parents: 6184
diff changeset
  1414
       <li>for company statue (m5 = 02), TownID on which the statue is built in</li>
cf769dca0063 (svn r9106) -Documentation: forgotten usage of m2 (storing TownID) in statue unmovable tile type
belugas
parents: 6184
diff changeset
  1415
      </ul>
cf769dca0063 (svn r9106) -Documentation: forgotten usage of m2 (storing TownID) in statue unmovable tile type
belugas
parents: 6184
diff changeset
  1416
     </li>
cf769dca0063 (svn r9106) -Documentation: forgotten usage of m2 (storing TownID) in statue unmovable tile type
belugas
parents: 6184
diff changeset
  1417
     <li>m5 : tile type:
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1418
      <table>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1419
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1420
        <td nowrap valign=top><tt>00</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1421
        <td align=left>transmitter</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1422
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1423
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1424
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1425
        <td nowrap valign=top><tt>01</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1426
        <td align=left>lighthouse</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1427
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1428
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1429
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1430
        <td nowrap valign=top><tt>02</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1431
        <td align=left>company statue</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1432
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1433
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1434
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1435
        <td nowrap valign=top><tt>03</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1436
        <td align=left>company-owned land</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1437
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1438
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1439
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1440
        <td nowrap valign=top><tt>80</tt>..<tt>93</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1441
        <td align=left>company headquarters (5 sets of 4 tiles each, updated quarterly depending on the company performance)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1442
       </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1443
      </table>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1444
     </li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1445
     <li>m6 bits 7..6 : Possibility of a bridge above, in the <a href="#bridge_direction">direction specified</a></li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1446
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1447
    </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1448
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1449
  </tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1450
  <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1451
   <td colspan=2>Classes <tt>B</tt> through <tt>F</tt> are reserved. The presence
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1452
      of a tile in one of the reserved classes will crash OTTD.</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1453
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1454
 </table>
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
  1455
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
  1456
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1457
 <hr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1458
 Original Copyright &copy; 2003 by Marcin Grzegorczyk for TTDLX.<br>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1459
 Transport Tycoon and Transport Tycoon Deluxe are Copyright &copy; by Chris Sawyer.<br>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1460
 All the other trademarks are the property of their respective owners.<br>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1461
</body>
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
  1462
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
  1463
</html>