summaryrefslogtreecommitdiff
path: root/src/synth/math.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/math.rs
parent3d370b9a980d88f884ddd87b62bc785c3b963e1d (diff)
parser appears to work (oh my)
Diffstat (limited to 'src/synth/math.rs')
-rw-r--r--src/synth/math.rs60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/synth/math.rs b/src/synth/math.rs
index 8adad4b..eb1a604 100644
--- a/src/synth/math.rs
+++ b/src/synth/math.rs
@@ -20,11 +20,25 @@ impl Generator for Add {
}
&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 AddFactory;
+
+impl GeneratorFactory for AddFactory {
+ fn new(&self, params: &mut FactoryParameters) -> Result<GenBox, GenFactoryError> {
+ Ok(Box::new(Add {
+ terms: params.get_pos_params().into_iter().map(|x| x.as_gen()).collect::<Result<Vec<_>, _>>()?,
+ buf: SampleBuffer::new(params.env.default_buffer_size),
+ }))
+ }
+}
+
+pub static FactoryAdd: AddFactory = AddFactory;
+
#[derive(Debug)]
pub struct Mul {
pub factors: Vec<GenBox>,
@@ -44,11 +58,25 @@ impl Generator for Mul {
}
&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 MulFactory;
+
+impl GeneratorFactory for MulFactory {
+ fn new(&self, params: &mut FactoryParameters) -> Result<GenBox, GenFactoryError> {
+ Ok(Box::new(Mul {
+ factors: params.get_pos_params().into_iter().map(|x| x.as_gen()).collect::<Result<Vec<_>, _>>()?,
+ buf: SampleBuffer::new(params.env.default_buffer_size),
+ }))
+ }
+}
+
+pub static FactoryMul: MulFactory = MulFactory;
+
#[derive(Debug)]
pub struct Negate {
pub value: GenBox,
@@ -70,11 +98,27 @@ impl Generator for Negate {
}
&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 NegateFactory;
+
+impl GeneratorFactory for NegateFactory {
+ fn new(&self, params: &mut FactoryParameters) -> Result<GenBox, GenFactoryError> {
+ let mut gen = params.remove_param("value", 0)?.as_gen()?;
+ let len = gen.buffer().len();
+ Ok(Box::new(Negate {
+ value: gen,
+ buf: SampleBuffer::new(len),
+ }))
+ }
+}
+
+pub static FactoryNegate: NegateFactory = NegateFactory;
+
#[derive(Debug)]
pub struct Reciprocate {
pub value: GenBox,
@@ -96,7 +140,23 @@ impl Generator for Reciprocate {
}
&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 ReciprocateFactory;
+
+impl GeneratorFactory for ReciprocateFactory {
+ fn new(&self, params: &mut FactoryParameters) -> Result<GenBox, GenFactoryError> {
+ let mut gen = params.remove_param("value", 0)?.as_gen()?;
+ let len = gen.buffer().len();
+ Ok(Box::new(Reciprocate {
+ value: gen,
+ buf: SampleBuffer::new(len),
+ }))
+ }
+}
+
+pub static FactoryReciprocate: ReciprocateFactory = ReciprocateFactory;