1
0
Fork 0
nih-plug/plugins/gain/src/lib.rs
Robbert van der Helm 221e424f78 Use thread safe interior mutability for persist
Sadly there's not really a safe way to do this otherwise, but if you
really want to have persistence this way and absolutely need it to be
lock-free (because you're going to use it from the GUI thread), then you
can implement your own PersistentField.
2022-01-30 17:07:50 +01:00

138 lines
4.2 KiB
Rust

// nih-plug: plugins, but rewritten in Rust
// Copyright (C) 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/>.
#[macro_use]
extern crate nih_plug;
use nih_plug::{
formatters,
params::{FloatParam, Param, Params, Range},
plugin::{BufferConfig, BusConfig, Plugin, ProcessStatus, Vst3Plugin},
util,
};
use std::pin::Pin;
use std::sync::RwLock;
struct Gain {
params: Pin<Box<GainParams>>,
}
#[derive(Params)]
struct GainParams {
#[id = "gain"]
pub gain: FloatParam,
/// This field isn't used in this exampleq, but anything written to the vector would be restored
/// together with a preset/state file saved for this plugin. This can be useful for storign
/// things like sample data.
#[persist = "industry_secrets"]
pub random_data: RwLock<Vec<f32>>,
}
impl Default for Gain {
fn default() -> Self {
Self {
params: Pin::new(Box::default()),
}
}
}
impl Default for GainParams {
fn default() -> Self {
Self {
gain: FloatParam {
value: 0.0,
range: Range::Linear {
min: -30.0,
max: 30.0,
},
name: "Gain",
unit: " dB",
value_to_string: formatters::f32_rounded(2),
string_to_value: None,
},
random_data: RwLock::new(Vec::new()),
}
}
}
impl Plugin for Gain {
const NAME: &'static str = "Gain";
const VENDOR: &'static str = "Moist Plugins GmbH";
const URL: &'static str = "https://youtu.be/dQw4w9WgXcQ";
const EMAIL: &'static str = "info@example.com";
const VERSION: &'static str = "0.0.1";
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, _bus_config: &BusConfig, _buffer_config: &BufferConfig) -> bool {
// This plugin doesn't need any special initialization, but if you need to do anything
// expensive then this would be the place. State is kept around while when the host
// reconfigures the plugin.
true
}
fn process(&mut self, samples: &mut [&mut [f32]]) -> ProcessStatus {
if samples.is_empty() {
return ProcessStatus::Error("Empty buffers");
}
// TODO: The wrapper should set FTZ if not yet enabled, mention ths in the process fuctnion
// TODO: Move this iterator to an adapter
let num_channels = samples.len();
let num_samples = samples[0].len();
for channel in &samples[1..] {
nih_debug_assert_eq!(channel.len(), num_samples);
if channel.len() != num_samples {
return ProcessStatus::Error("Mismatching channel buffer sizes");
}
}
for sample_idx in 0..num_samples {
for channel_idx in 0..num_channels {
let sample = unsafe {
samples
.get_unchecked_mut(channel_idx)
.get_unchecked_mut(sample_idx)
};
// TODO: Smoothing
*sample *= util::db_to_gain(self.params.gain.value);
}
}
ProcessStatus::Normal
}
}
impl Vst3Plugin for Gain {
const VST3_CLASS_ID: [u8; 16] = *b"GainMoistestPlug";
const VST3_CATEGORIES: &'static str = "Fx|Dynamics";
}
nih_export_vst3!(Gain);