51 lines
1.3 KiB
Rust
51 lines
1.3 KiB
Rust
use paste::paste;
|
|
|
|
mod misc_data;
|
|
pub use misc_data::*;
|
|
|
|
#[derive(thiserror::Error, Debug)]
|
|
pub enum LoadDataError {
|
|
#[error("I/O error: {0}")]
|
|
Io(#[from] std::io::Error),
|
|
#[error("Failed to parse json: {0}")]
|
|
Json(#[from] serde_json::Error),
|
|
}
|
|
|
|
macro_rules! json_data {
|
|
($($table_type:ident;)*) => {
|
|
$(paste! {
|
|
mod [<$table_type:snake>];
|
|
pub use [<$table_type:snake>]::[<$table_type Data>];
|
|
})*
|
|
|
|
$(paste! {
|
|
pub mod [<$table_type:snake _data>] {
|
|
use std::sync::OnceLock;
|
|
type Data = super::[<$table_type Data>];
|
|
pub(crate) static TABLE: OnceLock<Vec<Data>> = OnceLock::new();
|
|
|
|
pub fn iter() -> std::slice::Iter<'static, Data> {
|
|
TABLE.get().unwrap().iter()
|
|
}
|
|
}
|
|
})*
|
|
|
|
pub fn load_json_data(base_path: &str) -> Result<(), LoadDataError> {
|
|
$(paste! {
|
|
let json_content = std::fs::read_to_string(&format!("{}/{}.json", base_path, stringify!($table_type)))?;
|
|
let _ = [<$table_type:snake _data>]::TABLE.set(serde_json::from_str(&json_content)?);
|
|
})*
|
|
|
|
Ok(())
|
|
}
|
|
};
|
|
}
|
|
|
|
json_data! {
|
|
RoleInfo;
|
|
WeaponConf;
|
|
BaseProperty;
|
|
InstanceDungeon;
|
|
FunctionCondition;
|
|
ExploreTools;
|
|
}
|