Manage resource files using a fast, custom open format designed especially for use in games.
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github
cli
src
tests
.gitignore
.rls.toml
CHANGELOG.md
Cargo.toml
LICENSE
README.md

README.md

ResPK

ResPK is a fast and open SQLite-based archive format specifically designed for storing game resources.

Crates.io Documentation License

Overview

ResPK (Resource PacKage) is an archive format designed for bundling game resources, such as data files, images, sounds, music, and videos together into fewer larger files. Bundling resources together can improve performance and also makes it easier to do distribution and patching.

The file format is simply a SQLite database file with a particular schema. SQLite works well in this situation, as it is an open format that can be easily viewed with many tools, offers high performance for random row access, and allows concurrent reads. Being just a SQLite database also allows you to add any custom extra data or metadata you might need into your own ResPK archives while maintaining compatibility.

All resources are compressed individually using the fantastic LZ4 compression algorithm, which offers a decent amount of compression at blazing fast speed. While not as space-efficient as ZLIB or LZMA, the speed of LZ4 actually outweighs the speed of reading from most storage devices, which means it is actually faster to read a LZ4-compressed file from disk than an uncompressed file due to the reduced reads.

Features

  • Fast random access: Designed from the get-go to give really fast read times and random access.
  • Compression: Provides per-file compression to reduce overall file size and also to improve speed.
  • Streaming: Resources can be read incrementally from disk using on-the-fly decompression.
  • Lightweight: The library contains minimal dependencies to keep it lightweight.

Installation

Add this to your Cargo.toml file:

[dependencies]
respk = "0.1"

License

Available under the MIT license. See the LICENSE file for more info.