Telltale Games FONT: Difference between revisions
Jump to navigation
Jump to search
imported>Ikskoks |
imported>Ikskoks |
||
| Line 13: | Line 13: | ||
// header | // header | ||
4 bytes (char) - signature // e.g. "5VSM" | 4 bytes (char) - signature // e.g. "5VSM" | ||
4 bytes (uint32) - info size? | |||
4 bytes (uint32) - nulls | |||
4 bytes (uint32) - data size? | |||
4 bytes (uint32) - font version // e.g. 10 - Batman | |||
x bytes - unknown | x bytes - unknown | ||
Revision as of 11:40, 8 May 2022
Back to index | Edit this page
FONT
- Format Type : Font
- Endian Order : Little Endian
- Signature : VSM / 5VSM / 6VSM
Format Specifications
// header
4 bytes (char) - signature // e.g. "5VSM"
4 bytes (uint32) - info size?
4 bytes (uint32) - nulls
4 bytes (uint32) - data size?
4 bytes (uint32) - font version // e.g. 10 - Batman
x bytes - unknown
4 bytes(uint32) - coordinates table length
4 bytes (uint32) - number of entries in coordinates table
// coordinates table
num_of_entries *
{
4 bytes (uint32) - symbol's utf-8 code // e.g. 78 for "N"
4 bytes (uint32) - texture number // usually 0 or 1
4 bytes (uint32) - HZ / Channel
4 bytes (uint32) - w_start
4 bytes (uint32) - w_end
4 bytes (uint32) - h_start
4 bytes (uint32) - h_end
4 bytes (uint32) - width
4 bytes (uint32) - height
4 bytes (uint32) - kern_left_side
4 bytes (uint32) - to_top
4 bytes (uint32) - width with kerning
}
// TODO
Notes and Comments
- This file format occurs in games made by Telltale Games.
Games
List of games using this file format:
- Batman: The Telltale Series (PC) (*.FONT) ("5VSM" signature)
QuickBMS Script
Not written yet.
Compatible Programs