GRP (Duke Nukem 3D)
From Just Solve the File Format Problem
(Difference between revisions)
m (→See also) |
(sample files) |
||
(One intermediate revision by one user not shown) | |||
Line 9: | Line 9: | ||
== Structure == | == Structure == | ||
− | |||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
Line 50: | Line 49: | ||
|} | |} | ||
− | == | + | == Sample files == |
+ | * {{DexvertSamples|archive/buildEngineGroupGameArchive}} | ||
+ | == See also == | ||
* [https://moddingwiki.shikadi.net/wiki/GRP_Format ''GRP Format'' on the ''DOS Game Modding Wiki''] | * [https://moddingwiki.shikadi.net/wiki/GRP_Format ''GRP Format'' on the ''DOS Game Modding Wiki''] | ||
[[Category:Build Engine formats]] | [[Category:Build Engine formats]] | ||
+ | [[Category:Game data files]] |
Latest revision as of 14:58, 30 July 2024
A .grp file, commonly referred to as a Group File, is a uncompressed archive format used by Duke Nukem 3D (a Build Engine game) to store all of the game's content.
[edit] Structure
Format | Type | Notes |
---|---|---|
Signature | char[12]
|
"KenSilverman"
|
File Count (count )
|
int
|
|
Files | File[count]
|
For each File:
Format | Type | Notes |
---|---|---|
Filename | String[12]
|
|
File size (fileSize )
|
int
|
|
Data | bytes[fileSize]
|