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
|
/*
==============================================================================
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"
//==============================================================================
MatrixMultiplierAudioProcessor::MatrixMultiplierAudioProcessor() :
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())
{
juce::PropertiesFile::Options options;
options.applicationName = "MatrixMultiplier";
options.filenameSuffix = "settings";
options.folderName = "IEM";
options.osxLibrarySubFolder = "Preferences";
properties.reset (new juce::PropertiesFile (options));
lastDir = juce::File (properties->getValue ("configurationFolder"));
}
MatrixMultiplierAudioProcessor::~MatrixMultiplierAudioProcessor()
{
}
void MatrixMultiplierAudioProcessor::setLastDir (juce::File newLastDir)
{
lastDir = newLastDir;
const juce::var v (lastDir.getFullPathName());
properties->setValue ("configurationFolder", v);
}
//==============================================================================
int MatrixMultiplierAudioProcessor::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 MatrixMultiplierAudioProcessor::getCurrentProgram()
{
return 0;
}
void MatrixMultiplierAudioProcessor::setCurrentProgram (int index)
{
}
const juce::String MatrixMultiplierAudioProcessor::getProgramName (int index)
{
return {};
}
void MatrixMultiplierAudioProcessor::changeProgramName (int index, const juce::String& newName)
{
}
//==============================================================================
void MatrixMultiplierAudioProcessor::prepareToPlay (double sampleRate, int samplesPerBlock)
{
checkInputAndOutput (this, 0, 0, true);
juce::dsp::ProcessSpec specs;
specs.sampleRate = sampleRate;
specs.maximumBlockSize = samplesPerBlock;
specs.numChannels = 64;
matTrans.prepare (specs);
}
void MatrixMultiplierAudioProcessor::releaseResources()
{
// When playback stops, you can use this as an opportunity to free up any
// spare memory, etc.
}
void MatrixMultiplierAudioProcessor::processBlock (juce::AudioSampleBuffer& buffer,
juce::MidiBuffer& midiMessages)
{
checkInputAndOutput (this, 0, 0, false);
juce::ScopedNoDenormals noDenormals;
juce::dsp::AudioBlock<float> ab (buffer);
matTrans.processReplacing (ab);
}
//==============================================================================
bool MatrixMultiplierAudioProcessor::hasEditor() const
{
return true; // (change this to false if you choose to not supply an editor)
}
juce::AudioProcessorEditor* MatrixMultiplierAudioProcessor::createEditor()
{
return new MatrixMultiplierAudioProcessorEditor (*this, parameters);
}
//==============================================================================
void MatrixMultiplierAudioProcessor::getStateInformation (juce::MemoryBlock& destData)
{
auto state = parameters.copyState();
state.setProperty ("lastOpenedConfigurationFile",
juce::var (lastFile.getFullPathName()),
nullptr);
auto oscConfig = state.getOrCreateChildWithName ("OSCConfig", nullptr);
oscConfig.copyPropertiesFrom (oscParameterInterface.getConfig(), nullptr);
std::unique_ptr<juce::XmlElement> xml (state.createXml());
copyXmlToBinary (*xml, destData);
}
void MatrixMultiplierAudioProcessor::setStateInformation (const void* data, int sizeInBytes)
{
std::unique_ptr<juce::XmlElement> xmlState (getXmlFromBinary (data, sizeInBytes));
if (xmlState != nullptr)
if (xmlState->hasTagName (parameters.state.getType()))
{
parameters.replaceState (juce::ValueTree::fromXml (*xmlState));
if (parameters.state.hasProperty ("lastOpenedConfigurationFile"))
{
auto val =
parameters.state.getPropertyAsValue ("lastOpenedConfigurationFile", nullptr);
if (val.getValue().toString() != "")
{
const juce::File f (val.getValue().toString());
loadConfiguration (f);
}
}
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 MatrixMultiplierAudioProcessor::parameterChanged (const juce::String& parameterID,
float newValue)
{
if (parameterID == "inputChannelsSetting" || parameterID == "outputOrderSetting")
userChangedIOSettings = true;
}
void MatrixMultiplierAudioProcessor::updateBuffers()
{
DBG ("IOHelper: input size: " << input.getSize());
DBG ("IOHelper: output size: " << output.getSize());
}
//==============================================================================
// This creates new instances of the plugin..
juce::AudioProcessor* JUCE_CALLTYPE createPluginFilter()
{
return new MatrixMultiplierAudioProcessor();
}
void MatrixMultiplierAudioProcessor::loadConfiguration (const juce::File& configurationFile)
{
ReferenceCountedMatrix::Ptr tempMatrix = nullptr;
juce::Result result =
ConfigurationHelper::parseFileForTransformationMatrix (configurationFile, &tempMatrix);
if (! result.wasOk())
{
messageForEditor = result.getErrorMessage();
return;
}
lastFile = configurationFile;
juce::String output;
if (tempMatrix != nullptr)
{
matTrans.setMatrix (tempMatrix);
output += "Configuration loaded successfully!\n";
output += " Name: \t" + tempMatrix->getName() + "\n";
output += " Size: " + juce::String (tempMatrix->getMatrix().getNumRows()) + "x"
+ juce::String (tempMatrix->getMatrix().getNumColumns()) + " (output x input)\n";
output += " Description: \t" + tempMatrix->getDescription() + "\n";
}
else
output = "ERROR: something went wrong!";
currentMatrix = tempMatrix;
messageForEditor = output;
messageChanged = true;
}
//==============================================================================
const bool MatrixMultiplierAudioProcessor::processNotYetConsumedOSCMessage (
const juce::OSCMessage& message)
{
if (message.getAddressPattern().toString().equalsIgnoreCase (
"/" + juce::String (JucePlugin_Name) + "/loadFile")
&& message.size() >= 1)
{
if (message[0].isString())
{
juce::File fileToLoad (message[0].getString());
loadConfiguration (fileToLoad);
return true;
}
}
return false;
}
//==============================================================================
std::vector<std::unique_ptr<juce::RangedAudioParameter>>
MatrixMultiplierAudioProcessor::createParameterLayout()
{
std::vector<std::unique_ptr<juce::RangedAudioParameter>> params;
return params;
}
|