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