2022-02-13 03:27:23 +11:00
|
|
|
// Diopser: a phase rotation plugin
|
|
|
|
// Copyright (C) 2021-2022 Robbert van der Helm
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2022-02-13 02:27:57 +11:00
|
|
|
#[macro_use]
|
|
|
|
extern crate nih_plug;
|
|
|
|
|
2022-02-13 07:12:08 +11:00
|
|
|
use nih_plug::{formatters, BoolParam, FloatParam, IntParam, Params, Range, SmoothingStyle};
|
2022-02-13 02:27:57 +11:00
|
|
|
use nih_plug::{
|
|
|
|
Buffer, BufferConfig, BusConfig, Plugin, ProcessContext, ProcessStatus, Vst3Plugin,
|
|
|
|
};
|
|
|
|
use std::pin::Pin;
|
2022-02-13 07:12:08 +11:00
|
|
|
use std::sync::atomic::{AtomicBool, Ordering};
|
|
|
|
use std::sync::Arc;
|
2022-02-13 02:27:57 +11:00
|
|
|
|
2022-02-13 04:07:40 +11:00
|
|
|
mod filter;
|
|
|
|
|
2022-02-13 07:12:08 +11:00
|
|
|
/// How many all-pass filters we can have in series at most. The filter stages parameter determines
|
|
|
|
/// how many filters are actually active.
|
|
|
|
const MAX_NUM_FILTERS: usize = 512;
|
|
|
|
|
|
|
|
// An incomplete list of unported features includes:
|
|
|
|
// - Actually add the parameters
|
|
|
|
// - Filter spread
|
|
|
|
// - Lower resolution smoothing for more efficient automation
|
|
|
|
//
|
|
|
|
// And after that I'll need to add a GUI
|
2022-02-13 02:27:57 +11:00
|
|
|
struct Diopser {
|
|
|
|
params: Pin<Box<DiopserParams>>,
|
2022-02-13 07:12:08 +11:00
|
|
|
|
|
|
|
/// Needed for computing the filter coefficients.
|
|
|
|
sample_rate: f32,
|
|
|
|
|
|
|
|
/// All of the all-pass filters, with one array of serial filters per channelq.
|
|
|
|
/// [DiopserParams::num_stages] controls how many filters are actually active.
|
|
|
|
filters: Vec<[filter::Biquad; MAX_NUM_FILTERS]>,
|
|
|
|
/// If this is set at the start of the processing cycle, then the filter coefficients should be
|
|
|
|
/// updated. For the regular filter parameters we can look at the smoothers, but this is needed
|
|
|
|
/// when changing the number of active filters.
|
|
|
|
should_update_filters: Arc<AtomicBool>,
|
2022-02-13 02:27:57 +11:00
|
|
|
}
|
|
|
|
|
2022-02-13 07:12:08 +11:00
|
|
|
// TODO: Some combinations of parameters can cause really loud resonance. We should limit the
|
|
|
|
// resonance and filter stages parameter ranges in the GUI until the user unlocks.
|
2022-02-13 02:27:57 +11:00
|
|
|
#[derive(Params)]
|
2022-02-13 07:12:08 +11:00
|
|
|
struct DiopserParams {
|
|
|
|
/// The number of all-pass filters applied in series.
|
|
|
|
#[id = "stages"]
|
|
|
|
filter_stages: IntParam,
|
|
|
|
|
|
|
|
/// The filter's cutoff frequqency. When this is applied, the filters are spread around this
|
|
|
|
/// frequency.
|
|
|
|
#[id = "cutoff"]
|
|
|
|
filter_frequency: FloatParam,
|
|
|
|
/// The Q parameter for the filters.
|
|
|
|
#[id = "res"]
|
|
|
|
filter_resonance: FloatParam,
|
|
|
|
|
|
|
|
/// Very important.
|
|
|
|
#[id = "ignore"]
|
|
|
|
very_important: BoolParam,
|
|
|
|
}
|
2022-02-13 02:27:57 +11:00
|
|
|
|
|
|
|
impl Default for Diopser {
|
|
|
|
fn default() -> Self {
|
2022-02-13 07:12:08 +11:00
|
|
|
let should_update_filters = Arc::new(AtomicBool::new(false));
|
|
|
|
|
2022-02-13 02:27:57 +11:00
|
|
|
Self {
|
2022-02-13 07:12:08 +11:00
|
|
|
params: Box::pin(DiopserParams::new(should_update_filters.clone())),
|
|
|
|
|
|
|
|
sample_rate: 1.0,
|
|
|
|
|
|
|
|
filters: Vec::new(),
|
|
|
|
should_update_filters,
|
2022-02-13 02:27:57 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-13 07:12:08 +11:00
|
|
|
impl DiopserParams {
|
|
|
|
pub fn new(should_update_filters: Arc<AtomicBool>) -> Self {
|
|
|
|
let trigger_filter_update =
|
|
|
|
Arc::new(move |_| should_update_filters.store(true, Ordering::Release));
|
|
|
|
|
|
|
|
Self {
|
|
|
|
filter_stages: IntParam::new(
|
|
|
|
"Filter Stages",
|
|
|
|
0,
|
|
|
|
Range::Linear {
|
|
|
|
min: 0,
|
|
|
|
max: MAX_NUM_FILTERS as i32,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.with_callback(trigger_filter_update),
|
|
|
|
|
2022-02-13 07:53:19 +11:00
|
|
|
// Smoothed parameters don't need the callback as we can just look at whether the
|
|
|
|
// smoother is still smoothing
|
2022-02-13 07:12:08 +11:00
|
|
|
filter_frequency: FloatParam::new(
|
|
|
|
"Filter Frequency",
|
|
|
|
200.0,
|
|
|
|
Range::Skewed {
|
|
|
|
min: 5.0, // This must never reach 0
|
|
|
|
max: 20_000.0,
|
|
|
|
factor: Range::skew_factor(-2.5),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
// This needs quite a bit of smoothing to avoid artifacts
|
|
|
|
.with_smoother(SmoothingStyle::Logarithmic(100.0))
|
|
|
|
.with_unit(" Hz")
|
|
|
|
.with_value_to_string(formatters::f32_rounded(0)),
|
|
|
|
filter_resonance: FloatParam::new(
|
|
|
|
"Filter Resonance",
|
|
|
|
// The actual default neutral Q-value would be `sqrt(2) / 2`, but this value
|
|
|
|
// produces slightly less ringing.
|
|
|
|
0.5,
|
|
|
|
Range::Skewed {
|
|
|
|
min: 0.01, // This must also never reach 0
|
|
|
|
max: 30.0,
|
|
|
|
factor: Range::skew_factor(-2.5),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.with_smoother(SmoothingStyle::Logarithmic(100.0))
|
|
|
|
.with_value_to_string(formatters::f32_rounded(2)),
|
|
|
|
|
|
|
|
very_important: BoolParam::new("Don't touch this", true).with_value_to_string(
|
|
|
|
Arc::new(|value| String::from(if value { "please don't" } else { "stop it" })),
|
|
|
|
),
|
|
|
|
}
|
2022-02-13 02:27:57 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Plugin for Diopser {
|
2022-02-13 07:12:08 +11:00
|
|
|
const NAME: &'static str = "Diopser (WIP port)";
|
2022-02-13 02:27:57 +11:00
|
|
|
const VENDOR: &'static str = "Robbert van der Helm";
|
|
|
|
const URL: &'static str = "https://github.com/robbert-vdh/nih-plug";
|
|
|
|
const EMAIL: &'static str = "mail@robbertvanderhelm.nl";
|
|
|
|
|
|
|
|
const VERSION: &'static str = "0.2.0";
|
|
|
|
|
|
|
|
const DEFAULT_NUM_INPUTS: u32 = 2;
|
|
|
|
const DEFAULT_NUM_OUTPUTS: u32 = 2;
|
|
|
|
|
|
|
|
fn params(&self) -> Pin<&dyn Params> {
|
|
|
|
self.params.as_ref()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn accepts_bus_config(&self, config: &BusConfig) -> bool {
|
|
|
|
// This works with any symmetrical IO layout
|
|
|
|
config.num_input_channels == config.num_output_channels && config.num_input_channels > 0
|
|
|
|
}
|
|
|
|
|
|
|
|
fn initialize(
|
|
|
|
&mut self,
|
2022-02-13 07:12:08 +11:00
|
|
|
bus_config: &BusConfig,
|
|
|
|
buffer_config: &BufferConfig,
|
2022-02-13 02:27:57 +11:00
|
|
|
_context: &mut impl ProcessContext,
|
|
|
|
) -> bool {
|
2022-02-13 07:12:08 +11:00
|
|
|
self.filters =
|
|
|
|
vec![[Default::default(); MAX_NUM_FILTERS]; bus_config.num_input_channels as usize];
|
|
|
|
|
|
|
|
// Initialize the filters on the first process call
|
|
|
|
self.sample_rate = buffer_config.sample_rate;
|
|
|
|
self.should_update_filters.store(true, Ordering::Release);
|
|
|
|
|
2022-02-13 02:27:57 +11:00
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
fn process(
|
|
|
|
&mut self,
|
2022-02-13 07:12:08 +11:00
|
|
|
buffer: &mut Buffer,
|
2022-02-13 02:27:57 +11:00
|
|
|
_context: &mut impl ProcessContext,
|
|
|
|
) -> ProcessStatus {
|
2022-02-13 07:12:08 +11:00
|
|
|
for mut channel_samples in buffer.iter_mut() {
|
|
|
|
// Since this is an expensive operation, only update the filters when it's actually
|
|
|
|
// necessary
|
|
|
|
let should_update_filters = self
|
|
|
|
.should_update_filters
|
|
|
|
.compare_exchange(true, false, Ordering::Acquire, Ordering::Relaxed)
|
|
|
|
.is_ok()
|
|
|
|
|| self.params.filter_frequency.smoothed.is_smoothing()
|
|
|
|
|| self.params.filter_resonance.smoothed.is_smoothing();
|
|
|
|
if should_update_filters {
|
|
|
|
self.update_filters();
|
|
|
|
}
|
|
|
|
|
|
|
|
// We get better cache locality by iterating over the filters and then over the channels
|
|
|
|
for filter_idx in 0..self.params.filter_stages.value as usize {
|
|
|
|
// Because of this filter_idx outer loop we can't directly iterate over
|
|
|
|
// `channel_samples` as the iterator would be empty after the first loop
|
|
|
|
for (channel_idx, filters) in
|
|
|
|
(0..channel_samples.len()).zip(self.filters.iter_mut())
|
|
|
|
{
|
|
|
|
// SAFETY: The bounds have already been checked here
|
|
|
|
let sample = unsafe { channel_samples.get_unchecked_mut(channel_idx) };
|
|
|
|
*sample = filters[filter_idx].process(*sample);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-13 02:27:57 +11:00
|
|
|
ProcessStatus::Normal
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-13 07:12:08 +11:00
|
|
|
impl Diopser {
|
|
|
|
fn update_filters(&mut self) {
|
|
|
|
let coefficients = filter::BiquadCoefficients::allpass(
|
|
|
|
self.sample_rate,
|
|
|
|
self.params.filter_frequency.smoothed.next(),
|
|
|
|
self.params.filter_resonance.smoothed.next(),
|
|
|
|
);
|
|
|
|
for channel in self.filters.iter_mut() {
|
|
|
|
for filter in channel
|
|
|
|
.iter_mut()
|
|
|
|
.take(self.params.filter_stages.value as usize)
|
|
|
|
{
|
|
|
|
filter.coefficients = coefficients;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-13 02:27:57 +11:00
|
|
|
impl Vst3Plugin for Diopser {
|
|
|
|
const VST3_CLASS_ID: [u8; 16] = *b"DiopserPlugRvdH.";
|
|
|
|
const VST3_CATEGORIES: &'static str = "Fx|Filter";
|
|
|
|
}
|
|
|
|
|
|
|
|
nih_export_vst3!(Diopser);
|