dfraw_json_parser 0.12.0

Library which parses Dwarf Fortress raw files into JSON
Documentation
use std::num::ParseIntError;

use super::raws::tags;

impl super::DFParser {
    /// It takes a slice of strings, parses the first two strings as unsigned 16-bit integers, and returns a
    /// two-element array of unsigned 16-bit integers
    ///
    /// Arguments:
    ///
    /// * `split`: &[&str] - This is the array of strings that we're going to parse.
    ///
    /// Returns:
    ///
    /// A Result<[u16; 2], `ParseIntError`>
    pub fn parse_min_max_range(split: &[&str]) -> Result<[u16; 2], ParseIntError> {
        let min: u16 = match split[0].parse() {
            Ok(n) => n,
            Err(e) => {
                log::error!("min_value parsing error\n{:?}", e);
                return Err(e);
            }
        };
        let max: u16 = match split[1].parse() {
            Ok(n) => n,
            Err(e) => {
                log::error!("max_value parsing error\n{:?}", e);
                return Err(e);
            }
        };
        Ok([min, max])
    }

    /// It takes a slice of strings, parses them into integers, and returns a `DFBodySize` struct
    ///
    /// Arguments:
    ///
    /// * `split`: &[&str]
    ///
    /// Returns:
    ///
    /// A `Result<tags::DFBodySize, ParseIntError>`
    pub fn parse_body_size(split: &[&str]) -> Result<tags::DFBodySize, ParseIntError> {
        let years: u32 = match split[0].parse() {
            Ok(n) => n,
            Err(e) => {
                log::error!("Unable to parse years from BODY_SIZE\n{:?}", e);
                return Err(e);
            }
        };
        let days: u32 = match split[1].parse() {
            Ok(n) => n,
            Err(e) => {
                log::error!("Unable to parse days from BODY_SIZE\n{:?}", e);
                return Err(e);
            }
        };
        let size: u32 = match split[2].parse() {
            Ok(n) => n,
            Err(e) => {
                log::error!("Unable to parse size from BODY_SIZE\n{:?}", e);
                return Err(e);
            }
        };
        Ok(tags::DFBodySize::new(years, days, size))
    }
}