summaryrefslogtreecommitdiff
path: root/src/synth/noise.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth/noise.rs')
-rw-r--r--src/synth/noise.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/synth/noise.rs b/src/synth/noise.rs
new file mode 100644
index 0000000..4d90f3b
--- /dev/null
+++ b/src/synth/noise.rs
@@ -0,0 +1,26 @@
+use std::mem;
+use super::*;
+
+use ::rand::{XorShiftRng, Rng};
+
+#[derive(Debug)]
+pub struct Noise {
+ pub rng: XorShiftRng,
+ pub buf: SampleBuffer,
+}
+
+impl Generator for Noise {
+ fn eval<'a>(&'a mut self, params: &Parameters) -> &'a SampleBuffer {
+ self.buf.rate = Rate::Sample;
+
+ for i in 0..self.buf.len() {
+ self.buf[i] = self.rng.next_f32();
+ }
+
+ &self.buf
+ }
+ fn set_buffer(&mut self, buf: SampleBuffer) -> SampleBuffer {
+ mem::replace(&mut self.buf, buf)
+ }
+}
+