OBD:TSFT: Difference between revisions

3,566 bytes added ,  7 December 2023
m
changed family
No edit summary
 
m (changed family)
 
(16 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Main Page]] >> [[OBD:Oni Binary Data|Oni Binary Data]] >> [[OBD:File types|File Types]] >> TSFT File
{{OBD_File_Header | type=TSFT | prev=TSFL | next=TSGA | name=Font | family=Interface | align=center}}




<CENTER>[[OBD:TSFL|<==]] <FONT SIZE=5>TSFT File</FONT> [[OBD:TSGA|==>]]<BR>
[[Image:tsft_a.gif]]
<FONT SIZE=2>Font - Level 0 File</FONT></CENTER>




http://www.fh-eberswalde.de/user/dkriesch/onistuff/images/tsft_a.gif
[[Image:tsft_m.gif]]


http://www.fh-eberswalde.de/user/dkriesch/onistuff/images/tsft_m.gif


http://www.fh-eberswalde.de/user/dkriesch/onistuff/images/tsft_e.gif
[[Image:tsft_e.gif]]




{| BORDER=1 WIDTH=100% CELLPADDING=2 CELLSPACING=0
{{Table}}
|- BGCOLOR="#FFDDBB" ALIGN=CENTER
{{OBD_Table_Header}}
| WIDTH=15% | <B>Hex</B>
|- ALIGN=CENTER VALIGN=TOP
| WIDTH=15% | <B>Translation</B>
{{OBDtr| 0x000 | res_id  |FF0000| 01 03 00 00 | 3   | 00003-.TSFT }}
| WIDTH=70% | <B>Meaning</B>
{{OBDtr| 0x004 | lev_id  |FFFF00| 01 00 00 00 | 0   | level 0 }}
|- VALIGN=TOP BGCOLOR="#FFEEDD"
{{OBDtr| 0x008 | dead[6]  |FFFFFF| AD DE      | dead | not used }}
| ALIGN=CENTER BGCOLOR="#FF0000" | 01 03 00 00
{{OBDtr| 0x00E | int16    |00FF00| 07 00       | 7    | font size in points }}
| ALIGN=CENTER | 3
{{OBDtr| 0x010 | int32    |FFFFFF| 01 00 00 00 | 1    | font option; the following options are possible:
| 00003-.TSFT
 
|- VALIGN=TOP BGCOLOR="#FFEEDD"
:0 - normal font
| ALIGN=CENTER BGCOLOR="#FFFF00" | 01 00 00 00
:1 - '''bold font'''
| ALIGN=CENTER | 0
:2 - ''italic font''
| level 0
}}
|- VALIGN=TOP BGCOLOR="#FFEEDD"
{{OBDtr| 0x014 | int16    |FFFFFF| 09 00      | 9   | [[wikt:ascender#Noun|ascender]] height }}
| ALIGN=CENTER BGCOLOR="#00FF00" | 07 00
{{OBDtr| 0x016 | int16    |FFFFFF| 02 00      | 2    | [[wikt:descender#Noun|descender]] height }}
| ALIGN=CENTER | 7
{{OBDtr| 0x018 | int16    |FFFFFF| 02 00      | 2    | [[wikt:leading#Noun_2|leading]] height }}
| unknown, maybe 7 packages &times 9.5 lines
{{OBDtr| 0x01a | int16    |FFFFFF| 02 00      | 2    | ignored }}
|- VALIGN=TOP BGCOLOR="#FFEEDD"
{{OBDtrBK|Room for 256 TSGA links (only the first one is typically used for Western languages)}}
| ALIGN=CENTER BGCOLOR="#00FFFF" | 01 04 00 00
{{OBDtr| 0x01C | link    |00FFFF| 01 04 00 00 | 4   | link to [[OBD:TSGA|00004-.TSGA]] (glyph array for character codes 0-255) }}
| ALIGN=CENTER | 4
{{OBDtr| 0x020 | link    |00FFFF| 00 00 00 00 | 0    | unused }}
| link to 00004-.[[OBD:TSGA|TSGA]]
{{OBDtr| ...  | ...      |00FFFF|    ...    | ...  | ... }}
|- VALIGN=TOP BGCOLOR="#FFEEDD"
{{OBDtr| 0x418 | link    |00FFFF| 00 00 00 00 | 0    | unused }}
| ALIGN=CENTER BGCOLOR="#FF00FF" | 4F 0E 00 00
{{OBDtrBK|Pixel data for the glyphs (8-bit intensities for four pixels at a time, stored as 32-bit integers)}}
| ALIGN=CENTER | 3663
{{OBDtr| 0x41C | int32    |FF00FF| 4F 0E 00 00 | 3663 | array size (one element has a length of 4 bytes) }}
| BGCOLOR="#C0C0C0" | 3663 packages &times; 0.25 lines
{{OBDtr| 0x420 | int32    |C0C0C0| FF FF FF FF | 255,255,255,255 | the first 4 pixels (all white) of the first used glyph }}
{{OBDtr| ...  | ...      |C0C0C0|     ...    | ...  | the rest of the pixel data }}
{{OBDtrBK|Alternative pixel storage used by PS2 implementation}}
{{OBDtr| 0x41C | offset  |FF00FF| 20 00 00 00 | 0x00000020 | offset of the pixel data in the .raw file }}
|}
|}
;Differences between PS2 storage and PC/Mac storage
*The PC and Mac TSFTs store pixel data in a variable-size array (number of elements announced at 0x41C, then 4 bytes per element). PS2 TSFTs instead store the pixel data in the .raw file, using the field at 0x41C to store the offset.
*PC and Mac TSFTs use a whole byte for every pixel, i.e. 256 shades of gray, which in theory allows for subtle antialiasing. (In practice the antialiasing of Oni's fonts is anything but subtle, and the engine further posterizes them from 8-bit to 4-bit when rendering text.) PS2 fonts use only 2 bits per pixel, i.e., only 4 degrees of brightness/opacity.
*PC and Mac use a "black-on-white" representation of the font, with blank areas stored as 0xFF and fully opaque pixels as 0x00. PS2 uses "white-on-black", so a single opaque pixel in a row of four will be stored as 0x03, 0x0C, 0x30 or 0xC0.
*On PC and Mac, the pixel rows for a given glyph can span across several 4-byte array elements, but pixel data for a new glyph must always start at the first byte of an array element (glyph data in a PC or Mac TSGA is indexed by TSFT array element, not by pixel). Therefore, on PC or Mac, if a glyph has, say, 33 8-bit pixels, then there will be 33 bytes of actual storage, spanning 4 whole array elements and 1 byte of a 5th element, and the rest of the 5th element (3 bytes) will be padded (typically with "DE AD" bytes). Inside the PS2 .raw file, the storage is not padded or aligned in any way, and the indexation for each glyph (from TSGA) is by pixel, i.e. by quarter-of-a-byte.
*Same as on PC and Mac, pixel rows are stored top-to-bottom, and each row is stored left-to-right, using lower bits first. For example, the 4x11 bitmap for a 7pt regular double-quote character ("), would be encoded as the following 11 bytes if it was byte-aligned:
byte 0x00 (00000000 low-to-high)
byte 0x33 (11001100 low-to-high)
byte 0x33 (11001100 low-to-high)
byte 0x33 (11001100 low-to-high)
byte 0x00 (00000000 low-to-high)
byte 0x00 (00000000 low-to-high)
byte 0x00 (00000000 low-to-high)
byte 0x00 (00000000 low-to-high)
byte 0x00 (00000000 low-to-high)
byte 0x00 (00000000 low-to-high)
byte 0x00 (00000000 low-to-high)
However, the actually stored pixel data for (") is shifted by half a byte because of the previous two glyphs, which are both 3x11 and take up 33 quarter-bytes each. Therefore the actual storage for (") looks like this:
byte 0x?0 (....0000 low-to-high, lower 4 bits belong to previous glyph)
byte 0x30 (00001100 low-to-high)
byte 0x33 (11001100 low-to-high)
byte 0x33 (11001100 low-to-high)
byte 0x03 (11000000 low-to-high)
byte 0x00 (00000000 low-to-high)
byte 0x00 (00000000 low-to-high)
byte 0x00 (00000000 low-to-high)
byte 0x00 (00000000 low-to-high)
byte 0x00 (00000000 low-to-high)
byte 0x0? (0000.... low-to-high, upper 4 bits belong to next glyph)




The rest is completely unknown.
<HR>
<CENTER>[[OBD:TSFL|<==]] <B>TSFT File</B> [[OBD:TSGA|==>]]</CENTER>
<HR>


{{OBD_File_Footer | type=TSFT | prev=TSFL | next=TSGA | name=Font | family=Interface}}


[[Main Page]] >> [[OBD:Oni Binary Data|Oni Binary Data]] >> [[OBD:File types|File Types]] >> TSFT File
{{OBD}}