2023-01-09 21:58:49 +00:00
|
|
|
/*
|
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
This file contains the basic framework code for a JUCE plugin processor.
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "PluginProcessor.h"
|
|
|
|
#include "PluginEditor.h"
|
2023-01-15 17:01:27 +00:00
|
|
|
#include "parser/FileParser.h"
|
|
|
|
#include "parser/FrameProducer.h"
|
2023-03-28 13:33:56 +00:00
|
|
|
#include "audio/RotateEffect.h"
|
|
|
|
#include "audio/VectorCancellingEffect.h"
|
|
|
|
#include "audio/DistortEffect.h"
|
2023-03-28 14:52:51 +00:00
|
|
|
#include "audio/SmoothEffect.h"
|
2023-07-04 13:58:36 +00:00
|
|
|
#include "audio/BitCrushEffect.h"
|
|
|
|
#include "audio/BulgeEffect.h"
|
|
|
|
#include "audio/LuaEffect.h"
|
2023-07-18 16:25:09 +00:00
|
|
|
#include "audio/EffectParameter.h"
|
2023-01-09 21:58:49 +00:00
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
OscirenderAudioProcessor::OscirenderAudioProcessor()
|
|
|
|
#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
|
|
|
|
)
|
|
|
|
#endif
|
2023-03-30 16:28:47 +00:00
|
|
|
{
|
2023-07-11 21:28:54 +00:00
|
|
|
producer.startThread();
|
2023-07-25 11:23:27 +00:00
|
|
|
|
|
|
|
// locking isn't necessary here because we are in the constructor
|
2023-03-26 12:58:31 +00:00
|
|
|
|
2023-07-18 16:25:09 +00:00
|
|
|
toggleableEffects.push_back(std::make_shared<Effect>(
|
2023-07-16 19:54:41 +00:00
|
|
|
std::make_shared<BitCrushEffect>(),
|
2023-07-18 18:20:54 +00:00
|
|
|
new EffectParameter("Bit Crush", "bitCrush", 0.0, 0.0, 1.0)
|
2023-07-16 19:54:41 +00:00
|
|
|
));
|
2023-07-18 16:25:09 +00:00
|
|
|
toggleableEffects.push_back(std::make_shared<Effect>(
|
2023-07-16 19:54:41 +00:00
|
|
|
std::make_shared<BulgeEffect>(),
|
2023-07-18 18:20:54 +00:00
|
|
|
new EffectParameter("Bulge", "bulge", 0.0, 0.0, 1.0)
|
2023-07-16 19:54:41 +00:00
|
|
|
));
|
2023-07-18 16:25:09 +00:00
|
|
|
toggleableEffects.push_back(std::make_shared<Effect>(
|
2023-07-16 19:54:41 +00:00
|
|
|
std::make_shared<RotateEffect>(),
|
2023-07-25 11:23:27 +00:00
|
|
|
new EffectParameter("2D Rotate", "2DRotateSpeed", 0.0, 0.0, 1.0)
|
2023-07-16 19:54:41 +00:00
|
|
|
));
|
2023-07-18 16:25:09 +00:00
|
|
|
toggleableEffects.push_back(std::make_shared<Effect>(
|
2023-07-16 19:54:41 +00:00
|
|
|
std::make_shared<VectorCancellingEffect>(),
|
2023-07-25 11:23:27 +00:00
|
|
|
new EffectParameter("Vector Cancelling", "vectorCancelling", 0.0, 0.0, 1.0)
|
2023-07-19 20:40:31 +00:00
|
|
|
));
|
|
|
|
toggleableEffects.push_back(std::make_shared<Effect>(
|
|
|
|
std::make_shared<DistortEffect>(false),
|
2023-07-25 11:23:27 +00:00
|
|
|
new EffectParameter("Distort X", "distortX", 0.0, 0.0, 1.0)
|
2023-07-16 19:54:41 +00:00
|
|
|
));
|
2023-07-18 16:25:09 +00:00
|
|
|
toggleableEffects.push_back(std::make_shared<Effect>(
|
2023-07-16 19:54:41 +00:00
|
|
|
std::make_shared<DistortEffect>(true),
|
2023-07-25 11:23:27 +00:00
|
|
|
new EffectParameter("Distort Y", "distortY", 0.0, 0.0, 1.0)
|
2023-07-16 19:54:41 +00:00
|
|
|
));
|
2023-07-18 16:25:09 +00:00
|
|
|
toggleableEffects.push_back(std::make_shared<Effect>(
|
2023-07-19 20:40:31 +00:00
|
|
|
[this](int index, Vector2 input, const std::vector<double>& values, double sampleRate) {
|
|
|
|
input.x += values[0];
|
|
|
|
input.y += values[1];
|
|
|
|
return input;
|
2023-07-20 16:24:34 +00:00
|
|
|
}, std::vector<EffectParameter*>{new EffectParameter("Translate X", "translateX", 0.0, -1.0, 1.0), new EffectParameter("Translate Y", "translateY", 0.0, -1.0, 1.0)}
|
2023-07-16 19:54:41 +00:00
|
|
|
));
|
2023-07-18 16:25:09 +00:00
|
|
|
toggleableEffects.push_back(std::make_shared<Effect>(
|
2023-07-16 19:54:41 +00:00
|
|
|
std::make_shared<SmoothEffect>(),
|
2023-07-18 18:20:54 +00:00
|
|
|
new EffectParameter("Smoothing", "smoothing", 0.0, 0.0, 1.0)
|
2023-07-16 19:54:41 +00:00
|
|
|
));
|
2023-07-18 16:25:09 +00:00
|
|
|
toggleableEffects.push_back(std::make_shared<Effect>(
|
2023-07-16 19:54:41 +00:00
|
|
|
wobbleEffect,
|
2023-07-18 18:20:54 +00:00
|
|
|
new EffectParameter("Wobble", "wobble", 0.0, 0.0, 1.0)
|
2023-07-16 19:54:41 +00:00
|
|
|
));
|
2023-07-18 16:25:09 +00:00
|
|
|
toggleableEffects.push_back(std::make_shared<Effect>(
|
2023-07-11 12:32:52 +00:00
|
|
|
delayEffect,
|
2023-07-25 11:23:27 +00:00
|
|
|
std::vector<EffectParameter*>{new EffectParameter("Delay Decay", "delayDecay", 0.0, 0.0, 1.0), new EffectParameter("Delay Length", "delayLength", 0.5, 0.0, 1.0)}
|
2023-07-11 12:32:52 +00:00
|
|
|
));
|
2023-07-21 16:42:29 +00:00
|
|
|
toggleableEffects.push_back(std::make_shared<Effect>(
|
|
|
|
perspectiveEffect,
|
|
|
|
std::vector<EffectParameter*>{
|
2023-07-25 11:23:27 +00:00
|
|
|
new EffectParameter("3D Perspective", "perspectiveStrength", 0.0, 0.0, 1.0),
|
|
|
|
new EffectParameter("Depth (z)", "perspectiveZPos", 0.1, 0.0, 1.0),
|
|
|
|
new EffectParameter("Rotate Speed", "perspectiveRotateSpeed", 0.0, -1.0, 1.0),
|
|
|
|
new EffectParameter("Rotate X", "perspectiveRotateX", 1.0, -1.0, 1.0),
|
|
|
|
new EffectParameter("Rotate Y", "perspectiveRotateY", 1.0, -1.0, 1.0),
|
|
|
|
new EffectParameter("Rotate Z", "perspectiveRotateZ", 0.0, -1.0, 1.0),
|
2023-07-21 16:42:29 +00:00
|
|
|
}
|
|
|
|
));
|
2023-07-18 16:25:09 +00:00
|
|
|
toggleableEffects.push_back(traceMax);
|
|
|
|
toggleableEffects.push_back(traceMin);
|
|
|
|
|
2023-07-28 12:55:44 +00:00
|
|
|
for (int i = 0; i < toggleableEffects.size(); i++) {
|
|
|
|
auto effect = toggleableEffects[i];
|
2023-07-18 18:20:54 +00:00
|
|
|
effect->markEnableable(false);
|
|
|
|
addParameter(effect->enabled);
|
|
|
|
effect->enabled->setValueNotifyingHost(false);
|
2023-07-28 12:55:44 +00:00
|
|
|
effect->setPrecedence(i);
|
2023-07-18 16:25:09 +00:00
|
|
|
}
|
2023-07-04 13:58:36 +00:00
|
|
|
|
2023-07-14 14:34:24 +00:00
|
|
|
permanentEffects.push_back(frequencyEffect);
|
|
|
|
permanentEffects.push_back(volumeEffect);
|
|
|
|
permanentEffects.push_back(thresholdEffect);
|
|
|
|
permanentEffects.push_back(rotateSpeed);
|
|
|
|
permanentEffects.push_back(rotateX);
|
|
|
|
permanentEffects.push_back(rotateY);
|
|
|
|
permanentEffects.push_back(rotateZ);
|
|
|
|
permanentEffects.push_back(focalLength);
|
|
|
|
|
2023-07-21 10:08:55 +00:00
|
|
|
for (int i = 0; i < 26; i++) {
|
2023-07-04 13:58:36 +00:00
|
|
|
addLuaSlider();
|
|
|
|
}
|
2023-07-17 19:09:13 +00:00
|
|
|
|
2023-07-25 11:23:27 +00:00
|
|
|
allEffects = toggleableEffects;
|
|
|
|
allEffects.insert(allEffects.end(), permanentEffects.begin(), permanentEffects.end());
|
|
|
|
allEffects.insert(allEffects.end(), luaEffects.begin(), luaEffects.end());
|
2023-07-17 19:09:13 +00:00
|
|
|
|
2023-07-25 11:23:27 +00:00
|
|
|
for (auto effect : allEffects) {
|
2023-07-20 19:01:09 +00:00
|
|
|
for (auto effectParameter : effect->parameters) {
|
|
|
|
auto parameters = effectParameter->getParameters();
|
|
|
|
for (auto parameter : parameters) {
|
|
|
|
addParameter(parameter);
|
|
|
|
}
|
2023-07-17 19:09:13 +00:00
|
|
|
}
|
|
|
|
}
|
2023-07-22 14:07:11 +00:00
|
|
|
|
2023-07-25 13:09:21 +00:00
|
|
|
booleanParameters.push_back(fixedRotateX);
|
|
|
|
booleanParameters.push_back(fixedRotateY);
|
|
|
|
booleanParameters.push_back(fixedRotateZ);
|
|
|
|
booleanParameters.push_back(perspectiveEffect->fixedRotateX);
|
|
|
|
booleanParameters.push_back(perspectiveEffect->fixedRotateY);
|
|
|
|
booleanParameters.push_back(perspectiveEffect->fixedRotateZ);
|
|
|
|
|
|
|
|
for (auto parameter : booleanParameters) {
|
|
|
|
addParameter(parameter);
|
|
|
|
}
|
2023-01-09 21:58:49 +00:00
|
|
|
}
|
|
|
|
|
2023-07-19 20:40:31 +00:00
|
|
|
OscirenderAudioProcessor::~OscirenderAudioProcessor() {}
|
2023-01-09 21:58:49 +00:00
|
|
|
|
2023-07-13 19:11:24 +00:00
|
|
|
const juce::String OscirenderAudioProcessor::getName() const {
|
2023-01-09 21:58:49 +00:00
|
|
|
return JucePlugin_Name;
|
|
|
|
}
|
|
|
|
|
2023-07-13 19:11:24 +00:00
|
|
|
bool OscirenderAudioProcessor::acceptsMidi() const {
|
2023-01-09 21:58:49 +00:00
|
|
|
#if JucePlugin_WantsMidiInput
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2023-07-13 19:11:24 +00:00
|
|
|
bool OscirenderAudioProcessor::producesMidi() const {
|
2023-01-09 21:58:49 +00:00
|
|
|
#if JucePlugin_ProducesMidiOutput
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2023-07-13 19:11:24 +00:00
|
|
|
bool OscirenderAudioProcessor::isMidiEffect() const {
|
2023-01-09 21:58:49 +00:00
|
|
|
#if JucePlugin_IsMidiEffect
|
|
|
|
return true;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2023-07-13 19:11:24 +00:00
|
|
|
double OscirenderAudioProcessor::getTailLengthSeconds() const {
|
2023-01-09 21:58:49 +00:00
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
2023-07-13 19:11:24 +00:00
|
|
|
int OscirenderAudioProcessor::getNumPrograms() {
|
2023-01-09 21:58:49 +00:00
|
|
|
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.
|
|
|
|
}
|
|
|
|
|
2023-07-13 19:11:24 +00:00
|
|
|
int OscirenderAudioProcessor::getCurrentProgram() {
|
2023-01-09 21:58:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-07-13 19:11:24 +00:00
|
|
|
void OscirenderAudioProcessor::setCurrentProgram(int index) {
|
2023-01-09 21:58:49 +00:00
|
|
|
}
|
|
|
|
|
2023-07-13 19:11:24 +00:00
|
|
|
const juce::String OscirenderAudioProcessor::getProgramName(int index) {
|
2023-01-09 21:58:49 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2023-07-13 19:11:24 +00:00
|
|
|
void OscirenderAudioProcessor::changeProgramName(int index, const juce::String& newName) {}
|
2023-01-09 21:58:49 +00:00
|
|
|
|
2023-07-13 19:11:24 +00:00
|
|
|
void OscirenderAudioProcessor::prepareToPlay(double sampleRate, int samplesPerBlock) {
|
2023-01-15 17:01:27 +00:00
|
|
|
currentSampleRate = sampleRate;
|
2023-07-13 19:11:24 +00:00
|
|
|
pitchDetector.setSampleRate(sampleRate);
|
2023-01-09 21:58:49 +00:00
|
|
|
}
|
|
|
|
|
2023-07-13 19:11:24 +00:00
|
|
|
void OscirenderAudioProcessor::releaseResources() {
|
2023-01-09 21:58:49 +00:00
|
|
|
// When playback stops, you can use this as an opportunity to free up any
|
|
|
|
// spare memory, etc.
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef JucePlugin_PreferredChannelConfigurations
|
|
|
|
bool OscirenderAudioProcessor::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.
|
|
|
|
// Some plugin hosts, such as certain GarageBand versions, will only
|
|
|
|
// load plugins that support stereo bus layouts.
|
|
|
|
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
|
|
|
|
|
2023-07-05 14:17:17 +00:00
|
|
|
// effectsLock should be held when calling this
|
2023-07-04 13:58:36 +00:00
|
|
|
void OscirenderAudioProcessor::addLuaSlider() {
|
|
|
|
juce::String sliderName = "";
|
|
|
|
|
|
|
|
int sliderNum = luaEffects.size() + 1;
|
|
|
|
while (sliderNum > 0) {
|
|
|
|
int mod = (sliderNum - 1) % 26;
|
|
|
|
sliderName = (char)(mod + 'A') + sliderName;
|
|
|
|
sliderNum = (sliderNum - mod) / 26;
|
|
|
|
}
|
|
|
|
|
2023-07-16 19:54:41 +00:00
|
|
|
luaEffects.push_back(std::make_shared<Effect>(
|
|
|
|
std::make_shared<LuaEffect>(sliderName, *this),
|
2023-07-18 18:20:54 +00:00
|
|
|
new EffectParameter("Lua " + sliderName, "lua" + sliderName, 0.0, 0.0, 1.0, 0.001, false)
|
2023-07-16 19:54:41 +00:00
|
|
|
));
|
2023-07-21 10:08:55 +00:00
|
|
|
|
|
|
|
auto& effect = luaEffects.back();
|
|
|
|
effect->parameters[0]->disableLfo();
|
2023-07-04 13:58:36 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 14:17:17 +00:00
|
|
|
// effectsLock should be held when calling this
|
2023-07-04 13:58:36 +00:00
|
|
|
void OscirenderAudioProcessor::updateLuaValues() {
|
|
|
|
for (auto& effect : luaEffects) {
|
2023-07-05 11:02:28 +00:00
|
|
|
effect->apply();
|
2023-07-04 13:58:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-05 11:02:28 +00:00
|
|
|
// parsersLock should be held when calling this
|
|
|
|
void OscirenderAudioProcessor::updateObjValues() {
|
2023-07-14 14:34:24 +00:00
|
|
|
focalLength->apply();
|
|
|
|
rotateX->apply();
|
|
|
|
rotateY->apply();
|
|
|
|
rotateZ->apply();
|
|
|
|
rotateSpeed->apply();
|
2023-01-15 17:01:27 +00:00
|
|
|
}
|
|
|
|
|
2023-07-25 13:09:21 +00:00
|
|
|
// effectsLock should be held when calling this
|
|
|
|
std::shared_ptr<Effect> OscirenderAudioProcessor::getEffect(juce::String id) {
|
|
|
|
for (auto& effect : allEffects) {
|
|
|
|
if (effect->getId() == id) {
|
|
|
|
return effect;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// effectsLock should be held when calling this
|
|
|
|
BooleanParameter* OscirenderAudioProcessor::getBooleanParameter(juce::String id) {
|
|
|
|
for (auto& parameter : booleanParameters) {
|
|
|
|
if (parameter->paramID == id) {
|
|
|
|
return parameter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2023-07-05 14:17:17 +00:00
|
|
|
// effectsLock MUST be held when calling this
|
2023-03-28 15:21:18 +00:00
|
|
|
void OscirenderAudioProcessor::updateEffectPrecedence() {
|
2023-07-05 16:57:41 +00:00
|
|
|
auto sortFunc = [](std::shared_ptr<Effect> a, std::shared_ptr<Effect> b) {
|
|
|
|
return a->getPrecedence() < b->getPrecedence();
|
|
|
|
};
|
2023-07-18 16:25:09 +00:00
|
|
|
std::sort(toggleableEffects.begin(), toggleableEffects.end(), sortFunc);
|
2023-03-26 12:58:31 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 14:17:17 +00:00
|
|
|
// parsersLock AND effectsLock must be locked before calling this function
|
2023-03-30 16:28:47 +00:00
|
|
|
void OscirenderAudioProcessor::updateFileBlock(int index, std::shared_ptr<juce::MemoryBlock> block) {
|
2023-07-04 19:47:54 +00:00
|
|
|
if (index < 0 || index >= fileBlocks.size()) {
|
|
|
|
return;
|
|
|
|
}
|
2023-03-30 16:28:47 +00:00
|
|
|
fileBlocks[index] = block;
|
|
|
|
openFile(index);
|
|
|
|
}
|
|
|
|
|
2023-07-05 14:17:17 +00:00
|
|
|
// parsersLock AND effectsLock must be locked before calling this function
|
2023-03-30 16:28:47 +00:00
|
|
|
void OscirenderAudioProcessor::addFile(juce::File file) {
|
|
|
|
fileBlocks.push_back(std::make_shared<juce::MemoryBlock>());
|
2023-07-05 21:45:51 +00:00
|
|
|
fileNames.push_back(file.getFileName());
|
2023-03-30 16:28:47 +00:00
|
|
|
parsers.push_back(std::make_unique<FileParser>());
|
|
|
|
file.createInputStream()->readIntoMemoryBlock(*fileBlocks.back());
|
|
|
|
|
|
|
|
openFile(fileBlocks.size() - 1);
|
|
|
|
}
|
|
|
|
|
2023-07-05 21:45:51 +00:00
|
|
|
// parsersLock AND effectsLock must be locked before calling this function
|
|
|
|
void OscirenderAudioProcessor::addFile(juce::String fileName, const char* data, const int size) {
|
|
|
|
fileBlocks.push_back(std::make_shared<juce::MemoryBlock>());
|
|
|
|
fileNames.push_back(fileName);
|
|
|
|
parsers.push_back(std::make_unique<FileParser>());
|
|
|
|
fileBlocks.back()->append(data, size);
|
|
|
|
|
|
|
|
openFile(fileBlocks.size() - 1);
|
|
|
|
}
|
|
|
|
|
2023-07-25 13:09:21 +00:00
|
|
|
// parsersLock AND effectsLock must be locked before calling this function
|
|
|
|
void OscirenderAudioProcessor::addFile(juce::String fileName, std::shared_ptr<juce::MemoryBlock> data) {
|
|
|
|
fileBlocks.push_back(data);
|
|
|
|
fileNames.push_back(fileName);
|
|
|
|
parsers.push_back(std::make_unique<FileParser>());
|
|
|
|
|
|
|
|
openFile(fileBlocks.size() - 1);
|
|
|
|
}
|
|
|
|
|
2023-07-05 14:17:17 +00:00
|
|
|
// parsersLock AND effectsLock must be locked before calling this function
|
2023-03-30 16:28:47 +00:00
|
|
|
void OscirenderAudioProcessor::removeFile(int index) {
|
2023-03-30 20:09:53 +00:00
|
|
|
if (index < 0 || index >= fileBlocks.size()) {
|
|
|
|
return;
|
|
|
|
}
|
2023-03-30 16:28:47 +00:00
|
|
|
fileBlocks.erase(fileBlocks.begin() + index);
|
2023-07-05 21:45:51 +00:00
|
|
|
fileNames.erase(fileNames.begin() + index);
|
2023-07-25 13:09:21 +00:00
|
|
|
parsers.erase(parsers.begin() + index);
|
|
|
|
auto newFileIndex = index;
|
|
|
|
if (newFileIndex >= fileBlocks.size()) {
|
|
|
|
newFileIndex = fileBlocks.size() - 1;
|
|
|
|
}
|
|
|
|
changeCurrentFile(newFileIndex);
|
2023-03-30 16:28:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int OscirenderAudioProcessor::numFiles() {
|
|
|
|
return fileBlocks.size();
|
|
|
|
}
|
|
|
|
|
2023-07-05 14:17:17 +00:00
|
|
|
// used for opening NEW files. Should be the default way of opening files as
|
|
|
|
// it will reparse any existing files, so it is safer.
|
|
|
|
// parsersLock AND effectsLock must be locked before calling this function
|
2023-03-30 16:28:47 +00:00
|
|
|
void OscirenderAudioProcessor::openFile(int index) {
|
2023-03-30 20:09:53 +00:00
|
|
|
if (index < 0 || index >= fileBlocks.size()) {
|
|
|
|
return;
|
|
|
|
}
|
2023-07-05 21:45:51 +00:00
|
|
|
parsers[index]->parse(fileNames[index].fromLastOccurrenceOf(".", true, false), std::make_unique<juce::MemoryInputStream>(*fileBlocks[index], false));
|
2023-07-05 14:17:17 +00:00
|
|
|
changeCurrentFile(index);
|
2023-03-30 20:09:53 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 14:17:17 +00:00
|
|
|
// used ONLY for changing the current file to an EXISTING file.
|
|
|
|
// much faster than openFile(int index) because it doesn't reparse any files.
|
|
|
|
// parsersLock AND effectsLock must be locked before calling this function
|
2023-03-30 20:09:53 +00:00
|
|
|
void OscirenderAudioProcessor::changeCurrentFile(int index) {
|
2023-07-02 12:09:24 +00:00
|
|
|
if (index == -1) {
|
|
|
|
currentFile = -1;
|
2023-07-11 21:28:54 +00:00
|
|
|
producer.setSource(std::make_shared<FileParser>(), -1);
|
2023-07-02 12:09:24 +00:00
|
|
|
}
|
2023-03-30 20:09:53 +00:00
|
|
|
if (index < 0 || index >= fileBlocks.size()) {
|
|
|
|
return;
|
|
|
|
}
|
2023-07-11 21:28:54 +00:00
|
|
|
producer.setSource(parsers[index], index);
|
2023-03-30 20:09:53 +00:00
|
|
|
currentFile = index;
|
|
|
|
invalidateFrameBuffer = true;
|
2023-07-05 14:17:17 +00:00
|
|
|
updateLuaValues();
|
|
|
|
updateObjValues();
|
2023-03-30 16:28:47 +00:00
|
|
|
}
|
|
|
|
|
2023-03-30 20:09:53 +00:00
|
|
|
int OscirenderAudioProcessor::getCurrentFileIndex() {
|
2023-03-30 16:28:47 +00:00
|
|
|
return currentFile;
|
|
|
|
}
|
|
|
|
|
2023-07-04 13:58:36 +00:00
|
|
|
std::shared_ptr<FileParser> OscirenderAudioProcessor::getCurrentFileParser() {
|
|
|
|
return parsers[currentFile];
|
|
|
|
}
|
|
|
|
|
2023-07-05 21:45:51 +00:00
|
|
|
juce::String OscirenderAudioProcessor::getCurrentFileName() {
|
|
|
|
if (currentFile == -1) {
|
|
|
|
return "";
|
|
|
|
} else {
|
|
|
|
return fileNames[currentFile];
|
|
|
|
}
|
2023-03-30 20:09:53 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 21:45:51 +00:00
|
|
|
juce::String OscirenderAudioProcessor::getFileName(int index) {
|
|
|
|
return fileNames[index];
|
2023-07-02 12:09:24 +00:00
|
|
|
}
|
|
|
|
|
2023-03-30 16:28:47 +00:00
|
|
|
std::shared_ptr<juce::MemoryBlock> OscirenderAudioProcessor::getFileBlock(int index) {
|
|
|
|
return fileBlocks[index];
|
|
|
|
}
|
|
|
|
|
2023-03-30 20:09:53 +00:00
|
|
|
void OscirenderAudioProcessor::addFrame(std::vector<std::unique_ptr<Shape>> frame, int fileIndex) {
|
|
|
|
const auto scope = frameFifo.write(1);
|
|
|
|
|
|
|
|
if (scope.blockSize1 > 0) {
|
|
|
|
frameBuffer[scope.startIndex1].clear();
|
|
|
|
for (auto& shape : frame) {
|
|
|
|
frameBuffer[scope.startIndex1].push_back(std::move(shape));
|
|
|
|
}
|
|
|
|
frameBufferIndices[scope.startIndex1] = fileIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scope.blockSize2 > 0) {
|
|
|
|
frameBuffer[scope.startIndex2].clear();
|
|
|
|
for (auto& shape : frame) {
|
|
|
|
frameBuffer[scope.startIndex2].push_back(std::move(shape));
|
|
|
|
}
|
|
|
|
frameBufferIndices[scope.startIndex2] = fileIndex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-15 17:01:27 +00:00
|
|
|
void OscirenderAudioProcessor::updateFrame() {
|
|
|
|
currentShape = 0;
|
|
|
|
shapeDrawn = 0.0;
|
|
|
|
frameDrawn = 0.0;
|
|
|
|
|
|
|
|
if (frameFifo.getNumReady() > 0) {
|
|
|
|
{
|
|
|
|
const auto scope = frameFifo.read(1);
|
|
|
|
|
|
|
|
if (scope.blockSize1 > 0) {
|
2023-01-15 22:34:02 +00:00
|
|
|
frame.swap(frameBuffer[scope.startIndex1]);
|
2023-03-30 20:09:53 +00:00
|
|
|
currentBufferIndex = frameBufferIndices[scope.startIndex1];
|
2023-01-15 22:34:02 +00:00
|
|
|
} else if (scope.blockSize2 > 0) {
|
|
|
|
frame.swap(frameBuffer[scope.startIndex2]);
|
2023-03-30 20:09:53 +00:00
|
|
|
currentBufferIndex = frameBufferIndices[scope.startIndex2];
|
2023-01-15 17:01:27 +00:00
|
|
|
}
|
|
|
|
|
2023-01-15 22:34:02 +00:00
|
|
|
frameLength = Shape::totalLength(frame);
|
2023-01-15 17:01:27 +00:00
|
|
|
}
|
2023-07-01 14:29:53 +00:00
|
|
|
}
|
2023-01-15 17:01:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OscirenderAudioProcessor::updateLengthIncrement() {
|
2023-07-06 16:57:10 +00:00
|
|
|
double traceMaxValue = traceMaxEnabled ? actualTraceMax : 1.0;
|
|
|
|
double traceMinValue = traceMinEnabled ? actualTraceMin : 0.0;
|
|
|
|
double proportionalLength = (traceMaxValue - traceMinValue) * frameLength;
|
2023-07-10 21:00:36 +00:00
|
|
|
lengthIncrement = juce::jmax(proportionalLength / (currentSampleRate / frequency), MIN_LENGTH_INCREMENT);
|
2023-01-15 17:01:27 +00:00
|
|
|
}
|
|
|
|
|
2023-07-14 14:34:24 +00:00
|
|
|
void OscirenderAudioProcessor::processBlock(juce::AudioBuffer<float>& buffer, juce::MidiBuffer& midiMessages)
|
2023-01-09 21:58:49 +00:00
|
|
|
{
|
|
|
|
juce::ScopedNoDenormals noDenormals;
|
|
|
|
auto totalNumInputChannels = getTotalNumInputChannels();
|
|
|
|
auto totalNumOutputChannels = getTotalNumOutputChannels();
|
|
|
|
|
|
|
|
// In case we have more outputs than inputs, this code clears any output
|
|
|
|
// channels that didn't contain input data, (because these aren't
|
|
|
|
// guaranteed to be empty - they may contain garbage).
|
|
|
|
// This is here to avoid people getting screaming feedback
|
|
|
|
// when they first compile a plugin, but obviously you don't need to keep
|
|
|
|
// this code if your algorithm always overwrites all the output channels.
|
|
|
|
for (auto i = totalNumInputChannels; i < totalNumOutputChannels; ++i)
|
|
|
|
buffer.clear (i, 0, buffer.getNumSamples());
|
|
|
|
|
2023-01-15 17:01:27 +00:00
|
|
|
|
|
|
|
auto* channelData = buffer.getArrayOfWritePointers();
|
|
|
|
auto numSamples = buffer.getNumSamples();
|
2023-03-30 20:09:53 +00:00
|
|
|
|
|
|
|
if (invalidateFrameBuffer) {
|
|
|
|
frameFifo.reset();
|
|
|
|
// keeps getting the next frame until the frame comes from the file that we want to render.
|
|
|
|
// this MIGHT be hacky and cause issues later down the line, but for now it works as a
|
|
|
|
// solution to get instant changing of current file when pressing j and k.
|
|
|
|
while (currentBufferIndex != currentFile) {
|
|
|
|
updateFrame();
|
|
|
|
}
|
|
|
|
invalidateFrameBuffer = false;
|
|
|
|
}
|
2023-01-15 17:01:27 +00:00
|
|
|
|
|
|
|
for (auto sample = 0; sample < numSamples; ++sample) {
|
|
|
|
updateLengthIncrement();
|
2023-07-06 16:57:10 +00:00
|
|
|
|
|
|
|
traceMaxEnabled = false;
|
|
|
|
traceMinEnabled = false;
|
2023-03-25 20:24:10 +00:00
|
|
|
|
|
|
|
Vector2 channels;
|
2023-01-15 17:01:27 +00:00
|
|
|
double x = 0.0;
|
|
|
|
double y = 0.0;
|
|
|
|
|
2023-07-04 19:47:54 +00:00
|
|
|
|
|
|
|
std::shared_ptr<FileParser> sampleParser;
|
|
|
|
{
|
|
|
|
juce::SpinLock::ScopedLockType lock(parsersLock);
|
|
|
|
if (currentFile >= 0 && parsers[currentFile]->isSample()) {
|
|
|
|
sampleParser = parsers[currentFile];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bool renderingSample = sampleParser != nullptr;
|
2023-07-01 14:29:53 +00:00
|
|
|
|
|
|
|
if (renderingSample) {
|
2023-07-04 19:47:54 +00:00
|
|
|
channels = sampleParser->nextSample();
|
2023-07-01 14:29:53 +00:00
|
|
|
} else if (currentShape < frame.size()) {
|
2023-01-15 17:01:27 +00:00
|
|
|
auto& shape = frame[currentShape];
|
2023-07-06 16:57:10 +00:00
|
|
|
double length = shape->length();
|
2023-01-15 17:01:27 +00:00
|
|
|
double drawingProgress = length == 0.0 ? 1 : shapeDrawn / length;
|
2023-03-25 20:24:10 +00:00
|
|
|
channels = shape->nextVector(drawingProgress);
|
2023-01-15 17:01:27 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 14:17:17 +00:00
|
|
|
{
|
2023-07-22 17:42:30 +00:00
|
|
|
juce::SpinLock::ScopedLockType lock1(parsersLock);
|
|
|
|
juce::SpinLock::ScopedLockType lock2(effectsLock);
|
2023-07-18 16:25:09 +00:00
|
|
|
for (auto& effect : toggleableEffects) {
|
2023-07-18 18:20:54 +00:00
|
|
|
if (effect->enabled->getValue()) {
|
2023-07-18 16:25:09 +00:00
|
|
|
channels = effect->apply(sample, channels);
|
|
|
|
}
|
2023-07-05 14:17:17 +00:00
|
|
|
}
|
2023-07-14 14:34:24 +00:00
|
|
|
for (auto& effect : permanentEffects) {
|
|
|
|
channels = effect->apply(sample, channels);
|
|
|
|
}
|
2023-07-05 14:17:17 +00:00
|
|
|
}
|
2023-03-25 20:24:10 +00:00
|
|
|
|
|
|
|
x = channels.x;
|
|
|
|
y = channels.y;
|
2023-07-05 11:02:28 +00:00
|
|
|
|
2023-07-10 16:42:22 +00:00
|
|
|
x *= volume;
|
|
|
|
y *= volume;
|
|
|
|
|
|
|
|
// clip
|
2023-07-10 21:00:36 +00:00
|
|
|
x = juce::jmax(-threshold, juce::jmin(threshold.load(), x));
|
|
|
|
y = juce::jmax(-threshold, juce::jmin(threshold.load(), y));
|
2023-07-01 14:29:53 +00:00
|
|
|
|
2023-01-15 17:01:27 +00:00
|
|
|
if (totalNumOutputChannels >= 2) {
|
|
|
|
channelData[0][sample] = x;
|
|
|
|
channelData[1][sample] = y;
|
|
|
|
} else if (totalNumOutputChannels == 1) {
|
|
|
|
channelData[0][sample] = x;
|
|
|
|
}
|
2023-07-06 16:57:10 +00:00
|
|
|
|
2023-07-08 12:25:35 +00:00
|
|
|
audioProducer.write(x, y);
|
|
|
|
|
2023-07-14 14:34:24 +00:00
|
|
|
actualTraceMax = juce::jmax(actualTraceMin + MIN_TRACE, juce::jmin(traceMaxValue, 1.0));
|
|
|
|
actualTraceMin = juce::jmax(MIN_TRACE, juce::jmin(traceMinValue, actualTraceMax - MIN_TRACE));
|
2023-01-15 17:01:27 +00:00
|
|
|
|
2023-07-01 14:29:53 +00:00
|
|
|
if (!renderingSample) {
|
2023-07-06 16:57:10 +00:00
|
|
|
incrementShapeDrawing();
|
2023-07-01 14:29:53 +00:00
|
|
|
}
|
2023-07-06 16:57:10 +00:00
|
|
|
|
|
|
|
double drawnFrameLength = traceMaxEnabled ? actualTraceMax * frameLength : frameLength;
|
2023-01-15 17:01:27 +00:00
|
|
|
|
2023-07-06 16:57:10 +00:00
|
|
|
if (!renderingSample && frameDrawn >= drawnFrameLength) {
|
2023-07-01 14:29:53 +00:00
|
|
|
updateFrame();
|
2023-07-22 17:42:30 +00:00
|
|
|
// TODO: updateFrame already iterates over all the shapes,
|
|
|
|
// so we can improve performance by calculating frameDrawn
|
|
|
|
// and shapeDrawn directly. frameDrawn is simply actualTraceMin * frameLength
|
|
|
|
// but shapeDrawn is the amount of the current shape that has been drawn so
|
|
|
|
// we need to iterate over all the shapes to calculate it.
|
2023-07-06 16:57:10 +00:00
|
|
|
if (traceMinEnabled) {
|
|
|
|
while (frameDrawn < actualTraceMin * frameLength) {
|
|
|
|
incrementShapeDrawing();
|
|
|
|
}
|
|
|
|
}
|
2023-07-01 14:29:53 +00:00
|
|
|
}
|
2023-01-15 17:01:27 +00:00
|
|
|
}
|
2023-01-09 21:58:49 +00:00
|
|
|
}
|
|
|
|
|
2023-07-22 17:42:30 +00:00
|
|
|
// TODO this is the slowest part of the program - any way to improve this would help!
|
2023-07-06 16:57:10 +00:00
|
|
|
void OscirenderAudioProcessor::incrementShapeDrawing() {
|
|
|
|
double length = currentShape < frame.size() ? frame[currentShape]->len : 0.0;
|
|
|
|
// hard cap on how many times it can be over the length to
|
|
|
|
// prevent audio stuttering
|
2023-07-22 17:42:30 +00:00
|
|
|
auto increment = juce::jmin(lengthIncrement, 20 * length);
|
|
|
|
frameDrawn += increment;
|
|
|
|
shapeDrawn += increment;
|
2023-07-06 16:57:10 +00:00
|
|
|
|
|
|
|
// Need to skip all shapes that the lengthIncrement draws over.
|
|
|
|
// This is especially an issue when there are lots of small lines being
|
|
|
|
// drawn.
|
|
|
|
while (shapeDrawn > length) {
|
|
|
|
shapeDrawn -= length;
|
|
|
|
currentShape++;
|
|
|
|
if (currentShape >= frame.size()) {
|
|
|
|
currentShape = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// POTENTIAL TODO: Think of a way to make this more efficient when iterating
|
|
|
|
// this loop many times
|
|
|
|
length = frame[currentShape]->len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-09 21:58:49 +00:00
|
|
|
//==============================================================================
|
2023-07-25 11:23:27 +00:00
|
|
|
bool OscirenderAudioProcessor::hasEditor() const {
|
2023-01-09 21:58:49 +00:00
|
|
|
return true; // (change this to false if you choose to not supply an editor)
|
|
|
|
}
|
|
|
|
|
2023-07-25 11:23:27 +00:00
|
|
|
juce::AudioProcessorEditor* OscirenderAudioProcessor::createEditor() {
|
2023-07-28 20:10:21 +00:00
|
|
|
auto editor = new OscirenderAudioProcessorEditor(*this);
|
|
|
|
return editor;
|
2023-01-09 21:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==============================================================================
|
2023-07-25 11:23:27 +00:00
|
|
|
void OscirenderAudioProcessor::getStateInformation(juce::MemoryBlock& destData) {
|
|
|
|
juce::SpinLock::ScopedLockType lock1(parsersLock);
|
|
|
|
juce::SpinLock::ScopedLockType lock2(effectsLock);
|
|
|
|
|
|
|
|
std::unique_ptr<juce::XmlElement> xml = std::make_unique<juce::XmlElement>("project");
|
|
|
|
xml->setAttribute("version", ProjectInfo::versionString);
|
|
|
|
auto effectsXml = xml->createNewChildElement("effects");
|
|
|
|
for (auto effect : allEffects) {
|
|
|
|
effect->save(effectsXml->createNewChildElement("effect"));
|
|
|
|
}
|
2023-07-25 13:09:21 +00:00
|
|
|
|
|
|
|
auto booleanParametersXml = xml->createNewChildElement("booleanParameters");
|
|
|
|
for (auto parameter : booleanParameters) {
|
|
|
|
auto parameterXml = booleanParametersXml->createNewChildElement("parameter");
|
|
|
|
parameter->save(parameterXml);
|
|
|
|
}
|
|
|
|
|
2023-07-25 11:23:27 +00:00
|
|
|
auto perspectiveFunction = xml->createNewChildElement("perspectiveFunction");
|
|
|
|
perspectiveFunction->addTextElement(juce::Base64::toBase64(perspectiveEffect->getCode()));
|
|
|
|
auto filesXml = xml->createNewChildElement("files");
|
|
|
|
|
|
|
|
for (int i = 0; i < fileBlocks.size(); i++) {
|
|
|
|
auto fileXml = filesXml->createNewChildElement("file");
|
|
|
|
fileXml->setAttribute("name", fileNames[i]);
|
|
|
|
auto fileString = juce::MemoryInputStream(*fileBlocks[i], false).readEntireStreamAsString();
|
|
|
|
fileXml->addTextElement(juce::Base64::toBase64(fileString));
|
|
|
|
}
|
|
|
|
xml->setAttribute("currentFile", currentFile);
|
|
|
|
copyXmlToBinary(*xml, destData);
|
2023-01-09 21:58:49 +00:00
|
|
|
}
|
|
|
|
|
2023-07-25 11:23:27 +00:00
|
|
|
void OscirenderAudioProcessor::setStateInformation(const void* data, int sizeInBytes) {
|
2023-07-28 12:55:44 +00:00
|
|
|
std::unique_ptr<juce::XmlElement> xml;
|
2023-07-25 13:09:21 +00:00
|
|
|
|
2023-07-28 12:55:44 +00:00
|
|
|
const uint32_t magicXmlNumber = 0x21324356;
|
|
|
|
if (sizeInBytes > 8 && juce::ByteOrder::littleEndianInt(data) == magicXmlNumber) {
|
|
|
|
// this is a binary xml format
|
|
|
|
xml = getXmlFromBinary(data, sizeInBytes);
|
|
|
|
} else {
|
|
|
|
// this is a text xml format
|
|
|
|
xml = juce::XmlDocument::parse(juce::String((const char*)data, sizeInBytes));
|
|
|
|
}
|
2023-07-25 13:09:21 +00:00
|
|
|
|
|
|
|
if (xml.get() != nullptr && xml->hasTagName("project")) {
|
2023-07-28 12:55:44 +00:00
|
|
|
auto versionXml = xml->getChildByName("version");
|
|
|
|
if (versionXml != nullptr && versionXml->getAllSubText().startsWith("v1.")) {
|
|
|
|
openLegacyProject(xml.get());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
juce::SpinLock::ScopedLockType lock1(parsersLock);
|
|
|
|
juce::SpinLock::ScopedLockType lock2(effectsLock);
|
|
|
|
|
2023-07-25 13:09:21 +00:00
|
|
|
auto effectsXml = xml->getChildByName("effects");
|
|
|
|
if (effectsXml != nullptr) {
|
|
|
|
for (auto effectXml : effectsXml->getChildIterator()) {
|
|
|
|
auto effect = getEffect(effectXml->getStringAttribute("id"));
|
|
|
|
if (effect != nullptr) {
|
|
|
|
effect->load(effectXml);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
updateEffectPrecedence();
|
|
|
|
|
|
|
|
auto booleanParametersXml = xml->getChildByName("booleanParameters");
|
|
|
|
if (booleanParametersXml != nullptr) {
|
|
|
|
for (auto parameterXml : booleanParametersXml->getChildIterator()) {
|
|
|
|
auto parameter = getBooleanParameter(parameterXml->getStringAttribute("id"));
|
|
|
|
if (parameter != nullptr) {
|
|
|
|
parameter->load(parameterXml);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto perspectiveFunction = xml->getChildByName("perspectiveFunction");
|
|
|
|
if (perspectiveFunction != nullptr) {
|
|
|
|
auto stream = juce::MemoryOutputStream();
|
|
|
|
juce::Base64::convertFromBase64(stream, perspectiveFunction->getAllSubText());
|
|
|
|
perspectiveEffect->updateCode(stream.toString());
|
|
|
|
}
|
|
|
|
// close all files
|
|
|
|
auto numFiles = fileBlocks.size();
|
|
|
|
for (int i = 0; i < numFiles; i++) {
|
|
|
|
removeFile(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto filesXml = xml->getChildByName("files");
|
|
|
|
if (filesXml != nullptr) {
|
|
|
|
for (auto fileXml : filesXml->getChildIterator()) {
|
|
|
|
auto fileName = fileXml->getStringAttribute("name");
|
|
|
|
auto stream = juce::MemoryOutputStream();
|
|
|
|
juce::Base64::convertFromBase64(stream, fileXml->getAllSubText());
|
|
|
|
auto fileBlock = std::make_shared<juce::MemoryBlock>(stream.getData(), stream.getDataSize());
|
|
|
|
addFile(fileName, fileBlock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
changeCurrentFile(xml->getIntAttribute("currentFile", -1));
|
|
|
|
broadcaster.sendChangeMessage();
|
|
|
|
}
|
2023-01-09 21:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//==============================================================================
|
|
|
|
// This creates new instances of the plugin..
|
|
|
|
juce::AudioProcessor* JUCE_CALLTYPE createPluginFilter()
|
|
|
|
{
|
|
|
|
return new OscirenderAudioProcessor();
|
|
|
|
}
|