flips.rs Star me

Rust bindings to Flips, the Floating IPS patcher.

TravisCI Codecov License Source Crate Documentation Changelog GitHub issues

πŸ—ΊοΈ Overview

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 | βœ”οΈ | βœ”οΈ | βœ”οΈ | |

πŸ”Œ Usage

Load a ROM and a patch from two files, apply the patch to the ROM, and then write it back to a file:

```rust extern crate flips;

// get the input ROM and patch let patch = std::fs::read("FELonelyMirrorv3_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.

πŸ“ Features

The following features are all enabled by default, but can be disabled and cherry-picked using the default-features = false option in the Cargo.toml manifest of your project:

πŸ“‹ Changelog

This project adheres to Semantic Versioning and provides a changelog in the Keep a Changelog format.

πŸ“œ License

This library is provided under the GNU General Public License v3.0, since Flips itself is GPLv3 software.