PK3

From 3DGE Wiki
Revision as of 11:13, 27 December 2017 by Corbin (talk | contribs) (Created page with "'''PK3''' is an alternate extension for {{wp|ZIP (file format)|ZIP files}}. This nomenclature was introduced by {{wp|Quake III Arena}}. However, contrarily to the PAK format u...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

PK3 is an alternate extension for MiniWikipediaLogoIcon.pngZIP files. This nomenclature was introduced by MiniWikipediaLogoIcon.pngQuake III Arena. However, contrarily to the PAK format used by Quake and Quake II, PK3 is not its own format, but merely a naming trick to prevent the operating system from associating these files with "virtual folders" or archiving software, and to avoid leading users to believe they have to extract the content to make the game work.

Several source ports have adopted support for using PK3 instead of, or in addition to, WAD files to distribute mods. But unlike WAD files (which have standardized marker lumps such as P_START/P_END or F_START/F_END for various lump types), there are no cross-port standards for how data should be organized when placed in a PK3 file.

Folder structure

Since the ZIP format imitates a filesystem with a tree hierarchy, the differences between the various implementations of "PK3" files reside mostly in the folder structure to which a PK3 mod should conform.

Technical details

Although the ZIP format allows for many different compression methods, only two are generally supported: store (method 0), which applies no compression at all, and MiniWikipediaLogoIcon.pngdeflate (method 8). Many utilities may simply fail to open a ZIP archive if at least one of its files was compressed with an unsupported method. See section 4.4.5 in the official ZIP format specifications for a full list of ZIP compression methods.