summaryrefslogtreecommitdiff
path: root/src/synth/saw.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth/saw.rs')
-rw-r--r--src/synth/saw.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/synth/saw.rs b/src/synth/saw.rs
index bfd3cb0..b85794d 100644
--- a/src/synth/saw.rs
+++ b/src/synth/saw.rs
@@ -19,7 +19,22 @@ impl Generator for Saw {
self.phase = (self.phase + pvel * (self.buf.len() as f32)) % 1.0;
&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 SawFactory;
+
+impl GeneratorFactory for SawFactory {
+ fn new(&self, params: &mut FactoryParameters) -> Result<GenBox, GenFactoryError> {
+ Ok(Box::new(Saw {
+ freq: params.remove_param("freq", 0)?.as_gen()?,
+ phase: params.get_param("phase", 1, &ParamValue::Float(0.0)).as_f32()?,
+ buf: SampleBuffer::new(params.env.default_buffer_size),
+ }))
+ }
+}
+
+pub static Factory: SawFactory = SawFactory;