GRP (Duke Nukem 3D)
From Just Solve the File Format Problem
(Difference between revisions)
m |
|||
Line 1: | Line 1: | ||
A '''.grp''' file, commonly referred to as a ''Group File'', is a uncompressed archive format used by [[:Category:Build_Engine_formats|Build Engine]] games to store all of the game's content. | A '''.grp''' file, commonly referred to as a ''Group File'', is a uncompressed archive format used by [[:Category:Build_Engine_formats|Build Engine]] games to store all of the game's content. | ||
+ | == Structure == | ||
+ | |||
+ | {| class="wikitable" | ||
+ | |- | ||
+ | ! '''Format''' | ||
+ | ! '''Type''' | ||
+ | ! '''Notes''' | ||
+ | |- | ||
+ | | Signature | ||
+ | | <code>char[12]</code> | ||
+ | | <code>"KenSilverman"</code> | ||
+ | |- | ||
+ | | File Count (<code>count</code>) | ||
+ | | <code>int</code> | ||
+ | | | ||
+ | |- | ||
+ | | Files | ||
+ | | <code>Files[count]</code> | ||
+ | | | ||
+ | |} | ||
[[Category:Build Engine formats]] | [[Category:Build Engine formats]] |
Revision as of 13:51, 11 November 2022
A .grp file, commonly referred to as a Group File, is a uncompressed archive format used by Build Engine games to store all of the game's content.
Structure
Format | Type | Notes |
---|---|---|
Signature | char[12]
|
"KenSilverman"
|
File Count (count )
|
int
|
|
Files | Files[count]
|