HexoDSP/src/dsp/node_delay.rs

144 lines
4.8 KiB
Rust
Raw Normal View History

2021-06-19 08:50:39 +00:00
// Copyright (c) 2021 Weird Constructor <weirdconstructor@gmail.com>
2021-08-04 01:58:43 +00:00
// This file is a part of HexoDSP. Released under GPL-3.0-or-later.
2021-06-19 08:50:39 +00:00
// See README.md and COPYING for details.
use crate::nodes::{NodeAudioContext, NodeExecContext};
use crate::dsp::{NodeId, SAtom, ProcBuf, DspNode, LedPhaseVals, NodeContext};
2021-06-20 11:14:19 +00:00
use crate::dsp::helpers::{DelayBuffer, crossfade, TriggerSampleClock};
2021-06-19 08:50:39 +00:00
#[macro_export]
2021-06-20 11:14:19 +00:00
macro_rules! fa_delay_mode { ($formatter: expr, $v: expr, $denorm_v: expr) => { {
2021-06-19 08:50:39 +00:00
let s =
match ($v.round() as usize) {
2021-06-20 11:14:19 +00:00
0 => "Time",
1 => "Sync",
2021-06-19 08:50:39 +00:00
_ => "?",
};
write!($formatter, "{}", s)
} } }
/// A simple amplifier
#[derive(Debug, Clone)]
pub struct Delay {
2021-06-20 11:14:19 +00:00
buffer: Box<DelayBuffer>,
clock: TriggerSampleClock,
2021-06-19 08:50:39 +00:00
}
impl Delay {
pub fn new(_nid: &NodeId) -> Self {
Self {
2021-06-20 11:14:19 +00:00
buffer: Box::new(DelayBuffer::new()),
clock: TriggerSampleClock::new(),
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)";
2021-06-20 11:14:19 +00:00
pub const trig : &'static str =
"Delay trig\nIf you set 'mode' to 'Sync', the delay time will be \
synchronized to the trigger signals received on this input.\nRange: (-1..1)";
2021-06-19 09:17:00 +00:00
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. \
2021-06-23 03:12:37 +00:00
\nRange: (-1..1)";
2021-06-19 09:17:00 +00:00
pub const mix : &'static str =
"Delay mix\nThe dry/wet mix of the delay.\nRange: (0..1)";
2021-06-20 11:14:19 +00:00
pub const mode : &'static str =
"Delay mode\nAllows different operating modes of the delay. \
'Time' is the default, and means that the 'time' input \
specifies the delay time. 'Sync' will synchronize the delay time \
with the trigger signals on the 'trig' input.";
2021-06-19 09:17:00 +00:00
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-20 11:14:19 +00:00
self.clock.reset();
2021-06-19 10:17:22 +00:00
}
2021-06-19 08:50:39 +00:00
#[inline]
fn process<T: NodeAudioContext>(
&mut self, ctx: &mut T, _ectx: &mut NodeExecContext,
_nctx: &NodeContext,
atoms: &[SAtom], inputs: &[ProcBuf],
2021-06-20 11:14:19 +00:00
outputs: &mut [ProcBuf], ctx_vals: LedPhaseVals)
2021-06-19 08:50:39 +00:00
{
2021-06-20 11:14:19 +00:00
use crate::dsp::{at, out, inp, denorm};
2021-06-19 08:50:39 +00:00
2021-06-20 06:28:40 +00:00
let buffer = &mut *self.buffer;
2021-06-19 10:17:22 +00:00
2021-06-20 11:14:19 +00:00
let mode = at::Delay::mode(atoms);
2021-06-19 10:17:22 +00:00
let inp = inp::Delay::inp(inputs);
2021-06-20 11:14:19 +00:00
let trig = inp::Delay::trig(inputs);
2021-06-19 10:17:22 +00:00
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
2021-06-20 11:14:19 +00:00
if mode.i() == 0 {
for frame in 0..ctx.nframes() {
let dry = inp.read(frame);
2021-06-19 10:17:22 +00:00
2021-06-20 11:14:19 +00:00
let out_sample =
buffer.cubic_interpolate_at(
denorm::Delay::time(time, frame));
2021-06-19 10:17:22 +00:00
buffer.feed(dry + out_sample * denorm::Delay::fb(fb, frame));
2021-06-20 11:14:19 +00:00
out.write(frame,
crossfade(dry, out_sample,
denorm::Delay::mix(mix, frame).clamp(0.0, 1.0)));
}
} else {
for frame in 0..ctx.nframes() {
let dry = inp.read(frame);
let clock_samples =
self.clock.next(denorm::Delay::trig(trig, frame));
let out_sample = buffer.at(clock_samples as usize);
buffer.feed(dry + out_sample * denorm::Delay::fb(fb, frame));
2021-06-20 11:14:19 +00:00
out.write(frame,
crossfade(dry, out_sample,
denorm::Delay::mix(mix, frame).clamp(0.0, 1.0)));
}
2021-06-19 08:50:39 +00:00
}
2021-06-20 11:14:19 +00:00
let last_frame = ctx.nframes() - 1;
ctx_vals[0].set(out.read(last_frame));
2021-06-19 08:50:39 +00:00
}
}