2023-03-28 16:57:37 +00:00
|
|
|
use std::{fmt::Debug, time::Duration};
|
2021-05-13 17:25:45 +00:00
|
|
|
|
2022-08-06 16:05:04 +00:00
|
|
|
use bevy::prelude::*;
|
2023-03-28 16:57:37 +00:00
|
|
|
use bevy_synthizer::{Audio, Buffer, Sound};
|
2021-05-13 17:25:45 +00:00
|
|
|
|
|
|
|
use rand::random;
|
|
|
|
|
|
|
|
use crate::{
|
2022-02-24 19:37:16 +00:00
|
|
|
commands::RunIfExistsExt,
|
2022-05-23 16:51:44 +00:00
|
|
|
core::Player,
|
2021-05-13 17:25:45 +00:00
|
|
|
exploration::ExplorationFocused,
|
2022-06-07 14:13:03 +00:00
|
|
|
visibility::{VisibilityChanged, Visible, VisibleEntities},
|
2021-05-13 17:25:45 +00:00
|
|
|
};
|
|
|
|
|
2022-12-19 20:08:31 +00:00
|
|
|
#[derive(Component, Clone, Debug, Reflect)]
|
|
|
|
#[reflect(Component)]
|
2021-05-13 17:25:45 +00:00
|
|
|
pub struct SoundIcon {
|
2022-09-10 13:34:23 +00:00
|
|
|
pub buffer: Handle<Buffer>,
|
2022-05-23 18:35:25 +00:00
|
|
|
pub gain: f64,
|
|
|
|
pub pitch: f64,
|
2021-05-13 17:25:45 +00:00
|
|
|
pub interval: Option<Timer>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for SoundIcon {
|
|
|
|
fn default() -> Self {
|
|
|
|
let seconds = random::<f32>() + 4.5;
|
|
|
|
let mut icon = Self {
|
2022-09-10 13:34:23 +00:00
|
|
|
buffer: default(),
|
2022-05-31 15:59:25 +00:00
|
|
|
gain: 1.,
|
2021-05-13 17:25:45 +00:00
|
|
|
pitch: 1.,
|
2022-12-19 20:08:31 +00:00
|
|
|
interval: Some(Timer::from_seconds(seconds, TimerMode::Repeating)),
|
2021-05-13 17:25:45 +00:00
|
|
|
};
|
|
|
|
if let Some(ref mut interval) = icon.interval {
|
|
|
|
let seconds = Duration::from_secs_f32(seconds - 0.1);
|
|
|
|
interval.set_elapsed(seconds);
|
|
|
|
}
|
|
|
|
icon
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-03 14:43:07 +00:00
|
|
|
fn added(mut commands: Commands, icons: Query<(Entity, &SoundIcon), Added<SoundIcon>>) {
|
2021-05-24 20:34:38 +00:00
|
|
|
for (entity, icon) in icons.iter() {
|
2022-09-10 13:34:23 +00:00
|
|
|
let buffer = icon.buffer.clone();
|
2022-02-24 19:37:16 +00:00
|
|
|
let gain = icon.gain;
|
|
|
|
let pitch = icon.pitch;
|
2021-05-24 20:34:38 +00:00
|
|
|
let looping = icon.interval.is_none();
|
2022-02-24 19:37:16 +00:00
|
|
|
commands.run_if_exists(entity, move |mut entity| {
|
|
|
|
entity.insert(Sound {
|
2023-03-28 16:57:37 +00:00
|
|
|
audio: buffer.into(),
|
2022-02-24 19:37:16 +00:00
|
|
|
gain,
|
|
|
|
pitch,
|
|
|
|
looping,
|
2022-05-23 18:35:25 +00:00
|
|
|
paused: true,
|
2022-05-10 18:56:49 +00:00
|
|
|
..default()
|
2022-02-24 19:37:16 +00:00
|
|
|
});
|
2021-05-24 20:34:38 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-23 16:51:44 +00:00
|
|
|
fn update<S>(
|
2022-12-20 15:15:09 +00:00
|
|
|
config: Res<SoundIconPlugin<S>>,
|
2021-05-13 17:25:45 +00:00
|
|
|
state: Res<State<S>>,
|
|
|
|
time: Res<Time>,
|
2021-09-21 11:38:51 +00:00
|
|
|
viewers: Query<&VisibleEntities, With<Player>>,
|
2021-05-13 17:25:45 +00:00
|
|
|
mut icons: Query<(
|
2021-09-21 11:38:51 +00:00
|
|
|
Entity,
|
2021-05-13 17:25:45 +00:00
|
|
|
&mut SoundIcon,
|
2022-05-12 15:46:32 +00:00
|
|
|
Option<&Visible>,
|
2021-05-13 17:25:45 +00:00
|
|
|
Option<&Parent>,
|
2021-05-24 20:34:38 +00:00
|
|
|
&mut Sound,
|
2021-05-13 17:25:45 +00:00
|
|
|
)>,
|
|
|
|
) where
|
2023-03-28 16:57:37 +00:00
|
|
|
S: States,
|
2021-05-13 17:25:45 +00:00
|
|
|
{
|
2023-03-28 16:57:37 +00:00
|
|
|
if !config.states.is_empty() && !config.states.contains(&state.0) {
|
2021-06-09 19:53:48 +00:00
|
|
|
return;
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
2021-09-21 11:38:51 +00:00
|
|
|
for visible in viewers.iter() {
|
2022-08-06 16:05:04 +00:00
|
|
|
for (icon_entity, mut icon, visibility, parent, mut sound) in icons.iter_mut() {
|
2022-05-12 15:46:32 +00:00
|
|
|
let entity = if visibility.is_some() {
|
2022-05-31 15:17:16 +00:00
|
|
|
Some(icon_entity)
|
|
|
|
} else if parent.is_some() {
|
|
|
|
Some(**parent.unwrap())
|
2021-05-13 17:25:45 +00:00
|
|
|
} else {
|
2022-05-31 15:17:16 +00:00
|
|
|
None
|
2021-05-13 17:25:45 +00:00
|
|
|
};
|
2022-05-31 15:17:16 +00:00
|
|
|
if let Some(entity) = entity {
|
|
|
|
if visible.contains(&entity) {
|
2022-05-31 15:38:05 +00:00
|
|
|
if sound.looping {
|
2022-05-23 18:35:25 +00:00
|
|
|
sound.paused = false;
|
2022-05-31 15:17:16 +00:00
|
|
|
} else if let Some(interval) = icon.interval.as_mut() {
|
|
|
|
interval.tick(time.delta());
|
|
|
|
if interval.finished() {
|
2022-05-31 15:38:05 +00:00
|
|
|
sound.paused = false;
|
|
|
|
sound.restart = true;
|
2022-05-31 15:17:16 +00:00
|
|
|
interval.reset();
|
|
|
|
}
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
2022-09-10 13:34:23 +00:00
|
|
|
let buffer = icon.buffer.clone();
|
2023-03-28 16:57:37 +00:00
|
|
|
let audio: Audio = buffer.into();
|
|
|
|
if sound.audio != audio {
|
|
|
|
sound.audio = audio;
|
2022-05-23 18:35:25 +00:00
|
|
|
}
|
2022-05-31 15:17:16 +00:00
|
|
|
sound.gain = icon.gain;
|
|
|
|
sound.pitch = icon.pitch;
|
2022-05-31 15:38:05 +00:00
|
|
|
sound.looping = icon.interval.is_none();
|
2022-06-03 11:53:45 +00:00
|
|
|
} else if !sound.paused {
|
|
|
|
sound.paused = true;
|
|
|
|
sound.restart = true;
|
2022-05-23 18:35:25 +00:00
|
|
|
}
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-23 16:51:44 +00:00
|
|
|
fn exploration_focus_changed(
|
2021-10-07 16:41:57 +00:00
|
|
|
mut focused: Query<(Entity, Option<&Children>), Changed<ExplorationFocused>>,
|
|
|
|
mut icons: Query<&mut SoundIcon>,
|
2021-05-13 17:25:45 +00:00
|
|
|
) {
|
2022-05-23 18:35:25 +00:00
|
|
|
const ICON_GAIN: f64 = 3.;
|
2021-10-07 16:41:57 +00:00
|
|
|
for (entity, children) in focused.iter_mut() {
|
|
|
|
if let Ok(mut icon) = icons.get_mut(entity) {
|
|
|
|
icon.gain *= ICON_GAIN;
|
|
|
|
}
|
|
|
|
if let Some(children) = children {
|
|
|
|
for child in children.iter() {
|
|
|
|
if let Ok(mut icon) = icons.get_mut(*child) {
|
|
|
|
icon.gain *= ICON_GAIN;
|
|
|
|
}
|
|
|
|
}
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-23 16:51:44 +00:00
|
|
|
fn exploration_focus_removed(
|
2023-03-28 16:57:37 +00:00
|
|
|
mut removed: RemovedComponents<ExplorationFocused>,
|
2021-10-07 16:41:57 +00:00
|
|
|
mut query: Query<&mut SoundIcon>,
|
|
|
|
children: Query<&Children>,
|
2021-05-13 17:25:45 +00:00
|
|
|
) {
|
2022-05-23 18:35:25 +00:00
|
|
|
const ICON_GAIN: f64 = 3.;
|
2023-03-28 16:57:37 +00:00
|
|
|
for entity in &mut removed {
|
2021-10-07 16:41:57 +00:00
|
|
|
if let Ok(mut icon) = query.get_mut(entity) {
|
|
|
|
icon.gain /= ICON_GAIN;
|
|
|
|
}
|
|
|
|
if let Ok(children) = children.get(entity) {
|
|
|
|
for child in children.iter() {
|
|
|
|
if let Ok(mut icon) = query.get_mut(*child) {
|
2022-05-18 15:27:42 +00:00
|
|
|
icon.gain /= ICON_GAIN;
|
2021-10-07 16:41:57 +00:00
|
|
|
}
|
|
|
|
}
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-07 14:13:03 +00:00
|
|
|
fn reset_timer_on_visibility_gain(
|
|
|
|
mut events: EventReader<VisibilityChanged>,
|
|
|
|
player: Query<Entity, With<Player>>,
|
|
|
|
mut icons: Query<&mut SoundIcon>,
|
|
|
|
children: Query<&Children>,
|
|
|
|
) {
|
|
|
|
for event in events.iter() {
|
|
|
|
if let VisibilityChanged::Gained { viewer, viewed } = event {
|
|
|
|
if player.get(*viewer).is_ok() {
|
|
|
|
let mut targets = vec![];
|
|
|
|
if icons.get(*viewed).is_ok() {
|
|
|
|
targets.push(viewed);
|
|
|
|
}
|
|
|
|
if let Ok(children) = children.get(*viewed) {
|
|
|
|
for child in children.iter() {
|
|
|
|
if icons.get(*child).is_ok() {
|
2022-12-19 20:08:31 +00:00
|
|
|
targets.push(child);
|
2022-06-07 14:13:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for icon in targets.iter_mut() {
|
|
|
|
if let Ok(mut icon) = icons.get_mut(**icon) {
|
|
|
|
if let Some(timer) = icon.interval.as_mut() {
|
|
|
|
timer.set_elapsed(timer.duration());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-20 15:15:09 +00:00
|
|
|
#[derive(Resource, Clone)]
|
|
|
|
pub struct SoundIconPlugin<S> {
|
2022-05-23 16:51:44 +00:00
|
|
|
pub states: Vec<S>,
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
|
|
|
|
2022-12-20 15:15:09 +00:00
|
|
|
impl<S> Default for SoundIconPlugin<S> {
|
2021-05-13 17:25:45 +00:00
|
|
|
fn default() -> Self {
|
2022-12-20 15:15:09 +00:00
|
|
|
Self { states: default() }
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-20 15:15:09 +00:00
|
|
|
impl<S> Plugin for SoundIconPlugin<S>
|
2021-05-13 17:25:45 +00:00
|
|
|
where
|
2023-03-28 16:57:37 +00:00
|
|
|
S: States,
|
2021-05-13 17:25:45 +00:00
|
|
|
{
|
2022-01-10 19:50:52 +00:00
|
|
|
fn build(&self, app: &mut App) {
|
2022-12-20 15:15:09 +00:00
|
|
|
app.insert_resource(self.clone())
|
|
|
|
.register_type::<SoundIcon>()
|
2022-12-19 20:08:31 +00:00
|
|
|
.add_system(added)
|
2023-03-28 16:57:37 +00:00
|
|
|
.add_system(update::<S>.in_base_set(CoreSet::PostUpdate))
|
|
|
|
.add_system(
|
|
|
|
exploration_focus_changed
|
|
|
|
.in_base_set(CoreSet::PostUpdate)
|
|
|
|
.after(update::<S>),
|
2021-05-13 17:25:45 +00:00
|
|
|
)
|
2023-03-28 16:57:37 +00:00
|
|
|
.add_system(
|
|
|
|
exploration_focus_removed
|
|
|
|
.in_base_set(CoreSet::PostUpdate)
|
|
|
|
.after(exploration_focus_changed),
|
2022-06-07 14:13:03 +00:00
|
|
|
)
|
2023-03-28 16:57:37 +00:00
|
|
|
.add_system(reset_timer_on_visibility_gain.in_base_set(CoreSet::PostUpdate));
|
2021-05-13 17:25:45 +00:00
|
|
|
}
|
|
|
|
}
|