extern crate yaml_rust; use bevy::prelude::*; use yaml_rust::{Yaml, YamlLoader}; use crate::{audio, world}; pub const CHATS: &[&str] = &[ include_str!("chats/serenity.yaml"), include_str!("chats/startrans.yaml"), ]; pub const TOKEN_CHAT: &str = "chat"; pub struct ChatPlugin; impl Plugin for ChatPlugin { fn build(&self, app: &mut App) { app.add_systems(Startup, load_chats); app.add_systems(Update, ( handle_new_conversations, )); app.add_event::(); app.insert_resource(ChatDB(Vec::new())); } } #[derive(Component)] pub struct Chat { pub id: u32, pub position: u32, pub timer: f64, } #[derive(Resource)] pub struct ChatDB(Vec); impl ChatDB { pub fn get_chat_by_id(&self, id: &String) -> Result { let mut found: Option = None; for (index, object_yaml) in self.0.iter().enumerate() { if let Some(chat_id) = object_yaml[0][TOKEN_CHAT].as_str() { if chat_id == id { if found.is_some() { return Err("Found multiple chats with the same id!".to_string()); } found = Some(index as u32); } } } if let Some(result) = found { return Ok(result); } return Err(format!("No chat with the conversation ID `{id}` was found.")); } } #[derive(Component)] #[derive(Clone)] pub struct Talker { pub conv_id: String, pub name: Option, pub pronoun: Option, } #[derive(Event)] pub struct StartConversationEvent { pub talker: Talker, } pub fn load_chats(mut chatdb: ResMut) { for chat_yaml in CHATS { if let Ok(mut yaml_data) = YamlLoader::load_from_str(chat_yaml) { chatdb.0.append(&mut yaml_data); } else { error!("Could not load chat definitions. Validate files in `src/chats/` path."); } } } pub fn handle_new_conversations( mut commands: Commands, mut er_conv: EventReader, mut ew_sfx: EventWriter, chatdb: Res, q_chats: Query<&Chat>, time: Res