Assets-manager

Crates.io Docs.rs Minimum rustc version

This crate aims at providing a filesystem abstraction to easily load external resources. It was originally thought for games, but can of course be used in other contexts.

Original idea was inspired by Veloren's assets system.

This crate follow semver convention and supports rustc 1.42.0 and higher. Changing this is considered a breaking change.

Goals

This crates focuses on:

Example

Suppose that you have a file assets/common/position.ron containing this:

text Point( x: 5, y: -6, )

Then you can load it this way (with feature ron enabled):

```rust use assets_manager::{Asset, AssetCache, loader}; use serde::Deserialize;

// The struct you want to load

[derive(Deserialize)]

struct Point { x: i32, y: i32, }

// Specify how you want the structure to be loaded impl Asset for Point { // The extension of the files to look into const EXTENSION: &'static str = "ron";

// The serialization format (RON)
type Loader = loader::RonLoader;

}

// Create a new cache to load assets under the "./assets" folder let cache = AssetCache::new("assets")?;

// Get a lock on the asset // This will load the file ./assets/common/position.ron let asset_lock = cache.load::("common.position")?;

// Lock the asset for reading // Any number of read locks can exist at the same time, // but none can exist when the asset is reloaded let point = asset_lock.read();

// The asset is now ready to be used asserteq!(point.x, 5); asserteq!(point.y, -6);

// Loading the same asset retreives it from the cache let otherlock = cache.load("common.position")?; assert!(assetlock.ptreq(&otherlock)); ```

Hot-reloading is also very easy to use:

```rust let cache = AssetCache::new("assets")?; let asset_lock = cache.load::("common.position")?;

loop { // Reload all cached files that changed cache.hot_reload();

// Assets are updated without any further work
println!("Current value: {:?}", asset_lock.read());

} ```

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.