summaryrefslogtreecommitdiff
path: root/src/synth/param.rs
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2017-09-18 23:12:14 -0400
committerGraham Northup <grissess@nexusg.org>2017-09-18 23:12:14 -0400
commit85925d69e08455bd91d32a27cd3690c9cb634a6b (patch)
tree1023c044a3350aadb4eb06bf73e209f81f21f8ae /src/synth/param.rs
Initial work on modular synthesis
Diffstat (limited to 'src/synth/param.rs')
-rw-r--r--src/synth/param.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/synth/param.rs b/src/synth/param.rs
new file mode 100644
index 0000000..3177ffd
--- /dev/null
+++ b/src/synth/param.rs
@@ -0,0 +1,14 @@
+use super::*;
+
+pub struct Param {
+ name: String,
+ default: Sample,
+ buf: SampleBuffer,
+}
+
+impl Generator for Param {
+ fn eval<'a>(&'a mut self, params: &Parameters) -> &'a SampleBuffer {
+ self.buf.set(*params.vars.get(&self.name).unwrap_or(&self.default));
+ &self.buf
+ }
+}