This is a rust library for editing aoe2scenorio files from AoE2 DE.
Under directory ./examples/, you can find several simple showcases.
rust
use aoe2_probe::scenorio::Scenorio;
//Reading scenorio content from the .aoe2scenorio file
let scenorio = Scenorio::from_file("./resources/chapter_1.aoe2scenario");
//saving content to a new .aoe2scenorio file
scenorio.to_file("./temp/temp.aoe2scenario");
Run exampes 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 scenorio = Scenorio::from_file("./resources/chapter_1.aoe2scenario");
println!("{:?}", &scenorio.versio())
|Version|Support| |----|----| |ver.1.46|Support|
Currently, only version 1.46 and newer will be firstly supported.
This library is inpired by AoE2ScenarioParser and Trigger Craft