Anonymous

Changes

From Final Fantasy Inside

FF9/IMGSubDir

1,779 bytes added, 23:15, 6 May 2006
no edit summary
=Sub Directory Information=
The sub directories consist of a file list structure and then actual file data.

==Sub Directory: File List Structure==
The infomation is formated as 2 DWORDS * the file count from the root directory. With as many as 300 + files this accounts for 1 to 2 sectors for a subdirectory section. The first sector information may be considered the END sector of the directory information, it is likely this is how it is used by the game kernel.
{| border="0" cellspacing="1" cellpadding="3" style="background: rgb(0,0,0)" align="center"
! style="background:rgb(204,204,204);" align="center" | Name
! style="background:rgb(204,204,204);" align="center" | Type
! style="background:rgb(204,204,204);" align="left" | Description
|-
| style="background:rgb(255,255,255);" | Flags
| style="background:rgb(255,255,255);" | DWORD
| style="background:rgb(255,255,255);" | File flag information is unknown at this time.
|-
| style="background:rgb(255,255,255);" | First Sector
| style="background:rgb(255,255,255);" | DWORD
| style="background:rgb(255,255,255);" | This is the first sector of the file.
|-
|}
==File Size information==
This is determined expostfacto. It is not included with the file list. First you load the file directory structure (1 + sectors). The next step is to find the file you wish to know the size of (IE 0 to FileCount-1 in the file structure array). Take the first sector of the next file in the array (only if it's not the last file) and subtract the first sector of the file you wish the size of, the result is the number of sectors the file ocupies within the image. The last file is a bit different you need the sector of the next sub directory file list and subtract from that the first sector of the file you wish the size of.
Anonymous user