Crates.io | respk |
lib.rs | respk |
version | 0.1.2 |
source | src |
created_at | 2017-07-17 04:43:29.555776 |
updated_at | 2018-08-30 15:41:36.096459 |
description | Manage resource files using a fast, custom open format designed especially for use in games. |
homepage | https://github.com/sagebind/respk |
repository | https://github.com/sagebind/respk |
max_upload_size | |
id | 23707 |
size | 16,631 |
ResPK is a fast and open SQLite-based archive format specifically designed for storing game resources.
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.
Add this to your Cargo.toml
file:
[dependencies]
respk = "0.1"
Available under the MIT license. See the LICENSE file for more info.