2021-08-23 16:42:39 +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.
|
|
|
|
|
|
|
|
use crate::nodes::{NodeAudioContext, NodeExecContext};
|
|
|
|
use crate::dsp::{NodeId, SAtom, ProcBuf, DspNode, LedPhaseVals, NodeContext};
|
2021-08-25 03:07:24 +00:00
|
|
|
use crate::dsp::helpers::Quantizer;
|
2021-08-23 16:42:39 +00:00
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! fa_quant { ($formatter: expr, $v: expr, $denorm_v: expr) => { {
|
|
|
|
write!($formatter, "?")
|
|
|
|
} } }
|
|
|
|
|
2021-08-24 01:59:41 +00:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! fa_quant_omin { ($formatter: expr, $v: expr, $denorm_v: expr) => { {
|
|
|
|
let s =
|
|
|
|
match ($v.round() as usize) {
|
|
|
|
0 => "-0",
|
|
|
|
1 => "-1",
|
|
|
|
2 => "-2",
|
|
|
|
3 => "-3",
|
|
|
|
4 => "-4",
|
|
|
|
_ => "?",
|
|
|
|
};
|
|
|
|
write!($formatter, "{}", s)
|
|
|
|
} } }
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! fa_quant_omax { ($formatter: expr, $v: expr, $denorm_v: expr) => { {
|
|
|
|
let s =
|
|
|
|
match ($v.round() as usize) {
|
|
|
|
0 => "+0",
|
|
|
|
1 => "+1",
|
|
|
|
2 => "+2",
|
|
|
|
3 => "+3",
|
|
|
|
4 => "+4",
|
|
|
|
_ => "?",
|
|
|
|
};
|
|
|
|
write!($formatter, "{}", s)
|
|
|
|
} } }
|
|
|
|
|
2021-08-23 16:42:39 +00:00
|
|
|
/// A 9 channel signal multiplexer
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct Quant {
|
2021-08-25 03:07:24 +00:00
|
|
|
quant: Quantizer,
|
2021-08-23 16:42:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Quant {
|
|
|
|
pub fn new(_nid: &NodeId) -> Self {
|
|
|
|
Self {
|
2021-08-25 03:07:24 +00:00
|
|
|
quant: Quantizer::new(),
|
2021-08-23 16:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
pub const inp : &'static str =
|
|
|
|
"Quant inp\n\nRange: (0..1)";
|
|
|
|
pub const oct : &'static str =
|
|
|
|
"Quant oct\n\nRange: (-1..1)";
|
2021-08-24 01:59:41 +00:00
|
|
|
pub const omin : &'static str =
|
|
|
|
"Quant omin\n\nRange: (-1..1)";
|
|
|
|
pub const omax : &'static str =
|
|
|
|
"Quant omax\n\nRange: (-1..1)";
|
2021-08-23 16:42:39 +00:00
|
|
|
pub const sig : &'static str =
|
|
|
|
"Quant sig\n\nRange: (-1..1)";
|
|
|
|
pub const keys : &'static str =
|
|
|
|
"Quant keys\n";
|
|
|
|
pub const DESC : &'static str =
|
|
|
|
r#"Pitch/Note Quantizer
|
|
|
|
|
|
|
|
"#;
|
|
|
|
pub const HELP : &'static str =
|
|
|
|
r#"Quant - A pitch quantizer
|
|
|
|
|
|
|
|
"#;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl DspNode for Quant {
|
|
|
|
fn outputs() -> usize { 1 }
|
|
|
|
|
|
|
|
fn set_sample_rate(&mut self, _srate: f32) { }
|
|
|
|
fn reset(&mut self) { }
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn process<T: NodeAudioContext>(
|
|
|
|
&mut self, ctx: &mut T, _ectx: &mut NodeExecContext,
|
|
|
|
nctx: &NodeContext,
|
|
|
|
atoms: &[SAtom], inputs: &[ProcBuf],
|
|
|
|
outputs: &mut [ProcBuf], ctx_vals: LedPhaseVals)
|
|
|
|
{
|
|
|
|
use crate::dsp::{at, out, inp, denorm};
|
|
|
|
|
|
|
|
let inp = inp::Quant::inp(inputs);
|
|
|
|
let oct = inp::Quant::oct(inputs);
|
|
|
|
let out = out::Quant::sig(outputs);
|
2021-08-23 03:10:33 +00:00
|
|
|
let keys = at::Quant::keys(atoms);
|
2021-08-24 01:59:41 +00:00
|
|
|
let omin = at::Quant::omin(atoms);
|
|
|
|
let omax = at::Quant::omax(atoms);
|
2021-08-23 03:10:33 +00:00
|
|
|
|
2021-08-25 03:07:24 +00:00
|
|
|
self.quant.update_keys(keys.i(), omin.i(), omax.i());
|
2021-08-23 03:10:33 +00:00
|
|
|
|
2021-08-25 03:07:24 +00:00
|
|
|
if self.quant.has_no_keys() {
|
2021-08-23 03:10:33 +00:00
|
|
|
for frame in 0..ctx.nframes() {
|
|
|
|
out.write(
|
|
|
|
frame,
|
|
|
|
denorm::Quant::inp(inp, frame)
|
|
|
|
+ denorm::Quant::oct(oct, frame));
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx_vals[1].set(100.0); // some unreachable value for Keys widget
|
|
|
|
ctx_vals[0].set(out.read(ctx.nframes() - 1));
|
2021-08-24 01:59:41 +00:00
|
|
|
|
2021-08-23 03:10:33 +00:00
|
|
|
} else {
|
2021-08-24 01:59:41 +00:00
|
|
|
let mut last_key = 0;
|
2021-08-23 03:10:33 +00:00
|
|
|
|
|
|
|
for frame in 0..ctx.nframes() {
|
2021-08-25 03:07:24 +00:00
|
|
|
let pitch =
|
|
|
|
self.quant.signal_to_pitch(
|
|
|
|
denorm::Quant::inp(inp, frame));
|
2021-08-23 03:10:33 +00:00
|
|
|
out.write(frame, pitch + denorm::Quant::oct(oct, frame));
|
|
|
|
}
|
|
|
|
|
2021-08-25 03:07:24 +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-23 03:10:33 +00:00
|
|
|
}
|
2021-08-23 16:42:39 +00:00
|
|
|
}
|
|
|
|
}
|