#preset #arma #game #parser #launcher #arm-a

arma_preset_parser

A simple parser for ArmA 3 HTML launcher presets

3 releases (breaking)

0.3.0 Oct 28, 2020
0.2.0 Aug 10, 2020
0.1.1 Aug 9, 2020
0.1.0 Aug 9, 2020

#6 in #arma

LGPL-3.0-or-later

18KB
299 lines

ArmA 3 Preset Parser

This is a simple crate that was made to easily parse ArmA 3 presets into a format that was more easily ingestible by other programs. As such, it exposes few methods which cover all the most-needed cases.

Example

match arma_preset_parser::Preset::from_fs("some_path".parse().unwrap()) {
    Ok(preset) => println!("{:?}", preset),
    Err(e) => println!("{}", e)
};

Dependencies

~270KB