summaryrefslogtreecommitdiff
path: root/src/synth/param.rs
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2017-09-24 03:41:45 -0400
committerGraham Northup <grissess@nexusg.org>2017-09-24 03:41:45 -0400
commit7eef21b3b90898f4ef05fa4220fde608cf55c6ab (patch)
treedb09a752bef57a5b6eb6040048ed1fdf66ab5043 /src/synth/param.rs
parent3d370b9a980d88f884ddd87b62bc785c3b963e1d (diff)
parser appears to work (oh my)
Diffstat (limited to 'src/synth/param.rs')
-rw-r--r--src/synth/param.rs15
1 files changed, 15 insertions, 0 deletions
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<GenBox, GenFactoryError> {
+ 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;