From dcfc4e82386f41bd36c3b102512bd225fc5331b6 Mon Sep 17 00:00:00 2001 From: Graham Northup Date: Wed, 20 Sep 2017 01:49:04 -0400 Subject: more of the same for the night :) --- src/synth/math.rs | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) (limited to 'src/synth/math.rs') diff --git a/src/synth/math.rs b/src/synth/math.rs index 91e58e3..8adad4b 100644 --- a/src/synth/math.rs +++ b/src/synth/math.rs @@ -48,3 +48,55 @@ impl Generator for Mul { mem::replace(&mut self.buf, buf) } } + +#[derive(Debug)] +pub struct Negate { + pub value: GenBox, + pub buf: SampleBuffer, +} + +impl Generator for Negate { + fn eval<'a>(&'a mut self, params: &Parameters) -> &'a SampleBuffer { + self.buf.update_from(self.value.eval(params)); + match self.buf.rate { + Rate::Sample => { + for v in self.buf.iter_mut() { + *v *= -1.0; + } + }, + Rate::Control => { + self.buf[0] *= -1.0; + }, + } + &self.buf + } + fn set_buffer(&mut self, buf: SampleBuffer) -> SampleBuffer { + mem::replace(&mut self.buf, buf) + } +} + +#[derive(Debug)] +pub struct Reciprocate { + pub value: GenBox, + pub buf: SampleBuffer, +} + +impl Generator for Reciprocate { + fn eval<'a>(&'a mut self, params: &Parameters) -> &'a SampleBuffer { + self.buf.update_from(self.value.eval(params)); + match self.buf.rate { + Rate::Sample => { + for v in self.buf.iter_mut() { + *v = v.powf(-1.0); + } + }, + Rate::Control => { + self.buf[0] = self.buf[0].powf(-1.0); + }, + } + &self.buf + } + fn set_buffer(&mut self, buf: SampleBuffer) -> SampleBuffer { + mem::replace(&mut self.buf, buf) + } +} -- cgit v1.2.3-70-g09d2