Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
The main server is currently down. We are running on a backup server, so editing and search functionality are temporarily disabled. Please check back in a few hours.
Revision as of 13:51, 29 October 2021 by HydeWing (talk | contribs)
fs3ds
General
Authormarius851000
TypePC Utilities
Version1.0
LicenseMixed
Last Updated2020/02/13
Links
Download
Website
Source

fs3ds

Library to read unencrypted .3ds file

This library allow you

  • 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

For more information on how to use the returned vfs object, read it's documentation: https://docs.rs/vfs/0.2.1/vfs/trait.VFS.html.

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

Advertising: