Compare commits
4 Commits
2364f638db
...
0cb5bd59f6
Author | SHA1 | Date | |
---|---|---|---|
0cb5bd59f6 | |||
041165cf61 | |||
45746803c9 | |||
4c02a98eb4 |
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -2,6 +2,20 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## Version 0.8.0 - 2024-12-02
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- Clear generator when source is cleared, and improve handling for changing source types.
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- Add `Sound.playback_position` to support initializing new buffers at non-zero playback position.
|
||||||
|
|
||||||
|
### Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Clean up code.
|
||||||
|
|
||||||
## Version 0.7.0 - 2024-07-07
|
## Version 0.7.0 - 2024-07-07
|
||||||
|
|
||||||
### Miscellaneous Tasks
|
### Miscellaneous Tasks
|
||||||
|
|
490
src/lib.rs
490
src/lib.rs
|
@ -156,6 +156,7 @@ pub struct Sound {
|
||||||
pub gain: f64,
|
pub gain: f64,
|
||||||
pub pitch: f64,
|
pub pitch: f64,
|
||||||
pub looping: bool,
|
pub looping: bool,
|
||||||
|
pub playback_position: f64,
|
||||||
pub paused: bool,
|
pub paused: bool,
|
||||||
pub generator: Option<syz::Generator>,
|
pub generator: Option<syz::Generator>,
|
||||||
}
|
}
|
||||||
|
@ -167,6 +168,7 @@ impl Default for Sound {
|
||||||
gain: 1.,
|
gain: 1.,
|
||||||
pitch: 1.,
|
pitch: 1.,
|
||||||
looping: false,
|
looping: false,
|
||||||
|
playback_position: default(),
|
||||||
paused: false,
|
paused: false,
|
||||||
generator: None,
|
generator: None,
|
||||||
}
|
}
|
||||||
|
@ -229,41 +231,42 @@ fn add_source_handle(
|
||||||
)>,
|
)>,
|
||||||
) {
|
) {
|
||||||
for (mut source, panner_strategy, transform, angular_pan, scalar_pan) in &mut query {
|
for (mut source, panner_strategy, transform, angular_pan, scalar_pan) in &mut query {
|
||||||
if source.handle.is_none() {
|
if source.handle.is_some() {
|
||||||
let panner_strategy = panner_strategy.cloned().unwrap_or_default();
|
continue;
|
||||||
let handle: syz::Source = if let Some(transform) = transform {
|
|
||||||
let translation = transform.translation();
|
|
||||||
syz::Source3D::new(
|
|
||||||
&context,
|
|
||||||
*panner_strategy,
|
|
||||||
(
|
|
||||||
translation.x as f64,
|
|
||||||
translation.y as f64,
|
|
||||||
translation.z as f64,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
.expect("Failed to create source")
|
|
||||||
.into()
|
|
||||||
} else if let Some(scalar_pan) = scalar_pan {
|
|
||||||
syz::ScalarPannedSource::new(&context, *panner_strategy, **scalar_pan)
|
|
||||||
.expect("Failed to create source")
|
|
||||||
.into()
|
|
||||||
} else if let Some(angular_pan) = angular_pan {
|
|
||||||
syz::AngularPannedSource::new(
|
|
||||||
&context,
|
|
||||||
*panner_strategy,
|
|
||||||
angular_pan.azimuth,
|
|
||||||
angular_pan.elevation,
|
|
||||||
)
|
|
||||||
.expect("Failed to create source")
|
|
||||||
.into()
|
|
||||||
} else {
|
|
||||||
syz::DirectSource::new(&context)
|
|
||||||
.expect("Failed to create source")
|
|
||||||
.into()
|
|
||||||
};
|
|
||||||
source.handle = Some(handle);
|
|
||||||
}
|
}
|
||||||
|
let panner_strategy = panner_strategy.cloned().unwrap_or_default();
|
||||||
|
let handle: syz::Source = if let Some(transform) = transform {
|
||||||
|
let translation = transform.translation();
|
||||||
|
syz::Source3D::new(
|
||||||
|
&context,
|
||||||
|
*panner_strategy,
|
||||||
|
(
|
||||||
|
translation.x as f64,
|
||||||
|
translation.y as f64,
|
||||||
|
translation.z as f64,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.expect("Failed to create source")
|
||||||
|
.into()
|
||||||
|
} else if let Some(scalar_pan) = scalar_pan {
|
||||||
|
syz::ScalarPannedSource::new(&context, *panner_strategy, **scalar_pan)
|
||||||
|
.expect("Failed to create source")
|
||||||
|
.into()
|
||||||
|
} else if let Some(angular_pan) = angular_pan {
|
||||||
|
syz::AngularPannedSource::new(
|
||||||
|
&context,
|
||||||
|
*panner_strategy,
|
||||||
|
angular_pan.azimuth,
|
||||||
|
angular_pan.elevation,
|
||||||
|
)
|
||||||
|
.expect("Failed to create source")
|
||||||
|
.into()
|
||||||
|
} else {
|
||||||
|
syz::DirectSource::new(&context)
|
||||||
|
.expect("Failed to create source")
|
||||||
|
.into()
|
||||||
|
};
|
||||||
|
source.handle = Some(handle);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -275,55 +278,62 @@ fn add_generator(
|
||||||
parents: Query<&Parent>,
|
parents: Query<&Parent>,
|
||||||
) {
|
) {
|
||||||
for (entity, parent, mut sound) in &mut query {
|
for (entity, parent, mut sound) in &mut query {
|
||||||
if sound.generator.is_none() {
|
if sound.generator.is_some() {
|
||||||
let mut source = if let Ok(s) = sources.get_mut(entity) {
|
continue;
|
||||||
Some(s)
|
}
|
||||||
} else if parent.is_some() {
|
let mut source = if let Ok(s) = sources.get_mut(entity) {
|
||||||
let mut parent = parent;
|
Some(s)
|
||||||
let mut target = None;
|
} else if parent.is_some() {
|
||||||
while let Some(p) = parent {
|
let mut parent = parent;
|
||||||
if sources.get(**p).is_ok() {
|
let mut target = None;
|
||||||
target = Some(**p);
|
while let Some(p) = parent {
|
||||||
break;
|
if sources.get(**p).is_ok() {
|
||||||
}
|
target = Some(**p);
|
||||||
parent = parents.get(**p).ok();
|
break;
|
||||||
}
|
}
|
||||||
target.map(|v| sources.get_mut(v).unwrap())
|
parent = parents.get(**p).ok();
|
||||||
} else {
|
}
|
||||||
None
|
target.map(|v| sources.get_mut(v).unwrap())
|
||||||
};
|
} else {
|
||||||
if let Some(source) = source.as_mut() {
|
None
|
||||||
if let Some(handle) = source.handle.as_mut() {
|
};
|
||||||
let generator: Option<syz::Generator> = match &sound.audio {
|
if let Some(source) = source.as_mut() {
|
||||||
Audio::Buffer(buffer) => {
|
if let Some(handle) = source.handle.as_mut() {
|
||||||
if let Some(b) = buffers.get(buffer) {
|
let generator: Option<syz::Generator> = match &sound.audio {
|
||||||
let generator = syz::BufferGenerator::new(&context)
|
Audio::Buffer(buffer) => {
|
||||||
.expect("Failed to create generator");
|
if let Some(b) = buffers.get(buffer) {
|
||||||
generator.buffer().set(&**b).expect("Unable to set buffer");
|
let generator = syz::BufferGenerator::new(&context)
|
||||||
Some(generator.into())
|
.expect("Failed to create generator");
|
||||||
} else {
|
generator.buffer().set(&**b).expect("Unable to set buffer");
|
||||||
None
|
assert!(sound.playback_position >= 0.);
|
||||||
}
|
generator
|
||||||
|
.playback_position()
|
||||||
|
.set(sound.playback_position)
|
||||||
|
.expect("Failed to set playback position");
|
||||||
|
Some(generator.into())
|
||||||
|
} else {
|
||||||
|
None
|
||||||
}
|
}
|
||||||
Audio::Generator(generator) => Some(generator.clone()),
|
|
||||||
};
|
|
||||||
if let Some(generator) = generator {
|
|
||||||
assert!(sound.gain >= 0.);
|
|
||||||
generator
|
|
||||||
.gain()
|
|
||||||
.set(sound.gain)
|
|
||||||
.expect("Failed to set gain");
|
|
||||||
assert!(sound.pitch > 0. && sound.pitch <= 2.);
|
|
||||||
generator
|
|
||||||
.pitch_bend()
|
|
||||||
.set(sound.pitch)
|
|
||||||
.expect("Failed to set pitch");
|
|
||||||
handle
|
|
||||||
.add_generator(generator.handle())
|
|
||||||
.expect("Unable to add generator");
|
|
||||||
sound.generator = Some(generator);
|
|
||||||
}
|
}
|
||||||
}
|
Audio::Generator(generator) => Some(generator.clone()),
|
||||||
|
};
|
||||||
|
let Some(generator) = generator else {
|
||||||
|
continue;
|
||||||
|
};
|
||||||
|
assert!(sound.gain >= 0.);
|
||||||
|
generator
|
||||||
|
.gain()
|
||||||
|
.set(sound.gain)
|
||||||
|
.expect("Failed to set gain");
|
||||||
|
assert!(sound.pitch > 0. && sound.pitch <= 2.);
|
||||||
|
generator
|
||||||
|
.pitch_bend()
|
||||||
|
.set(sound.pitch)
|
||||||
|
.expect("Failed to set pitch");
|
||||||
|
handle
|
||||||
|
.add_generator(generator.handle())
|
||||||
|
.expect("Unable to add generator");
|
||||||
|
sound.generator = Some(generator);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -361,6 +371,7 @@ fn swap_buffers(
|
||||||
if let Some(l) = last_audio.get(&entity) {
|
if let Some(l) = last_audio.get(&entity) {
|
||||||
if sound.generator.is_some() && sound.audio != *l {
|
if sound.generator.is_some() && sound.audio != *l {
|
||||||
sound.generator = None;
|
sound.generator = None;
|
||||||
|
sound.playback_position = 0.;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
last_audio.insert(entity, sound.audio.clone());
|
last_audio.insert(entity, sound.audio.clone());
|
||||||
|
@ -382,10 +393,11 @@ fn change_panner_strategy(
|
||||||
check.push(entity);
|
check.push(entity);
|
||||||
}
|
}
|
||||||
for entity in check.iter() {
|
for entity in check.iter() {
|
||||||
if let Ok(mut source) = sources.get_mut(*entity) {
|
let Ok(mut source) = sources.get_mut(*entity) else {
|
||||||
if source.handle.is_some() {
|
continue;
|
||||||
source.handle = None;
|
};
|
||||||
}
|
if source.handle.is_some() {
|
||||||
|
source.handle = None;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -403,6 +415,7 @@ fn update_source_properties(
|
||||||
Option<&AngularPan>,
|
Option<&AngularPan>,
|
||||||
Option<&ScalarPan>,
|
Option<&ScalarPan>,
|
||||||
Option<&GlobalTransform>,
|
Option<&GlobalTransform>,
|
||||||
|
Option<&mut Sound>,
|
||||||
)>,
|
)>,
|
||||||
) {
|
) {
|
||||||
for (
|
for (
|
||||||
|
@ -416,110 +429,126 @@ fn update_source_properties(
|
||||||
angular_pan,
|
angular_pan,
|
||||||
scalar_pan,
|
scalar_pan,
|
||||||
transform,
|
transform,
|
||||||
|
sound,
|
||||||
) in &mut query
|
) in &mut query
|
||||||
{
|
{
|
||||||
let Source { gain, .. } = *source;
|
let Source { gain, .. } = *source;
|
||||||
assert!(gain >= 0.);
|
assert!(gain >= 0.);
|
||||||
if let Some(handle) = source.handle.as_mut() {
|
let Some(handle) = source.handle.as_mut() else {
|
||||||
handle.gain().set(gain).expect("Failed to set gain");
|
continue;
|
||||||
let mut clear_source = false;
|
};
|
||||||
|
handle.gain().set(gain).expect("Failed to set gain");
|
||||||
|
let mut clear_source = false;
|
||||||
|
if let Some(source) = handle.cast_to::<syz::Source3D>().expect("Failed to cast") {
|
||||||
if let Some(transform) = transform {
|
if let Some(transform) = transform {
|
||||||
if let Some(source) = handle.cast_to::<syz::Source3D>().expect("Failed to cast") {
|
let translation = transform.translation();
|
||||||
let translation = transform.translation();
|
source
|
||||||
source
|
.position()
|
||||||
.position()
|
.set((
|
||||||
.set((
|
translation.x as f64,
|
||||||
translation.x as f64,
|
translation.y as f64,
|
||||||
translation.y as f64,
|
translation.z as f64,
|
||||||
translation.z as f64,
|
))
|
||||||
))
|
.expect("Failed to set position");
|
||||||
.expect("Failed to set position");
|
let distance_model = distance_model
|
||||||
let distance_model = distance_model
|
.cloned()
|
||||||
.cloned()
|
.map(|v| *v)
|
||||||
.map(|v| *v)
|
.unwrap_or_else(|| context.default_distance_model().get().unwrap());
|
||||||
.unwrap_or_else(|| context.default_distance_model().get().unwrap());
|
source
|
||||||
source
|
.distance_model()
|
||||||
.distance_model()
|
.set(distance_model)
|
||||||
.set(distance_model)
|
.expect("Failed to set distance_model");
|
||||||
.expect("Failed to set distance_model");
|
let distance_ref = distance_ref
|
||||||
let distance_ref = distance_ref
|
.map(|v| **v)
|
||||||
.map(|v| **v)
|
.unwrap_or_else(|| context.default_distance_ref().get().unwrap());
|
||||||
.unwrap_or_else(|| context.default_distance_ref().get().unwrap());
|
assert!(distance_ref >= 0.);
|
||||||
assert!(distance_ref >= 0.);
|
source
|
||||||
source
|
.distance_ref()
|
||||||
.distance_ref()
|
.set(distance_ref)
|
||||||
.set(distance_ref)
|
.expect("Failed to set distance_ref");
|
||||||
.expect("Failed to set distance_ref");
|
let distance_max = distance_max
|
||||||
let distance_max = distance_max
|
.map(|v| **v)
|
||||||
.map(|v| **v)
|
.unwrap_or_else(|| context.default_distance_max().get().unwrap());
|
||||||
.unwrap_or_else(|| context.default_distance_max().get().unwrap());
|
assert!(distance_max >= 0.);
|
||||||
assert!(distance_max >= 0.);
|
source
|
||||||
source
|
.distance_max()
|
||||||
.distance_max()
|
.set(distance_max)
|
||||||
.set(distance_max)
|
.expect("Failed to set distance_max");
|
||||||
.expect("Failed to set distance_max");
|
let rolloff = rolloff
|
||||||
let rolloff = rolloff
|
.map(|v| **v)
|
||||||
.map(|v| **v)
|
.unwrap_or_else(|| context.default_rolloff().get().unwrap());
|
||||||
.unwrap_or_else(|| context.default_rolloff().get().unwrap());
|
assert!(rolloff >= 0.);
|
||||||
assert!(rolloff >= 0.);
|
assert!(rolloff >= 0.);
|
||||||
source
|
source
|
||||||
.rolloff()
|
.rolloff()
|
||||||
.set(rolloff)
|
.set(rolloff)
|
||||||
.expect("Failed to set rolloff");
|
.expect("Failed to set rolloff");
|
||||||
let closeness_boost = closeness_boost
|
let closeness_boost = closeness_boost
|
||||||
.map(|v| **v)
|
.map(|v| **v)
|
||||||
.unwrap_or_else(|| context.default_closeness_boost().get().unwrap());
|
.unwrap_or_else(|| context.default_closeness_boost().get().unwrap());
|
||||||
assert!(closeness_boost >= 0.);
|
assert!(closeness_boost >= 0.);
|
||||||
source
|
source
|
||||||
.closeness_boost()
|
.closeness_boost()
|
||||||
.set(closeness_boost)
|
.set(closeness_boost)
|
||||||
.expect("Failed to set closeness_boost");
|
.expect("Failed to set closeness_boost");
|
||||||
let closeness_boost_distance =
|
let closeness_boost_distance = closeness_boost_distance
|
||||||
closeness_boost_distance.map(|v| **v).unwrap_or_else(|| {
|
.map(|v| **v)
|
||||||
context.default_closeness_boost_distance().get().unwrap()
|
.unwrap_or_else(|| context.default_closeness_boost_distance().get().unwrap());
|
||||||
});
|
assert!(closeness_boost_distance >= 0.);
|
||||||
assert!(closeness_boost_distance >= 0.);
|
source
|
||||||
source
|
.closeness_boost_distance()
|
||||||
.closeness_boost_distance()
|
.set(closeness_boost_distance)
|
||||||
.set(closeness_boost_distance)
|
.expect("Failed to set closeness_boost_distance");
|
||||||
.expect("Failed to set closeness_boost_distance");
|
} else {
|
||||||
} else {
|
clear_source = true;
|
||||||
clear_source = true;
|
|
||||||
}
|
|
||||||
} else if let Some(angular_pan) = angular_pan {
|
|
||||||
if let Some(source) = handle
|
|
||||||
.cast_to::<syz::AngularPannedSource>()
|
|
||||||
.expect("Failed to cast")
|
|
||||||
{
|
|
||||||
assert!(angular_pan.azimuth >= 0. && angular_pan.azimuth <= 360.);
|
|
||||||
source
|
|
||||||
.azimuth()
|
|
||||||
.set(angular_pan.azimuth)
|
|
||||||
.expect("Failed to set azimuth");
|
|
||||||
assert!(angular_pan.elevation >= -90. && angular_pan.elevation <= 90.);
|
|
||||||
source
|
|
||||||
.elevation()
|
|
||||||
.set(angular_pan.elevation)
|
|
||||||
.expect("Failed to set elevation");
|
|
||||||
} else {
|
|
||||||
clear_source = true;
|
|
||||||
}
|
|
||||||
} else if let Some(scalar_pan) = scalar_pan {
|
|
||||||
if let Some(source) = handle
|
|
||||||
.cast_to::<syz::ScalarPannedSource>()
|
|
||||||
.expect("Failed to cast")
|
|
||||||
{
|
|
||||||
assert!(**scalar_pan >= -1. && **scalar_pan <= 1.);
|
|
||||||
source
|
|
||||||
.panning_scalar()
|
|
||||||
.set(**scalar_pan)
|
|
||||||
.expect("Failed to set scalar panning");
|
|
||||||
} else {
|
|
||||||
clear_source = true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if clear_source {
|
} else if let Some(source) = handle
|
||||||
source.handle = None;
|
.cast_to::<syz::AngularPannedSource>()
|
||||||
|
.expect("Failed to cast")
|
||||||
|
{
|
||||||
|
if let Some(angular_pan) = angular_pan {
|
||||||
|
assert!(angular_pan.azimuth >= 0. && angular_pan.azimuth <= 360.);
|
||||||
|
source
|
||||||
|
.azimuth()
|
||||||
|
.set(angular_pan.azimuth)
|
||||||
|
.expect("Failed to set azimuth");
|
||||||
|
assert!(angular_pan.elevation >= -90. && angular_pan.elevation <= 90.);
|
||||||
|
source
|
||||||
|
.elevation()
|
||||||
|
.set(angular_pan.elevation)
|
||||||
|
.expect("Failed to set elevation");
|
||||||
|
} else {
|
||||||
|
clear_source = true;
|
||||||
|
}
|
||||||
|
} else if let Some(source) = handle
|
||||||
|
.cast_to::<syz::ScalarPannedSource>()
|
||||||
|
.expect("Failed to cast")
|
||||||
|
{
|
||||||
|
if let Some(scalar_pan) = scalar_pan {
|
||||||
|
assert!(**scalar_pan >= -1. && **scalar_pan <= 1.);
|
||||||
|
source
|
||||||
|
.panning_scalar()
|
||||||
|
.set(**scalar_pan)
|
||||||
|
.expect("Failed to set scalar panning");
|
||||||
|
} else {
|
||||||
|
clear_source = true;
|
||||||
|
}
|
||||||
|
} else if handle
|
||||||
|
.cast_to::<syz::DirectSource>()
|
||||||
|
.expect("Failed to cast")
|
||||||
|
.is_some()
|
||||||
|
{
|
||||||
|
if transform.is_some() || angular_pan.is_some() || scalar_pan.is_some() {
|
||||||
|
clear_source = true;
|
||||||
|
}
|
||||||
|
} else if source.handle.is_some() {
|
||||||
|
clear_source = true;
|
||||||
|
}
|
||||||
|
if clear_source {
|
||||||
|
source.handle = None;
|
||||||
|
if let Some(mut sound) = sound {
|
||||||
|
sound.generator = None;
|
||||||
|
sound.playback_position = 0.;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -535,45 +564,60 @@ fn update_sound_properties(mut query: Query<&mut Sound>) {
|
||||||
} = *sound;
|
} = *sound;
|
||||||
assert!(gain >= 0.);
|
assert!(gain >= 0.);
|
||||||
assert!(pitch > 0. && pitch <= 2.);
|
assert!(pitch > 0. && pitch <= 2.);
|
||||||
if let Some(generator) = sound.generator.as_mut() {
|
let Some(generator) = &sound.generator else {
|
||||||
generator.gain().set(gain).expect("Failed to set gain");
|
continue;
|
||||||
|
};
|
||||||
|
if let Some(generator) = generator
|
||||||
|
.cast_to::<syz::BufferGenerator>()
|
||||||
|
.expect("Failed to cast")
|
||||||
|
{
|
||||||
|
sound.playback_position = generator
|
||||||
|
.playback_position()
|
||||||
|
.get()
|
||||||
|
.expect("Failed to getplayback position");
|
||||||
|
}
|
||||||
|
let Some(generator) = sound.generator.as_mut() else {
|
||||||
|
continue;
|
||||||
|
};
|
||||||
|
generator.gain().set(gain).expect("Failed to set gain");
|
||||||
|
generator
|
||||||
|
.pitch_bend()
|
||||||
|
.set(pitch)
|
||||||
|
.expect("Failed to set pitch");
|
||||||
|
if let Some(generator) = generator
|
||||||
|
.cast_to::<syz::BufferGenerator>()
|
||||||
|
.expect("Failed to cast")
|
||||||
|
{
|
||||||
generator
|
generator
|
||||||
.pitch_bend()
|
.looping()
|
||||||
.set(pitch)
|
.set(looping)
|
||||||
.expect("Failed to set pitch");
|
.expect("Failed to set looping");
|
||||||
if let Some(generator) = generator
|
|
||||||
.cast_to::<syz::BufferGenerator>()
|
|
||||||
.expect("Failed to cast")
|
|
||||||
{
|
|
||||||
generator
|
|
||||||
.looping()
|
|
||||||
.set(looping)
|
|
||||||
.expect("Failed to set looping");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn update_source_playback_state(query: Query<&Source>) {
|
fn update_source_playback_state(query: Query<&Source>) {
|
||||||
for source in &query {
|
for source in &query {
|
||||||
if let Some(handle) = &source.handle {
|
let Some(handle) = &source.handle else {
|
||||||
if source.paused {
|
continue;
|
||||||
handle.pause().expect("Failed to pause");
|
};
|
||||||
} else {
|
if source.paused {
|
||||||
handle.play().expect("Failed to play");
|
handle.pause().expect("Failed to pause");
|
||||||
}
|
} else {
|
||||||
|
handle.play().expect("Failed to play");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn update_sound_playback_state(query: Query<&Sound>) {
|
fn update_sound_playback_state(query: Query<&Sound>) {
|
||||||
for sound in &query {
|
for sound in &query {
|
||||||
if let Some(generator) = &sound.generator {
|
let Some(generator) = &sound.generator else {
|
||||||
if sound.paused {
|
continue;
|
||||||
generator.pause().expect("Failed to pause");
|
};
|
||||||
} else {
|
if sound.paused {
|
||||||
generator.play().expect("Failed to play");
|
generator.pause().expect("Failed to pause");
|
||||||
}
|
} else {
|
||||||
|
generator.play().expect("Failed to play");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -654,22 +698,24 @@ fn events(
|
||||||
mut output: EventWriter<SynthizerEvent>,
|
mut output: EventWriter<SynthizerEvent>,
|
||||||
) {
|
) {
|
||||||
context.get_events().for_each(|event| {
|
context.get_events().for_each(|event| {
|
||||||
if let Ok(event) = event {
|
let Ok(event) = event else {
|
||||||
for (entity, sound) in &sounds {
|
return;
|
||||||
if let Some(generator) = &sound.generator {
|
};
|
||||||
if *generator.handle() == event.source {
|
for (entity, sound) in &sounds {
|
||||||
match event.r#type {
|
let Some(generator) = &sound.generator else {
|
||||||
syz::EventType::Finished => {
|
continue;
|
||||||
output.send(SynthizerEvent::Finished(entity));
|
};
|
||||||
}
|
if *generator.handle() == event.source {
|
||||||
syz::EventType::Looped => {
|
match event.r#type {
|
||||||
output.send(SynthizerEvent::Looped(entity));
|
syz::EventType::Finished => {
|
||||||
}
|
output.send(SynthizerEvent::Finished(entity));
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
syz::EventType::Looped => {
|
||||||
|
output.send(SynthizerEvent::Looped(entity));
|
||||||
|
}
|
||||||
|
_ => {}
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user