From 9866c0f34c268a09ecaaa9a4361c1c267799358e Mon Sep 17 00:00:00 2001 From: Graham Northup Date: Tue, 19 Sep 2017 23:56:15 -0400 Subject: Starting work on proto decode --- src/synth/mod.rs | 48 ++++++++++++++++++++++++++++++++---------------- 1 file changed, 32 insertions(+), 16 deletions(-) (limited to 'src/synth/mod.rs') diff --git a/src/synth/mod.rs b/src/synth/mod.rs index d0c837a..bf73200 100644 --- a/src/synth/mod.rs +++ b/src/synth/mod.rs @@ -1,14 +1,18 @@ use std::{iter, cmp, slice, mem}; +use std::fmt::Debug; use std::ops::{Index, IndexMut}; use std::collections::HashMap; use super::*; -#[derive(PartialEq,Eq,Clone,Copy)] +use ::byteorder::ByteOrder; + +#[derive(PartialEq,Eq,Clone,Copy,Debug)] pub enum Rate { Sample, Control, } +#[derive(Debug)] pub struct SampleBuffer { pub samples: Vec, pub rate: Rate, @@ -82,7 +86,11 @@ impl SampleBuffer { pub fn sum_into(&mut self, other: &SampleBuffer) { match self.rate { Rate::Sample => { - for i in 0..cmp::min(self.len(), other.len()) { + let bound = match other.rate { + Rate::Sample => cmp::min(self.len(), other.len()), + Rate::Control => self.len(), + }; + for i in 0..bound { self.samples[i] += match other.rate { Rate::Sample => other.samples[i], Rate::Control => other.samples[0], @@ -98,7 +106,11 @@ impl SampleBuffer { pub fn mul_into(&mut self, other: &SampleBuffer) { match self.rate { Rate::Sample => { - for i in 0..cmp::min(self.len(), other.len()) { + let bound = match other.rate { + Rate::Sample => cmp::min(self.len(), other.len()), + Rate::Control => self.len(), + }; + for i in 0..bound { self.samples[i] *= match other.rate { Rate::Sample => other.samples[i], Rate::Control => other.samples[0], @@ -117,13 +129,13 @@ impl SampleBuffer { } } - pub fn bytes<'a>(&'a self) -> &'a [u8] { - unsafe { - slice::from_raw_parts( - self.samples.as_ptr() as *const u8, - self.samples.len() * mem::size_of::(), - ) - } + pub fn size(&self) -> usize { + mem::size_of::() * self.samples.len() + } + + pub fn bytes(&self, buf: &mut [u8]) { + // FIXME: Depends on f32 instead of Sample alias + ::byteorder::LittleEndian::write_f32_into(&self.samples, buf); } } @@ -136,8 +148,9 @@ impl IndexMut for SampleBuffer { fn index_mut(&mut self, idx: usize) -> &mut Sample { &mut self.samples[idx] } } -pub trait Generator { +pub trait Generator : Debug { fn eval<'a>(&'a mut self, params: &Parameters) -> &'a SampleBuffer; + fn set_buffer(&mut self, buf: SampleBuffer) -> SampleBuffer; } pub type GenBox = Box; @@ -148,8 +161,11 @@ pub mod math; pub use self::math::{Add, Mul}; pub mod sine; pub use self::sine::Sine; -//pub mod saw; -//pub use saw::Saw; -//pub mod triangle; -//pub use triangle::Triangle; - +pub mod saw; +pub use self::saw::Saw; +pub mod triangle; +pub use self::triangle::Triangle; +pub mod square; +pub use self::square::Square; +//pub mod asdr; +//pub use self::asdr::ASDR; -- cgit v1.2.3-70-g09d2