respk

Crates.iorespk
lib.rsrespk
version0.1.2
sourcesrc
created_at2017-07-17 04:43:29.555776
updated_at2018-08-30 15:41:36.096459
descriptionManage resource files using a fast, custom open format designed especially for use in games.
homepagehttps://github.com/sagebind/respk
repositoryhttps://github.com/sagebind/respk
max_upload_size
id23707
size16,631
libdatadog-owners (github:datadog:libdatadog-owners)

documentation

https://docs.rs/crate/respk

README

ResPK

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

Build Status 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.

Commit count: 30

cargo fmt