Changes

Jump to navigation Jump to search

FF8/WorldMap wmx

1,429 bytes removed, 05:25, 23 May 2019
m
31 revisions imported
By MaKiPL, Updated 27.5.2016 by Halfer. All thanks goes to Halfer, for rich research progress on world map file. This wiki page is also based on Blue's wmx2obj source code.  == General ==
==General==
Wmx.obj is world map geometry model only. Contains 835 segments, does not contain textures nor additional info like general header or pointers. Collision is calculated directly from faces. Towns and places on map are part of world map and are created the same way as mountains, ground etc. File size is 0x9000*835. Every 0x9000 a next segments starts.
Block = contains geometry
One segment is 0x9000 or 36864 bytes long. There are 16 blocks in a segment. In theory, a segment can hold 16 blocks which each hold 0x900 bytes of data.
1-768 segments are final world map. 769-835 are story based segments like Balamb garden stationary, no Esthar, No cities in DISC4.
==Segment==
Segment starts with a header (consist offsets for every block). After segment's header blocks data appears.
<br />
{| borderclass="1" cellspacing="1" cellpadding="3" align="center" style="border: 1px solid black; border-collapse: collapse;wikitable"! style="background:rgb(204,204,204)" | Offset! style="background:rgb(204,204,204)" | Length! style="background:rgb(204,204,204)" | Description
|-
| 0
| varies
| Block data
|-
|}
<br />
===Header data=== 
{| borderclass="1" cellspacing="1" cellpadding="3" align="center" style="border: 1px solid black; border-collapse: collapse;wikitable"! style="background:rgb(204,204,204)" | Offset! style="background:rgb(204,204,204)" | Length! style="background:rgb(204,204,204)" | Description
|-
| 0
Group ID can be one of theses values:
<pre> 0: Trabia 1: Balamb + Fisherman's Horizon 2: Esthar West 3: Esthar South East + Laboratory 4: Mordor + Esthar North 5: Centra 6: Galbadia borders (Deling City, Timber, Dollet, Winhill...) 7: Galbadia middle (GGU, Prison, highlands...) 255: Seas</pre>
==Block==
===Block data===
General structure of a block
{| borderclass="1" cellspacing="1" cellpadding="3" align="center" style="border: 1px solid black; border-collapse: collapse;wikitable"! style="background:rgb(204,204,204)" | Offset! style="background:rgb(204,204,204)" | Length! style="background:rgb(204,204,204)" | Description
|-
| 0
| Normals
|-
| Header + Polygons + Vertices + Normals
| 4 Bytes
| Padding
|-
|}
'''Header''' (4 Bytes):
{| borderclass="1" cellspacing="1" cellpadding="3" align="center" style="border: 1px solid black; border-collapse: collapse;wikitable"! style="background:rgb(204,204,204)" | Offset! style="background:rgb(204,204,204)" | Length! style="background:rgb(204,204,204)" | Description
|-
| 0
| 3
| Byte
| Unknown (unusedPadding)
|}
'''Polygon''' (16 bytes):
 {| border="1" cellspacingclass="1" cellpadding="3" align="center" style="border: 1px solid black; border-collapse: collapse;wikitable"! style="background:rgb(204,204,204)" | Offset! style="background:rgb(204,204,204)" | Length! style="background:rgb(204,204,204)" | Description
|-
| 0
| Ground type
|-
| style="background: rgb(255,255,204)" | 14| style="background: rgb(255,255,204)" | Byte| Unknown|-| 15| Bytestyle="background: rgb(255,255,204)" | Unknown
|-
| style="background: rgb(255,255,204)" | 15
| style="background: rgb(255,255,204)" | Byte
| style="background: rgb(255,255,204)" | Unknown
|}
'''Vertexand Normal''' (8 bytes):
{| borderclass="1" cellspacing="1" cellpadding="3" align="center" style="border: 1px solid black; border-collapse: collapse;wikitable"! style="background:rgb(204,204,204)" | Offset! style="background:rgb(204,204,204)" | Length! style="background:rgb(204,204,204)" | Description
|-
| 0
| 4
| short
| Y |-| 6| short| Weight (unused)|} '''Normal''' (8 bytes): {| border="1" cellspacing="1" cellpadding="3" align="center" style="border: 1px solid black; border-collapse: collapse;"! style="background:rgb(204,204,204)" | Offset! style="background:rgb(204,204,204)" | Length! style="background:rgb(204,204,204)" | Description|-| 0| short| X |-| 2| short| -Z |-| 4| short| Y
|-
| 6
| short
| W (unusedPadding)
|}
==Block explained==
Final Fantasy 8's world map is pretty much sea all around. One sea block or as I like to call it water block is made of 32 polygons, which are always triangles. The data is pretty straight forward to read with the above information. One thing to note is, that there is only 1 normal which points upwards in water block.
In FF8's world data, a segment location is predefined in currently unknown place (in engine or wmset.obj) and there are horizontally 32 and vertically 24 segments to form the world map. Each block in segments follows to same logic with 4x4 grid instead of 32x24. The first block starts from the upper left corner of the segment.
Each block have their own local bounding box, which the vertice values follow. A blocks origin is always predefined to start from upper left corner of its bounding box. This bounding box is always a size of 2048x2048 units (up and down limit is not known). This means that 2048 units or 0x800 is the local max for vertices coordinate before it overlaps with next blocks bounding box. There are no limitation to overlapping, you can extend a blocks geometry out of its bounding box and even out of the local segment. However, the collision is always calculated from the block which bounding box you are in, so extending a blocks geometry out of its bounding box doesn't make it collidable in overlapping block.

Navigation menu