RKV Extract is a windows command-line application for extracting the contents of Krome Studios' proprietary RKV archives.
RKV Extract is a command-line application.
Open a Command Prompt in the directory of rkv-extract.exe
. The command parameters are as so:
rkv-extract.exe <in_file.rkv> <out_path>
If rkv-extract.exe
is placed within the Ty 1 game directory, the following command would extract the contents of Data_PC.rkv
into Resource\Data_PC
.
rkv-extract.exe "Data_PC.rkv" "Resource\Data_PC"
- Visual Studio 2015
- Open rkv-extract solution
- Build the project
Krome Studios developed a proprietary archive file format for Ty the Tasmanian Tiger. It's straightforward and unencrypted. The approximate file format is below.
RKV Archive
│ Data Block ; Contains the contents of all files
│
└───File Entry Block ; Contains a collection of file entries
│ File Name ; Name of the file (not a path)
│ File Size ; Size of the file
│ Directory Entry Index ; Index of the parent directory with the Directory Entry Block
│ Data Block Offset ; Pointer to file contents in Data Block
│
└───Directory Entry Block ; Contains a collection of directory entries
│ Directory Path ; Directory path (i.e. "Shaders\")
│
│ File Count ; Number of entries in File Entry Block
│ Directory Count ; Number of entries in Directory Entry Block
Thanks goes to these wonderful people (emoji key):
Dan Gerendasy 📖 💻 |
---|
This project follows the all-contributors specification. Contributions of any kind welcome!
Ty 1 RKV Extract is licensed under the MIT License.