Add EnigmaCurry (#573)
* Build EnigmaCurry plugin * Add to docs/LICENSES.md * add back the bogaudio namespace for modelPulse - still seems necessary. * Revert "add back the bogaudio namespace for modelPulse - still seems necessary." This reverts commit 2b7c68cc45dd435093894aaf51590f40c58493f4. * Adds artwork and font license information and add to main README.
This commit is contained in:
parent
3ede7c2b05
commit
97f6eb6a1c
6 changed files with 50 additions and 0 deletions
|
|
@ -339,6 +339,11 @@ extern Model* modelTestVCF;
|
|||
#include "DrumKit/src/DrumKit.hpp"
|
||||
void setupSamples();
|
||||
|
||||
// EnigmaCurry
|
||||
#define modelPulse modelEnigmaCurryPulse
|
||||
#include "EnigmaCurry/src/plugin.hpp"
|
||||
#undef modelPulse
|
||||
|
||||
// ESeries
|
||||
#include "ESeries/src/plugin.hpp"
|
||||
|
||||
|
|
@ -816,6 +821,7 @@ Plugin* pluginInstance__cf;
|
|||
Plugin* pluginInstance__ChowDSP;
|
||||
Plugin* pluginInstance__dBiz;
|
||||
extern Plugin* pluginInstance__DrumKit;
|
||||
Plugin* pluginInstance__EnigmaCurry;
|
||||
Plugin* pluginInstance__ESeries;
|
||||
Plugin* pluginInstance__ExpertSleepersEncoders;
|
||||
Plugin* pluginInstance__Extratone;
|
||||
|
|
@ -1852,6 +1858,24 @@ static void initStatic__DrumKit()
|
|||
}
|
||||
}
|
||||
|
||||
static void initStatic__EnigmaCurry()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
pluginInstance__EnigmaCurry = p;
|
||||
|
||||
const StaticPluginLoader spl(p, "EnigmaCurry");
|
||||
if (spl.ok())
|
||||
{
|
||||
#define modelPulse modelEnigmaCurryPulse
|
||||
p->addModel(modelTransport);
|
||||
p->addModel(modelLatch);
|
||||
p->addModel(modelPulse);
|
||||
p->addModel(modelRange);
|
||||
#undef modelPulse
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static void initStatic__ESeries()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
|
|
@ -3077,6 +3101,7 @@ void initStaticPlugins()
|
|||
initStatic__ChowDSP();
|
||||
initStatic__dBiz();
|
||||
initStatic__DrumKit();
|
||||
initStatic__EnigmaCurry();
|
||||
initStatic__ESeries();
|
||||
initStatic__ExpertSleepersEncoders();
|
||||
initStatic__Extratone();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue