Difference between revisions of "STLC (File Format)"

From Retro Modding Wiki
Jump to: navigation, search
(Created page with "The '''STLC format''' is a file format that appears in Metroid Prime 2: Echoes. It stores a string list. The only STLC resource in the game (AudioGrp.pak 252e6701.STLC) is...")
 
 
Line 1: Line 1:
The '''STLC format''' is a file format that appears in [[Metroid Prime 2: Echoes]]. It stores a string list. The only STLC resource in the game (AudioGrp.pak 252e6701.STLC) is used to store sound effect names. It is one of the most complicated formats to appear in the entire Metroid Prime series.
+
The '''STLC format''' is a file format that appears in [[Metroid Prime 2: Echoes]]. The extension stands for '''ST'''ring '''L'''ist '''C'''ooked, which is a pretty good description of the contents of the file. The only STLC resource in the game (AudioGrp.pak 252e6701.STLC) is used to store sound effect names. It is one of the most complicated file formats to appear in the entire Metroid Prime series.
  
 
__TOC__
 
__TOC__

Latest revision as of 04:47, 25 May 2016

The STLC format is a file format that appears in Metroid Prime 2: Echoes. The extension stands for STring List Cooked, which is a pretty good description of the contents of the file. The only STLC resource in the game (AudioGrp.pak 252e6701.STLC) is used to store sound effect names. It is one of the most complicated file formats to appear in the entire Metroid Prime series.

Contents

Format

Offset Type Count Name Notes
0x0 u32 1 String Count Count of strings in the next array.
0x4 string String Count String List Array of zero-terminated strings.
End of file