summaryrefslogtreecommitdiff
path: root/src/synth/param.rs
blob: dd3ecb8f2ffe99b3b591ceeb24fa2b1c628abf19 (plain)
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
use super::{
    mem, FactoryParameters, GenBox, GenFactoryError, Generator, GeneratorFactory, ParamValue,
    Parameters, Sample, SampleBuffer,
};

#[derive(Debug)]
pub struct Param {
    pub name: String,
    pub default: Sample,
    pub buf: SampleBuffer,
}

impl Generator for Param {
    fn eval<'a>(&'a mut self, params: &Parameters) -> &'a SampleBuffer {
        self.buf
            .set(*params.vars.get(&self.name).unwrap_or(&self.default));
        &self.buf
    }
    fn buffer(&self) -> &SampleBuffer {
        &self.buf
    }
    fn set_buffer(&mut self, buf: SampleBuffer) -> SampleBuffer {
        mem::replace(&mut self.buf, buf)
    }
}

pub struct ParamFactory;

impl GeneratorFactory for ParamFactory {
    fn new(&self, params: &mut FactoryParameters) -> Result<GenBox, GenFactoryError> {
        Ok(Box::new(Param {
            name: params.get_req_param("name", 0)?.as_string()?,
            default: params
                .get_param("default", 1, &mut ParamValue::Float(0.0))
                .as_f32()?,
            buf: SampleBuffer::new(1),
        }))
    }
}

pub static Factory: ParamFactory = ParamFactory;