JaneDoe-ZS/nap_data/src/event/mod.rs
xeon cbe169fe1a Implement event configs, more interactions work
Implement interact event-action configurations.
More interactions work now, for more transitions, we just need to generate more configs (soon)
NOTE: this commit BREAKS your nap_gameserver.toml. To fix it, you have to add 'event_config_path' property into [assets] section of your config.
2024-07-26 22:44:44 +03:00

29 lines
904 B
Rust

use std::sync::OnceLock;
use serde::Deserialize;
use crate::{action::ActionConfig, DataLoadError};
const INTERACT_CONFIG_JSON: &str = "Interacts.json";
static EVENT_GRAPHS: OnceLock<Vec<EventGraphConfig>> = OnceLock::new();
#[derive(Deserialize, Debug)]
pub struct EventGraphConfig {
pub event_id: u32,
pub actions: Vec<ActionConfig>,
}
pub(crate) fn load_event_graphs(path: &str) -> Result<(), DataLoadError> {
let data = std::fs::read_to_string(format!("{path}/{INTERACT_CONFIG_JSON}"))
.map_err(|err| DataLoadError::IoError(err))?;
let event_graphs = serde_json::from_str::<Vec<EventGraphConfig>>(&data)
.map_err(|err| DataLoadError::FromJsonError(String::from("EventGraphCollection"), err))?;
EVENT_GRAPHS.set(event_graphs).unwrap();
Ok(())
}
pub fn interacts() -> std::slice::Iter<'static, EventGraphConfig> {
EVENT_GRAPHS.get().unwrap().iter()
}