@@ -320,6 +320,23 @@ extern Model* modelTestVCF;
320320#include " DrumKit/src/DrumKit.hpp"
321321void setupSamples ();
322322
323+ // dBiz
324+ #define darkPanelID dBizdarkPanelID
325+ #define DarkDefaultItem dBizDarkDefaultItem
326+ #define lightPanelID dBizlightPanelID
327+ #define OrangeLight dBizOrangeLight
328+ #define modelChord modeldBizChord
329+ #define modelVCA4 modeldBizVCA4
330+ #define modelDivider modeldBizDivider
331+ #include " dBiz/src/plugin.hpp"
332+ #undef darkPanelID
333+ #undef DarkDefaultItem
334+ #undef lightPanelID
335+ #undef OrangeLight
336+ #undef modelChord
337+ #undef modelVCA4
338+ #undef modelDivider
339+
323340// ESeries
324341#include " ESeries/src/plugin.hpp"
325342
@@ -719,6 +736,7 @@ std::vector<Model*> hostTerminalModels;
719736
720737// stuff that reads config files, we dont want that
721738int loadConsoleType () { return 0 ; }
739+ bool loadDarkAsDefault () { return 1 ; }
722740int loadDirectOutMode () { return 0 ; }
723741void saveConsoleType (int ) {}
724742void saveDarkAsDefault (bool ) {}
@@ -750,6 +768,7 @@ Plugin* pluginInstance__BogaudioModules;
750768Plugin* pluginInstance__CatroModulo;
751769Plugin* pluginInstance__cf;
752770Plugin* pluginInstance__ChowDSP;
771+ Plugin* pluginInstance__dBiz;
753772extern Plugin* pluginInstance__DrumKit;
754773Plugin* pluginInstance__ESeries;
755774Plugin* pluginInstance__ExpertSleepersEncoders;
@@ -1709,6 +1728,56 @@ static void initStatic__ChowDSP()
17091728 }
17101729}
17111730
1731+ static void initStatic__dBiz ()
1732+ {
1733+ Plugin* const p = new Plugin;
1734+ pluginInstance__dBiz = p;
1735+
1736+ const StaticPluginLoader spl (p, " dBiz" );
1737+ if (spl.ok ())
1738+ {
1739+ #define modelChord modeldBizChord
1740+ #define modelVCA4 modeldBizVCA4
1741+ #define modelDivider modeldBizDivider
1742+ p->addModel (modelNavControl);
1743+ p->addModel (modelBench);
1744+ p->addModel (modelContorno);
1745+ // p->addModel(modelContornoMK2);
1746+ p->addModel (modelTranspose);
1747+ p->addModel (modelUtility);
1748+ p->addModel (modelChord);
1749+ p->addModel (modelBene);
1750+ p->addModel (modelBenePads);
1751+ p->addModel (modelPerfMixer);
1752+ p->addModel (modelDrMix);
1753+ p->addModel (modelPerfMixer4);
1754+ p->addModel (modelVCA4);
1755+ p->addModel (modelVCA530);
1756+ p->addModel (modelRemix);
1757+ p->addModel (modelSmixer);
1758+ p->addModel (modelVerbo);
1759+ p->addModel (modelDVCO);
1760+ p->addModel (modelDAOSC);
1761+ p->addModel (modelTROSC);
1762+ p->addModel (modelTROSCMK2);
1763+ p->addModel (modelSuHa);
1764+ p->addModel (modelSuHaMK2);
1765+ p->addModel (modelFourSeq);
1766+ p->addModel (modelDivider);
1767+ p->addModel (modelUtil2);
1768+ p->addModel (modelSmorph);
1769+ p->addModel (modelBigSmorph);
1770+ p->addModel (modelSPan);
1771+ p->addModel (modelQuePasa);
1772+ p->addModel (modelDualFilter);
1773+ p->addModel (modelOrder);
1774+ p->addModel (modelDualMatrix);
1775+ #undef modelChord
1776+ #undef modelVCA4
1777+ #undef modelDivider
1778+ }
1779+ }
1780+
17121781static void initStatic__DrumKit ()
17131782{
17141783 Plugin* const p = new Plugin;
@@ -2793,6 +2862,7 @@ void initStaticPlugins()
27932862 initStatic__CatroModulo ();
27942863 initStatic__cf ();
27952864 initStatic__ChowDSP ();
2865+ initStatic__dBiz ();
27962866 initStatic__DrumKit ();
27972867 initStatic__ESeries ();
27982868 initStatic__ExpertSleepersEncoders ();
0 commit comments