2021-06-19 08:50:39 +00:00
|
|
|
// Copyright (c) 2021 Weird Constructor <weirdconstructor@gmail.com>
|
|
|
|
// This is a part of HexoDSP. Released under (A)GPLv3 or any later.
|
|
|
|
// See README.md and COPYING for details.
|
|
|
|
|
|
|
|
use crate::nodes::{NodeAudioContext, NodeExecContext};
|
2021-06-19 10:17:22 +00:00
|
|
|
use crate::dsp::{NodeId, SAtom, ProcBuf, DspNode, LedPhaseVals};
|
|
|
|
use crate::dsp::helpers::{DelayBuffer, crossfade};
|
2021-06-19 08:50:39 +00:00
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! fa_dly_s { ($formatter: expr, $v: expr, $denorm_v: expr) => { {
|
|
|
|
let s =
|
|
|
|
match ($v.round() as usize) {
|
|
|
|
0 => "Zero",
|
|
|
|
1 => "One",
|
|
|
|
2 => "Two",
|
|
|
|
3 => "Three",
|
|
|
|
4 => "Four",
|
|
|
|
5 => "Five",
|
|
|
|
6 => "Six",
|
|
|
|
7 => "Seven",
|
|
|
|
8 => "Eigth",
|
|
|
|
9 => "Nine",
|
|
|
|
10 => "Ten",
|
|
|
|
_ => "?",
|
|
|
|
};
|
|
|
|
write!($formatter, "{}", s)
|
|
|
|
} } }
|
|
|
|
|
|
|
|
/// A simple amplifier
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct Delay {
|
2021-06-19 10:17:22 +00:00
|
|
|
buffer: Box<DelayBuffer>,
|
|
|
|
fb_sample: f32,
|
2021-06-19 08:50:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Delay {
|
|
|
|
pub fn new(_nid: &NodeId) -> Self {
|
|
|
|
Self {
|
2021-06-19 10:17:22 +00:00
|
|
|
buffer: Box::new(DelayBuffer::new()),
|
|
|
|
fb_sample: 0.0,
|
2021-06-19 08:50:39 +00:00
|
|
|
}
|
|
|
|
}
|
2021-06-19 09:17:00 +00:00
|
|
|
|
|
|
|
pub const inp : &'static str =
|
|
|
|
"Delay inp\nThe signal input for the delay. You can mix in this \
|
|
|
|
input to the output with the 'mix' parameter.\nRange: (-1..1)";
|
|
|
|
pub const time : &'static str =
|
|
|
|
"Delay time\nThe delay time. It can be freely modulated to your \
|
|
|
|
likings.\nRange: (0..1)";
|
|
|
|
pub const fb : &'static str =
|
|
|
|
"Delay fb\nThe feedback amount of the delay output to it's input. \
|
|
|
|
\nRange: (0..1)";
|
|
|
|
pub const mix : &'static str =
|
|
|
|
"Delay mix\nThe dry/wet mix of the delay.\nRange: (0..1)";
|
|
|
|
pub const sig : &'static str =
|
|
|
|
"Delay sig\nThe output of the dry/wet mix.\nRange: (-1..1)";
|
|
|
|
|
|
|
|
pub const DESC : &'static str =
|
|
|
|
r#"Simple Delay Line
|
|
|
|
|
|
|
|
This is a very simple single buffer delay node.
|
|
|
|
It provides an internal feedback and dry/wet mix.
|
|
|
|
"#;
|
|
|
|
pub const HELP : &'static str =
|
|
|
|
r#"Delay - A Simple Delay Line
|
|
|
|
|
|
|
|
This node provides a very simple delay line with the bare minimum of
|
|
|
|
parameters. Most importantly a freely modulateable 'time' parameter
|
|
|
|
and a feedback 'fb' parameter.
|
|
|
|
|
|
|
|
Via the 'mix' parameter you can mix in the input signal to the output.
|
|
|
|
|
|
|
|
You can use this node to delay any kind of signal, from a simple control
|
|
|
|
signal to an audio signal.
|
|
|
|
|
|
|
|
For other kinds of delay/feedback please see also the 'FbWr'/'FbRd' nodes.
|
|
|
|
"#;
|
2021-06-19 08:50:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DspNode for Delay {
|
|
|
|
fn outputs() -> usize { 1 }
|
|
|
|
|
2021-06-19 10:17:22 +00:00
|
|
|
fn set_sample_rate(&mut self, srate: f32) {
|
|
|
|
self.buffer.set_sample_rate(srate);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reset(&mut self) {
|
|
|
|
self.buffer.reset();
|
|
|
|
}
|
2021-06-19 08:50:39 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn process<T: NodeAudioContext>(
|
|
|
|
&mut self, ctx: &mut T, _ectx: &mut NodeExecContext,
|
2021-06-19 10:17:22 +00:00
|
|
|
_atoms: &[SAtom], _params: &[ProcBuf], inputs: &[ProcBuf],
|
2021-06-19 08:50:39 +00:00
|
|
|
outputs: &mut [ProcBuf], _led: LedPhaseVals)
|
|
|
|
{
|
2021-06-19 10:17:22 +00:00
|
|
|
use crate::dsp::{out, inp, denorm};
|
2021-06-19 08:50:39 +00:00
|
|
|
|
2021-06-19 10:17:22 +00:00
|
|
|
let buffer = &mut *self.buffer;
|
|
|
|
|
|
|
|
let inp = inp::Delay::inp(inputs);
|
|
|
|
let time = inp::Delay::time(inputs);
|
|
|
|
let fb = inp::Delay::fb(inputs);
|
|
|
|
let mix = inp::Delay::mix(inputs);
|
2021-06-19 08:50:39 +00:00
|
|
|
let out = out::Delay::sig(outputs);
|
2021-06-19 10:17:22 +00:00
|
|
|
|
|
|
|
let mut fb_s = self.fb_sample;
|
|
|
|
|
2021-06-19 08:50:39 +00:00
|
|
|
for frame in 0..ctx.nframes() {
|
2021-06-19 10:17:22 +00:00
|
|
|
let dry = inp.read(frame);
|
|
|
|
buffer.feed(
|
|
|
|
dry + fb_s * denorm::Delay::fb(fb, frame));
|
|
|
|
|
|
|
|
let out_sample =
|
|
|
|
buffer.cubic_interpolate_at(
|
|
|
|
denorm::Delay::time(time, frame));
|
|
|
|
|
|
|
|
out.write(frame,
|
|
|
|
crossfade(dry, out_sample,
|
|
|
|
denorm::Delay::mix(mix, frame).clamp(0.0, 1.0)));
|
|
|
|
|
|
|
|
fb_s = out_sample;
|
2021-06-19 08:50:39 +00:00
|
|
|
}
|
|
|
|
|
2021-06-19 10:17:22 +00:00
|
|
|
self.fb_sample = fb_s;
|
2021-06-19 08:50:39 +00:00
|
|
|
}
|
|
|
|
}
|