STRG (Metroid Prime 3): Difference between revisions
Jump to navigation
Jump to search
no edit summary
>Aruki (Created page with "''See STRG (File Format) for the other revisions of this format.'' The '''STRG format''' in Metroid Prime 3 is another update to the STRG format, used both in Prime 3 as...") |
>Aruki No edit summary |
||
Line 1: | Line 1: | ||
''See [[STRG (File Format)]] for the other revisions of this format.'' | ''See [[STRG (File Format)]] for the other revisions of this format.'' | ||
The '''STRG format''' in Metroid Prime 3 is another update to the STRG format, used both in Prime 3 as well as Donkey Kong Country Returns. The most significant change from the Echoes STRG format is that the string encoding was changed from UTF-16 to UTF-8. There was also a more robust system for string offsets implemented, allowing for the same string of text to be reused for multiple languages if the string is identical in both. | The '''STRG format''' in Metroid Prime 3 is another update to the STRG format, used both in Prime 3 as well as Donkey Kong Country Returns; the only difference between the two is that DKCR supports more languages. The most significant change from the Echoes STRG format is that the string encoding was changed from UTF-16 to UTF-8. There was also a more robust system for string offsets implemented, allowing for the same string of text to be reused for multiple languages if the string is identical in both. | ||
__TOC__ | __TOC__ | ||
Line 7: | Line 7: | ||
== Format == | == Format == | ||
The header | The initial header is identical to Prime 1/2. The differences start after that; the name table now precedes the language table, and the language tables and string tables are structured differently. | ||
{| class="wikitable" | {| class="wikitable" | ||
! Offset | ! Offset | ||
! Type | ! Type | ||
! | ! Count | ||
! | ! Name | ||
! Notes | |||
|- | |- | ||
| 0x0 | | 0x0 | ||
| u32 | | u32 | ||
| | | 1 | ||
| '''Magic''' | | '''Magic''' | ||
| Always <code>0x87654321</code>. | |||
|- | |- | ||
| 0x4 | | 0x4 | ||
| u32 | | u32 | ||
| | | 1 | ||
| '''Version''' | | '''Version''' | ||
| Always 3. See [[STRG (File Format)|hub article]] for a list of possible version numbers. | |||
|- | |- | ||
| 0x8 | | 0x8 | ||
| u32 | | u32 | ||
| | | 1 | ||
| '''Language | | '''Language Count''' | ||
| Number of languages that this table has strings for. | |||
|- | |- | ||
| 0xC | | 0xC | ||
| u32 | | u32 | ||
| | | 1 | ||
| '''String | | '''String Count''' | ||
| Number of strings contained in the file per language. | |||
|- | |- | ||
| 0x10 | | 0x10 | ||
| colspan= | | [[#Name Table|Name Table]] | ||
| 1 | |||
| '''Name Table''' | |||
| Associates each string in the file with a name. | |||
|- | |||
| {{none}} | |||
| char | |||
| 4 × ''Language Count'' | |||
| '''Language ID Array''' | |||
| Array of fourCCs that defines which languages have strings included in the file. See below for a list of possible language codes. | |||
|- | |||
| {{none}} | |||
| [[#Language|Language]] | |||
| ''Language Count'' | |||
| '''Language Table''' | |||
| Table that defines the languages that are present in the file. Each element in the array corresponds to the language in the ''Language ID Array'' at the same index. | |||
|- | |||
| {{none}} | |||
| [[#String|String]] | |||
| Varies | |||
| '''String Array''' | |||
| Contains the actual string data. The reason the count varies is because if a string is identical between multiple languages then the same string data will be used for all of them, so there's no value that can tell you the real string count directly. | |||
|- | |||
| colspan=5 {{unknown|End of file}} | |||
|} | |} | ||
Possible language codes: | |||
{| class="wikitable" | {| class="wikitable" | ||
! | ! ID | ||
! | ! Language | ||
! | ! MP3 | ||
! DKCR | |||
|- | |||
| <code>ENGL</code> | |||
| English | |||
| {{check}} | |||
| {{check}} | |||
|- | |||
| <code>GERM</code> | |||
| German | |||
| {{check}} | |||
| {{check}} | |||
|- | |||
| <code>FREN</code> | |||
| French | |||
| {{check}} | |||
| {{check}} | |||
|- | |||
| <code>SPAN</code> | |||
| Spanish | |||
| {{check}} | |||
| {{check}} | |||
|- | |||
| <code>ITAL</code> | |||
| Italian | |||
| {{check}} | |||
| {{check}} | |||
|- | |||
| <code>DUTC</code> | |||
| Dutch | |||
| {{check}} | |||
| {{check}} | |||
|- | |||
| <code>JAPN</code> | |||
| Japanese | |||
| {{check}} | |||
| {{check}} | |||
|- | |||
| <code>SCHN</code> | |||
| {{unknown}} | |||
| {{nocheck}} | |||
| {{check}} | |||
|- | |||
| <code>TCHN</code> | |||
| {{unknown}} | |||
| {{nocheck}} | |||
| {{check}} | |||
|- | |||
| <code>UKEN</code> | |||
| U.K. English | |||
| {{nocheck}} | |||
| {{check}} | |||
|- | |- | ||
| | | <code>KORE</code> | ||
| | | Korean | ||
| | | {{nocheck}} | ||
| {{check}} | |||
|- | |- | ||
| | | <code>NAFR</code> | ||
| | | North American French | ||
| | | {{nocheck}} | ||
| {{check}} | |||
|- | |- | ||
| | | <code>NASP</code> | ||
| | | North American Spanish | ||
| {{nocheck}} | |||
| {{check}} | |||
|} | |} | ||
Notes: | |||
* In DKCR, Japanese appears after English instead of after Italian. | |||
* The languages <code>DUTC</code>, <code>SCHN</code>, and <code>TCHN</code> are unused and don't actually appear in any STRG file. However, their fourCCs can be found in the dol alongside the other language codes, so presumably the game supports them. | |||
=== Name Table === | |||
This part of the file is a table that allows names to be assigned to strings. It's identical to the structure from Echoes, so check [[STRG (Metroid Prime)#Name Table|the Echoes documentation]] for details. | |||
=== Language === | |||
This is a small structure that defines where the strings for a particular language are located. It appears once per language. | |||
{| class="wikitable" | {| class="wikitable" | ||
! Offset | ! Offset | ||
! | ! Type | ||
! | ! Count | ||
! Name | |||
! Notes | |||
|- | |- | ||
| 0x0 | | 0x0 | ||
| | | u32 | ||
| ''' | | 1 | ||
| '''Strings Size''' | |||
| This is the combined size of each string this language uses. | |||
|- | |- | ||
| 0x4 | | 0x4 | ||
| | | u32 | ||
| '''String | | ''String Count'' | ||
| '''String offsets''' | |||
| Relative to the start of the first string. | |||
|- | |- | ||
| colspan=5 {{unknown|End of language definition}} | |||
| colspan= | |||
|} | |} | ||
=== String === | |||
=== | |||
{| class="wikitable" | {| class="wikitable" | ||
! Offset | ! Offset | ||
! Type | ! Type | ||
! | ! Name | ||
! | ! Notes | ||
|- | |- | ||
| 0x0 | | 0x0 | ||
| u32 | | u32 | ||
| '''String Size''' | |||
| ''' | | Size of the string data in bytes. | ||
|- | |- | ||
| 0x4 | | 0x4 | ||
| | | string | ||
| '''String''' | |||
| '''String | | Zero-terminated string encoded with UTF-8 Unicode. | ||
|- | |||
| colspan=4 {{unknown|End of string}} | |||
|} | |} | ||
[[Category:File Formats]] | [[Category:File Formats]] | ||
[[Category:Metroid Prime 3: Corruption]] | [[Category:Metroid Prime 3: Corruption]] | ||
[[Category:Donkey Kong Country Returns]] | [[Category:Donkey Kong Country Returns]] |