Crates.io | roead |
lib.rs | roead |
version | 1.0.0 |
source | src |
created_at | 2021-11-18 06:46:45.728624 |
updated_at | 2024-08-17 14:27:59.473512 |
description | Rust port of oead C++ library for common Nintendo formats |
homepage | |
repository | https://github.com/NiceneNerd/roead |
max_upload_size | |
id | 483853 |
size | 3,366,047 |
oead is a C++ library for common file formats that are used in modern first-party Nintendo EAD (now EPD) titles.
Currently, oead only handles very common formats that are extensively used in recent games such as Breath of the Wild and Super Mario Odyssey.
The roead project brings oead's core functionality, by directly porting or (for the yaz0 module) providing safe and idiomatic bindings to oead's features. (The Grezzo datasheets are not supported.) For more info on oead itself, visit its GitHub repo.
Each of roead's major modules is configurable as a feature. The default feature
set includes byml
, aamp
, sarc,
and yaz0
. For compatibility with many
existing tools for these formats, there is also a yaml
feature which enables
serializing/deserializing AAMP and BYML files as YAML documents. Finally, serde
support is available using the with-serde
feature.
For API documentation, see the docs for each module.
Most of roead is pure Rust and can compiled with any relatively recent release. The stable MSRV is 1.69. However, the yaz0 module provides FFI bindings to oead code, so to use it the following additional requirements are necessary:
First, clone the repository, then enter the roead directory and run
git submodule update --init --recursive
.
Issue tracker: https://github.com/NiceneNerd/roead/issues
Source code: https://github.com/NiceneNerd/roead
This project is licensed under the GPLv3+ license. oead is licensed under the GPLv2+ license.