Expand description
Read, extract, and rewrite PlayStation 2 memory card images.
§Examples
use ps2mc::MemoryCard;
let mut card = MemoryCard::open("memcard.ps2")?;
for entry in card.entries() {
println!("{}", entry.decode_name());
}Structs§
- Entry
- PS2 内存卡目录项 / 文件元数据
- Icon
- IconSys
- Memory
Card - A decoded PlayStation 2 memory card image.
- Normal
Dir - Ps2Time
- PS2 专属的时间戳结构体 (对应 Python 的 __tod_struct)
- Save
Icon Set - The parsed icon assets associated with a save directory.
- TexUV
- Vertex
- 合并顶点属性,取代多个独立 Vec,提高内存局部性。
- Vertex
Color - Vertex
Coord
Enums§
- Ps2mc
Error - Errors produced while reading or writing PlayStation 2 memory card data.