2021-08-28 17:56:08 +00:00
|
|
|
// Copyright (c) 2021 Weird Constructor <weirdconstructor@gmail.com>
|
|
|
|
// This file is a part of HexoDSP. Released under GPL-3.0-or-later.
|
|
|
|
// See README.md and COPYING for details.
|
|
|
|
|
2022-07-17 09:58:28 +00:00
|
|
|
use crate::dsp::helpers::{ChangeTrig, Quantizer};
|
|
|
|
use crate::dsp::{DspNode, LedPhaseVals, NodeContext, NodeId, ProcBuf, SAtom};
|
2021-08-28 17:56:08 +00:00
|
|
|
use crate::nodes::{NodeAudioContext, NodeExecContext};
|
|
|
|
|
|
|
|
#[macro_export]
|
2022-07-17 09:58:28 +00:00
|
|
|
macro_rules! fa_quant {
|
|
|
|
($formatter: expr, $v: expr, $denorm_v: expr) => {{
|
|
|
|
write!($formatter, "?")
|
|
|
|
}};
|
|
|
|
}
|
2021-08-28 17:56:08 +00:00
|
|
|
|
|
|
|
/// A pitch quantizer
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct Quant {
|
2022-07-17 09:58:28 +00:00
|
|
|
quant: Box<Quantizer>,
|
2021-08-30 01:55:42 +00:00
|
|
|
change_trig: ChangeTrig,
|
2021-08-28 17:56:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Quant {
|
|
|
|
pub fn new(_nid: &NodeId) -> Self {
|
2022-07-17 09:58:28 +00:00
|
|
|
Self { quant: Box::new(Quantizer::new()), change_trig: ChangeTrig::new() }
|
2021-08-28 17:56:08 +00:00
|
|
|
}
|
2022-07-17 09:58:28 +00:00
|
|
|
pub const freq: &'static str =
|
2021-08-30 01:55:42 +00:00
|
|
|
"Quant freq\nAny signal that is to be pitch quantized.\nRange: (-1..1)";
|
2022-07-17 09:58:28 +00:00
|
|
|
pub const oct: &'static str =
|
2021-08-30 01:55:42 +00:00
|
|
|
"Quant oct\nPitch offset, the knob is snapping to octave offsets. \
|
|
|
|
Feed signal values snapped to 0.1 multiples for exact octave offsets.\
|
|
|
|
\nRange: (-1..1)";
|
2022-07-17 09:58:28 +00:00
|
|
|
pub const sig: &'static str = "Quant sig\nThe quantized output signal that is rounded to \
|
2021-08-30 01:55:42 +00:00
|
|
|
the next selected note pitch within the octave of the \
|
|
|
|
original input to 'freq'.\nRange: (-1..1)";
|
2022-07-17 09:58:28 +00:00
|
|
|
pub const keys: &'static str = "Quant keys\nSelect the notes you want to snap to here. \
|
2021-08-30 01:55:42 +00:00
|
|
|
If no notes are selected, the quantizer will snap the \
|
|
|
|
incoming signal to any closest note.";
|
2022-07-17 09:58:28 +00:00
|
|
|
pub const t: &'static str = "Quant t\nEverytime the quantizer snaps to a new pitch, it will \
|
2021-08-30 01:55:42 +00:00
|
|
|
emit a short trigger on this signal output. This is useful \
|
|
|
|
to trigger for example an envelope.";
|
2022-07-17 09:58:28 +00:00
|
|
|
pub const DESC: &'static str = r#"Pitch Quantizer
|
2021-08-28 17:56:08 +00:00
|
|
|
|
|
|
|
This is a simple quantizer, that snaps a pitch signal on 'freq' to the closest selected notes within their octave.
|
|
|
|
"#;
|
2022-07-17 09:58:28 +00:00
|
|
|
pub const HELP: &'static str = r#"Quant - A pitch quantizer
|
2021-08-28 17:56:08 +00:00
|
|
|
|
|
|
|
This is a simple quantizer, that snaps a pitch signal on 'freq' to the
|
|
|
|
closest selected notes within their octave.
|
|
|
|
|
|
|
|
If you sweep along pitches you will notice that notes that are closer together
|
|
|
|
are travelled across faster. That means the notes are not evenly distributed
|
|
|
|
across the pitch input. If you want a more evenly distributed pitch selection
|
|
|
|
please see also the 'CQnt' node.
|
|
|
|
"#;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl DspNode for Quant {
|
2022-07-17 09:58:28 +00:00
|
|
|
fn outputs() -> usize {
|
|
|
|
1
|
|
|
|
}
|
2021-08-28 17:56:08 +00:00
|
|
|
|
2021-08-30 01:55:42 +00:00
|
|
|
fn set_sample_rate(&mut self, srate: f32) {
|
|
|
|
self.change_trig.set_sample_rate(srate);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reset(&mut self) {
|
|
|
|
self.change_trig.reset();
|
|
|
|
}
|
2021-08-28 17:56:08 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn process<T: NodeAudioContext>(
|
2022-07-17 09:58:28 +00:00
|
|
|
&mut self,
|
|
|
|
ctx: &mut T,
|
|
|
|
_ectx: &mut NodeExecContext,
|
2022-06-25 06:37:05 +00:00
|
|
|
_nctx: &NodeContext,
|
2022-07-17 09:58:28 +00:00
|
|
|
atoms: &[SAtom],
|
|
|
|
inputs: &[ProcBuf],
|
|
|
|
outputs: &mut [ProcBuf],
|
|
|
|
ctx_vals: LedPhaseVals,
|
|
|
|
) {
|
|
|
|
use crate::dsp::{at, denorm, inp, out_buf};
|
2021-08-28 17:56:08 +00:00
|
|
|
|
|
|
|
let freq = inp::Quant::freq(inputs);
|
2022-07-17 09:58:28 +00:00
|
|
|
let oct = inp::Quant::oct(inputs);
|
2021-08-28 17:56:08 +00:00
|
|
|
let keys = at::Quant::keys(atoms);
|
2021-08-30 01:55:42 +00:00
|
|
|
let mut out = out_buf::CQnt::sig(outputs);
|
2022-07-17 09:58:28 +00:00
|
|
|
let mut t = out_buf::CQnt::t(outputs);
|
2021-08-28 17:56:08 +00:00
|
|
|
|
|
|
|
self.quant.set_keys(keys.i());
|
|
|
|
|
|
|
|
for frame in 0..ctx.nframes() {
|
|
|
|
let pitch = self.quant.process(freq.read(frame));
|
2021-08-30 01:55:42 +00:00
|
|
|
|
|
|
|
t.write(frame, self.change_trig.next(pitch));
|
2021-08-28 17:56:08 +00:00
|
|
|
out.write(frame, pitch + denorm::Quant::oct(oct, frame));
|
|
|
|
}
|
|
|
|
|
2021-08-29 08:59:59 +00:00
|
|
|
let last_pitch = self.quant.last_key_pitch();
|
|
|
|
ctx_vals[1].set(last_pitch * 10.0 + 0.0001);
|
|
|
|
ctx_vals[0].set((last_pitch * 10.0 - 0.5) * 2.0);
|
2021-08-28 17:56:08 +00:00
|
|
|
}
|
|
|
|
}
|