Add Starling Via (#636)
* adding Starling Via * update StarlingVia with async file dialogs; adjust plugins/Makefile * include plugin binaries * custom defines for StarlingVia * extern StarlingVia * update starlingvia * use newer StarlingVia commit * Fix memory issues in StarlingVia Signed-off-by: falkTX <falktx@falktx.com> --------- Signed-off-by: falkTX <falktx@falktx.com> Co-authored-by: dreamer <dreamer@puikheid.nl> Co-authored-by: dreamer <1185977+dromer@users.noreply.github.com>
This commit is contained in:
parent
106c6dd3d9
commit
0f405dd45b
6 changed files with 79 additions and 3 deletions
|
@ -782,6 +782,16 @@ void addThemeMenuItems(Menu*, ModuleTheme*) {}
|
|||
// sonusmodular
|
||||
#include "sonusmodular/src/sonusmodular.hpp"
|
||||
|
||||
|
||||
// Starling Via
|
||||
#define modelScanner modelStarlingViaScanner
|
||||
#define Scale starlingViaScale
|
||||
#define Wavetable starlingViaWavetable
|
||||
#include "StarlingVia/src/starling.hpp"
|
||||
#undef modelScanner
|
||||
#undef Scale
|
||||
#undef Wavetable
|
||||
|
||||
// stocaudio
|
||||
#include "stocaudio/src/plugin.hpp"
|
||||
|
||||
|
@ -914,6 +924,7 @@ Plugin* pluginInstance__RebelTech;
|
|||
Plugin* pluginInstance__repelzen;
|
||||
Plugin* pluginInstance__sapphire;
|
||||
Plugin* pluginInstance__sonusmodular;
|
||||
extern Plugin* pluginInstance__StarlingVia;
|
||||
Plugin* pluginInstance__stocaudio;
|
||||
extern Plugin* pluginInstance__stoermelder_p1;
|
||||
Plugin* pluginInstance__surgext;
|
||||
|
@ -2987,6 +2998,33 @@ static void initStatic__sonusmodular()
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
static void initStatic__StarlingVia()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
pluginInstance__StarlingVia = p;
|
||||
|
||||
const StaticPluginLoader spl(p, "StarlingVia");
|
||||
if (spl.ok())
|
||||
{
|
||||
#define modelScanner modelStarlingViaScanner
|
||||
#define Scale starlingViaScale
|
||||
#define Wavetable starlingViaWavetable
|
||||
p->addModel(modelMeta);
|
||||
p->addModel(modelGateseq);
|
||||
p->addModel(modelScanner);
|
||||
p->addModel(modelSync);
|
||||
p->addModel(modelAtsr);
|
||||
p->addModel(modelOsc3);
|
||||
p->addModel(modelSync3);
|
||||
p->addModel(modelSync3XL);
|
||||
p->addModel(modelSync3XLLevels);
|
||||
#undef modelScanner
|
||||
#undef Scale
|
||||
#undef Wavetable
|
||||
}
|
||||
}
|
||||
|
||||
static void initStatic__stocaudio()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
|
@ -3329,6 +3367,7 @@ void initStaticPlugins()
|
|||
initStatic__repelzen();
|
||||
initStatic__Sapphire();
|
||||
initStatic__sonusmodular();
|
||||
initStatic__StarlingVia();
|
||||
initStatic__stocaudio();
|
||||
initStatic__stoermelder_p1();
|
||||
initStatic__surgext();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue