mirror of
https://github.com/lightsoutgames/bevy_openal.git
synced 2024-11-21 17:05:55 +00:00
Use data-based API for controlling play state, and aggressively clean up stopped sources.
This commit is contained in:
parent
acc004b2ef
commit
2410d00b8c
79
src/lib.rs
79
src/lib.rs
|
@ -4,10 +4,10 @@ use std::ops::{Deref, DerefMut};
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
pub use alto::efx;
|
pub use alto::efx;
|
||||||
use alto::efx::AuxEffectSlot;
|
|
||||||
pub use alto::Context;
|
pub use alto::Context;
|
||||||
pub use alto::Device;
|
pub use alto::Device;
|
||||||
pub use alto::Source;
|
pub use alto::Source;
|
||||||
|
use alto::{efx::AuxEffectSlot, SourceState};
|
||||||
use alto::{Alto, Mono, StaticSource, Stereo};
|
use alto::{Alto, Mono, StaticSource, Stereo};
|
||||||
use bevy::{
|
use bevy::{
|
||||||
asset::{AssetLoader, HandleId, LoadContext, LoadedAsset},
|
asset::{AssetLoader, HandleId, LoadContext, LoadedAsset},
|
||||||
|
@ -119,15 +119,25 @@ fn buffer_creation(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Reflect)]
|
#[derive(Clone, Copy, Debug, PartialEq)]
|
||||||
#[reflect(Component)]
|
pub enum SoundState {
|
||||||
|
Stopped,
|
||||||
|
Playing,
|
||||||
|
Paused,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for SoundState {
|
||||||
|
fn default() -> Self {
|
||||||
|
SoundState::Stopped
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub struct Sound {
|
pub struct Sound {
|
||||||
pub buffer: Handle<Buffer>,
|
pub buffer: Handle<Buffer>,
|
||||||
pub autoplay: bool,
|
pub state: SoundState,
|
||||||
pub gain: f32,
|
pub gain: f32,
|
||||||
pub looping: bool,
|
pub looping: bool,
|
||||||
pub pitch: f32,
|
pub pitch: f32,
|
||||||
#[reflect(ignore)]
|
|
||||||
pub source: Option<StaticSource>,
|
pub source: Option<StaticSource>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -135,7 +145,7 @@ impl Default for Sound {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
buffer: Default::default(),
|
buffer: Default::default(),
|
||||||
autoplay: false,
|
state: Default::default(),
|
||||||
gain: 1.,
|
gain: 1.,
|
||||||
looping: false,
|
looping: false,
|
||||||
pitch: 1.,
|
pitch: 1.,
|
||||||
|
@ -144,26 +154,6 @@ impl Default for Sound {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Sound {
|
|
||||||
pub fn play(&mut self) {
|
|
||||||
if let Some(source) = self.source.as_mut() {
|
|
||||||
source.play();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn stop(&mut self) {
|
|
||||||
if let Some(source) = self.source.as_mut() {
|
|
||||||
source.stop();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn pause(&mut self) {
|
|
||||||
if let Some(source) = self.source.as_mut() {
|
|
||||||
source.pause();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub type Sounds = HashMap<String, Sound>;
|
pub type Sounds = HashMap<String, Sound>;
|
||||||
|
|
||||||
#[derive(Default)]
|
#[derive(Default)]
|
||||||
|
@ -191,18 +181,46 @@ fn source_update(
|
||||||
) {
|
) {
|
||||||
for (mut sounds, transform) in query.iter_mut() {
|
for (mut sounds, transform) in query.iter_mut() {
|
||||||
for mut sound in sounds.values_mut() {
|
for mut sound in sounds.values_mut() {
|
||||||
|
let state = sound.state;
|
||||||
|
match state {
|
||||||
|
SoundState::Stopped => {
|
||||||
|
if let Some(source) = sound.source.as_mut() {
|
||||||
|
source.stop();
|
||||||
|
sound.source = None;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
SoundState::Playing => {
|
||||||
if sound.source.is_none() {
|
if sound.source.is_none() {
|
||||||
if let Ok(mut source) = context.new_static_source() {
|
let mut source = context.new_static_source().unwrap();
|
||||||
if let Some(buffer) = buffers.0.get(&sound.buffer.id) {
|
if let Some(buffer) = buffers.0.get(&sound.buffer.id) {
|
||||||
source.set_buffer(buffer.clone()).unwrap();
|
source.set_buffer(buffer.clone()).unwrap();
|
||||||
}
|
}
|
||||||
if sound.autoplay {
|
|
||||||
source.play();
|
source.play();
|
||||||
}
|
|
||||||
sound.source = Some(source);
|
sound.source = Some(source);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
SoundState::Paused => {
|
||||||
if let Some(source) = sound.source.as_mut() {
|
if let Some(source) = sound.source.as_mut() {
|
||||||
|
source.pause();
|
||||||
|
} else {
|
||||||
|
let mut source = context.new_static_source().unwrap();
|
||||||
|
if let Some(buffer) = buffers.0.get(&sound.buffer.id) {
|
||||||
|
source.set_buffer(buffer.clone()).unwrap();
|
||||||
|
}
|
||||||
|
source.pause();
|
||||||
|
sound.source = Some(source);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if let Some(source) = sound.source.as_mut() {
|
||||||
|
sound.state = match source.state() {
|
||||||
|
SourceState::Initial => SoundState::Stopped,
|
||||||
|
SourceState::Playing => SoundState::Playing,
|
||||||
|
SourceState::Paused => SoundState::Paused,
|
||||||
|
SourceState::Stopped => SoundState::Stopped,
|
||||||
|
SourceState::Unknown(_) => SoundState::Stopped,
|
||||||
|
};
|
||||||
|
if sound.state != SoundState::Stopped {
|
||||||
source.set_gain(sound.gain).unwrap();
|
source.set_gain(sound.gain).unwrap();
|
||||||
source.set_looping(sound.looping);
|
source.set_looping(sound.looping);
|
||||||
source.set_pitch(sound.pitch).unwrap();
|
source.set_pitch(sound.pitch).unwrap();
|
||||||
|
@ -222,6 +240,9 @@ fn source_update(
|
||||||
for (send, effect) in global_effects.iter_mut().enumerate() {
|
for (send, effect) in global_effects.iter_mut().enumerate() {
|
||||||
source.set_aux_send(send as i32, effect).unwrap();
|
source.set_aux_send(send as i32, effect).unwrap();
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
sound.source = None;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user