use std::{fmt::Debug, hash::Hash, time::Duration}; use bevy::prelude::*; use bevy_synthizer::{Buffer, Sound}; use rand::random; use crate::{ commands::RunIfExistsExt, core::Player, exploration::ExplorationFocused, visibility::{VisibilityChanged, Visible, VisibleEntities}, }; #[derive(Component, Clone, Debug, Reflect)] #[reflect(Component)] pub struct SoundIcon { pub buffer: Handle, pub gain: f64, pub pitch: f64, pub interval: Option, } impl Default for SoundIcon { fn default() -> Self { let seconds = random::() + 4.5; let mut icon = Self { buffer: default(), gain: 1., pitch: 1., interval: Some(Timer::from_seconds(seconds, TimerMode::Repeating)), }; if let Some(ref mut interval) = icon.interval { let seconds = Duration::from_secs_f32(seconds - 0.1); interval.set_elapsed(seconds); } icon } } fn added(mut commands: Commands, icons: Query<(Entity, &SoundIcon), Added>) { for (entity, icon) in icons.iter() { let buffer = icon.buffer.clone(); let gain = icon.gain; let pitch = icon.pitch; let looping = icon.interval.is_none(); commands.run_if_exists(entity, move |mut entity| { entity.insert(Sound { buffer, gain, pitch, looping, paused: true, ..default() }); }); } } fn update( config: Res>, state: Res>, time: Res