summaryrefslogtreecommitdiff
path: root/src/synth/param.rs
blob: ced5900ade0a77cf429f2f04fb67a5b13c1e9590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::*;

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
    }
}