Add Sonus Modular
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
2efe665a6e
commit
faf57ff096
9 changed files with 64 additions and 0 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -88,3 +88,6 @@
|
||||||
[submodule "plugins/FehlerFabrik"]
|
[submodule "plugins/FehlerFabrik"]
|
||||||
path = plugins/FehlerFabrik
|
path = plugins/FehlerFabrik
|
||||||
url = https://github.com/RCameron93/FehlerFabrik.git
|
url = https://github.com/RCameron93/FehlerFabrik.git
|
||||||
|
[submodule "plugins/sonusmodular"]
|
||||||
|
path = plugins/sonusmodular
|
||||||
|
url = https://gitlab.com/sonusdept/sonusmodular.git
|
||||||
|
|
|
||||||
|
|
@ -71,6 +71,7 @@ At the moment the following 3rd-party modules are provided:
|
||||||
- mscHack
|
- mscHack
|
||||||
- Rackwindows
|
- Rackwindows
|
||||||
- repelzen
|
- repelzen
|
||||||
|
- Sonus Modular
|
||||||
- Valley
|
- Valley
|
||||||
- ZZC (*)
|
- ZZC (*)
|
||||||
- ZetaCarinae
|
- ZetaCarinae
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,7 @@ Bellow follows a list of all code licenses used in Cardinal and linked submodule
|
||||||
| mscHack | BSD-3-Clause | |
|
| mscHack | BSD-3-Clause | |
|
||||||
| Rackwindows | MIT | |
|
| Rackwindows | MIT | |
|
||||||
| repelzen | GPL-3.0-or-later | |
|
| repelzen | GPL-3.0-or-later | |
|
||||||
|
| Sonus Modular | GPL-3.0-or-later | |
|
||||||
| Valley | GPL-3.0-or-later | |
|
| Valley | GPL-3.0-or-later | |
|
||||||
| ZZC | GPL-3.0-only | GPLv3+ change request https://github.com/zezic/ZZC/issues/86 |
|
| ZZC | GPL-3.0-only | GPLv3+ change request https://github.com/zezic/ZZC/issues/86 |
|
||||||
| ZetaCarinae | GPL-3.0-or-later | |
|
| ZetaCarinae | GPL-3.0-or-later | |
|
||||||
|
|
|
||||||
|
|
@ -482,6 +482,11 @@ PLUGIN_FILES += $(filter-out repelzen/src/repelzen.cpp,$(wildcard repelzen/src/*
|
||||||
# modules/types which are present in other plugins
|
# modules/types which are present in other plugins
|
||||||
REPELZEN_CUSTOM = Blank Mixer tanh_pade
|
REPELZEN_CUSTOM = Blank Mixer tanh_pade
|
||||||
|
|
||||||
|
# --------------------------------------------------------------
|
||||||
|
# sonusmodular
|
||||||
|
|
||||||
|
PLUGIN_FILES += $(filter-out sonusmodular/src/sonusmodular,$(wildcard sonusmodular/src/*.cpp))
|
||||||
|
|
||||||
# --------------------------------------------------------------
|
# --------------------------------------------------------------
|
||||||
# ValleyAudio
|
# ValleyAudio
|
||||||
|
|
||||||
|
|
@ -1014,6 +1019,13 @@ $(BUILD_DIR)/repelzen/%.cpp.o: repelzen/%.cpp
|
||||||
$(foreach m,$(REPELZEN_CUSTOM),$(call custom_module_names,$(m),repelzen)) \
|
$(foreach m,$(REPELZEN_CUSTOM),$(call custom_module_names,$(m),repelzen)) \
|
||||||
-DpluginInstance=pluginInstance__repelzen
|
-DpluginInstance=pluginInstance__repelzen
|
||||||
|
|
||||||
|
$(BUILD_DIR)/sonusmodular/%.cpp.o: sonusmodular/%.cpp
|
||||||
|
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||||
|
@echo "Compiling $<"
|
||||||
|
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||||
|
$(foreach m,$(SONUSMODULAR_CUSTOM),$(call custom_module_names,$(m),sonusmodular)) \
|
||||||
|
-DpluginInstance=pluginInstance__sonusmodular
|
||||||
|
|
||||||
$(BUILD_DIR)/ValleyAudio/%.cpp.o: ValleyAudio/%.cpp
|
$(BUILD_DIR)/ValleyAudio/%.cpp.o: ValleyAudio/%.cpp
|
||||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||||
@echo "Compiling $<"
|
@echo "Compiling $<"
|
||||||
|
|
|
||||||
|
|
@ -335,6 +335,9 @@ extern Model *modelMaude_221;
|
||||||
#undef modelMixer
|
#undef modelMixer
|
||||||
#undef tanh_pade
|
#undef tanh_pade
|
||||||
|
|
||||||
|
// sonusmodular
|
||||||
|
#include "sonusmodular/src/sonusmodular.hpp"
|
||||||
|
|
||||||
// ValleyAudio
|
// ValleyAudio
|
||||||
#include "ValleyAudio/src/Valley.hpp"
|
#include "ValleyAudio/src/Valley.hpp"
|
||||||
|
|
||||||
|
|
@ -384,6 +387,7 @@ extern Plugin* pluginInstance__MindMeld;
|
||||||
extern Plugin* pluginInstance__mscHack;
|
extern Plugin* pluginInstance__mscHack;
|
||||||
Plugin* pluginInstance__rackwindows;
|
Plugin* pluginInstance__rackwindows;
|
||||||
Plugin* pluginInstance__repelzen;
|
Plugin* pluginInstance__repelzen;
|
||||||
|
Plugin* pluginInstance__sonusmodular;
|
||||||
Plugin* pluginInstance__ValleyAudio;
|
Plugin* pluginInstance__ValleyAudio;
|
||||||
Plugin* pluginInstance__ZetaCarinaeModules;
|
Plugin* pluginInstance__ZetaCarinaeModules;
|
||||||
Plugin* pluginInstance__ZZC;
|
Plugin* pluginInstance__ZZC;
|
||||||
|
|
@ -1359,6 +1363,44 @@ static void initStatic__repelzen()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void initStatic__sonusmodular()
|
||||||
|
{
|
||||||
|
Plugin* const p = new Plugin;
|
||||||
|
pluginInstance__sonusmodular = p;
|
||||||
|
|
||||||
|
const StaticPluginLoader spl(p, "sonusmodular");
|
||||||
|
if (spl.ok())
|
||||||
|
{
|
||||||
|
p->addModel(modelAddiction);
|
||||||
|
p->addModel(modelBitter);
|
||||||
|
p->addModel(modelBymidside);
|
||||||
|
p->addModel(modelCampione);
|
||||||
|
p->addModel(modelChainsaw);
|
||||||
|
p->addModel(modelCtrl);
|
||||||
|
p->addModel(modelDeathcrush);
|
||||||
|
p->addModel(modelFraction);
|
||||||
|
p->addModel(modelHarmony);
|
||||||
|
p->addModel(modelLadrone);
|
||||||
|
p->addModel(modelLuppolo);
|
||||||
|
p->addModel(modelLuppolo3);
|
||||||
|
p->addModel(modelMicromacro);
|
||||||
|
p->addModel(modelMrcheb);
|
||||||
|
p->addModel(modelMultimulti);
|
||||||
|
p->addModel(modelNeurosc);
|
||||||
|
p->addModel(modelOktagon);
|
||||||
|
p->addModel(modelOsculum);
|
||||||
|
p->addModel(modelParamath);
|
||||||
|
p->addModel(modelPiconoise);
|
||||||
|
p->addModel(modelPith);
|
||||||
|
p->addModel(modelPusher);
|
||||||
|
p->addModel(modelRingo);
|
||||||
|
p->addModel(modelScramblase);
|
||||||
|
p->addModel(modelTropicana);
|
||||||
|
p->addModel(modelTwoff);
|
||||||
|
p->addModel(modelYabp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void initStatic__ValleyAudio()
|
static void initStatic__ValleyAudio()
|
||||||
{
|
{
|
||||||
Plugin* const p = new Plugin;
|
Plugin* const p = new Plugin;
|
||||||
|
|
@ -1447,6 +1489,7 @@ void initStaticPlugins()
|
||||||
initStatic__mscHack();
|
initStatic__mscHack();
|
||||||
initStatic__rackwindows();
|
initStatic__rackwindows();
|
||||||
initStatic__repelzen();
|
initStatic__repelzen();
|
||||||
|
initStatic__sonusmodular();
|
||||||
initStatic__ValleyAudio();
|
initStatic__ValleyAudio();
|
||||||
initStatic__ZetaCarinaeModules();
|
initStatic__ZetaCarinaeModules();
|
||||||
initStatic__ZZC();
|
initStatic__ZZC();
|
||||||
|
|
|
||||||
1
plugins/res/BaconPlugs
Symbolic link
1
plugins/res/BaconPlugs
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
../BaconPlugs/res/
|
||||||
1
plugins/res/FehlerFabrik
Symbolic link
1
plugins/res/FehlerFabrik
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
../FehlerFabrik/res
|
||||||
1
plugins/res/sonusmodular
Symbolic link
1
plugins/res/sonusmodular
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
../sonusmodular/res
|
||||||
1
plugins/sonusmodular
Submodule
1
plugins/sonusmodular
Submodule
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit b63a685c6c68be188f5a3d5d9f6582eb94d62e53
|
||||||
Loading…
Add table
Add a link
Reference in a new issue