use crate::{Audio, AudioSource, Decodable}; use bevy_asset::{Asset, Assets}; use bevy_ecs::world::World; use rodio::{OutputStream, OutputStreamHandle, Sink}; use std::marker::PhantomData; /// Used internally to play audio on the current "audio device" pub struct AudioOutput

where P: Decodable, { _stream: OutputStream, stream_handle: OutputStreamHandle, phantom: PhantomData

, } impl

Default for AudioOutput

where P: Decodable, { fn default() -> Self { let (stream, stream_handle) = OutputStream::try_default().unwrap(); Self { _stream: stream, stream_handle, phantom: PhantomData, } } } impl

AudioOutput

where P: Asset + Decodable,

::Decoder: rodio::Source + Send + Sync, <

::Decoder as Iterator>::Item: rodio::Sample + Send + Sync, { fn play_source(&self, audio_source: &P) { let sink = Sink::try_new(&self.stream_handle).unwrap(); sink.append(audio_source.decoder()); sink.detach(); } fn try_play_queued(&self, audio_sources: &Assets

, audio: &mut Audio

) { let mut queue = audio.queue.write(); let len = queue.len(); let mut i = 0; while i < len { let audio_source_handle = queue.pop_back().unwrap(); if let Some(audio_source) = audio_sources.get(&audio_source_handle) { self.play_source(audio_source); } else { // audio source hasn't loaded yet. add it back to the queue queue.push_front(audio_source_handle); } i += 1; } } } /// Plays audio currently queued in the [Audio] resource through the [AudioOutput] resource pub fn play_queued_audio_system(world: &mut World) where P: Decodable,

::Decoder: rodio::Source + Send + Sync, <

::Decoder as Iterator>::Item: rodio::Sample + Send + Sync, { let world = world.cell(); let audio_output = world.get_non_send::>().unwrap(); let mut audio = world.get_resource_mut::>().unwrap(); if let Some(audio_sources) = world.get_resource::>() { audio_output.try_play_queued(&*audio_sources, &mut *audio); }; }