roguelike-game/src/raws.rs

44 lines
1.0 KiB
Rust
Raw Normal View History

mod item_structs;
mod mob_structs;
mod prop_structs;
2021-12-23 11:38:37 -05:00
mod rawmaster;
2021-12-23 13:07:50 -05:00
mod spawn_table_structs;
2021-12-23 11:38:37 -05:00
use std::sync::Mutex;
use item_structs::*;
use mob_structs::*;
use prop_structs::*;
2021-12-23 11:38:37 -05:00
pub use rawmaster::*;
use serde::Deserialize;
2021-12-23 13:07:50 -05:00
use spawn_table_structs::*;
#[derive(Deserialize, Debug)]
pub struct Raws {
pub items: Vec<Item>,
pub mobs: Vec<Mob>,
pub props: Vec<Prop>,
2021-12-23 13:07:50 -05:00
pub spawn_table: Vec<SpawnTableEntry>,
}
rltk::embedded_resource!(RAW_FILE, "../raws/spawns.json");
2021-12-23 11:38:37 -05:00
lazy_static! {
pub static ref RAWS: Mutex<RawMaster> = Mutex::new(RawMaster::empty());
}
pub fn load_raws() {
2021-12-23 11:38:37 -05:00
rltk::link_resource!(RAW_FILE, "../raws/spawns.json");
let raw_data = rltk::embedding::EMBED
.lock()
.get_resource("../raws/spawns.json".to_string())
.unwrap();
let raw_string =
std::str::from_utf8(raw_data).expect("Unable to convert to a valid UTF-8 string.");
let decoder: Raws = serde_json::from_str(raw_string).expect("Unable to parse JSON");
2021-12-23 11:38:37 -05:00
RAWS.lock().unwrap().load(decoder);
}