CircleCI Crates.io GPL-3.0 licensed

What is aoe2-probe?

This is a rust library for editing aoe2scenario files from AoE2 DE.

WARNING

Design Goals

Getting Started

Under the directory ./examples/, you can find several simple showcases.

Import and export files: ```rust use aoe2_probe::scenario::Scenario;

//Reading scenario content from the .aoe2scenario file let scenario = Scenario::fromfile("./resources/chapter1.aoe2scenario"); //saving content to a new .aoe2scenario file scenario.to_file("./resources/temp.aoe2scenario"); ```

Update attributes: ```rust use aoe2_probe::scenario::Scenario;

//versio's structure definition can be found in the folder /src/prebuilt/ver146/versio.rs let mut scenario = Scenario::fromfile("./resources/chapter_1.aoe2scenario");

let author = scenario.versio.getbypathmut("/fileheader/creatorname"); //Update the creator name. author.trymutstr32().setcontent("Arian"); ```

customize a structure: ```rust //Define a score record let mut root = PatchedMap::new(); root.pushback("score", Token::Int16(100)); root.pushback("name", Token::Str32(DynString::with_capacity(12, "anonymous")));

//serialize root.tolevec();

//deserialize root.fromlevec(); ```

Run examples with the following command: shell cargo run --example read_write Every member of versio and itself implements fmt::Debug trait. Print them if you want to know more. rust let scenario = Scenario::from_file("./resources/chapter_1.aoe2scenario"); println!("{:?}", &scenario.versio())

Supports

|Version|Support| |----|----| |ver.1.46|Support| |ver.1.47|Experimental|

Currently, only version 1.46 and newer will be firstly supported.

Libraries Used

Acknowledgment

This library is inspired by AoE2ScenarioParser and Trigger Craft