Rust bindings to Flips, the Floating IPS patcher.
Flips is a popular patcher for the IPS, BPS and UPS formats, typically used to patch ROMs of video game cartridges. It is known to create the smallest BPS and IPS files among all widely used patchers. This library provides a safe API to create and apply patches to arbitrary sources.
Format | Apply | Create | Metadata | Study |
---|---|---|---|---|
UPS | ✔️ | |||
IPS | ✔️ | ✔️ | ✔️ | |
BPS | ✔️ | ✔️ | ✔️ |
Load a ROM and a patch from two files, apply the patch to the ROM, and then write it back to a file:
extern crate flips;
// get the input ROM and patch
let patch = std::fs::read("FE_LonelyMirror_v3_3.ups").unwrap();
let rom = std::fs::read("Fire Emblem 8.rom").unwrap();
// apply the patch and write the output
let output = flips::UpsPatch::new(patch).apply(rom)
.expect("could not apply patch");
std::fs::write("FE_LonelyMirror.rom", output).unwrap();
Check the online documentation for more examples about how to use this library.
no_std
support for this crate can be opted-in by disabling the std
feature. It will disable support of std::error::Error
and Vec<u8>
. It will
also disable dynamic dispatch of hardware-accelerated CRC32 implementation.
Flips is patched to use the crc32fast
crate instead of the naive algorithm it used, which greatly improves performances
when creating or applying BPS and UPS patches, since both of this formats will
compute the checksum for their inputs and outputs every time.
This project adheres to Semantic Versioning and provides a changelog in the Keep a Changelog format.
This library is provided under the GNU General Public License v3.0, since Flips itself is GPLv3 software.