From 7eef21b3b90898f4ef05fa4220fde608cf55c6ab Mon Sep 17 00:00:00 2001 From: Graham Northup Date: Sun, 24 Sep 2017 03:41:45 -0400 Subject: parser appears to work (oh my) --- src/synth/param.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/synth/param.rs') diff --git a/src/synth/param.rs b/src/synth/param.rs index f679b56..859f789 100644 --- a/src/synth/param.rs +++ b/src/synth/param.rs @@ -12,7 +12,22 @@ impl Generator for Param { self.buf.set(*params.vars.get(&self.name).unwrap_or(&self.default)); &self.buf } + fn buffer<'a>(&'a self) -> &'a 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 { + Ok(Box::new(Param { + name: params.get_req_param("name", 0)?.as_string()?, + default: params.get_param("default", 1, &ParamValue::Float(0.0)).as_f32()?, + buf: SampleBuffer::new(1), + })) + } +} + +pub static Factory: ParamFactory = ParamFactory; -- cgit v1.2.3-70-g09d2