1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
use std::marker::PhantomData;
use derive_new::new;
use log::error;
#[cfg(feature = "profiler")]
use thread_profiler::profile_scope;
use amethyst_assets::AssetStorage;
use amethyst_core::{
ecs::prelude::{Read, System, SystemData, World, WriteExpect},
shred::Resource,
SystemDesc,
};
use crate::{
output::init_output,
sink::AudioSink,
source::{Source, SourceHandle},
};
#[derive(Debug, new)]
pub struct DjSystemDesc<F, R> {
f: F,
marker: PhantomData<R>,
}
impl<'a, 'b, F, R> SystemDesc<'a, 'b, DjSystem<F, R>> for DjSystemDesc<F, R>
where
F: FnMut(&mut R) -> Option<SourceHandle>,
R: Resource,
{
fn build(self, world: &mut World) -> DjSystem<F, R> {
<DjSystem<F, R> as System<'_>>::SystemData::setup(world);
init_output(world);
DjSystem::new(self.f)
}
}
#[derive(Debug, new)]
pub struct DjSystem<F, R> {
f: F,
marker: PhantomData<R>,
}
impl<'a, F, R> System<'a> for DjSystem<F, R>
where
F: FnMut(&mut R) -> Option<SourceHandle>,
R: Resource,
{
type SystemData = (
Read<'a, AssetStorage<Source>>,
Option<Read<'a, AudioSink>>,
WriteExpect<'a, R>,
);
fn run(&mut self, (storage, sink, mut res): Self::SystemData) {
#[cfg(feature = "profiler")]
profile_scope!("dj_system");
if let Some(ref sink) = sink {
if sink.empty() {
if let Some(source) = (&mut self.f)(&mut res).and_then(|h| storage.get(&h)) {
if let Err(e) = sink.append(source) {
error!("DJ Cannot append source to sink. {}", e);
}
}
}
}
}
}