docs/landscape_grid.html
author tron
Sun, 15 Jan 2006 09:17:01 +0000
changeset 2850 e99d3b01c329
parent 2781 bde9ad22a9f3
child 2851 35d917129282
permissions -rw-r--r--
(svn r3398) Remove TTDp nomenclature
1484
e06402a9e572 (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">
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
     2
<html>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
     3
<head>
e06402a9e572 (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
4d76c7c82cfb (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">
4d76c7c82cfb (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>
4d76c7c82cfb (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">
4d76c7c82cfb (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);}
4d76c7c82cfb (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
455a61317491 (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}
455a61317491 (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; }
455a61317491 (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
4d76c7c82cfb (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
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    14
</head>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    15
<body style="direction: ltr;">
e06402a9e572 (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
95d94c046f84 (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
4d76c7c82cfb (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
4d76c7c82cfb (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
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    20
<ul>
1487
4d76c7c82cfb (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>
4d76c7c82cfb (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
95d94c046f84 (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
455a61317491 (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
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    25
</ul>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    26
<p>
4d76c7c82cfb (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
95d94c046f84 (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>
2487
505921a23241 (svn r3013) Update the documentation: The 'owner' attribute was renamed to 'm1' long ago
tron
parents: 2149
diff changeset
    29
  <li><span style="font-weight: bold;">m1</span> - 8 bits in size, used to identify the owner of that tile (eg piece of rail, bridge, etc.)</li>
2149
95d94c046f84 (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>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    31
  <li><span style="font-weight: bold;">m3</span> - 8 bits in size, is used for general storage</li>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    32
  <li><span style="font-weight: bold;">m4</span> - 8 bits in size, is used for general storage</li>
2149
95d94c046f84 (svn r2659) Catch up with reality in the landscape documentation
tron
parents: 2020
diff changeset
    33
  <li><span style="font-weight: bold;">m5</span> - 8 bits in size, is used for general storage</li>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    34
</ul>
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    35
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    36
<table style="text-align: left;" border="1" cellpadding="2"
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    37
 cellspacing="2" width="100%">
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    38
  <tbody>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    39
    <tr>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    40
      <th style="white-space: nowrap; text-align: left;">class</th>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    41
      <th style="white-space: nowrap; text-align: center;">m1 (8)</th>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    42
      <th style="white-space: nowrap; text-align: center;">m2 (16)</th>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    43
      <th style="white-space: nowrap; text-align: center;">m3 (8)</th>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    44
      <th style="white-space: nowrap; text-align: center;">m4 (8)</th>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    45
      <th style="white-space: nowrap; text-align: center;">type_height (8)</th>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    46
      <th style="white-space: nowrap; text-align: center;">m5 (8)</th>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    47
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    48
    <tr>
2018
455a61317491 (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: left;">bits</td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    50
      <td style="white-space: nowrap; text-align: center;"><span class="style7">0123 4567</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    51
      <td style="white-space: nowrap; text-align: center;"><span class="style7">0123 4567 0123 4567</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    52
      <td style="white-space: nowrap; text-align: center;"><span class="style7">0123 4567</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    53
      <td style="white-space: nowrap; text-align: center;"><span class="style7">0123 4567</span></td>
2018
455a61317491 (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
      <td style="white-space: nowrap; text-align: center;"><span class="style7">0123 4567</span></td>
455a61317491 (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
    55
      <td style="white-space: nowrap; text-align: center;"><span class="style7">0123 4567</span></td>
455a61317491 (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
    </tr>
455a61317491 (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
    <tr>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    58
      <td style="white-space: nowrap; text-align: left;">(0) ground</td>
2018
455a61317491 (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>
455a61317491 (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="style8">OOOO OOOO OOOO OOOO</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    61
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX <span class="freebits">OOOO</span></span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    62
      <td style="white-space: nowrap; text-align: center;"><span class="style7"><span class="freebits">OO</span>XX XXXX</span></td>
2018
455a61317491 (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
    63
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
455a61317491 (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="style7">XXXX X<span class="freebits">O</span>XX</span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    65
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    66
    <tr>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    67
      <td style="white-space: nowrap; text-align: left;">(1) rail</td>
2018
455a61317491 (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
      <td style="white-space: nowrap; text-align: center;"><span class="style9">XXXX XXXX</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    69
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX <span class="freebits">OOOO OOOO</span></span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    70
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    71
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
2018
455a61317491 (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
    72
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
455a61317491 (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
    73
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX<br>
455a61317491 (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
    74
      </span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    75
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    76
    <tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    77
      <td>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    78
      <ul>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    79
        <li style="white-space: nowrap; text-align: left;">depot/checkpoint</li>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    80
      </ul>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    81
      </td>
2018
455a61317491 (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>
455a61317491 (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="text-align: center;"><span class="style8">OOOO OOOO OOOO OOOO</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    84
      <td style="text-align: center;"><span class="style7">XXXX X<span class="freebits">OOO</span></span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    85
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
2018
455a61317491 (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
    86
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
455a61317491 (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="white-space: nowrap; text-align: center;"><span class="style7">XXX<span class="freebits">O OO</span>XX</span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    88
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    89
    <tr>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
    90
      <td style="white-space: nowrap; text-align: left;">(2) road</td>
2018
455a61317491 (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>
455a61317491 (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
    92
      <td style="text-align: center;"><span class="style9">XXXX XXXX XXXX XXXX</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    93
      <td style="text-align: center;"><span class="style8">OOOO OOOO</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
    94
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
2018
455a61317491 (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
    95
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
455a61317491 (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
    96
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    97
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    98
    <tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
    99
      <td>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   100
      <ul>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   101
        <li style="white-space: nowrap; text-align: left;">level crossing</li>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   102
      </ul>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   103
      </td>
2018
455a61317491 (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
   104
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
455a61317491 (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
   105
      <td style="text-align: center;"><span class="style9">XXXX XXXX XXXX XXXX</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   106
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   107
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
2018
455a61317491 (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
   108
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
455a61317491 (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
   109
      <td style="text-align: center;"><span class="style8">OO</span><span class="style7">XX XXXX</span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   110
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   111
    <tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   112
      <td>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   113
      <ul>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   114
        <li style="white-space: nowrap; text-align: left;">road depot</li>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   115
      </ul>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   116
      </td>
2018
455a61317491 (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
   117
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
455a61317491 (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
   118
      <td style="text-align: center;"><span class="style8">OOOO OOOO OOOO OOOO</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   119
      <td style="text-align: center;"><span class="style8">OOOO OOOO</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   120
      <td style="text-align: center;"><span class="style8">OOOO OOO</span><span class="style7">X</span></td>
2018
455a61317491 (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
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
455a61317491 (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="text-align: center;"><span class="style7">XXXX XXXX</span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   123
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   124
    <tr>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   125
      <td style="white-space: nowrap; text-align: left;">(3) town</td>
2018
455a61317491 (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
   126
      <td style="white-space: nowrap; text-align: center;"><span class="style9">XXXX XXXX</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   127
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX XXXX XXXX</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   128
      <td style="white-space: nowrap; text-align: center;"><span class="style7"><span class="freebits">OOOO OO</span>XX</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   129
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
2018
455a61317491 (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 XXXX</span></td>
455a61317491 (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 XX<span class="freebits">O</span>X</span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   132
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   133
    <tr>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   134
      <td style="white-space: nowrap; text-align: left;">(4) trees</td>
2018
455a61317491 (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
   135
      <td style="white-space: nowrap; text-align: center;"><span class="style9">XXXX XXXX</span></td>
455a61317491 (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
   136
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XX<span class="freebits">OO OOOO OOOO</span></span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   137
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   138
      <td style="white-space: nowrap; text-align: center;"><span class="style7"><span class="freebits">OO</span>XX XXXX</span></td>
2018
455a61317491 (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 XXXX</span></td>
455a61317491 (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">XXX<span class="freebits">O OO</span>XX</span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   141
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   142
    <tr>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   143
      <td style="white-space: nowrap; text-align: left;">(5) station</td>
2018
455a61317491 (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
   144
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
455a61317491 (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 XXXX XXXX</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   146
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX X<span class="freebits">OOO</span></span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   147
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
2018
455a61317491 (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>
455a61317491 (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
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   150
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   151
    <tr>
1487
4d76c7c82cfb (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;">(6) water</td>
2018
455a61317491 (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="style7">XXXX XXXX</span></td>
455a61317491 (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="style8">OOOO OOOO OOOO OOOO</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   155
      <td style="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   156
      <td style="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO</span></td>
2018
455a61317491 (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>
455a61317491 (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
   158
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   159
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   160
    <tr>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   161
      <td style="white-space: nowrap; text-align: left;">(8) industry</td>
2018
455a61317491 (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
   162
      <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>
455a61317491 (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
   163
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX XXXX XXXX</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   164
      <td style="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   165
      <td style="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO</span></td>
2018
455a61317491 (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="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
455a61317491 (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="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   168
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   169
    <tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   170
      <td>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   171
      <ul>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   172
        <li style="white-space: nowrap; text-align: left;">bubble/sugar/toffee</li>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   173
      </ul>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   174
      </td>
2018
455a61317491 (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
   175
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
455a61317491 (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
   176
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   177
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   178
      <td style="text-align: center;"><span class="style8">OOOO OOOO</span></td>
2018
455a61317491 (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">-inherit-</span></td>
455a61317491 (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>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   181
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   182
    <tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   183
      <td>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   184
      <ul>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   185
        <li style="white-space: nowrap; text-align: left;">toy factory</li>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   186
      </ul>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   187
      </td>
2018
455a61317491 (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
   188
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
455a61317491 (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">-inherit-</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   190
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   191
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
2018
455a61317491 (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>
455a61317491 (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
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   194
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   195
    <tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   196
      <td>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   197
      <ul>
1487
4d76c7c82cfb (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;">gold/copper/coal</li>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   199
      </ul>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   200
      </td>
2018
455a61317491 (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">XXXX XXXX</span></td>
455a61317491 (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>
455a61317491 (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>
455a61317491 (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>
455a61317491 (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>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   206
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   207
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   208
    <tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   209
      <td>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   210
      <ul>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   211
        <li style="white-space: nowrap; text-align: left;">oil wells</li>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   212
      </ul>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   213
      </td>
2018
455a61317491 (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>
455a61317491 (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>
455a61317491 (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>
455a61317491 (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>
455a61317491 (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
   218
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   219
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   220
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   221
    <tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   222
      <td>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   223
      <ul>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   224
        <li style="white-space: nowrap; text-align: left;">power station</li>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   225
      </ul>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   226
      </td>
2018
455a61317491 (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
   227
      <td style="text-align: center;"><span class="style7">XXXX XX<span class="freebits">O</span>X</span></td>
455a61317491 (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
   228
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
455a61317491 (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
   229
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
455a61317491 (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
   230
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
455a61317491 (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
   231
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   232
      <td style="text-align: center;"><span class="style7">-inherit-</span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   233
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   234
    <tr>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   235
      <td style="white-space: nowrap; text-align: left;">(9) tunnel</td>
2018
455a61317491 (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="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
455a61317491 (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="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO OOOO OOOO</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   238
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX <span class="freebits">OOOO</span></span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   239
      <td style="white-space: nowrap; text-align: center;"><span class="style7"><span class="freebits">OOOO OOO</span>X</span></td>
2018
455a61317491 (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
   240
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
455a61317491 (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>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   242
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   243
    <tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   244
      <td>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   245
      <ul>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   246
        <li style="white-space: nowrap; text-align: left;">bridge</li>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   247
      </ul>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   248
      </td>
2018
455a61317491 (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
   249
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
455a61317491 (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
   250
      <td style="text-align: center;"><span class="style9">XXXX XXXX</span> <span class="style8">OOOO OOOO</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   251
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   252
      <td style="text-align: center;"><span class="style7"><span class="freebits">OOOO OOO</span>X</span></td>
2018
455a61317491 (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
   253
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
455a61317491 (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
   254
      <td style="text-align: center;"><span class="style7">XXXX XXXX</span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   255
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   256
    <tr>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   257
      <td style="white-space: nowrap; text-align: left;">(10) various (HQ)</td>
2018
455a61317491 (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
   258
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
455a61317491 (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
   259
      <td style="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO OOOO OOOO</span></td>
2850
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   260
      <td style="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO</span></td>
e99d3b01c329 (svn r3398) Remove TTDp nomenclature
tron
parents: 2781
diff changeset
   261
      <td style="white-space: nowrap; text-align: center;"><span class="style8">OOOO OOOO</span></td>
2018
455a61317491 (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
   262
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
455a61317491 (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
   263
      <td style="white-space: nowrap; text-align: center;"><span class="style7">XXXX XXXX</span></td>
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   264
    </tr>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   265
  </tbody>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   266
</table>
1487
4d76c7c82cfb (svn r1991) - Fix: Fix some of the gaping holes in the colouring, and added some additional info
Darkvater
parents: 1484
diff changeset
   267
1484
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   268
</body>
e06402a9e572 (svn r1988) - Docs: Added graphical representation of tile-data to docs section
Darkvater
parents:
diff changeset
   269
</html>