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

pub struct Param {
    name: String,
    default: Sample,
    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
    }
}