Easy to use assets manager, that can manage any kind of file by manipulating files as Vec<u8>
,
it's made to fit in any software/game/framework.
Used to load files compressed
rust
let mut index = fast_assets::index::Index::new("./", "\\w+\\.rs");
index.set_csv_separator('/');
index.add_from_file("index/index.csv");
csv
folder/subfolder/file.txt
archives/archive.zip/file.txt
```rust // Search all un-compressed files and archives, // using extern index allow to add files compressed, // the manager will automatically manage the decompression let mut index = fastassets::index::Index::new("./", "\w+\.rs"); index.search(); index.addfrom_file("index/index.csv");
// The decompression cache is what will manage your compressed files and their caches. let dc = fastassets::decompressionmanager::DecompressionManager::default();
let mut manager = fast_assets::manager::AssetsManager::new(index, dc);
// Create a file and add it to the index manage.create_file("myFile.text"); ```
```rust // Load a compressed file manager.load("index.json").unwrap(); // Load a not compressed file manager.load("text.csv").unwrap();
// Load a not compressed file using full path manager.load("fr/text.csv").unwrap(); // Load a compressed file using full path manager.load("lang.zip/fr/text.csv").unwrap(); ```
```rust // AssetsManager::unload() need two parameters: // decompression_cache: bool => If the file was compressed and if true it will put the file in the cache. // filename: &str => The file that will be unloaded
// UnLoad and put in cache a compressed file manager.unload("index.json", true); // UnLoad a not compressed file manager.unload("text.csv", false);
// Tips: if you want always keep in cache, set always at true, // it will have no impact on the unloading of a uncompressed file ```
```rust
// Get all the files that matching the regex into a Vec
// Using it: manager.get(&files[0].filename().unwrap().tostring_lossy());
```
You must know that two things can fail:
So you need to pass through them to access the data:
```rust manager.get("text.csv").unwrap().unwrap(); manager.getref("text.csv").unwrap().unwrap(); manager.getmut("text.csv").unwrap().unwrap();
// In the case where you have multiple file with the same name: manager.get("en/text.csv").unwrap(); manager.getref("fr/text.csv").unwrap(); manager.getmut("it/text.csv").unwrap();
// If you to set the data you can call: manager.setdata("text.csv", b"Hello, World!".tovec()); ```
If the file was put in the cache and will automatically reload it.
Only saves data of files that are not from compressed files. Return a simple std::io::Result<()> as result. If the file does not exist anymore it will create a new file.
rust
manager.save("text.csv").unwrap();
In the manager and DecompressionManager each file loaded will have its reference, but they use memory, so to do a complete unload you need to remove them. For the cached files, they will have their cache file removed (based on the trait Drop).
```rust manager.remove("text.csv").unwrap().unwrap();
// Tips: You don't need to unload before excepted if you need to put in cache ```
The dependency checker (DependencieManager), the goal is to search the not indexed files in the manager.
As you can see in the example below, the JSON file defines the dependencies for some files. The organization of the JSON file is not recursive, so you cannot define the dependencies of a file into the dependencies of another file.
json
{
"dependencies": {
"text.csv": [
"index.json",
"other.csv"
],
"index.json": [
"text.csv"
]
}
}
rust
// Create DependencieManager object
let mut dependencie_manager = DependencieManager::default();
// Load a file containing the dependencies required
dependencie_manager.load_file(&mut manager, "deps.json");
Now you have to load the dependencies, and to check them you need to call three commands:
```rust
// Take a look in the manager to get if a dependency is missing dependenciemanager.update(&mut manager); // Return true if all dependencies are present dependenciemanager.checkifvalid("text.csv"); // Get all the missing dependencies dependenciemanager.getmissing_dependencies("text.csv"); ```
This is an easy way to add custom features. It targets to let you add support for new compression formats...
An Extension is a trait that adds the following functions:
```rust
/// Called when loading a file, and return true if continue the existing process
fn on_load(&mut self, _: &mut AssetsManager, path: &mut Option
/// Called when unloading a file, and return true if continue the existing process fn onunload(&mut self, _: &mut AssetsManager, path: &mut &str, usecache: &mut bool);
/// Called when remove a file reference, and return true if continue the existing process fn on_remove(&mut self, _: &mut AssetsManager, path: &mut &str) -> bool;
/// Called when loading file/files from archive fn on_archive(&mut self, _: &mut DecompressionManager, ext: &str, path: &str); ```
```rust let my_extension = MyExtension::default();
manager.addextension(Box::new(myextension)); ```
Sometimes it's useful to specify a path and in background the assets manager use the good file path. So it's implemented.
rust
index.add_redirect("base_path", "new_path");
json
{
"redirect": {
"base_path": "new_path"
}
}
rust
index.add_redirect_from_file("redirect.json");
```rust // Create an instance of the downloader let downloader = crate::downloader::Downloader::default();
// If you want prevent a download failure downloader.candownload("https://crates.io/assets/cargo.png"); downloader.candownload("https://www.rust-lang.org/"); downloader.candownload("https://github.com/eVisualUser/bellecour-gamebook/blob/main/helloworld/hello_world.zip");
// Here using sync method version to not have to handle the async. // All errors produced will be output in the console. downloader.downloadsync(String::from("https://crates.io/assets/cargo.png"), String::from("crates.png")); downloader.downloadsync(String::from("https://www.rust-lang.org/"), String::from("rustlang.html")); downloader.downloadsync(String::from("https://github.com/eVisualUser/bellecour-gamebook/blob/main/helloworld/hello_world.zip"), String::from("HelloWorld.zip")); ```
There is few useful methods to control your file, and update the index as well.
rust
// Create the file and add it to the index
manager.create_file("myFile.txt");
rust
// Copy the file to another location
manager.copy_file("myFile.txt", "folder/myFile.txt");
rust
// Copy the file and remove the original
manager.move_file("myFile.txt", "folder/myFile.txt");
rust
// Remove a file from the index and from the directory
manager.remove_file("myFile.txt");