-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPluginProcessor.cpp
More file actions
226 lines (187 loc) · 7.18 KB
/
PluginProcessor.cpp
File metadata and controls
226 lines (187 loc) · 7.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*
==============================================================================
This file contains the basic framework code for a JUCE plugin processor.
==============================================================================
*/
#include "PluginProcessor.h"
#include "PluginEditor.h"
//==============================================================================
BasicChorusAudioProcessor::BasicChorusAudioProcessor()
#ifndef JucePlugin_PreferredChannelConfigurations
: AudioProcessor (BusesProperties()
#if ! JucePlugin_IsMidiEffect
#if ! JucePlugin_IsSynth
.withInput ("Input", juce::AudioChannelSet::stereo(), true)
#endif
.withOutput ("Output", juce::AudioChannelSet::stereo(), true)
#endif
), apvts (*this, nullptr, "Parameters", createParameters())
#endif
{
apvts.addParameterListener ("RATE", this);
apvts.addParameterListener ("DEPTH", this);
apvts.addParameterListener ("CENTREDELAY", this);
apvts.addParameterListener ("FEEDBACK", this);
apvts.addParameterListener ("MIX", this);
}
BasicChorusAudioProcessor::~BasicChorusAudioProcessor()
{
apvts.removeParameterListener ("RATE", this);
apvts.removeParameterListener ("DEPTH", this);
apvts.removeParameterListener ("CENTREDELAY", this);
apvts.removeParameterListener ("FEEDBACK", this);
apvts.removeParameterListener ("MIX", this);
}
//==============================================================================
const juce::String BasicChorusAudioProcessor::getName() const
{
return JucePlugin_Name;
}
bool BasicChorusAudioProcessor::acceptsMidi() const
{
#if JucePlugin_WantsMidiInput
return true;
#else
return false;
#endif
}
bool BasicChorusAudioProcessor::producesMidi() const
{
#if JucePlugin_ProducesMidiOutput
return true;
#else
return false;
#endif
}
bool BasicChorusAudioProcessor::isMidiEffect() const
{
#if JucePlugin_IsMidiEffect
return true;
#else
return false;
#endif
}
double BasicChorusAudioProcessor::getTailLengthSeconds() const
{
return 0.0;
}
int BasicChorusAudioProcessor::getNumPrograms()
{
return 1; // NB: some hosts don't cope very well if you tell them there are 0 programs,
// so this should be at least 1, even if you're not really implementing programs.
}
int BasicChorusAudioProcessor::getCurrentProgram()
{
return 0;
}
void BasicChorusAudioProcessor::setCurrentProgram (int index)
{
}
const juce::String BasicChorusAudioProcessor::getProgramName (int index)
{
return {};
}
void BasicChorusAudioProcessor::changeProgramName (int index, const juce::String& newName)
{
}
//==============================================================================
void BasicChorusAudioProcessor::prepareToPlay (double sampleRate, int samplesPerBlock)
{
juce::dsp::ProcessSpec spec;
spec.maximumBlockSize = samplesPerBlock;
spec.sampleRate = sampleRate;
chorus.prepare (spec);
chorus.reset();
}
void BasicChorusAudioProcessor::releaseResources()
{
// When playback stops, you can use this as an opportunity to free up any
// spare memory, etc.
}
#ifndef JucePlugin_PreferredChannelConfigurations
bool BasicChorusAudioProcessor::isBusesLayoutSupported (const BusesLayout& layouts) const
{
#if JucePlugin_IsMidiEffect
juce::ignoreUnused (layouts);
return true;
#else
// This is the place where you check if the layout is supported.
// In this template code we only support mono or stereo.
if (layouts.getMainOutputChannelSet() != juce::AudioChannelSet::mono()
&& layouts.getMainOutputChannelSet() != juce::AudioChannelSet::stereo())
return false;
// This checks if the input layout matches the output layout
#if ! JucePlugin_IsSynth
if (layouts.getMainOutputChannelSet() != layouts.getMainInputChannelSet())
return false;
#endif
return true;
#endif
}
#endif
void BasicChorusAudioProcessor::processBlock (juce::AudioBuffer<float>& buffer, juce::MidiBuffer& midiMessages)
{
juce::ScopedNoDenormals noDenormals;
auto totalNumInputChannels = getTotalNumInputChannels();
auto totalNumOutputChannels = getTotalNumOutputChannels();
for (auto i = totalNumInputChannels; i < totalNumOutputChannels; ++i)
buffer.clear (i, 0, buffer.getNumSamples());
juce::dsp::AudioBlock<float> sampleBlock (buffer);
chorus.process (juce::dsp::ProcessContextReplacing<float> (sampleBlock));
}
//==============================================================================
bool BasicChorusAudioProcessor::hasEditor() const
{
return true; // (change this to false if you choose to not supply an editor)
}
juce::AudioProcessorEditor* BasicChorusAudioProcessor::createEditor()
{
return new BasicChorusAudioProcessorEditor (*this);
}
//==============================================================================
void BasicChorusAudioProcessor::getStateInformation (juce::MemoryBlock& destData)
{
juce::ValueTree copyState = apvts.copyState();
std::unique_ptr<juce::XmlElement> xml = copyState.createXml();
copyXmlToBinary (*xml.get(), destData);
}
void BasicChorusAudioProcessor::setStateInformation (const void* data, int sizeInBytes)
{
std::unique_ptr<juce::XmlElement> xml = getXmlFromBinary (data, sizeInBytes);
juce::ValueTree copyState = juce::ValueTree::fromXml (*xml.get());
apvts.replaceState (copyState);
}
//==============================================================================
// This creates new instances of the plugin..
juce::AudioProcessor* JUCE_CALLTYPE createPluginFilter()
{
return new BasicChorusAudioProcessor();
}
void BasicChorusAudioProcessor::reset()
{
chorus.reset();
}
void BasicChorusAudioProcessor::parameterChanged (const juce::String& parameterID, float newValue)
{
if (parameterID == "RATE")
chorus.setRate (newValue);
if (parameterID == "DEPTH")
chorus.setDepth (newValue);
if (parameterID == "CENTREDELAY")
chorus.setCentreDelay (newValue);
if (parameterID == "FEEDBACK")
chorus.setFeedback (newValue);
if (parameterID == "MIX")
chorus.setMix (newValue);
}
juce::AudioProcessorValueTreeState::ParameterLayout BasicChorusAudioProcessor::createParameters()
{
juce::AudioProcessorValueTreeState::ParameterLayout params;
using Range = juce::NormalisableRange<float>;
params.add (std::make_unique<juce::AudioParameterInt> ("RATE", "Rate", 0, 99, 0));
params.add (std::make_unique<juce::AudioParameterFloat>("DEPTH", "Depth", Range { 0.0f, 1.0f, 0.01f }, 0.0f));
params.add (std::make_unique<juce::AudioParameterInt> ("CENTREDELAY", "Centre Delay", 1, 100, 1));
params.add (std::make_unique<juce::AudioParameterFloat>("FEEDBACK", "Feedback", Range { -1.0f, 1.0f, 0.01f }, 0.0f));
params.add (std::make_unique<juce::AudioParameterFloat>("MIX", "Mix", Range { 0.0f, 1.0f, 0.01f }, 0.0f));
return params;
}