rpgmxp_tool/
util.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
use anyhow::bail;
use anyhow::Context;
use rpgmxp_types::Actor;
use rpgmxp_types::Animation;
use rpgmxp_types::Armor;
use rpgmxp_types::Class;
use rpgmxp_types::CommonEvent;
use rpgmxp_types::Enemy;
use rpgmxp_types::Item;
use rpgmxp_types::Skill;
use rpgmxp_types::State;
use rpgmxp_types::Tileset;
use rpgmxp_types::Troop;
use rpgmxp_types::Weapon;
use std::fmt::Write;

/// Convert a hex u8 char into a u8 value.
///
/// # Returns
/// Returns `None` if the char is not a hex char.
pub fn decode_hex_u8(value: u8) -> Option<u8> {
    match value {
        b'0'..=b'9' => Some(value - b'0'),
        b'a'..=b'f' => Some(value - b'a' + 10),
        b'A'..=b'F' => Some(value - b'A' + 10),
        _ => None,
    }
}

/// Check if a file name is a map file name.
///
/// # Arguments
/// `file_name`: The file name to check.
/// `expected_extension`: The expected extension.
pub fn is_map_file_name(file_name: &str, expected_extension: &str) -> bool {
    file_name
        .rsplit_once('.')
        .and_then(|(file_name, extension)| {
            if extension == expected_extension {
                Some(file_name)
            } else {
                None
            }
        })
        .and_then(|file_name| file_name.strip_prefix("Map"))
        .is_some_and(|map_n| !map_n.is_empty() && map_n.chars().all(|c| c.is_ascii_digit()))
}

/// Percent-escape a file name.
///
/// This will percent-escape the following:
/// * '%'
/// * ':'
/// * '*'
/// * '/'
/// * '<'
/// * '>'
/// * '?'
pub fn percent_escape_file_name(file_name: &str) -> String {
    let mut escaped = String::with_capacity(file_name.len());
    for c in file_name.chars() {
        match c {
            '%' | ':' | '*' | '/' | '<' | '>' | '?' => {
                let c = u32::from(c);
                write!(&mut escaped, "%{c:02x}").unwrap();
            }
            _ => {
                escaped.push(c);
            }
        }
    }
    escaped
}

/// Percent-unescape a file name.
///
/// # Returns
/// Returns an error if the string cannot be unescaped.
pub fn percent_unescape_file_name(file_name: &str) -> anyhow::Result<String> {
    #[derive(PartialEq)]
    enum State {
        Normal,
        ParsePercentEscape { index: usize, value: u8 },
    }

    let mut unescaped = String::with_capacity(file_name.len());
    let mut state = State::Normal;
    for c in file_name.chars() {
        match (&mut state, c) {
            (State::Normal, '%') => {
                state = State::ParsePercentEscape { index: 0, value: 0 };
            }
            (State::Normal, c) => unescaped.push(c),
            (State::ParsePercentEscape { index, value }, c) => {
                let c = u8::try_from(c).context("invalid percent escape")?;
                let c = crate::util::decode_hex_u8(c).context("invalid hex char")?;

                *value |= c << (4 - (4 * *index));
                *index += 1;

                if *index == 2 {
                    let c = char::from(*value);
                    unescaped.push(c);

                    state = State::Normal;
                }
            }
        }
    }

    if state != State::Normal {
        bail!("incomplete percent escape");
    }

    Ok(unescaped)
}

/// A trait to represent objects stored in *.rxdata files as elements of an array.
pub trait ArrayLikeElement<'a>:
    serde::Deserialize<'a> + serde::Serialize + ruby_marshal::FromValue<'a> + ruby_marshal::IntoValue
{
    /// Get the display name of this type
    fn type_display_name() -> &'static str;

    /// Get the name of this element.
    fn name(&self) -> &str;
}

impl ArrayLikeElement<'_> for CommonEvent {
    fn type_display_name() -> &'static str {
        "common event"
    }

    fn name(&self) -> &str {
        self.name.as_str()
    }
}

impl ArrayLikeElement<'_> for Actor {
    fn type_display_name() -> &'static str {
        "actor"
    }

    fn name(&self) -> &str {
        self.name.as_str()
    }
}

impl ArrayLikeElement<'_> for Weapon {
    fn type_display_name() -> &'static str {
        "weapon"
    }

    fn name(&self) -> &str {
        self.name.as_str()
    }
}

impl ArrayLikeElement<'_> for Armor {
    fn type_display_name() -> &'static str {
        "armor"
    }

    fn name(&self) -> &str {
        self.name.as_str()
    }
}

impl ArrayLikeElement<'_> for Skill {
    fn type_display_name() -> &'static str {
        "skill"
    }

    fn name(&self) -> &str {
        self.name.as_str()
    }
}

impl ArrayLikeElement<'_> for State {
    fn type_display_name() -> &'static str {
        "state"
    }

    fn name(&self) -> &str {
        self.name.as_str()
    }
}

impl ArrayLikeElement<'_> for Item {
    fn type_display_name() -> &'static str {
        "item"
    }

    fn name(&self) -> &str {
        self.name.as_str()
    }
}

impl ArrayLikeElement<'_> for Enemy {
    fn type_display_name() -> &'static str {
        "enemy"
    }

    fn name(&self) -> &str {
        self.name.as_str()
    }
}

impl ArrayLikeElement<'_> for Class {
    fn type_display_name() -> &'static str {
        "class"
    }

    fn name(&self) -> &str {
        self.name.as_str()
    }
}

impl ArrayLikeElement<'_> for Troop {
    fn type_display_name() -> &'static str {
        "troop"
    }

    fn name(&self) -> &str {
        self.name.as_str()
    }
}

impl ArrayLikeElement<'_> for Tileset {
    fn type_display_name() -> &'static str {
        "tileset"
    }

    fn name(&self) -> &str {
        self.name.as_str()
    }
}

impl ArrayLikeElement<'_> for Animation {
    fn type_display_name() -> &'static str {
        "animation"
    }

    fn name(&self) -> &str {
        self.name.as_str()
    }
}

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn decode_hex_u8_sanity() {
        assert!(decode_hex_u8(b'F') == Some(15));
        assert!(decode_hex_u8(b'G').is_none());
    }

    #[test]
    fn is_map_file_name_sanity() {
        assert!(is_map_file_name("Map001.rxdata", "rxdata"));
        assert!(!is_map_file_name("Map001.json", "rxdata"));
        assert!(is_map_file_name("Map001.json", "json"));
        assert!(!is_map_file_name("Map001.rxdata", "json"));

        assert!(!is_map_file_name("Map.json", "json"));
        assert!(!is_map_file_name("Map", "json"));
    }

    #[test]
    fn percent_escape_round_trip() {
        let tests = ["hello.txt", "%world.json", "foo:bar.rxdata"];

        for test in tests {
            let escaped = percent_escape_file_name(test);
            let unescaped =
                percent_unescape_file_name(escaped.as_str()).expect("failed to percent unescape");

            assert!(test == unescaped, "{test} != {unescaped}");
        }
    }
}