Additional data provided by CDragon.
A special merge driver is used for hash files.
Add the following to .git/config
to enable it (replace <root>
by local repository path).
[merge "hashfile"]
name = "Merge hash list files"
driver = <root>/tools/git-merge-hashes %A %B
Moreover, tools/hashes-prepare
should be run before comitting hashes.
Client and game files use various hashes. Those hashes are "reversed" to get the associated human-readable string.
Hashes are stored as plain text files, one line per hash: hash string
.
Hash is formatted as lowercase hexadecimal. Its size depends on the hashing algorithm (usually, 32 or 64 bits).
Lines are sorted by string for convenience.
Each collection of hashes is stored in its own file: hashes.{name}.txt
.
However, file that are too large are split; this is required because of Github file size limit.
Files are then named hashes.{name}.txt.0
, hashes.{name}.txt.1
, ...
The shell script tools/hashes-merge
merges split files.
It can be used from a Git hook to automatically merge hashes when updating the repository.
The shell script tools/hashes-prepare
merge, sort and splits hash files.
It is intended to be used by maintainers to prepare files for commit.
The shell script tools/git-merge-hashes
is a Git merge driver to automatically merge hash files.
Paths of files in WAD archives.
64-bit XXH64 with seed 0, applied on lowercased string value.
Paths use mostly letters, digits and characters from ._-/
. Rare occurrences also use spaces and @
.
hashes.game.txt
-- hashes from game archives (.wad.client
files)hashes.lcu.txt
-- hashes from client archives (.wad
files)Paths of files in bin files. 32-bit FNV-1a applied on lowercased string value.
hashes.binentries.txt
-- bin entry pathhashes.bintypes.txt
-- type name for a structurehashes.binfields.txt
-- field name from a structurehashes.binhashes.txt
-- hashed identifier valueKey for a stringtrable translation file. Truncated 64-bit XXH64 with seed 0, applied on lowercased string value. Hash value is truncated to 39 bits (lower bits are kept). Older versions truncated to only 10 bits.
hashes.rst.txt
-- stringtable keys (hashes are truncated to 40 bits)