fs3ds 1.0.0

a library to access romfs of unencrypted .3ds files
Documentation
  • Coverage
  • 2.82%
    2 out of 71 items documented1 out of 3 items with examples
  • Size
  • Source code size: 52.76 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 5.71 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • marius851000/fs3ds
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • marius851000

A crate that allow you to access the romfs of an unencrypted romfs.

It contain the function get_romfs_vfs, that accept a File (or similar Read + Seek + some stuff) object, and return an object that implement vfs::VFS

It also contain some additional function that can be usefull while handling decrypted .3ds file.

This library should never crash, and always return an error.

Examples

use std::fs::File;
use fs3ds::get_romfs_vfs;
let file = File::open("rom.3ds").unwrap(); // get an access to an unencrypted romfs file
let _romfs_vfs = get_romfs_vfs(file).unwrap(); // get a vfs::VFS object to access the rom read only