2022-05-23 16:51:44 +00:00
|
|
|
use std::collections::HashMap;
|
|
|
|
|
2022-08-03 14:43:07 +00:00
|
|
|
use bevy::{prelude::*, transform::TransformSystem};
|
2022-08-06 16:05:04 +00:00
|
|
|
use bevy_synthizer::{Buffer, Sound};
|
2022-05-23 16:51:44 +00:00
|
|
|
use rand::random;
|
|
|
|
|
|
|
|
use crate::{commands::RunIfExistsExt, core::PointLike};
|
|
|
|
|
|
|
|
#[derive(Component, Clone, Debug, Reflect)]
|
|
|
|
#[reflect(Component)]
|
|
|
|
pub struct Footstep {
|
2022-09-10 13:34:23 +00:00
|
|
|
pub buffer: Handle<Buffer>,
|
2022-05-23 16:51:44 +00:00
|
|
|
pub step_length: f32,
|
2022-05-23 18:35:25 +00:00
|
|
|
pub gain: f64,
|
|
|
|
pub pitch: Option<f64>,
|
|
|
|
pub pitch_variation: Option<f64>,
|
2022-05-23 16:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Footstep {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {
|
2022-09-10 13:34:23 +00:00
|
|
|
buffer: default(),
|
2022-05-23 16:51:44 +00:00
|
|
|
step_length: 0.8,
|
|
|
|
gain: 1.,
|
2022-05-23 18:35:25 +00:00
|
|
|
pitch: None,
|
2022-05-23 16:51:44 +00:00
|
|
|
pitch_variation: Some(0.15),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-03 14:43:07 +00:00
|
|
|
fn added(mut commands: Commands, footsteps: Query<(Entity, &Footstep), Added<Footstep>>) {
|
2022-05-23 16:51:44 +00:00
|
|
|
for (entity, footstep) in footsteps.iter() {
|
2022-09-10 13:34:23 +00:00
|
|
|
let buffer = footstep.buffer.clone();
|
2022-05-23 16:51:44 +00:00
|
|
|
commands.run_if_exists(entity, move |mut entity| {
|
|
|
|
entity.insert(Sound {
|
|
|
|
buffer,
|
2022-05-23 18:35:25 +00:00
|
|
|
paused: true,
|
2022-05-23 16:51:44 +00:00
|
|
|
..default()
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update(
|
2022-08-06 16:05:04 +00:00
|
|
|
mut last_step_distance: Local<HashMap<Entity, (f32, GlobalTransform)>>,
|
|
|
|
mut footsteps: Query<(Entity, &Footstep, &Parent, &mut Sound)>,
|
|
|
|
transforms_storage: Query<&GlobalTransform>,
|
2022-05-23 16:51:44 +00:00
|
|
|
) {
|
2022-08-06 16:05:04 +00:00
|
|
|
for (entity, footstep, parent, mut sound) in footsteps.iter_mut() {
|
|
|
|
if let Ok(transform) = transforms_storage.get(**parent) {
|
|
|
|
if let Some(last) = last_step_distance.get(&entity) {
|
|
|
|
let distance = last.0 + (last.1.distance(transform));
|
|
|
|
if distance >= footstep.step_length {
|
|
|
|
last_step_distance.insert(entity, (0., *transform));
|
|
|
|
sound.gain = footstep.gain;
|
|
|
|
sound.pitch = footstep.pitch.unwrap_or(1.);
|
|
|
|
if let Some(pitch_variation) = footstep.pitch_variation {
|
|
|
|
let mut pitch = sound.pitch - pitch_variation / 2.;
|
|
|
|
pitch += random::<f64>() * pitch_variation;
|
|
|
|
sound.pitch = pitch;
|
2022-05-23 18:35:25 +00:00
|
|
|
}
|
2022-08-06 16:05:04 +00:00
|
|
|
sound.paused = false;
|
|
|
|
sound.restart = true;
|
|
|
|
} else if last.1 != *transform {
|
|
|
|
last_step_distance.insert(entity, (distance, *transform));
|
2022-05-23 16:51:44 +00:00
|
|
|
}
|
2022-08-06 16:05:04 +00:00
|
|
|
} else {
|
|
|
|
last_step_distance.insert(entity, (0., *transform));
|
2022-05-23 16:51:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct FootstepPlugin;
|
|
|
|
|
|
|
|
impl Plugin for FootstepPlugin {
|
|
|
|
fn build(&self, app: &mut App) {
|
|
|
|
app.register_type::<Footstep>()
|
2022-08-06 16:05:04 +00:00
|
|
|
.add_system_to_stage(CoreStage::PreUpdate, added)
|
2022-05-23 16:51:44 +00:00
|
|
|
.add_system_to_stage(
|
|
|
|
CoreStage::PostUpdate,
|
|
|
|
update.after(TransformSystem::TransformPropagate),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|