docs/landscape_grid.html
author tron
Sat, 13 Aug 2005 16:23:07 +0000
changeset 2336 48ace1344af0
parent 2149 e5ae969b26b9
child 2487 be510f15d36f
permissions -rw-r--r--
(svn r2862) Return a proper version number, when testing the TTDPatch version in the SkipIf action. Pretend to be version 2.0.1 alpha 49 for now.
Also change the type of the variables, which get compared, to uint32, because the values are at most 32bits wide and always seem to be unsigned.
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
     1
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
     2
<html>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
     3
<head>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
     4
  <meta content="text/html; charset=UTF-8" http-equiv="content-type">
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
     5
  <meta name="Description" content="Structure of OpenTTD (OTTD) landscape arrays #2">
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
     6
  <title>OpenTTD Landscape Internals - #2</title>
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
     7
  <style type="text/css">
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
     8
    .freebits { background-color: rgb(30, 178, 54);}
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
     9
    .abuse { background-color: rgb(255, 58, 31);}
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    10
.style7 {font-family: "Courier New", Courier, mono}
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    11
.style8 {background-color: rgb(30, 178, 54); font-family: "Courier New", Courier, mono; }
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    12
.style9 {background-color: rgb(255, 58, 31); font-family: "Courier New", Courier, mono; }
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    13
  </style>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    14
</head>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    15
<body style="direction: ltr;">
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    16
<h3 style="font-weight: bold;">Landscape</h3>
2149
e5ae969b26b9 (svn r2659) Catch up with reality in the landscape documentation
tron
parents: 2020
diff changeset
    17
<span style="font-weight: bold;"></span>Five attributes hold the information about a tile.
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    18
This can be seen in the <a href="landscape.html">Landscape</a> document. This page tries to give an overview of used and free bits of
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    19
the array so you can quickly see what is used and what is not.
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    20
<ul>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    21
  <li><span style="font-weight: bold;"><span class="freebits">O</span></span> - bit is free</li>
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    22
  <li><span style="font-weight: bold;">X</span> - bit is used</li>
2149
e5ae969b26b9 (svn r2659) Catch up with reality in the landscape documentation
tron
parents: 2020
diff changeset
    23
  <li><span style="font-weight: bold;"><span class="abuse">&nbsp;&nbsp;&nbsp;</span></span> - bit of attribute is abused for different purposes</li>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    24
  <li><b>NOTE: </b>counting the bits starts with bit0 in the most left position (eg. a bit screwed LE format; BIT by BIT) </li>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    25
</ul>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    26
<p>
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    27
<ul>
2149
e5ae969b26b9 (svn r2659) Catch up with reality in the landscape documentation
tron
parents: 2020
diff changeset
    28
  <li><span style="font-weight: bold;">type_height</span> - 8 bits in size, stores tile height (lower 4 bits) and tile class (upper 4 bits)</li>
e5ae969b26b9 (svn r2659) Catch up with reality in the landscape documentation
tron
parents: 2020
diff changeset
    29
  <li><span style="font-weight: bold;">owner</span> - 8 bits in size, used to identify the owner of that tile (eg piece of rail, bridge, etc.)</li>
e5ae969b26b9 (svn r2659) Catch up with reality in the landscape documentation
tron
parents: 2020
diff changeset
    30
  <li><span style="font-weight: bold;">m2</span> - 16 bits in size, used to identify the index of the given tile (object) in the (object-)array</li>
e5ae969b26b9 (svn r2659) Catch up with reality in the landscape documentation
tron
parents: 2020
diff changeset
    31
  <li><span style="font-weight: bold;">m3/m4</span> - 16 bits in size, which is split up into m3 and m4 is used for general storage</li>
e5ae969b26b9 (svn r2659) Catch up with reality in the landscape documentation
tron
parents: 2020
diff changeset
    32
  <li><span style="font-weight: bold;">m5</span> - 8 bits in size, is used for general storage</li>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    33
</ul>
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    34
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    35
<table style="text-align: left;" border="1" cellpadding="2"
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    36
 cellspacing="2" width="100%">
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    37
  <tbody>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    38
    <tr>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    39
      <th style="white-space: nowrap; text-align: left;">class</th>
2149
e5ae969b26b9 (svn r2659) Catch up with reality in the landscape documentation
tron
parents: 2020
diff changeset
    40
      <th style="white-space: nowrap; text-align: center;">owner[L1] (8)</th>
e5ae969b26b9 (svn r2659) Catch up with reality in the landscape documentation
tron
parents: 2020
diff changeset
    41
      <th style="white-space: nowrap; text-align: center;">m2[L2] (16)</th>
e5ae969b26b9 (svn r2659) Catch up with reality in the landscape documentation
tron
parents: 2020
diff changeset
    42
      <th style="white-space: nowrap; text-align: center;">m3/m4[L3] (16)</th>
e5ae969b26b9 (svn r2659) Catch up with reality in the landscape documentation
tron
parents: 2020
diff changeset
    43
      <th style="white-space: nowrap; text-align: center;">type_height[L4] (8)</th>
e5ae969b26b9 (svn r2659) Catch up with reality in the landscape documentation
tron
parents: 2020
diff changeset
    44
      <th style="white-space: nowrap; text-align: center;">m5[L5] (8)</th>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    45
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    46
    <tr>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    47
      <td style="white-space: nowrap; text-align: left;">bits</td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    48
      <td style="white-space: nowrap; text-align: center;"><span class="style7">0123 4567 </span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    49
      <td style="white-space: nowrap; text-align: center;"><span class="style7">0123 4567 0123 4567 </span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    50
      <td style="white-space: nowrap; text-align: center;"><span class="style7">0123 4567 0123 4567 </span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    51
      <td style="white-space: nowrap; text-align: center;"><span class="style7">0123 4567</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    52
      <td style="white-space: nowrap; text-align: center;"><span class="style7">0123 4567</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    53
    </tr>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    54
    <tr>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    55
      <td style="white-space: nowrap; text-align: left;">(0) ground</td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    56
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    57
      <td style="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO OOOO OOOO</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    58
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX <span class="freebits">OOOO OO</span>XX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    59
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    60
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX X<span class="freebits">O</span>XX</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    61
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    62
    <tr>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    63
      <td style="white-space: nowrap; text-align: left;">(1) rail</td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    64
      <td style="white-space: nowrap; text-align: center;"><span class="style9">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    65
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX <span class="freebits">OOOO OOOO</span><br>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    66
      </span></td>
2020
392890f32338 (svn r2529) - Fix: PBS signals showed up as normal signals with the query tool
Darkvater
parents: 2018
diff changeset
    67
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX XXXX XXXX</span><br>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    68
      </span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    69
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    70
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX<br>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    71
      </span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    72
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    73
    <tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    74
      <td>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    75
      <ul>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    76
        <li style="white-space: nowrap; text-align: left;">depot/checkpoint</li>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    77
      </ul>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    78
      </td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    79
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    80
      <td style="text-align: center;"><span class="style8">OOOO OOOO OOOO OOOO</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    81
      <td style="text-align: center;"><span class="style7">XXXX X<span class="freebits">OOO</span> XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    82
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    83
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXX<span class="freebits">O OO</span>XX</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    84
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    85
    <tr>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    86
      <td style="white-space: nowrap; text-align: left;">(2) road</td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    87
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    88
      <td style="text-align: center;"><span class="style9">XXXX XXXX XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    89
      <td style="text-align: center;"><span class="style8">OOOO OOOO</span><span class="style7"> XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    90
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    91
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    92
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    93
    <tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    94
      <td>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    95
      <ul>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    96
        <li style="white-space: nowrap; text-align: left;">level crossing</li>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    97
      </ul>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    98
      </td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
    99
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   100
      <td style="text-align: center;"><span class="style9">XXXX XXXX XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   101
      <td style="text-align: center;"><span class="style7">XXXX XXXX XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   102
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   103
      <td style="text-align: center;"><span class="style8">OO</span><span class="style7">XX XXXX</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   104
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   105
    <tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   106
      <td>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   107
      <ul>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   108
        <li style="white-space: nowrap; text-align: left;">road depot</li>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   109
      </ul>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   110
      </td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   111
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   112
      <td style="text-align: center;"><span class="style8">OOOO OOOO OOOO OOOO</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   113
      <td style="text-align: center;"><span class="style8">OOOO OOOO OOOO OOO</span><span class="style7">X</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   114
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   115
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   116
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   117
    <tr>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   118
      <td style="white-space: nowrap; text-align: left;">(3) town</td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   119
      <td style="white-space: nowrap; text-align: center;"><span class="style9">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   120
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX XXXX XXXX<br>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   121
      </span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   122
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX XXXX XXXX<br>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   123
      </span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   124
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   125
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XX<span class="freebits">O</span>X</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   126
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   127
    <tr>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   128
      <td style="white-space: nowrap; text-align: left;">(4) trees</td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   129
      <td style="white-space: nowrap; text-align: center;"><span class="style9">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   130
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XX<span class="freebits">OO OOOO OOOO</span></span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   131
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX <span class="freebits">OO</span>XX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   132
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   133
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXX<span class="freebits">O OO</span>XX</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   134
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   135
    <tr>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   136
      <td style="white-space: nowrap; text-align: left;">(5) station</td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   137
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   138
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   139
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX X<span class="freebits">OOO</span> XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   140
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   141
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   142
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   143
    <tr>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   144
      <td style="white-space: nowrap; text-align: left;">(6) water</td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   145
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   146
      <td style="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO OOOO OOOO</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   147
      <td style="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO OOOO OOOO</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   148
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   149
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   150
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   151
    <tr>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   152
      <td style="white-space: nowrap; text-align: left;">(8) industry</td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   153
      <td style="white-space: nowrap; text-align: center;"><span class="style9">XXXX X</span><span class="style8">OO</span><span class="style9">X</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   154
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   155
      <td style="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO OOOO OOOO</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   156
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   157
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   158
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   159
    <tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   160
      <td>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   161
      <ul>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   162
        <li style="white-space: nowrap; text-align: left;">bubble/sugar/toffee</li>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   163
      </ul>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   164
      </td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   165
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   166
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   167
      <td style="text-align: center;"><span class="style7">XXXX XXXX <span class="freebits">OOOO OOOO</span></span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   168
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   169
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   170
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   171
    <tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   172
      <td>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   173
      <ul>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   174
        <li style="white-space: nowrap; text-align: left;">toy factory</li>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   175
      </ul>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   176
      </td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   177
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   178
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   179
      <td style="text-align: center;"><span class="style7">XXXX XXXX XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   180
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   181
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   182
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   183
    <tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   184
      <td>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   185
      <ul>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   186
        <li style="white-space: nowrap; text-align: left;">gold/copper/coal</li>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   187
      </ul>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   188
      </td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   189
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   190
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   191
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   192
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   193
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   194
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   195
    <tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   196
      <td>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   197
      <ul>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   198
        <li style="white-space: nowrap; text-align: left;">oil wells</li>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   199
      </ul>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   200
      </td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   201
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   202
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   203
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   204
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   205
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   206
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   207
    <tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   208
      <td>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   209
      <ul>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   210
        <li style="white-space: nowrap; text-align: left;">power station</li>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   211
      </ul>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   212
      </td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   213
      <td style="text-align: center;"><span class="style7">XXXX XX<span class="freebits">O</span>X</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   214
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   215
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   216
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   217
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   218
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   219
    <tr>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   220
      <td style="white-space: nowrap; text-align: left;">(9) tunnel</td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   221
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   222
      <td style="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO OOOO OOOO</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   223
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX <span class="freebits">OOOO OOOO OOO</span>X</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   224
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   225
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   226
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   227
    <tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   228
      <td>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   229
      <ul>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   230
        <li style="white-space: nowrap; text-align: left;">bridge</li>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   231
      </ul>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   232
      </td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   233
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   234
      <td style="text-align: center;"><span class="style9">XXXX XXXX</span> <span class="style8">OOOO OOOO</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   235
      <td style="text-align: center;"><span class="style7">XXXX XXXX <span class="freebits">OOOO OOO</span>X</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   236
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   237
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   238
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   239
    <tr>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   240
      <td style="white-space: nowrap; text-align: left;">(10) various (HQ)</td>
2018
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   241
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   242
      <td style="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO OOOO OOOO</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   243
      <td style="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO OOOO OOOO</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   244
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e170da25e44d (svn r2527) - Clarify map-description file. Bits are from left to right with the lowest bit on the left. Eg. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... Is that clear?
Darkvater
parents: 1993
diff changeset
   245
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   246
    </tr>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   247
  </tbody>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   248
</table>
1487
d3e8fae38e6c (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   249
1484
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   250
</body>
28905e48cb54 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   251
</html>