rpgmxp_tool/
main.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
mod commands;
mod util;

use anyhow::bail;
use std::str::FromStr;

/// The game kind
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
pub enum GameKind {
    Xp,
    Vx,
}

impl GameKind {
    /// Returns true if this is xp.
    pub fn is_xp(self) -> bool {
        matches!(self, Self::Xp)
    }

    /// Returns true if this is vx.
    pub fn is_vx(self) -> bool {
        matches!(self, Self::Vx)
    }
}

impl FromStr for GameKind {
    type Err = anyhow::Error;

    fn from_str(input: &str) -> Result<Self, Self::Err> {
        if input.eq_ignore_ascii_case("xp") || input.eq_ignore_ascii_case("rgssad") {
            return Ok(Self::Xp);
        }

        if input.eq_ignore_ascii_case("vx") || input.eq_ignore_ascii_case("rgss2a") {
            return Ok(Self::Vx);
        }

        bail!("\"{input}\" is not a valid game kind");
    }
}

#[derive(Debug, argh::FromArgs)]
#[argh(description = "a cli tool to interact with rpgmaker xp and vx games")]
struct Options {
    #[argh(subcommand)]
    subcommand: Subcommand,
}

#[derive(Debug, argh::FromArgs)]
#[argh(subcommand)]
enum Subcommand {
    ExtractAssets(self::commands::extract_assets::Options),
    CompileAssets(self::commands::compile_assets::Options),
}

fn main() -> anyhow::Result<()> {
    let options: Options = argh::from_env();
    match options.subcommand {
        Subcommand::ExtractAssets(options) => self::commands::extract_assets::exec(options)?,
        Subcommand::CompileAssets(options) => self::commands::compile_assets::exec(options)?,
    }

    Ok(())
}