Add AmalgamatedHarmonics; Make UI resizable

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2021-10-19 12:47:29 +01:00
parent 23f0966be0
commit 9b872dfd50
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
7 changed files with 55 additions and 4 deletions

View file

@ -19,6 +19,9 @@
#include "DistrhoUtils.hpp"
// AmalgamatedHarmonics
#include "AmalgamatedHarmonics/src/AH.hpp"
// AnimatedCircuits
#include "AnimatedCircuits/src/plugin.hpp"
@ -230,6 +233,7 @@ void saveDirectOutMode(bool) {}
void saveHighQualityAsDefault(bool) {}
// plugin instances
Plugin* pluginInstance__AmalgamatedHarmonics;
Plugin* pluginInstance__AnimatedCircuits;
Plugin* pluginInstance__AS;
Plugin* pluginInstance__AudibleInstruments;
@ -369,6 +373,38 @@ static void initStatic__Core()
}
}
static void initStatic__AmalgamatedHarmonics()
{
Plugin* const p = new Plugin;
pluginInstance__AmalgamatedHarmonics = p;
const StaticPluginLoader spl(p, "AmalgamatedHarmonics");
if (spl.ok())
{
p->addModel(modelArp31);
p->addModel(modelArp32);
p->addModel(modelBombe);
p->addModel(modelChord);
p->addModel(modelCircle);
p->addModel(modelGalaxy);
p->addModel(modelGenerative);
p->addModel(modelImp);
p->addModel(modelImperfect2);
p->addModel(modelProgress2);
p->addModel(modelRuckus);
p->addModel(modelScaleQuantizer2);
p->addModel(modelSLN);
p->addModel(modelMuxDeMux);
p->addModel(modelPolyProbe);
p->addModel(modelPolyScope);
p->addModel(modelPolyUtils);
p->addModel(modelPolyVolt);
p->addModel(modelScaleQuantizer);
p->addModel(modelArpeggiator2);
p->addModel(modelProgress);
}
}
static void initStatic__AnimatedCircuits()
{
Plugin* const p = new Plugin;
@ -961,6 +997,7 @@ static void initStatic__ZetaCarinaeModules()
void initStaticPlugins()
{
initStatic__Core();
initStatic__AmalgamatedHarmonics();
initStatic__AnimatedCircuits();
initStatic__AS();
initStatic__AudibleInstruments();