Anonymous

Changes

From Final Fantasy Inside

FF7/Field/Walkmesh

610 bytes removed, 02:41, 13 July 2019
no edit summary
=== Section 5: Walkmesh ([[User:Kero|Kero]]) ===
<div class="thumb tright"><div class="thumbinner" style="width: 182px">[[File:Field_Wutai.jpg|180px|[[Image:180px-Field_Wutai.jpg]]]]<div class="thumbcaption"><div class="magnify">[[File:Field Wutai.jpg|thumb|]]</div>Wutai Walkmesh]]</div></div></div>
Every every offset is here relative, 00 is at the start of section 5 (after length indicator).
Section 5 of field files is a stored walkmesh. A walkmesh is a mesh of polygons on which characters move, telling the engine for example how high it is, and using this the character can, for example, cross bridges with the real feeling that in the middle he is at a higher place than on the sides. It has very simple structure.
{| borderclass="0" cellspacing="1" cellpadding="3" style="background: rgb(0,0,0)" align="centerwikitable"! style="background:rgb(0,255,0)" align="center" | Offset! style="background:rgb(0,255,0)" align="center" | Name! style="background:rgb(0,255,0)" align="center" | Data Type! style="background:rgb(0,255,0)" align="center" | Length! style="background:rgb(0,255,0)" align="center" | Description
|-
|style="background:rgb(0,255,0)" | 0x0000|style="background:rgb(0,255,0)" | NoS |style="background:rgb(0,255,0)" | DWORD|style="background:rgb(0,255,0)" | 0x04|style="background:rgb(0,255,0)" | Number of Sectors
|-
|style="background:rgb(0,255,0)" | 0x0004|style="background:rgb(0,255,0)" | Sector Pool (SP)|style="background:rgb(0,255,0)" | DWORD|style="background:rgb(0,255,0)" | 24 * NoS|style="background:rgb(0,255,0)" | The data pool of Secots
|-
|style="background:rgb(0,255,0)" | 0x0004 + 24 * NoS|style="background:rgb(0,255,0)" | Sector Access Pool (SAP)|style="background:rgb(0,255,0)" | WORD[3]|style="background:rgb(0,255,0)" | 6 * NoS|style="background:rgb(0,255,0)" | ID of triangle of each Edge
|}
 ==== Section 5 Header ====
Startofs 0x00 Length 0x04
The walkmesh information is preceeded by a DWORD (4 bytes) unsigned int, named '''NoS''', short for the Number of Sectors in the walkmesh.
==== Sector pool ====
Startofs 0x04 Length NoS*24
The pool consists of sectors, which are in fact triangles, each with their vertices position. For each sector there are 3 vertices (3 vertex_3s). Res is always equal to v[0].z (it is just a padding value). The polygons are 'wound' clockwise, this makes determining if a point is within a triangle easier.
==== Access pool ====
Startofs 0x04 + NoS*24 Length NoS*6
The access pool is an array of access data (ID's of triangles in the Mesh) in the mesh, the ID is the triangle you should be in if you cross that edge.
acces1 is for line from vertex 0 to 1acces2 is for line from vertex 1 to 2acces3 is for line from vertex 2 to 0
If the edge value is 0xFFFF, than this edge cannot be crossed (it's blocked). The access pool and sector pool have the same number of entries, thus you use the same index value for both pools of data to access the data for the same triangle. The access data merely informs one that if the PC object crosses this line the object should be in the indentified triangle. FF7 will halt running if you are not in the '''access''' specified triangle.