FONT (File Format): Difference between revisions

>Aruki
>Aruki
Line 9: Line 9:


=== Header ===
=== Header ===
The header has a couple minor differences depending on the version. Version 1 (MP1 Kiosk Demo) is missing the value at 0x18, and starting in Version 5 (MP3/DKCR), the texture ID is 64 bits. Those are the only changes, though (and for that matter, those are the only differences in version 1/5).


{| class="wikitable"
{| class="wikitable"
Line 39: Line 41:
| u32
| u32
| 4
| 4
| '''Paragraph upper margin'''
| '''Vertical offset'''
|-
|-
| 0x14
| 0x14
Line 66: Line 68:
| '''Font name'''; zero-terminated string
| '''Font name'''; zero-terminated string
|-
|-
| 0x22+N
| -
| [[TXTR (Metroid Prime)|TXTR]]
| [[TXTR (Metroid Prime)|TXTR]]
| 4
| 4/8
| '''Texture ID'''
| '''Texture ID'''
|-
|-
| 0x26+N
| -
| u32
| u32
| 4
| 4
| {{unknown|'''Unknown'''}}
| {{unknown|'''Unknown'''}}
|-
|-
| 0x2A+N
| -
| u32
| u32
| 4
| 4
| '''Glyph count'''
| '''Glyph count'''
|-
|-
| 0x2E+N
| -
| Glyph[]
| Glyph[]
| -
| -
Line 106: Line 108:
|}
|}


=== Glyph Entry (Version 2) ===
=== Glyphs ===
 
This section of the file details each glyph making up the font. One glyph corresponds to one character. To map the character with the part of the font texture that contains that character, each glyph contains a set of texture coordinates. Since the UV map is always rectangular, the file only stores the min/max X/Y coordinates; they should be mixed and matched to get the absolute values.
 
In addition, glyphs contain a vertical offset. This offset is necessary because the textures are usually so tightly packed that there's no extra space for vertical spacing. After applying the offset, the vertical offset from the FONT header is applied. This aligns the glyphs at their intended position.
 
The kerning index value is the index of the first kerning table entry for the given character. Since the table is sorted in alphabetical order, this can be used to speed up lookup time.
 
This section of the file changes somewhat from version 2 to 4. Starting in version 4, glyphs are able to be encoded to only one particular RGBA channel, which allows multiple glyphs to be encoded in the same space on the texture. A "channel index" value was introduced to track which channel the glyph is on. Additionally, a lot of 32-bit values were reduced to 8- or 16-bit. Aside from that, though, the actual layout is still the same, with the same values in the same places.
 
==== Version 2 (Metroid Prime 0-00) ====


{| class="wikitable"
{| class="wikitable"
Line 167: Line 179:
| u32
| u32
| 4
| 4
| '''Base offset'''
| '''Vertical offset'''
|-
|-
| 0x2A
| 0x2A
Line 178: Line 190:
|}
|}


=== Glyph Entry (Version 4) ===
==== Version 4 (Metroid Prime PAL) ====


{| class="wikitable"
{| class="wikitable"
Line 214: Line 226:
| u8
| u8
| 1
| 1
| '''RGBA layer index'''
| '''RGBA channel index'''
|-
|-
| 0x13
| 0x13
Line 252: Line 264:
=== Kerning Table ===
=== Kerning Table ===


This table is at the end of the file, and defines kerning pairs. It starts with a 32-bit count value and then loops the following structure:
This table is at the end of the file, and defines kerning pairs. The table is case-sensitively sorted in alphabetical order, which allows for fast lookup times using the glyph kerning indices. After a 32-bit count value, each pair follows this simple structure:


{| class="wikitable"
{| class="wikitable"
Anonymous user