AnalogTapeModel

Physical modelling signal processing for analog tape recording
Log | Files | Refs | Submodules | README | LICENSE

commit 5f50d0c85d48faa0efd75698e3b89afe5e008f45
parent a19004777c73f057222e585df0960a07606d65d3
Author: jatinchowdhury18 <[email protected]>
Date:   Sun, 21 Feb 2021 15:45:05 -0800

Update parameter names (#138)

* Update parameter names

* Update clang-format workflow

Co-authored-by: jatinchowdhury18 <[email protected]>
Diffstat:
M.github/workflows/auto-format.yml | 8++++----
MPlugin/Source/Processors/Chew/ChewProcessor.cpp | 8++++----
MPlugin/Source/Processors/Degrade/DegradeProcessor.cpp | 8++++----
MPlugin/Source/Processors/Hysteresis/HysteresisProcessor.cpp | 10+++++-----
MPlugin/Source/Processors/Hysteresis/ToneControl.cpp | 8++++----
MPlugin/Source/Processors/Input_Filters/InputFilters.cpp | 8++++----
MPlugin/Source/Processors/Loss_Effects/LossFilter.cpp | 10+++++-----
MPlugin/Source/Processors/Timing_Effects/Flutter.cpp | 10+++++-----
8 files changed, 35 insertions(+), 35 deletions(-)

diff --git a/.github/workflows/auto-format.yml b/.github/workflows/auto-format.yml @@ -22,9 +22,9 @@ jobs: run: | wget https://apt.llvm.org/llvm.sh chmod +x llvm.sh - sudo ./llvm.sh 12 - sudo apt-get install clang-format-12 - clang-format-12 --version + sudo ./llvm.sh 11 + sudo apt-get install clang-format-11 + clang-format-11 --version - name: Checkout code uses: actions/checkout@v2 @@ -35,7 +35,7 @@ jobs: - name: Run clang-format shell: bash working-directory: ${{github.workspace}}/Plugin - run: find Source/ -iname *.h -o -iname *.cpp | xargs clang-format-12 -style=file -verbose -i + run: find Source/ -iname *.h -o -iname *.cpp | xargs clang-format-11 -style=file -verbose -i - name: Commit & Push changes uses: actions-js/push@master diff --git a/Plugin/Source/Processors/Chew/ChewProcessor.cpp b/Plugin/Source/Processors/Chew/ChewProcessor.cpp @@ -10,10 +10,10 @@ ChewProcessor::ChewProcessor (AudioProcessorValueTreeState& vts) void ChewProcessor::createParameterLayout (std::vector<std::unique_ptr<RangedAudioParameter>>& params) { - params.push_back (std::make_unique<AudioParameterFloat> ("chew_depth", "Depth", 0.0f, 1.0f, 0.0f)); - params.push_back (std::make_unique<AudioParameterFloat> ("chew_freq", "Freq", 0.0f, 1.0f, 0.0f)); - params.push_back (std::make_unique<AudioParameterFloat> ("chew_var", "Variance", 0.0f, 1.0f, 0.0f)); - params.push_back (std::make_unique<AudioParameterBool> ("chew_onoff", "On/Off", false)); + params.push_back (std::make_unique<AudioParameterBool> ("chew_onoff", "Chew On/Off", false)); + params.push_back (std::make_unique<AudioParameterFloat> ("chew_depth", "Chew Depth", 0.0f, 1.0f, 0.0f)); + params.push_back (std::make_unique<AudioParameterFloat> ("chew_freq", "Chew Freq", 0.0f, 1.0f, 0.0f)); + params.push_back (std::make_unique<AudioParameterFloat> ("chew_var", "Chew Variance", 0.0f, 1.0f, 0.0f)); } void ChewProcessor::prepare (double sr, int samplesPerBlock) diff --git a/Plugin/Source/Processors/Degrade/DegradeProcessor.cpp b/Plugin/Source/Processors/Degrade/DegradeProcessor.cpp @@ -10,10 +10,10 @@ DegradeProcessor::DegradeProcessor (AudioProcessorValueTreeState& vts) void DegradeProcessor::createParameterLayout (std::vector<std::unique_ptr<RangedAudioParameter>>& params) { - params.push_back (std::make_unique<AudioParameterFloat> ("deg_depth", "Depth", 0.0f, 1.0f, 0.0f)); - params.push_back (std::make_unique<AudioParameterFloat> ("deg_amt", "Amount", 0.0f, 1.0f, 0.0f)); - params.push_back (std::make_unique<AudioParameterFloat> ("deg_var", "Variance", 0.0f, 1.0f, 0.0f)); - params.push_back (std::make_unique<AudioParameterBool> ("deg_onoff", "On/Off", false)); + params.push_back (std::make_unique<AudioParameterBool> ("deg_onoff", "Degrade On/Off", false)); + params.push_back (std::make_unique<AudioParameterFloat> ("deg_depth", "Degrade Depth", 0.0f, 1.0f, 0.0f)); + params.push_back (std::make_unique<AudioParameterFloat> ("deg_amt", "Degrade Amount", 0.0f, 1.0f, 0.0f)); + params.push_back (std::make_unique<AudioParameterFloat> ("deg_var", "Degrade Variance", 0.0f, 1.0f, 0.0f)); } void DegradeProcessor::cookParams() diff --git a/Plugin/Source/Processors/Hysteresis/HysteresisProcessor.cpp b/Plugin/Source/Processors/Hysteresis/HysteresisProcessor.cpp @@ -28,13 +28,13 @@ HysteresisProcessor::HysteresisProcessor (AudioProcessorValueTreeState& vts) void HysteresisProcessor::createParameterLayout (std::vector<std::unique_ptr<RangedAudioParameter>>& params) { - params.push_back (std::make_unique<AudioParameterFloat> ("drive", "Drive", 0.0f, 1.0f, 0.5f)); - params.push_back (std::make_unique<AudioParameterFloat> ("sat", "Saturation", 0.0f, 1.0f, 0.5f)); - params.push_back (std::make_unique<AudioParameterFloat> ("width", "Bias", 0.0f, 1.0f, 0.5f)); + params.push_back (std::make_unique<AudioParameterBool> ("hyst_onoff", "Tape On/Off", true)); + params.push_back (std::make_unique<AudioParameterFloat> ("drive", "Tape Drive", 0.0f, 1.0f, 0.5f)); + params.push_back (std::make_unique<AudioParameterFloat> ("sat", "Tape Saturation", 0.0f, 1.0f, 0.5f)); + params.push_back (std::make_unique<AudioParameterFloat> ("width", "Tape Bias", 0.0f, 1.0f, 0.5f)); - params.push_back (std::make_unique<AudioParameterChoice> ("mode", "Mode", StringArray ({ "RK2", "RK4", "NR4", "NR8", "STN", "V1" }), 0)); + params.push_back (std::make_unique<AudioParameterChoice> ("mode", "Tape Mode", StringArray ({ "RK2", "RK4", "NR4", "NR8", "STN", "V1" }), 0)); params.push_back (std::make_unique<AudioParameterChoice> ("os", "Oversampling", StringArray ({ "1x", "2x", "4x", "8x", "16x" }), 1)); - params.push_back (std::make_unique<AudioParameterBool> ("hyst_onoff", "On/Off", true)); } void HysteresisProcessor::setSolver (int newSolver) diff --git a/Plugin/Source/Processors/Hysteresis/ToneControl.cpp b/Plugin/Source/Processors/Hysteresis/ToneControl.cpp @@ -83,10 +83,10 @@ void ToneControl::createParameterLayout (std::vector<std::unique_ptr<RangedAudio NormalisableRange freqRange { 100.0f, 4000.0f }; freqRange.setSkewForCentre (transFreq); - params.push_back (std::make_unique<AudioParameterBool> ("tone_onoff", "On/Off", true)); - params.push_back (std::make_unique<AudioParameterFloat> ("h_bass", "Bass", -1.0f, 1.0f, 0.0f)); - params.push_back (std::make_unique<AudioParameterFloat> ("h_treble", "Treble", -1.0f, 1.0f, 0.0f)); - params.push_back (std::make_unique<AudioParameterFloat> ("h_tfreq", "Frequency", freqRange, transFreq, String(), AudioProcessorParameter::genericParameter, [=] (float val, int) { + params.push_back (std::make_unique<AudioParameterBool> ("tone_onoff", "Tone On/Off", true)); + params.push_back (std::make_unique<AudioParameterFloat> ("h_bass", "Tone Bass", -1.0f, 1.0f, 0.0f)); + params.push_back (std::make_unique<AudioParameterFloat> ("h_treble", "Tone Treble", -1.0f, 1.0f, 0.0f)); + params.push_back (std::make_unique<AudioParameterFloat> ("h_tfreq", "Tone Transition Frequency", freqRange, transFreq, String(), AudioProcessorParameter::genericParameter, [=] (float val, int) { String suffix = " Hz"; if (val > 1000.0f) { diff --git a/Plugin/Source/Processors/Input_Filters/InputFilters.cpp b/Plugin/Source/Processors/Input_Filters/InputFilters.cpp @@ -40,10 +40,10 @@ void InputFilters::createParameterLayout (std::vector<std::unique_ptr<RangedAudi return freq; }; - params.push_back (std::make_unique<AudioParameterFloat> ("ifilt_low", "Low Cut", lowFreqRange, minFreq, String(), AudioProcessorParameter::genericParameter, freqToString, stringToFreq)); - params.push_back (std::make_unique<AudioParameterFloat> ("ifilt_high", "High Cut", highFreqRange, maxFreq, String(), AudioProcessorParameter::genericParameter, freqToString, stringToFreq)); - params.push_back (std::make_unique<AudioParameterBool> ("ifilt_makeup", "Cut Makeup", false)); - params.push_back (std::make_unique<AudioParameterBool> ("ifilt_onoff", "On/Off", false)); + params.push_back (std::make_unique<AudioParameterBool> ("ifilt_onoff", "Input Filters On/Off", false)); + params.push_back (std::make_unique<AudioParameterFloat> ("ifilt_low", "Input Low Cut", lowFreqRange, minFreq, String(), AudioProcessorParameter::genericParameter, freqToString, stringToFreq)); + params.push_back (std::make_unique<AudioParameterFloat> ("ifilt_high", "Input High Cut", highFreqRange, maxFreq, String(), AudioProcessorParameter::genericParameter, freqToString, stringToFreq)); + params.push_back (std::make_unique<AudioParameterBool> ("ifilt_makeup", "Input Cut Makeup", false)); } void InputFilters::prepareToPlay (double sampleRate, int samplesPerBlock) diff --git a/Plugin/Source/Processors/Loss_Effects/LossFilter.cpp b/Plugin/Source/Processors/Loss_Effects/LossFilter.cpp @@ -36,15 +36,15 @@ void LossFilter::createParameterLayout (std::vector<std::unique_ptr<RangedAudioP NormalisableRange<float> gapRange (1.0f, 50.0f); gapRange.setSkewForCentre (10.0f); - params.push_back (std::make_unique<AudioParameterFloat> ("speed", "Speed [ips]", speedRange, 30.0f, String(), AudioProcessorParameter::genericParameter, [] (float value, int) { return String (value, 2); })); + params.push_back (std::make_unique<AudioParameterBool> ("loss_onoff", "Loss On/Off", true)); - params.push_back (std::make_unique<AudioParameterFloat> ("spacing", "Spacing [microns]", spaceRange, minDist, String(), AudioProcessorParameter::genericParameter, valueToString, stringToValue)); + params.push_back (std::make_unique<AudioParameterFloat> ("speed", "Tape Speed [ips]", speedRange, 30.0f, String(), AudioProcessorParameter::genericParameter, [] (float value, int) { return String (value, 2); })); - params.push_back (std::make_unique<AudioParameterFloat> ("thick", "Thickness [microns]", thickRange, minDist, String(), AudioProcessorParameter::genericParameter, valueToString, stringToValue)); + params.push_back (std::make_unique<AudioParameterFloat> ("spacing", "Tape Spacing [microns]", spaceRange, minDist, String(), AudioProcessorParameter::genericParameter, valueToString, stringToValue)); - params.push_back (std::make_unique<AudioParameterFloat> ("gap", "Gap [microns]", gapRange, 1.0f, String(), AudioProcessorParameter::genericParameter, valueToString, stringToValue)); + params.push_back (std::make_unique<AudioParameterFloat> ("thick", "Tape Thickness [microns]", thickRange, minDist, String(), AudioProcessorParameter::genericParameter, valueToString, stringToValue)); - params.push_back (std::make_unique<AudioParameterBool> ("loss_onoff", "On/Off", true)); + params.push_back (std::make_unique<AudioParameterFloat> ("gap", "Playhead Gap [microns]", gapRange, 1.0f, String(), AudioProcessorParameter::genericParameter, valueToString, stringToValue)); } float LossFilter::getLatencySamples() const noexcept diff --git a/Plugin/Source/Processors/Timing_Effects/Flutter.cpp b/Plugin/Source/Processors/Timing_Effects/Flutter.cpp @@ -34,13 +34,13 @@ void Flutter::initialisePlots (foleys::MagicGUIState& magicState) void Flutter::createParameterLayout (std::vector<std::unique_ptr<RangedAudioParameter>>& params) { - params.push_back (std::make_unique<AudioParameterFloat> ("rate", "Rate", 0.0f, 1.0f, 0.3f)); - params.push_back (std::make_unique<AudioParameterFloat> ("depth", "Depth", 0.0f, 1.0f, 0.0f)); + params.push_back (std::make_unique<AudioParameterBool> ("flutter_onoff", "Wow/Flutter On/Off", true)); - params.push_back (std::make_unique<AudioParameterFloat> ("wow_rate", "Rate", 0.0f, 1.0f, 0.25f)); - params.push_back (std::make_unique<AudioParameterFloat> ("wow_depth", "Depth", 0.0f, 1.0f, 0.0f)); + params.push_back (std::make_unique<AudioParameterFloat> ("rate", "Flutter Rate", 0.0f, 1.0f, 0.3f)); + params.push_back (std::make_unique<AudioParameterFloat> ("depth", "Flutter Depth", 0.0f, 1.0f, 0.0f)); - params.push_back (std::make_unique<AudioParameterBool> ("flutter_onoff", "On/Off", true)); + params.push_back (std::make_unique<AudioParameterFloat> ("wow_rate", "Wow Rate", 0.0f, 1.0f, 0.25f)); + params.push_back (std::make_unique<AudioParameterFloat> ("wow_depth", "Wow Depth", 0.0f, 1.0f, 0.0f)); } void Flutter::prepareToPlay (double sampleRate, int samplesPerBlock)