diff options
author | Graham Northup <grissess@nexusg.org> | 2017-09-24 03:41:45 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-09-24 03:41:45 -0400 |
commit | 7eef21b3b90898f4ef05fa4220fde608cf55c6ab (patch) | |
tree | db09a752bef57a5b6eb6040048ed1fdf66ab5043 /src/synth/mod.rs | |
parent | 3d370b9a980d88f884ddd87b62bc785c3b963e1d (diff) |
parser appears to work (oh my)
Diffstat (limited to 'src/synth/mod.rs')
-rw-r--r-- | src/synth/mod.rs | 202 |
1 files changed, 201 insertions, 1 deletions
diff --git a/src/synth/mod.rs b/src/synth/mod.rs index 4f23a01..b22e162 100644 --- a/src/synth/mod.rs +++ b/src/synth/mod.rs @@ -1,5 +1,6 @@ -use std::{iter, cmp, slice, mem}; +use std::{iter, cmp, slice, mem, fmt}; use std::fmt::Debug; +use std::error::Error; use std::ops::{Index, IndexMut}; use std::collections::HashMap; use super::*; @@ -154,11 +155,191 @@ impl IndexMut<usize> for SampleBuffer { pub trait Generator : Debug { fn eval<'a>(&'a mut self, params: &Parameters) -> &'a SampleBuffer; + fn buffer<'a>(&'a self) -> &'a SampleBuffer; fn set_buffer(&mut self, buf: SampleBuffer) -> SampleBuffer; } pub type GenBox = Box<Generator>; +#[derive(Debug)] +pub enum GenFactoryError { + MissingRequiredParam(String, usize), + CannotConvert(ParamKind, ParamKind), + BadType(ParamKind), +} + +#[derive(Debug)] +pub struct GenFactoryErrorType { + pub kind: GenFactoryError, + desc: String +} + +impl GenFactoryErrorType { + pub fn new(kind: GenFactoryError) -> GenFactoryErrorType { + let mut ret = GenFactoryErrorType { + kind: kind, + desc: "".to_string(), + }; + + ret.desc = match &ret.kind { + &GenFactoryError::MissingRequiredParam(ref name, pos) => format!("Needed a parameter named {} or at pos {}", name, pos), + &GenFactoryError::CannotConvert(from, to) => format!("Cannot convert {:?} to {:?}", from, to), + &GenFactoryError::BadType(ty) => format!("Bad parameter type {:?}", ty), + }; + + ret + } + + pub fn with_description(kind: GenFactoryError, desc: String) -> GenFactoryErrorType { + GenFactoryErrorType { + kind: kind, + desc: desc, + } + } +} + +impl From<GenFactoryError> for GenFactoryErrorType { + fn from(e: GenFactoryError) -> GenFactoryErrorType { + GenFactoryErrorType::new(e) + } +} + +impl Error for GenFactoryErrorType { + fn description<'a>(&'a self) -> &'a str { + &self.desc + } +} + +impl fmt::Display for GenFactoryErrorType { + fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { + write!(f, "{}", self.description()) + } +} + +impl Into<Box<Error>> for GenFactoryError { + fn into(self) -> Box<Error> { + Box::new(GenFactoryErrorType::new(self)) + } +} + +#[derive(Debug,PartialEq,Eq,Clone,Copy)] +pub enum ParamKind { + Integer, + Float, + String, + Generator, +} + +pub enum ParamValue { + Integer(isize), + Float(f32), + String(String), + Generator(GenBox), +} + +impl ParamValue { + pub fn kind(&self) -> ParamKind { + match *self { + ParamValue::Integer(_) => ParamKind::Integer, + ParamValue::Float(_) => ParamKind::Float, + ParamValue::String(_) => ParamKind::String, + ParamValue::Generator(_) => ParamKind::Generator, + } + } + + pub fn as_isize(&self) -> Result<isize, GenFactoryError> { + match *self { + ParamValue::Integer(v) => Ok(v), + ParamValue::Float(v) => Ok(v as isize), + ParamValue::String(ref v) => v.parse().map_err(|_| GenFactoryError::CannotConvert(ParamKind::String, ParamKind::Integer)), + ParamValue::Generator(_) => Err(GenFactoryError::CannotConvert(ParamKind::Generator, ParamKind::Integer)), + } + } + + pub fn as_f32(&self) -> Result<f32, GenFactoryError> { + match *self { + ParamValue::Integer(v) => Ok(v as f32), + ParamValue::Float(v) => Ok(v), + ParamValue::String(ref v) => v.parse().map_err(|_| GenFactoryError::CannotConvert(ParamKind::String, ParamKind::Float)), + ParamValue::Generator(_) => Err(GenFactoryError::CannotConvert(ParamKind::Generator, ParamKind::Float)), + } + } + + pub fn as_string(&self) -> Result<String, GenFactoryError> { + match *self { + ParamValue::Integer(v) => Ok(v.to_string()), + ParamValue::Float(v) => Ok(v.to_string()), + ParamValue::String(ref v) => Ok(v.clone()), + ParamValue::Generator(_) => Err(GenFactoryError::CannotConvert(ParamKind::Generator, ParamKind::String)), + } + } + + pub fn as_gen(self) -> Result<GenBox, GenFactoryError> { + match self { + ParamValue::Integer(v) => Ok(Box::new(self::param::Param { name : "_".to_string(), default: v as f32, buf: SampleBuffer::new(1) })), + ParamValue::Float(v) => Ok(Box::new(self::param::Param { name : "_".to_string(), default: v, buf: SampleBuffer::new(1) })), + ParamValue::String(_) => Err(GenFactoryError::CannotConvert(ParamKind::String, ParamKind::Generator)), + ParamValue::Generator(g) => Ok(g), + } + } +} + +impl<'a> From<&'a ParamValue> for ParamKind { + fn from(val: &'a ParamValue) -> ParamKind { + val.kind() + } +} + +#[derive(Default)] +pub struct FactoryParameters { + pub env: Environment, + pub vars: HashMap<String, ParamValue>, +} + +impl FactoryParameters { + pub fn get_param<'a, 'b : 'a>(&'a self, name: &str, position: usize, default: &'b ParamValue) -> &'a ParamValue { + ( + self.vars.get(name).or_else(|| + self.vars.get(&position.to_string()).or(Some(default)) + ) + ).unwrap() + } + + pub fn get_req_param(&self, name: &str, position: usize) -> Result<&ParamValue, GenFactoryError> { + match self.vars.get(name).or_else(|| self.vars.get(&position.to_string())) { + Some(v) => Ok(v), + None => Err(GenFactoryError::MissingRequiredParam(name.to_string(), position)), + } + } + + pub fn remove_param(&mut self, name: &str, position: usize) -> Result<ParamValue, GenFactoryError> { + match self.vars.remove(name).or_else(|| self.vars.remove(&position.to_string())) { + Some(v) => Ok(v), + None => Err(GenFactoryError::MissingRequiredParam(name.to_string(), position)), + } + } + + pub fn get_pos_params(&mut self) -> Vec<ParamValue> { + let mut ret = Vec::new(); + + for i in 0.. { + match self.vars.remove(&i.to_string()) { + Some(v) => ret.push(v), + None => return ret, + } + } + + unreachable!() + } +} + +pub trait GeneratorFactory { + // NB: Like above, &self is for object safety. This should have an associated type, but that + // would compromise object safety; for the same reason, the return of this may only be a + // Box<Generator>, which necessitates allocation. + fn new(&self, params: &mut FactoryParameters) -> Result<GenBox, GenFactoryError>; +} + pub mod param; pub use self::param::Param; pub mod math; @@ -179,3 +360,22 @@ pub mod noise; pub use self::noise::Noise; //pub mod adsr; //pub use self::adsr::ADSR; + +pub fn all_factories() -> HashMap<String, &'static GeneratorFactory> { + let mut ret = HashMap::new(); + + ret.insert("param".to_string(), &self::param::Factory as &GeneratorFactory); + ret.insert("add".to_string(), &self::math::FactoryAdd as &GeneratorFactory); + ret.insert("mul".to_string(), &self::math::FactoryMul as &GeneratorFactory); + ret.insert("negate".to_string(), &self::math::FactoryNegate as &GeneratorFactory); + ret.insert("reciprocate".to_string(), &self::math::FactoryReciprocate as &GeneratorFactory); + ret.insert("rel".to_string(), &self::rel::Factory as &GeneratorFactory); + ret.insert("ifelse".to_string(), &self::logic::Factory as &GeneratorFactory); + ret.insert("sine".to_string(), &self::sine::Factory as &GeneratorFactory); + ret.insert("saw".to_string(), &self::saw::Factory as &GeneratorFactory); + ret.insert("triangle".to_string(), &self::triangle::Factory as &GeneratorFactory); + ret.insert("square".to_string(), &self::square::Factory as &GeneratorFactory); + ret.insert("noise".to_string(), &self::noise::Factory as &GeneratorFactory); + + ret +} |