mirror of
https://codeberg.org/armin/saftpumpe.git
synced 2026-09-01 04:10:46 +02:00
init
This commit is contained in:
parent
10573a6c67
commit
6391b75d15
9 changed files with 1230 additions and 0 deletions
65
Source/PluginProcessor.h
Normal file
65
Source/PluginProcessor.h
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
#pragma once
|
||||
#include <juce_audio_processors/juce_audio_processors.h>
|
||||
#include "CompressorDSP.h"
|
||||
|
||||
class SaftpumpeProcessor : public juce::AudioProcessor {
|
||||
public:
|
||||
SaftpumpeProcessor();
|
||||
~SaftpumpeProcessor() override;
|
||||
|
||||
void prepareToPlay(double sampleRate, int samplesPerBlock) override;
|
||||
void releaseResources() override;
|
||||
|
||||
void processBlock(juce::AudioBuffer<float>&, juce::MidiBuffer&) override;
|
||||
|
||||
juce::AudioProcessorEditor* createEditor() override;
|
||||
bool hasEditor() const override { return true; }
|
||||
|
||||
const juce::String getName() const override { return JucePlugin_Name; }
|
||||
|
||||
bool acceptsMidi() const override { return false; }
|
||||
bool producesMidi() const override { return false; }
|
||||
bool isMidiEffect() const override { return false; }
|
||||
double getTailLengthSeconds() const override { return 0.0; }
|
||||
|
||||
int getNumPrograms() override { return 1; }
|
||||
int getCurrentProgram() override { return 0; }
|
||||
void setCurrentProgram(int) override {}
|
||||
const juce::String getProgramName(int) override { return {}; }
|
||||
void changeProgramName(int, const juce::String&) override {}
|
||||
|
||||
void getStateInformation(juce::MemoryBlock& destData) override;
|
||||
void setStateInformation(const void* data, int sizeInBytes) override;
|
||||
|
||||
static constexpr const char* thresholdID = "threshold";
|
||||
static constexpr const char* ratioID = "ratio";
|
||||
static constexpr const char* attackID = "attack";
|
||||
static constexpr const char* releaseID = "release";
|
||||
static constexpr const char* kneeID = "knee";
|
||||
static constexpr const char* makeupID = "makeup";
|
||||
static constexpr const char* mixID = "mix";
|
||||
static constexpr const char* autoReleaseID = "autoRelease";
|
||||
|
||||
juce::AudioProcessorValueTreeState parameters;
|
||||
|
||||
float getGainReductionMeter() const { return currentGainReduction; }
|
||||
float getInputLevel() const { return currentInputLevel; }
|
||||
float getOutputLevel() const { return currentOutputLevel; }
|
||||
|
||||
static constexpr int scopeSize = 512;
|
||||
std::array<float, scopeSize> inputScope{};
|
||||
std::array<float, scopeSize> outputScope{};
|
||||
int scopeIndex = 0;
|
||||
|
||||
private:
|
||||
CompressorDSP compressorL;
|
||||
CompressorDSP compressorR;
|
||||
|
||||
float currentGainReduction = 0.0f;
|
||||
float currentInputLevel = 0.0f;
|
||||
float currentOutputLevel = 0.0f;
|
||||
|
||||
void updateCompressorParams();
|
||||
|
||||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(SaftpumpeProcessor)
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue