#3ds #file #read #romfs #vfs #object #unencrypted

fs3ds

一个用于访问未加密.3ds文件romfs的库

1个稳定版本

1.0.0 2020年2月12日

#9 in #3ds

CC0许可证

53KB
1.5K SLoC

用于读取未加密.3ds文件的库

此库允许您

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

有关如何使用返回的vfs对象的更多信息,请参阅其文档: https://docs.rs/vfs/0.2.1/vfs/trait.VFS.html


lib.rs:

一个允许您访问未加密romfs的crate。

它包含一个名为 get_romfs_vfs 的函数,该函数接受一个File(或类似的Read + Seek + 一些东西)对象,并返回一个实现 vfs::VFS

它还包含一些在处理解密.3ds文件时可能有用的附加函数。

此库永远不会崩溃,并且始终返回错误。

示例

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

依赖关系

~315KB