Reintroduce AS modules
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
7e1da35de7
commit
73af70de01
6 changed files with 104 additions and 1 deletions
|
|
@ -77,6 +77,17 @@ extern Model* modelUndular;
|
|||
extern Model* modelBlank;
|
||||
#undef modelBlank
|
||||
|
||||
// AS
|
||||
#define modelADSR modelASADSR
|
||||
#define modelVCA modelASVCA
|
||||
#define LedLight ASLedLight
|
||||
#define YellowRedLight ASYellowRedLight
|
||||
#include "AS/src/AS.hpp"
|
||||
#undef modelADSR
|
||||
#undef modelVCA
|
||||
#undef LedLight
|
||||
#undef YellowRedLight
|
||||
|
||||
// AudibleInstruments
|
||||
#include "AudibleInstruments/src/plugin.hpp"
|
||||
|
||||
|
|
@ -705,6 +716,7 @@ Plugin* pluginInstance__AmalgamatedHarmonics;
|
|||
Plugin* pluginInstance__ArableInstruments;
|
||||
Plugin* pluginInstance__AnimatedCircuits;
|
||||
Plugin* pluginInstance__Aria;
|
||||
Plugin* pluginInstance__AS;
|
||||
Plugin* pluginInstance__AudibleInstruments;
|
||||
extern Plugin* pluginInstance__Autinn;
|
||||
Plugin* pluginInstance__Axioma;
|
||||
|
|
@ -1100,6 +1112,68 @@ static void initStatic__Aria()
|
|||
}
|
||||
}
|
||||
|
||||
static void initStatic__AS()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
pluginInstance__AS = p;
|
||||
const StaticPluginLoader spl(p, "AS");
|
||||
if (spl.ok())
|
||||
{
|
||||
#define modelADSR modelASADSR
|
||||
#define modelVCA modelASVCA
|
||||
//OSCILLATORS
|
||||
p->addModel(modelSineOsc);
|
||||
p->addModel(modelSawOsc);
|
||||
//TOOLS
|
||||
p->addModel(modelADSR);
|
||||
p->addModel(modelVCA);
|
||||
p->addModel(modelQuadVCA);
|
||||
p->addModel(modelTriLFO);
|
||||
p->addModel(modelAtNuVrTr);
|
||||
p->addModel(modelBPMClock);
|
||||
p->addModel(modelSEQ16);
|
||||
p->addModel(modelMixer2ch);
|
||||
p->addModel(modelMixer4ch);
|
||||
p->addModel(modelMixer8ch);
|
||||
p->addModel(modelMonoVUmeter);
|
||||
p->addModel(modelStereoVUmeter);
|
||||
p->addModel(modelMultiple2_5);
|
||||
p->addModel(modelMerge2_5);
|
||||
p->addModel(modelSteps);
|
||||
p->addModel(modelLaunchGate);
|
||||
p->addModel(modelKillGate);
|
||||
p->addModel(modelFlow);
|
||||
p->addModel(modelSignalDelay);
|
||||
p->addModel(modelTriggersMKI);
|
||||
p->addModel(modelTriggersMKII);
|
||||
p->addModel(modelTriggersMKIII);
|
||||
p->addModel(modelBPMCalc);
|
||||
p->addModel(modelBPMCalc2);
|
||||
p->addModel(modelCv2T);
|
||||
p->addModel(modelZeroCV2T);
|
||||
p->addModel(modelReScale);
|
||||
//EFFECTS
|
||||
p->addModel(modelDelayPlusFx);
|
||||
p->addModel(modelDelayPlusStereoFx);
|
||||
p->addModel(modelPhaserFx);
|
||||
p->addModel(modelReverbFx);
|
||||
p->addModel(modelReverbStereoFx);
|
||||
p->addModel(modelSuperDriveFx);
|
||||
p->addModel(modelSuperDriveStereoFx);
|
||||
p->addModel(modelTremoloFx);
|
||||
p->addModel(modelTremoloStereoFx);
|
||||
p->addModel(modelWaveShaper);
|
||||
p->addModel(modelWaveShaperStereo);
|
||||
//BLANK PANELS
|
||||
p->addModel(modelBlankPanel4);
|
||||
p->addModel(modelBlankPanel6);
|
||||
p->addModel(modelBlankPanel8);
|
||||
p->addModel(modelBlankPanelSpecial);
|
||||
#undef modelADSR
|
||||
#undef modelVCA
|
||||
}
|
||||
}
|
||||
|
||||
static void initStatic__AudibleInstruments()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
|
|
@ -2577,6 +2651,7 @@ void initStaticPlugins()
|
|||
initStatic__AnimatedCircuits();
|
||||
initStatic__ArableInstruments();
|
||||
initStatic__Aria();
|
||||
initStatic__AS();
|
||||
initStatic__AudibleInstruments();
|
||||
initStatic__Autinn();
|
||||
initStatic__Axioma();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue