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 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
/*
==============================================================================
This file is part of the IEM plug-in suite.
Author: Daniel Rudrich
Copyright (c) 2017 - Institute of Electronic Music and Acoustics (IEM)
https://iem.at
The IEM plug-in suite 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.
The IEM plug-in suite 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 software. If not, see <https://www.gnu.org/licenses/>.
==============================================================================
*/
#include "PluginProcessor.h"
#include "PluginEditor.h"
//==============================================================================
EnergyVisualizerAudioProcessor::EnergyVisualizerAudioProcessor() :
AudioProcessorBase (
#ifndef JucePlugin_PreferredChannelConfigurations
BusesProperties()
#if ! JucePlugin_IsMidiEffect
#if ! JucePlugin_IsSynth
.withInput ("Input",
((juce::PluginHostType::getPluginLoadedAs()
== juce::AudioProcessor::wrapperType_VST3)
? juce::AudioChannelSet::ambisonic (1)
: juce::AudioChannelSet::ambisonic (7)),
true)
#endif
.withOutput ("Output",
((juce::PluginHostType::getPluginLoadedAs()
== juce::AudioProcessor::wrapperType_VST3)
? juce::AudioChannelSet::ambisonic (1)
: juce::AudioChannelSet::ambisonic (7)),
true)
#endif
,
#endif
createParameterLayout()),
decoderMatrix (nSamplePoints, 64)
{
orderSetting = parameters.getRawParameterValue ("orderSetting");
useSN3D = parameters.getRawParameterValue ("useSN3D");
peakLevel = parameters.getRawParameterValue ("peakLevel");
dynamicRange = parameters.getRawParameterValue ("dynamicRange");
holdMax = parameters.getRawParameterValue ("holdMax");
RMStimeConstant = parameters.getRawParameterValue ("RMStimeConstant");
parameters.addParameterListener ("orderSetting", this);
parameters.addParameterListener ("RMStimeConstant", this);
for (int point = 0; point < nSamplePoints; ++point)
{
auto* matrixRowPtr = decoderMatrix.getRawDataPointer() + point * 64;
SHEval (7,
hammerAitovSampleX[point],
hammerAitovSampleY[point],
hammerAitovSampleZ[point],
matrixRowPtr,
false);
juce::FloatVectorOperations::multiply (
matrixRowPtr,
matrixRowPtr,
sn3d2n3d,
64); //expecting sn3d normalization -> converting it to handle n3d
}
decoderMatrix *= 1.0f / decodeCorrection (7); // revert 7th order correction
rms.resize (nSamplePoints);
std::fill (rms.begin(), rms.end(), 0.0f);
weights.resize (64);
startTimer (200);
}
EnergyVisualizerAudioProcessor::~EnergyVisualizerAudioProcessor()
{
}
//==============================================================================
int EnergyVisualizerAudioProcessor::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 EnergyVisualizerAudioProcessor::getCurrentProgram()
{
return 0;
}
void EnergyVisualizerAudioProcessor::setCurrentProgram (int index)
{
}
const juce::String EnergyVisualizerAudioProcessor::getProgramName (int index)
{
return {};
}
void EnergyVisualizerAudioProcessor::changeProgramName (int index, const juce::String& newName)
{
}
//==============================================================================
void EnergyVisualizerAudioProcessor::prepareToPlay (double sampleRate, int samplesPerBlock)
{
checkInputAndOutput (this, *orderSetting, 0, true);
timeConstant = exp (-1.0 / (sampleRate * (*RMStimeConstant / 1000) / samplesPerBlock));
sampledSignal.resize (samplesPerBlock);
std::fill (rms.begin(), rms.end(), 0.0f);
}
void EnergyVisualizerAudioProcessor::releaseResources()
{
// When playback stops, you can use this as an opportunity to free up any
// spare memory, etc.
}
void EnergyVisualizerAudioProcessor::processBlock (juce::AudioSampleBuffer& buffer,
juce::MidiBuffer& midiMessages)
{
juce::ScopedNoDenormals noDenormals;
checkInputAndOutput (this, *orderSetting, 0);
if (! doProcessing.get() && ! oscParameterInterface.getOSCSender().isConnected())
return;
//const int nCh = buffer.getNumChannels();
const int L = buffer.getNumSamples();
const int workingOrder = juce::jmin (isqrt (buffer.getNumChannels()) - 1, input.getOrder());
const int nCh = squares[workingOrder + 1];
copyMaxRE (workingOrder, weights.data());
juce::FloatVectorOperations::multiply (weights.data(),
maxRECorrection[workingOrder]
* decodeCorrection (workingOrder),
nCh);
if (*useSN3D < 0.5f)
juce::FloatVectorOperations::multiply (weights.data(), n3d2sn3d, nCh);
const float oneMinusTimeConstant = 1.0f - timeConstant;
for (int i = 0; i < nSamplePoints; ++i)
{
juce::FloatVectorOperations::copyWithMultiply (sampledSignal.data(),
buffer.getReadPointer (0),
decoderMatrix (i, 0) * weights[0],
buffer.getNumSamples());
for (int ch = 1; ch < nCh; ++ch)
juce::FloatVectorOperations::addWithMultiply (sampledSignal.data(),
buffer.getReadPointer (ch),
decoderMatrix (i, ch) * weights[ch],
L);
// calculate rms
float sum = 0.0f;
for (int i = 0; i < L; ++i)
{
const auto sample = sampledSignal[i];
sum += sample * sample;
}
rms[i] = timeConstant * rms[i] + oneMinusTimeConstant * std::sqrt (sum / L);
}
}
//==============================================================================
bool EnergyVisualizerAudioProcessor::hasEditor() const
{
return true; // (change this to false if you choose to not supply an editor)
}
juce::AudioProcessorEditor* EnergyVisualizerAudioProcessor::createEditor()
{
return new EnergyVisualizerAudioProcessorEditor (*this, parameters);
}
//==============================================================================
void EnergyVisualizerAudioProcessor::getStateInformation (juce::MemoryBlock& destData)
{
auto state = parameters.copyState();
auto oscConfig = state.getOrCreateChildWithName ("OSCConfig", nullptr);
oscConfig.copyPropertiesFrom (oscParameterInterface.getConfig(), nullptr);
std::unique_ptr<juce::XmlElement> xml (state.createXml());
copyXmlToBinary (*xml, destData);
}
void EnergyVisualizerAudioProcessor::setStateInformation (const void* data, int sizeInBytes)
{
std::unique_ptr<juce::XmlElement> xmlState (getXmlFromBinary (data, sizeInBytes));
if (xmlState.get() != nullptr)
if (xmlState->hasTagName (parameters.state.getType()))
{
parameters.replaceState (juce::ValueTree::fromXml (*xmlState));
if (parameters.state.hasProperty ("OSCPort")) // legacy
{
oscParameterInterface.getOSCReceiver().connect (
parameters.state.getProperty ("OSCPort", juce::var (-1)));
parameters.state.removeProperty ("OSCPort", nullptr);
}
auto oscConfig = parameters.state.getChildWithName ("OSCConfig");
if (oscConfig.isValid())
oscParameterInterface.setConfig (oscConfig);
}
}
//==============================================================================
void EnergyVisualizerAudioProcessor::parameterChanged (const juce::String& parameterID,
float newValue)
{
if (parameterID == "orderSetting")
userChangedIOSettings = true;
if (parameterID == "RMStimeConstant")
timeConstant = exp (-1.0 / (getSampleRate() * (*RMStimeConstant / 1000) / getBlockSize()));
}
//==============================================================================
std::vector<std::unique_ptr<juce::RangedAudioParameter>>
EnergyVisualizerAudioProcessor::createParameterLayout()
{
// add your audio parameters here
std::vector<std::unique_ptr<juce::RangedAudioParameter>> params;
params.push_back (OSCParameterInterface::createParameterTheOldWay (
"orderSetting",
"Ambisonics Order",
"",
juce::NormalisableRange<float> (0.0f, 8.0f, 1.0f),
0.0f,
[] (float value)
{
if (value >= 0.5f && value < 1.5f)
return "0th";
else if (value >= 1.5f && value < 2.5f)
return "1st";
else if (value >= 2.5f && value < 3.5f)
return "2nd";
else if (value >= 3.5f && value < 4.5f)
return "3rd";
else if (value >= 4.5f && value < 5.5f)
return "4th";
else if (value >= 5.5f && value < 6.5f)
return "5th";
else if (value >= 6.5f && value < 7.5f)
return "6th";
else if (value >= 7.5f)
return "7th";
else
return "Auto";
},
nullptr));
params.push_back (OSCParameterInterface::createParameterTheOldWay (
"useSN3D",
"Normalization",
"",
juce::NormalisableRange<float> (0.0f, 1.0f, 1.0f),
1.0f,
[] (float value)
{
if (value >= 0.5f)
return "SN3D";
else
return "N3D";
},
nullptr));
params.push_back (OSCParameterInterface::createParameterTheOldWay (
"peakLevel",
"Peak level",
"dB",
juce::NormalisableRange<float> (-50.0f, 10.0f, 0.1f),
0.0f,
[] (float value) { return juce::String (value, 1); },
nullptr));
params.push_back (OSCParameterInterface::createParameterTheOldWay (
"dynamicRange",
"Dynamic Range",
"dB",
juce::NormalisableRange<float> (10.0f, 60.0f, 1.f),
35.0f,
[] (float value) { return juce::String (value, 0); },
nullptr));
params.push_back (OSCParameterInterface::createParameterTheOldWay (
"holdMax",
"Hold maximal RMS value",
"",
juce::NormalisableRange<float> (0.0f, 1.0f, 1.0f),
0.0f,
[] (float value)
{
if (value >= 0.5f)
return "ON";
else
return "OFF";
},
nullptr));
params.push_back (OSCParameterInterface::createParameterTheOldWay (
"RMStimeConstant",
"RMS time constant",
"ms",
juce::NormalisableRange<float> (10.0f, 1000.0f, 1.0f, 0.4f),
100.0f,
[] (float value) { return juce::String (value, 0); },
nullptr));
return params;
}
//==============================================================================
void EnergyVisualizerAudioProcessor::timerCallback()
{
juce::RelativeTime timeDifference = juce::Time::getCurrentTime() - lastEditorTime.get();
if (timeDifference.inMilliseconds() > 800)
doProcessing = false;
else
doProcessing = true;
}
//==============================================================================
void EnergyVisualizerAudioProcessor::sendAdditionalOSCMessages (
juce::OSCSender& oscSender,
const juce::OSCAddressPattern& address)
{
juce::OSCMessage message (address.toString() + "/RMS");
for (int i = 0; i < nSamplePoints; ++i)
message.addFloat32 (rms[i]);
oscSender.send (message);
}
//==============================================================================
// This creates new instances of the plugin..
juce::AudioProcessor* JUCE_CALLTYPE createPluginFilter()
{
return new EnergyVisualizerAudioProcessor();
}
|