docs/landscape.html
author rubidium
Mon, 03 Nov 2008 23:42:07 +0000
changeset 10318 d436fee569bf
parent 10289 801e5451f0ca
child 10340 a4757ae623ca
permissions -rw-r--r--
(svn r14563) -Fix [FS#2395]: in the case that an industry NewGRF, a shared TTDPatch and
OpenTTD feature with it's origin in TTDPatch to replace/add/change vehicles
(including e.g. maximum speed, graphics and introduction year), stations,
bridges, industries, town houses or any other graphics used by either
TTDPatch or OpenTTD, would tell that building an industry is okay, which
is queried using a so-called callback that allows the NewGRF author to
test all kinds of information about the neighbourhood where the industry
might get build, it would corrupt, i.e. overwrite with invalid data, the
structure that is used to build up an error message. This then might result
in trying to resolve an invalid StringID, an internal numeric representation
of all translateable strings, which would in it's turn trigger a safety
check that is added to ensure invalid StringIDs are never resolved.
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">
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
    41
    <tr bgcolor="#CCCCCC"><td colspan="2">Only meaningfull in tropic climate.<br>It contains the definition of the available zones</td></tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
    42
    <tr><td><tt>00</tt>&nbsp; </td><td>normal</td></tr>
6184
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>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
    82
     <li>m2: see fields</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
    83
     <li>m3 bits 3..0: see fields</li>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    84
     <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
    85
     <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
    86
     <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
    87
         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
    88
         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
    89
         For snow and desert, these bits are not used, tile is updated on every periodic processing.</li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
    90
     <li>m5 bits 4..2: tile type:
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    91
      <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    92
       <tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
    93
        <td nowrap valign=top><tt>0</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
    94
        <td align=left>bare land / grass</td>
6180
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
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
    97
       <tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
    98
        <td nowrap valign=top><tt>1</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
    99
        <td align=left>rough land (density must be 3)</td>
6180
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
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   102
       <tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   103
        <td nowrap valign=top><tt>2</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   104
        <td align=left>rocks (density must be 3)</td>
6180
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
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   107
       <tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   108
        <td nowrap valign=top><tt>3</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   109
        <td align=left>fields (density must be 3)
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   110
         <ul>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   111
          <li>m2: index into the array of industries (farms), INVALID_INDUSTRY (0xFFFF) if farm has been removed</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   112
          <li>m3 bits 3..0: field type (legal values: 0 through 9)</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   113
         </ul>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   114
        </td>
6180
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
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   117
       <tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   118
        <td nowrap valign=top><tt>4</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   119
        <td align=left>snow</td>
6180
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
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   122
       <tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   123
        <td nowrap valign=top><tt>5</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   124
        <td align=left>desert (density must be 1 or 3)</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   125
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   126
      </table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   127
     </li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   128
     <li>m5 bits 1..0: density:
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   129
      <table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   130
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   131
        <td nowrap valign=top><tt>0</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   132
        <td>bare land</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   133
        <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   134
        <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   135
        <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   136
        <td>1/4 snow</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   137
        <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   138
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   139
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   140
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   141
        <td nowrap valign=top><tt>1</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   142
        <td>1/3 grass</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   143
        <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   144
        <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   145
        <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   146
        <td>2/4 snow;&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   147
        <td>1/2 desert</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   148
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   149
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   150
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   151
        <td nowrap valign=top><tt>2</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   152
        <td>2/3 grass</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   153
        <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   154
        <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   155
        <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   156
        <td>3/4 snow</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   157
        <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   158
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   159
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   160
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   161
        <td nowrap valign=top><tt>3</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   162
        <td>full grass;&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   163
        <td>rough land;&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   164
        <td>rocks;&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   165
        <td>fields;&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   166
        <td>full snow;&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   167
        <td>full desert</td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   168
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   169
      </table>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   170
     </li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   171
     <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
   172
     <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
   173
    </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   174
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   175
  </tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   176
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   177
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   178
   <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
   179
   <td><strong>Railway tracks</strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   180
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   181
  <tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   182
   <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
   183
   <td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   184
    <ul>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   185
     <li>m1: <a href="#OwnershipInfo">owner</a> of the tile</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   186
     <li>m2: see waypoint and signals</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   187
     <li>m3 bits 7..4: see signals</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   188
     <li>m3 bits 3..0 = <a name="TrackType">track type</a>:
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   189
      <table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   190
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   191
        <td><tt>0</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   192
        <td>conventional railway</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   193
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   194
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   195
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   196
        <td><tt>1</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   197
        <td>electrified railway</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   198
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   199
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   200
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   201
        <td><tt>2</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   202
        <td>monorail</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   203
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   204
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   205
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   206
        <td><tt>3</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   207
        <td>maglev</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   208
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   209
      </table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   210
     </li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   211
     <li>m4 bits 7..4: see signals</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   212
     <li>m4 bits 3..0: Ground type (values with fences are not valid for depots and checkpoints)
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   213
      <table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   214
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   215
        <td nowrap valign=top><tt>0</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   216
        <td align=left>on bare land</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   217
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   218
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   219
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   220
        <td nowrap valign=top><tt>1</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   221
        <td align=left>on grass, no fences</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   222
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   223
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   224
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   225
        <td nowrap valign=top><tt>2</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   226
        <td align=left>fence on the NW side</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   227
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   228
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   229
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   230
        <td nowrap valign=top><tt>3</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   231
        <td align=left>fence on the SE side</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   232
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   233
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   234
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   235
        <td nowrap valign=top><tt>4</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   236
        <td align=left>fences on the NW and SE sides</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   237
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   238
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   239
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   240
        <td nowrap valign=top><tt>5</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   241
        <td align=left>fence on the NE side</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   242
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   243
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   244
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   245
        <td nowrap valign=top><tt>6</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   246
        <td align=left>fence on the SW side</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   247
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   248
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   249
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   250
        <td nowrap valign=top><tt>7</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   251
        <td align=left>fences on the NE and SW sides</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   252
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   253
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   254
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   255
        <td nowrap valign=top><tt>8</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   256
        <td align=left>fence on the E side (track in the W corner)</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   257
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   258
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   259
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   260
        <td nowrap valign=top><tt>9</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   261
        <td align=left>fence on the W side (track in the E corner)</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   262
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   263
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   264
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   265
        <td nowrap valign=top><tt>A</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   266
        <td align=left>fence on the S side (track in the N corner)</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   267
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   268
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   269
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   270
        <td nowrap valign=top><tt>B</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   271
        <td align=left>fence on the N side (track in the S corner)</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   272
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   273
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   274
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   275
        <td nowrap valign=top><tt>C</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   276
        <td align=left>on snow or desert</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   277
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   278
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   279
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   280
        <td nowrap valign=top><tt>D</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   281
        <td align=left>on grass with fence and shore or water on the free halftile</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   282
       </tr>
8524
fd510eb2b515 (svn r12099) -Documentation: add new RailGroundType to landscape.html
smatz
parents: 8495
diff changeset
   283
fd510eb2b515 (svn r12099) -Documentation: add new RailGroundType to landscape.html
smatz
parents: 8495
diff changeset
   284
       <tr>
fd510eb2b515 (svn r12099) -Documentation: add new RailGroundType to landscape.html
smatz
parents: 8495
diff changeset
   285
        <td nowrap valign=top><tt>E</tt>&nbsp; </td>
fd510eb2b515 (svn r12099) -Documentation: add new RailGroundType to landscape.html
smatz
parents: 8495
diff changeset
   286
        <td align=left>higher part on foundation with snow, lower without snow</td>
fd510eb2b515 (svn r12099) -Documentation: add new RailGroundType to landscape.html
smatz
parents: 8495
diff changeset
   287
       </tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   288
      </table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   289
     </li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   290
     <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
   291
      <ul>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   292
       <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
   293
        <table>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   294
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   295
          <td nowrap valign=top>bit 0: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   296
          <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
   297
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   298
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   299
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   300
          <td nowrap valign=top>bit 1: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   301
          <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
   302
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   303
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   304
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   305
          <td nowrap valign=top>bit 2: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   306
          <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
   307
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   308
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   309
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   310
          <td nowrap valign=top>bit 3: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   311
          <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
   312
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   313
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   314
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   315
          <td nowrap valign=top>bit 4: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   316
          <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
   317
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   318
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
          <td nowrap valign=top>bit 5: </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   321
          <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
   322
         </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   323
        </table>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   324
       </li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   325
       <li>m5 bit 6 set = with signals:<BR>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   326
        There are at most 4 signals on a tile. The signals 0..3 belong to the directions:
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   327
        <table>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   328
         <tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   329
          <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   330
          <td>Track <tt>0</tt> (X)&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   331
          <td>Track <tt>1</tt> (Y)&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   332
          <td>Track <tt>2</tt> (north)&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   333
          <td>Track <tt>3</tt> (south)&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   334
          <td>Track <tt>4</tt> (west)&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   335
          <td>Track <tt>5</tt> (east)</td>
6180
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
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   338
         <tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   339
          <td align=left>Signal <tt>0</tt>&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   340
          <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   341
          <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   342
          <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   343
          <td>west</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   344
          <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   345
          <td>south</td>
6180
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>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   349
          <td align=left>Signal <tt>1</tt>&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   350
          <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   351
          <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   352
          <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   353
          <td>east</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   354
          <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   355
          <td>north</td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   356
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   357
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   358
         <tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   359
          <td align=left>Signal <tt>2</tt>&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   360
          <td>south-west</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   361
          <td>north-west</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   362
          <td>west</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   363
          <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   364
          <td>south</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   365
          <td></td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   366
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   367
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   368
         <tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   369
          <td align=left>Signal <tt>3</tt>&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   370
          <td>north-east</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   371
          <td>south-east</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   372
          <td>east</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   373
          <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   374
          <td>north</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   375
          <td></td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   376
         </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   377
        </table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   378
        <ul>
9790
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   379
         <li>m2 bit 7: Signal 0 and 1: set = semaphore signals, clear = light signals</li>
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   380
         <li>m2 bit 3: Signal 2 and 3: set = semaphore signals, clear = light signals</li>
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   381
         <li>m2 bits 6..4: type of signal 0 and 1 (same values as m2 bits 2..0)</li>
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   382
         <li>m2 bits 2..0: type of signal 2 and 3
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   383
          <table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   384
           <tr>
9790
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   385
            <td nowrap="nowrap" valign="top"><tt>000</tt>: </td>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   386
            <td align="left">normal signals</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   387
           </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   388
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   389
           <tr>
9790
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   390
            <td nowrap="nowrap" valign="top"><tt>001</tt>: </td>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   391
            <td align="left">pre-signals</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   392
           </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   393
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   394
           <tr>
9790
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   395
            <td nowrap="nowrap" valign="top"><tt>010</tt>: </td>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   396
            <td align="left">exit-signals</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   397
           </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   398
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   399
           <tr>
9790
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   400
            <td nowrap="nowrap" valign="top"><tt>011</tt>: </td>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   401
            <td align="left">combo-signals</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   402
           </tr>
9790
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   403
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   404
           <tr>
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   405
            <td nowrap="nowrap" valign="top"><tt>100</tt>: </td>
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   406
            <td align="left">pbs signals</td>
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   407
           </tr>
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   408
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   409
           <tr>
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   410
            <td nowrap="nowrap" valign="top"><tt>101</tt>: </td>
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   411
            <td align="left">no-entry signals</td>
5d5c70e0334e (svn r13932) -Add [YAPP]: PBS signals added to the map array. The signals are drawn using the old Patch-like PBS sprites. (michi_cc)
rubidium
parents: 9784
diff changeset
   412
           </tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   413
          </table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   414
         </li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   415
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   416
         <li>m3 bits 7..4: bit set = signal 3..0 present</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   417
         <li>m4 bits 7..4: bit clear = signal 3..0 shows red</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   418
        </ul>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   419
       </li>
9784
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   420
       <li>m2 bits 8..10: track reserved for pbs
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   421
         <table>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   422
          <tr>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   423
            <td><tt>0</tt>&nbsp; </td>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   424
            <td>not reserved</td>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   425
          </tr>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   426
          <tr>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   427
            <td><tt>1</tt>&nbsp; </td>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   428
            <td>X direction</td>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   429
          </tr>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   430
          <tr>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   431
            <td><tt>2</tt>&nbsp; </td>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   432
            <td>Y direction</td>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   433
          </tr>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   434
          <tr>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   435
            <td><tt>3</tt>&nbsp; </td>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   436
            <td>north corner (W-E)</td>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   437
          </tr>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   438
          <tr>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   439
            <td><tt>4</tt>&nbsp; </td>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   440
            <td>south corner (W-E)</td>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   441
          </tr>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   442
          <tr>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   443
            <td><tt>5</tt>&nbsp; </td>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   444
            <td>west corner (N-S)</td>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   445
          </tr>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   446
          <tr>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   447
            <td><tt>6</tt>&nbsp; </td>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   448
            <td>east corner (N-S)</td>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   449
          </tr>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   450
         </table>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   451
       </li>
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   452
       <li>m2 bit 11: opposite track is reserved, too</li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   453
      </ul>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   454
     </li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   455
     <li>m5 bit 7 set, bit 6 clear: checkpoint
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   456
      <ul>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   457
       <li>m2: index into the array of waypoints.</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   458
       <li>m5 bit 0:
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   459
        <table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   460
         <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   461
          <td><tt>0</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   462
          <td>in X direction</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   463
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   464
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   465
         <tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   466
          <td><tt>1</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   467
          <td>in Y direction</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   468
         </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   469
        </table>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   470
       </li>
9784
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   471
       <li>m5 bit 4: pbs reservation state</li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   472
      </ul>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   473
     </li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   474
     <li>m5 bit 7 set, bit 6 set: railway depot
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   475
      <ul>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   476
       <li>m5 bits 1..0: exit towards
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   477
        <table>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   478
         <tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   479
          <td><tt>0</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   480
          <td>NE</td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   481
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   482
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   483
         <tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   484
          <td><tt>1</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   485
          <td>SE</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   486
         </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   487
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   488
         <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   489
          <td><tt>2</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   490
          <td>SW</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   491
         </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   492
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   493
         <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   494
          <td><tt>3</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   495
          <td>NW</td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   496
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   497
        </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   498
       </li>
9784
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   499
       <li>m5 bit 4: pbs reservation state</li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   500
      </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   501
     </li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   502
     <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
   503
     <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
   504
    </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   505
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   506
  </tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   507
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   508
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   509
   <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
   510
   <td><strong>Roads</strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   511
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   512
  <tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   513
   <td valign=top nowrap>&nbsp;</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   514
   <td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   515
    <ul>
10289
801e5451f0ca (svn r14528) -Codechange: cache the closest town for all road tiles instead of only roads owned by tiles. This replaces a O(n) search over all towns from the road's tileloop with a O(1) lookup (PhilSophus)
rubidium
parents: 10147
diff changeset
   516
     <li>m2: Index into the array of towns (owning town for town roads; closest town otherwise, INVALID_TOWN if not yet calculated)</li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   517
     <li>m3 bit 7 set = on snow or desert</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   518
     <li>m7 bits 7..5: present road types
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   519
      <table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   520
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   521
        <td>bit 0&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   522
        <td>normal road</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   523
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   524
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   525
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   526
        <td>bit 1&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   527
        <td>tram</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   528
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   529
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   530
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   531
        <td>bit 2&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   532
        <td>reserved</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   533
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   534
      </table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   535
     </li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   536
     <li>m5 bits 7 clear: road or level-crossing
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   537
      <ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   538
       <li>m3 bits 6..4:
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
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   541
          <td><tt>0</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   542
          <td>on bare land</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   543
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   544
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   545
          <td><tt>1</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   546
          <td>on grass</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   547
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   548
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   549
          <td><tt>2</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   550
          <td>paved</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   551
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   552
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   553
          <td><tt>3</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   554
          <td>with streetlights</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   555
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   556
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   557
          <td><tt>5</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   558
          <td>tree-lined</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   559
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   560
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   561
          <td><tt>6</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   562
          <td>on grass with road works</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   563
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   564
         <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   565
          <td><tt>7</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   566
          <td>paved with road works</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   567
         </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   568
        </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   569
       </li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   570
       <li>m5 bits 3..0: <a href="#OwnershipInfo">owner</a> of road type 1 (tram); OWNER_NONE (<tt>10</tt>) is stored as OWNER_TOWN (<tt>0F</tt>)
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   571
       <li>m7 bits 4..0: <a href="#OwnershipInfo">owner</a> of road type 2 (reserved)
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   572
       <li>m5 bit 6 clear: road
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   573
        <ul>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   574
         <li>m1: <a href="#OwnershipInfo">owner</a> of the road type 0 (normal road)</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   575
         <li>m3 bits 3..0: counter for the roadworks</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   576
         <li>m4 bits 3..0: road layout road type 0 (normal road): bit set = road piece present:
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   577
          <table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   578
           <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   579
            <td align=left>bit 0: </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   580
            <td>NW piece</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   581
           </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   582
           <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   583
            <td align=left>bit 1: </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   584
            <td>SW piece</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   585
           </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   586
           <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   587
            <td align=left>bit 2: </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   588
            <td>SE piece</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   589
           </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   590
           <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   591
            <td align=left>bit 3: </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   592
            <td>NE piece</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   593
           </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   594
          </table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   595
         </li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   596
         <li>m4 bits 7..4: road layout road type 1 (tram)</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   597
         <li>m6 bits 5..2: road layout road type 2 (reserved)</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   598
         <li>m5 bits 5..4: bits to disallow vehicles to go a specific direction
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   599
          <table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   600
           <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   601
            <td align=left>bit 0: </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   602
            <td>set = disallow driving in south-west or south-east direction</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   603
           </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   604
           <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   605
            <td align=left>bit 1: </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   606
            <td>set = disallow driving in north-west or north-east direction</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   607
           </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   608
          </table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   609
         </li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   610
        </ul>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   611
       </li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   612
       <li>m5 bit 6 set: level crossing
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   613
        <ul>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   614
         <li>m1: <a href="#OwnershipInfo">owner</a> of the railway track</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   615
         <li>m3 bits 3..0: <a href="#TrackType">railway track type</a></li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   616
         <li>m4 bit 6: direction
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   617
          <table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   618
           <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   619
            <td align=left><tt>0</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   620
            <td align=left>road in the X direction, rail in Y</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   621
           </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   622
           <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   623
            <td align=left><tt>1</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   624
            <td align=left>road in the Y direction, rail in X</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   625
           </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   626
          </table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   627
         </li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   628
          <li>m4 bit 5: set if crossing lights are on</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   629
         <li>m4 bits 4..0: <a href="#OwnershipInfo">owner</a> of the road type 0 (normal road)</li>
9784
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   630
         <li>m5 bit 4: pbs reservation state</li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   631
        </ul>
6682
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   632
       </li>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   633
      </ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   634
     </li>
6682
1d0d51df9eb3 (svn r9913) -Update: the landscape documentation to reflect the changes to the road bits.
rubidium
parents: 6332
diff changeset
   635
     <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
   636
      <ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   637
       <li>m1: <a href="#OwnershipInfo">owner</a> of the depot</li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   638
       <li>m5 bits 3..0: exit towards:
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   639
        <table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   640
         <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   641
          <td><tt>0</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   642
          <td>NE</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   643
         </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   644
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   645
         <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   646
          <td><tt>1</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   647
          <td>SE</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   648
         </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   649
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   650
         <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   651
          <td><tt>2</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   652
          <td>SW</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   653
         </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   654
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   655
         <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   656
          <td><tt>3</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   657
          <td>NW</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   658
         </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   659
        </table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   660
       </li>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   661
      </ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   662
     </li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   663
     <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
   664
     <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
   665
    </ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   666
   </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   667
  </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   668
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   669
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   670
   <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
   671
   <td><strong>Town building </strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   672
  </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   673
  <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   674
   <td valign=top nowrap>&nbsp;</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   675
   <td>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   676
    <ul>
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   677
     <li>m1 : Random bits <a href="#newhouses">(newhouses)</a> </li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   678
     <li>m2 : index into the array of towns</li>
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   679
     <li>m3 bit 7 :
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   680
      <ul>
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   681
       <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
   682
        <ul>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   683
         <li>m5 : year of house construction (relative to 1920); clamped to 0..255 (1920..2175)</li>
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   684
        </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   685
       </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   686
       <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
   687
        <ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   688
         <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
   689
         <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
   690
         <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
   691
        </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   692
       </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   693
      </ul>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   694
     <li>m3 bit 6 : bit 8 of house type (m4), allowing 512 different types.</li>
8681
c1853fb3c47a (svn r12347) -Feature(ette): Increase house animation frame number from 32 to 128.
frosch
parents: 8524
diff changeset
   695
     <li>m3 bit 5 : bit 6 of current animation frame (see m6)</li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   696
     <li>m3 bits 4..0 : triggers activated <a href="#newhouses">(newhouses)</a></li>
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   697
     <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
   698
     <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
   699
     <li>m6 :
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   700
      <ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   701
       <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
   702
        <ul>
8681
c1853fb3c47a (svn r12347) -Feature(ette): Increase house animation frame number from 32 to 128.
frosch
parents: 8524
diff changeset
   703
         <li>bits 7..2 : Current animation frame (bits 5..0); bit 6 in m3</li>
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   704
        </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   705
       </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   706
       <li>Standard behaviour
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   707
        <ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   708
         <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
   709
        </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   710
       </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   711
       <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
   712
      </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   713
     </li>
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   714
     <li>m7 :
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   715
      <ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   716
       <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
   717
        <ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   718
         <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
   719
        </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   720
       </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   721
       <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
   722
        <ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   723
         <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
   724
         <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
   725
             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
   726
             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
   727
         </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   728
         <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
   729
        </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   730
       </li>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   731
      </ul>
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   732
     </li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   733
    </ul>
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6287
diff changeset
   734
    <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
   735
    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
   736
    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
   737
    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
   738
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   739
  </tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   740
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   741
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   742
   <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
   743
   <td><strong>Trees </strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   744
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   745
  <tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   746
   <td valign=top nowrap>&nbsp;</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   747
   <td>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   748
    <ul>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   749
     <li>m1: <a href="#OwnershipInfo">owner</a> (normally <tt>10</tt>)</li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   750
     <li>m2 bits 7..6: ground density
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   751
     <li>m2 bits 5..4: ground
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   752
      <table>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   753
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   754
       <tr>
8459
86e0352eb993 (svn r12029) -Feature: Allow trees on shore.
frosch
parents: 8457
diff changeset
   755
        <td align=left><tt>0</tt>&nbsp; </td>
86e0352eb993 (svn r12029) -Feature: Allow trees on shore.
frosch
parents: 8457
diff changeset
   756
        <td>on grass</td>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   757
       </tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   758
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   759
       <tr>
8459
86e0352eb993 (svn r12029) -Feature: Allow trees on shore.
frosch
parents: 8457
diff changeset
   760
        <td align=left><tt>1</tt>&nbsp; </td>
86e0352eb993 (svn r12029) -Feature: Allow trees on shore.
frosch
parents: 8457
diff changeset
   761
        <td>on rough land (density must be 3)</td>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   762
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   763
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   764
       <tr>
8459
86e0352eb993 (svn r12029) -Feature: Allow trees on shore.
frosch
parents: 8457
diff changeset
   765
        <td align=left><tt>2</tt>&nbsp; </td>
86e0352eb993 (svn r12029) -Feature: Allow trees on shore.
frosch
parents: 8457
diff changeset
   766
        <td>on snow or desert</td>
86e0352eb993 (svn r12029) -Feature: Allow trees on shore.
frosch
parents: 8457
diff changeset
   767
       </tr>
86e0352eb993 (svn r12029) -Feature: Allow trees on shore.
frosch
parents: 8457
diff changeset
   768
86e0352eb993 (svn r12029) -Feature: Allow trees on shore.
frosch
parents: 8457
diff changeset
   769
       <tr>
86e0352eb993 (svn r12029) -Feature: Allow trees on shore.
frosch
parents: 8457
diff changeset
   770
        <td align=left><tt>3</tt>&nbsp; </td>
86e0352eb993 (svn r12029) -Feature: Allow trees on shore.
frosch
parents: 8457
diff changeset
   771
        <td>on shore (density must be 3)</td>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   772
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   773
      </table>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   774
     </li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   775
     <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
   776
          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
   777
     <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
   778
      <table>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   779
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   780
        <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
   781
        <td align=left>temperate climate trees</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   782
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   783
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   784
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   785
        <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
   786
        <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
   787
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   788
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   789
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   790
        <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
   791
        <td align=left>rainforest trees</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   792
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   793
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   794
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   795
        <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
   796
        <td align=left>cactus plants</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   797
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   798
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   799
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   800
        <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
   801
        <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
   802
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   803
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   804
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   805
        <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
   806
        <td align=left>toyland trees</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   807
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   808
      </table>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   809
      <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
   810
     </li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   811
     <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
   812
     <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
   813
     <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
   814
     <li>m5 bits 2..0: growth status:
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   815
      <table border="0">
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   816
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   817
        <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
   818
        <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
   819
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   820
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   821
        <td><tt>3</tt>&nbsp;</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   822
        <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
   823
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   824
       <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   825
        <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
   826
        <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
   827
       </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   828
      </table>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   829
     </li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   830
     <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
   831
    </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   832
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   833
  </tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   834
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   835
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   836
   <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
   837
   <td><strong>Station tiles</strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   838
  </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   839
  <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   840
   <td valign=top nowrap>&nbsp;</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   841
   <td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   842
    <ul>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   843
     <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
   844
     <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
   845
     <li>m3 bits 7..4: persistent random data for newstations</li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   846
     <li>m3 bits 3..0: <a href="#TrackType">track type</a> for railway stations</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   847
     <li>m3 bits 2..0: present road types for road stops</li>
8471
ba4c15fe147b (svn r12042) -Fix [FS#1676]: Reimplement how rivers and canals are stored in the map, allowing the sea/river/canal status to also be
peter1138
parents: 8459
diff changeset
   848
     <li>m3 bits 1..0: water class for buoys and water part of docks</li>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   849
     <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
   850
     <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
   851
      <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   852
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   853
        <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
   854
        <td align=left>railway station
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   855
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   856
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   857
           <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
   858
           <td align=left>open platform</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   859
          </tr>
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
           <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
   862
           <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
   863
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   864
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   865
           <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
   866
           <td align=left>roofed platform</td>
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
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   869
           <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
   870
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   871
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   872
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   873
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   874
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   875
       <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
   876
        <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
   877
        <td align=left>all airports</td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   878
       </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   879
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   880
       <tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   881
        <td nowrap valign=top><tt>00</tt>..<tt>05</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   882
        <td align=left>road stops:
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   883
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   884
          <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
   885
           <td><tt>00</tt>&nbsp; </td>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   886
           <td align=left>exit towards NE</td>
6180
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
          <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
   889
           <td><tt>01</tt>&nbsp; </td>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   890
           <td align=left>exit towards SE</td>
6180
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
          <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
   893
           <td><tt>02</tt>&nbsp; </td>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   894
           <td align=left>exit towards SW</td>
6180
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
          <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
   897
           <td><tt>03</tt>&nbsp; </td>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   898
           <td align=left>exit towards NW</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   899
          </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   900
          <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   901
           <td><tt>04</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   902
           <td align=left>drive through X</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   903
          </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   904
          <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   905
           <td><tt>05</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   906
           <td align=left>drive through Y</td>
6180
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
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   909
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   910
       </tr>
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
   911
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   912
       <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
   913
        <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
   914
        <td align=left>ship dock
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   915
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   916
          <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
   917
           <td><tt>00</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   918
           <td align=left>SW coast part</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   919
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   920
          <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
   921
           <td><tt>01</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   922
           <td align=left>NW coast part</td>
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
          <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
   925
           <td><tt>02</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   926
           <td align=left>NE coast part</td>
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
          <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
   929
           <td><tt>03</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   930
           <td align=left>SE coast part</td>
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
          <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
   933
           <td><tt>04</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   934
           <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
   935
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   936
          <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
   937
           <td><tt>05</tt>&nbsp; </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   938
           <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
   939
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   940
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   941
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   942
       </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   943
      </table>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   944
     </li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   945
     <li>m6 bits 5..3: the station type (rail, airport, truck, bus, oilrig, dock, buoy)</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
   946
     <li>m6 bit 2: 1 when a drive through road stop is built over a town owned road, otherwise 0</li>
9784
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
   947
     <li>m6 bit 2: pbs reservation state for railway stations</li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
   948
     <li>m6 bits 1..0 : <a href="#tropic_zone">Tropic zone definition</a></li>
8955
701809dd5b33 (svn r12746) -Codechange: Add map storage for station animation frame
peter1138
parents: 8681
diff changeset
   949
     <li>m7: animation frame</li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   950
    </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   951
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   952
  </tr>
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
   953
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   954
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   955
   <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
   956
   <td><strong>Water</strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   957
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
   958
  <tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   959
   <td valign=top nowrap>&nbsp;</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   960
   <td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   961
    <ul>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   962
     <li>m1: <a href="#OwnershipInfo">owner</a> (for sea, rivers, and coasts normally <tt>11</tt>)</li>
8471
ba4c15fe147b (svn r12042) -Fix [FS#1676]: Reimplement how rivers and canals are stored in the map, allowing the sea/river/canal status to also be
peter1138
parents: 8459
diff changeset
   963
     <li>m3 bits 1..0 : Water class (sea, canal or river)
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
   964
     <li>m4: Random data for canal or river tiles</li>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   965
     <li>m5: tile type:
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   966
      <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   967
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   968
        <td nowrap valign=top><tt>00</tt>&nbsp; </td>
8471
ba4c15fe147b (svn r12042) -Fix [FS#1676]: Reimplement how rivers and canals are stored in the map, allowing the sea/river/canal status to also be
peter1138
parents: 8459
diff changeset
   969
        <td align=left>water, canal or river</td>
6180
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
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   972
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   973
        <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
   974
        <td align=left>coast or riverbank</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   975
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   976
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   977
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   978
        <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
   979
        <td align=left>canal locks
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   980
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   981
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   982
           <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
   983
           <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
   984
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   985
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   986
           <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
   987
           <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
   988
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   989
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   990
           <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
   991
           <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
   992
          </tr>
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
           <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
   995
           <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
   996
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   997
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
   998
           <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
   999
           <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
  1000
          </tr>
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
           <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
  1003
           <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
  1004
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1005
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1006
           <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
  1007
           <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
  1008
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1009
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1010
           <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
  1011
           <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
  1012
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1013
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1014
           <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
  1015
           <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
  1016
          </tr>
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
           <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
  1019
           <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
  1020
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1021
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1022
           <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
  1023
           <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
  1024
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1025
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1026
           <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
  1027
           <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
  1028
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1029
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1030
        </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
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1033
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1034
        <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
  1035
        <td align=left>ship depots
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1036
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1037
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1038
           <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
  1039
           <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
  1040
          </tr>
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>81</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1043
           <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
  1044
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1045
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1046
           <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
  1047
           <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
  1048
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1049
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1050
           <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
  1051
           <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
  1052
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1053
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1054
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1055
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1056
      </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1057
     </li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1058
     <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
  1059
     <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
  1060
    </ul>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1061
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1062
  </tr>
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
  1063
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1064
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1065
   <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
  1066
   <td><strong>Void </strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1067
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1068
  <tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1069
   <td valign=top nowrap>&nbsp;</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1070
   <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
  1071
       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
  1072
   </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1073
  </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1074
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1075
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1076
   <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
  1077
   <td><strong>Industry tile </strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1078
  </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1079
  <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1080
   <td valign=top nowrap>&nbsp;</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1081
   <td>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1082
    <ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1083
     <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
  1084
      <ul>
9718
4b7468076d31 (svn r13838) -Codechange: Make industry tiles aware of WaterClasses.
frosch
parents: 8955
diff changeset
  1085
       <li>m1 bits 6..5 : Water class (sea, canal, river or land)
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1086
       <li>m1 bits 3..2: construction counter, for buildings under construction incremented on every periodic tile processing</li>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1087
       <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
  1088
           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
  1089
      </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1090
     </li>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1091
     <li>m2: index into the array of industries</li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1092
     <li>m3: animation state</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1093
     <li>m4: animation loop</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
  1094
     <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
  1095
      <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
  1096
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1097
      <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1098
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1099
        <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
  1100
        <td align=left>coal mine
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1101
         <table>
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>00</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1104
           <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
  1105
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1106
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1107
           <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
  1108
           <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
  1109
            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
  1110
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1111
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1112
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1113
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1114
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
        <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
  1117
        <td align=left>power station
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1118
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1119
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1120
           <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
  1121
           <td align=left>chimney</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1122
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1123
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1124
           <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
  1125
           <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
  1126
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1127
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1128
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1129
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1130
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1131
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1132
        <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
  1133
        <td align=left>sawmill</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1134
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1135
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1136
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1137
        <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
  1138
        <td align=left>forest
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1139
         <table>
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
           <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
  1142
           <td align=left>trees cut down</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1143
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1144
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1145
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1146
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1147
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1148
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1149
        <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
  1150
        <td align=left>oil refinery</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1151
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1152
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1153
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1154
        <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
  1155
        <td align=left>oil rig</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1156
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1157
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1158
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1159
        <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
  1160
        <td align=left>oil wells
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1161
         <table>
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>1D</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1164
           <td align=left>not animated</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
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1167
           <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
  1168
           <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
  1169
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1170
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1171
        </td>
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
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1174
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1175
        <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
  1176
        <td align=left>farm</td>
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
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1179
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1180
        <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
  1181
        <td align=left>factory (temperate climate)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1182
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1183
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
        <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
  1186
        <td align=left>printing works</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>2F</tt>..<tt>33</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1191
        <td align=left>copper ore mine
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1192
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1193
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1194
           <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
  1195
           <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
  1196
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1197
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1198
           <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
  1199
           <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
  1200
          </tr>
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
           <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
  1203
           <td align=left>chimney</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
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1206
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1207
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1208
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
        <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
  1211
        <td align=left>steel mill</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1212
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1213
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
        <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
  1216
        <td align=left>bank (temperate climate)</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1217
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1218
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1219
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1220
        <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
  1221
        <td align=left>food processing plant</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1222
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1223
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1224
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1225
        <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
  1226
        <td align=left>paper mill</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
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1229
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1230
        <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
  1231
        <td align=left>gold mine
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1232
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1233
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1234
           <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
  1235
           <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
  1236
          </tr>
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>58</tt>&nbsp; </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1239
           <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
  1240
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1241
         </table></td>
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
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1244
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1245
        <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
  1246
        <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
  1247
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1248
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
        <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
  1251
        <td align=left>diamond mine</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1252
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1253
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1254
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1255
        <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
  1256
        <td align=left>iron ore mine</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1257
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1258
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1259
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1260
        <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
  1261
        <td align=left>fruit plantation</td>
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
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1264
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1265
        <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
  1266
        <td align=left>rubber plantation</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1267
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1268
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1269
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1270
        <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
  1271
        <td align=left>water supply</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1272
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1273
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>78</tt></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1276
        <td align=left>water tower</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
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1279
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1280
        <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
  1281
        <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
  1282
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1283
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1284
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1285
        <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
  1286
        <td align=left>lumber mill</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1287
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1288
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1289
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1290
        <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
  1291
        <td align=left>candyfloss forest
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1292
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1293
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1294
           <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
  1295
           <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
  1296
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1297
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1298
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1299
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1300
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1301
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1302
        <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
  1303
        <td align=left>sweet factory</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1304
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1305
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1306
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1307
        <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
  1308
        <td align=left>battery farm
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1309
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1310
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1311
           <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
  1312
           <td align=left>batteries 'reaped'</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1313
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1314
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1315
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1316
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1317
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1318
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1319
        <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
  1320
        <td align=left>cola wells</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1321
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1322
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1323
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1324
        <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
  1325
        <td align=left>toy shop</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1326
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1327
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1328
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1329
        <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
  1330
        <td align=left>toy factory
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1331
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1332
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1333
           <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
  1334
           <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
  1335
                        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
  1336
                        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
  1337
                        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
  1338
                        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
  1339
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1340
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1341
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1342
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1343
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1344
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1345
        <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
  1346
        <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
  1347
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1348
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1349
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1350
        <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
  1351
        <td align=left>fizzy drink factory</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1352
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1353
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1354
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1355
        <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
  1356
        <td align=left>bubble generator
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1357
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1358
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1359
           <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
  1360
           <td align=left>generators</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1361
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1362
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1363
           <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
  1364
           <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
  1365
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1366
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1367
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1368
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1369
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1370
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1371
        <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
  1372
        <td align=left>toffee quarry
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1373
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1374
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1375
           <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
  1376
           <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
  1377
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1378
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1379
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1380
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1381
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1382
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1383
        <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
  1384
        <td align=left>sugar mine
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1385
         <table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1386
          <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1387
           <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
  1388
           <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
  1389
          </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1390
         </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1391
        </td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1392
       </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
  1393
       <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
  1394
        <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
  1395
        <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
  1396
       </tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1397
      </table>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1398
     </li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1399
     <li>m6 bits 5..3: random triggers (NewGRF)</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1400
     <li>m6 bit 2: bit 8 of type (see m5)</li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1401
     <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
  1402
     <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
  1403
    </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1404
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1405
  </tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1406
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1407
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1408
   <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
  1409
   <td><strong>Tunnel / bridge</strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1410
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1411
  <tr>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1412
   <td valign=top nowrap>&nbsp;</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1413
   <td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1414
    <ul>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1415
     <li>m1: <a href="#OwnershipInfo">owner</a></li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1416
     <li>m2 bits 7..4: see bridge ramp</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1417
     <li>m3 bits 3..0: <a href="#TrackType">track type</a> for railway</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1418
     <li>m3 bits 2..0: present road types for road</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1419
     <li>m4 bit 7 set = on snow or desert</li>
9784
a9cc0dff1667 (svn r13926) -Add [YAPP]: Add map accessors for path reservations. (michi_cc)
rubidium
parents: 9718
diff changeset
  1420
     <li>m5 bit 4: pbs reservation state for railway</li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1421
     <li>m5 bits 7 clear: tunnel entrance/exit</li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1422
     <li>m5 bit 7 set: bridge ramp
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1423
      <ul>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1424
       <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
  1425
        <table>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1426
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1427
          <th align=left>Type&nbsp;</th>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1428
          <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
  1429
          <th align=left>Description</th>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1430
         </tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1431
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1432
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1433
          <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
  1434
          <td align=center>20</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1435
          <td align=left>wooden</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1436
         </tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1437
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1438
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1439
          <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
  1440
          <td align=center>30</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1441
          <td align=left>concrete</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1442
         </tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1443
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1444
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1445
          <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
  1446
          <td align=center>40</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1447
          <td align=left>girder, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1448
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1449
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1450
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1451
          <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
  1452
          <td align=center>50</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1453
          <td align=left>suspension, concrete</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1454
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1455
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1456
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1457
          <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
  1458
          <td align=center>60</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1459
          <td align=left>suspension, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1460
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1461
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1462
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1463
          <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
  1464
          <td align=center>70</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1465
          <td align=left>suspension, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1466
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1467
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1468
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1469
          <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
  1470
          <td align=center>100</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1471
          <td align=left>cantilever, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1472
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1473
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1474
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1475
          <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
  1476
          <td align=center>130</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1477
          <td align=left>cantilever, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1478
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1479
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1480
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1481
          <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
  1482
          <td align=center>150</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1483
          <td align=left>cantilever, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1484
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1485
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1486
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1487
          <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
  1488
          <td align=center>160</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1489
          <td align=left>girder, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1490
         </tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1491
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1492
         <tr>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1493
          <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
  1494
          <td align=center>200</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1495
          <td align=left>tubular, steel</td>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1496
         </tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1497
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1498
         <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1499
          <td nowrap valign=top><tt>B</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1500
          <td align=center>320</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1501
          <td align=left>tubular, steel</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1502
         </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1503
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1504
         <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1505
          <td nowrap valign=top><tt>C</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1506
          <td align=center>380</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1507
          <td align=left>tubular, silicon</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1508
         </tr>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1509
        </table>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1510
       </li>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1511
      </ul>
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1512
     </li>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1513
     <li>m5 bits 3..2: transport type
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1514
      <table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1515
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1516
        <td><tt>0</tt>&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1517
        <td>railway</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1518
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1519
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1520
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1521
        <td><tt>1</tt>&nbsp;</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1522
        <td>road</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1523
       </tr>
10147
f0215b6c526e (svn r14333) -Documentation: Update docs/landscape*. Based on patch by yorick.
frosch
parents: 9790
diff changeset
  1524
f0215b6c526e (svn r14333) -Documentation: Update docs/landscape*. Based on patch by yorick.
frosch
parents: 9790
diff changeset
  1525
       <tr>
f0215b6c526e (svn r14333) -Documentation: Update docs/landscape*. Based on patch by yorick.
frosch
parents: 9790
diff changeset
  1526
        <td><tt>2</tt>&nbsp;</td>
f0215b6c526e (svn r14333) -Documentation: Update docs/landscape*. Based on patch by yorick.
frosch
parents: 9790
diff changeset
  1527
        <td>water</td>
f0215b6c526e (svn r14333) -Documentation: Update docs/landscape*. Based on patch by yorick.
frosch
parents: 9790
diff changeset
  1528
       </tr>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1529
     </li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1530
     <li>m5 bits 1..0: direction onto the bridge / out of the tunnel
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1531
      <table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1532
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1533
        <td><tt>0</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1534
        <td>NE</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1535
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1536
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1537
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1538
        <td><tt>1</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1539
        <td>SE</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1540
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1541
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1542
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1543
        <td><tt>2</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1544
        <td>SW</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1545
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1546
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1547
       <tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1548
        <td><tt>3</tt>&nbsp; </td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1549
        <td>NW</td>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1550
       </tr>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1551
      </table>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1552
     </li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1553
     <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
  1554
     <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
  1555
    </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1556
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1557
  </tr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1558
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1559
  <tr bgcolor="#CCCCCC">
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1560
   <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
  1561
   <td><strong><tt>Unmovables</tt></strong></td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1562
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1563
  <tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1564
   <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
  1565
   <td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1566
    <ul>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1567
     <li>m1: <a href="#OwnershipInfo">owner</a> of the object (for lighthouses and transmitters normally <tt>10</tt>)</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1568
     <li>m2: see company statue
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1569
     <li>m5: tile type:
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1570
      <table>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1571
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1572
        <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
  1573
        <td align=left>transmitter</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1574
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1575
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1576
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1577
        <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
  1578
        <td align=left>lighthouse</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1579
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1580
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1581
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1582
        <td nowrap valign=top><tt>02</tt>&nbsp; </td>
8457
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1583
        <td align=left>company statue
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1584
         <ul>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1585
          <li>m2: TownID on which the statue is built in</li>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1586
         </ul>
b5359aaeddca (svn r12027) -Documentation: Update 'landscape.html' and 'landscape_grid.html' to reflect reality and add some details.
frosch
parents: 8414
diff changeset
  1587
        </td>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1588
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1589
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1590
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1591
        <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
  1592
        <td align=left>company-owned land</td>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1593
       </tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1594
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1595
       <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1596
        <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
  1597
        <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
  1598
       </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1599
      </table>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1600
     </li>
6184
e9d7aa565c2b (svn r8956) -Documentation : complete reference of m6 usage is now available.
belugas
parents: 6180
diff changeset
  1601
     <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
  1602
     <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
  1603
    </ul>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1604
   </td>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1605
  </tr>
6180
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1606
  <tr>
3416d9af0183 (svn r8951) -Cleanup: Another bunch of re-formating and re-ordering.
belugas
parents: 6172
diff changeset
  1607
   <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
  1608
      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
  1609
  </tr>
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1610
 </table>
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
  1611
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
  1612
6029
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1613
 <hr>
876204eb8d1e (svn r8752) -Cleanup: Reformat, re-arrange, correct tag errors on landscape.html.
belugas
parents: 5803
diff changeset
  1614
 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
  1615
 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
  1616
 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
  1617
</body>
464
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
  1618
76be94b57799 (svn r688) Fix eol-style (hopefully).
pasky
parents: 449
diff changeset
  1619
</html>