dfraw_json_parser 0.12.0

Library which parses Dwarf Fortress raw files into JSON
Documentation
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Copy, Clone, Debug)]
pub struct Dimensions {
    x: i32,
    y: i32,
}

impl Dimensions {
    pub fn zero() -> Self {
        Self { x: 0, y: 0 }
    }
    pub fn from_xy(x: i32, y: i32) -> Self {
        Self { x, y }
    }
    pub fn from_token(token: &str) -> Self {
        let split = token.split(':').collect::<Vec<&str>>();
        //	[TILE_DIM:32:32]

        let Some(dim_x) = split.first() else {
            log::error!(
                "Missing required number of tokens for Dimensions! {}",
                token
            );
            return Self {
                x: 0,
                y: 0,
            };
        };
        let Some(dim_y) = split.get(1) else {
            log::error!(
                "Missing required number of tokens for Dimensions! {}",
                token
            );
            return Self {
                x: 0,
                y: 0,
            };
        };

        let x: i32 = match dim_x.parse() {
            Ok(n) => n,
            Err(e) => {
                log::warn!("Failed to parse {} as Dimensions:x, {:?}", split[2], e);
                0
            }
        };
        let y: i32 = match dim_y.parse() {
            Ok(n) => n,
            Err(e) => {
                log::warn!("Failed to parse {} as Dimensions:y, {:?}", split[2], e);
                0
            }
        };

        Self { x, y }
    }
}