1
Fork 0

Add Sonus Modular

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2021-12-04 19:41:30 +00:00
parent 2efe665a6e
commit faf57ff096
No known key found for this signature in database
GPG Key ID: CDBAA37ABC74FBA0
9 changed files with 64 additions and 0 deletions

3
.gitmodules vendored
View File

@ -88,3 +88,6 @@
[submodule "plugins/FehlerFabrik"]
path = plugins/FehlerFabrik
url = https://github.com/RCameron93/FehlerFabrik.git
[submodule "plugins/sonusmodular"]
path = plugins/sonusmodular
url = https://gitlab.com/sonusdept/sonusmodular.git

View File

@ -71,6 +71,7 @@ At the moment the following 3rd-party modules are provided:
- mscHack
- Rackwindows
- repelzen
- Sonus Modular
- Valley
- ZZC (*)
- ZetaCarinae

View File

@ -36,6 +36,7 @@ Bellow follows a list of all code licenses used in Cardinal and linked submodule
| mscHack | BSD-3-Clause | |
| Rackwindows | MIT | |
| repelzen | GPL-3.0-or-later | |
| Sonus Modular | 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 |
| ZetaCarinae | GPL-3.0-or-later | |

View File

@ -482,6 +482,11 @@ PLUGIN_FILES += $(filter-out repelzen/src/repelzen.cpp,$(wildcard repelzen/src/*
# modules/types which are present in other plugins
REPELZEN_CUSTOM = Blank Mixer tanh_pade
# --------------------------------------------------------------
# sonusmodular
PLUGIN_FILES += $(filter-out sonusmodular/src/sonusmodular,$(wildcard sonusmodular/src/*.cpp))
# --------------------------------------------------------------
# ValleyAudio
@ -1014,6 +1019,13 @@ $(BUILD_DIR)/repelzen/%.cpp.o: repelzen/%.cpp
$(foreach m,$(REPELZEN_CUSTOM),$(call custom_module_names,$(m),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
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
@echo "Compiling $<"

View File

@ -335,6 +335,9 @@ extern Model *modelMaude_221;
#undef modelMixer
#undef tanh_pade
// sonusmodular
#include "sonusmodular/src/sonusmodular.hpp"
// ValleyAudio
#include "ValleyAudio/src/Valley.hpp"
@ -384,6 +387,7 @@ extern Plugin* pluginInstance__MindMeld;
extern Plugin* pluginInstance__mscHack;
Plugin* pluginInstance__rackwindows;
Plugin* pluginInstance__repelzen;
Plugin* pluginInstance__sonusmodular;
Plugin* pluginInstance__ValleyAudio;
Plugin* pluginInstance__ZetaCarinaeModules;
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()
{
Plugin* const p = new Plugin;
@ -1447,6 +1489,7 @@ void initStaticPlugins()
initStatic__mscHack();
initStatic__rackwindows();
initStatic__repelzen();
initStatic__sonusmodular();
initStatic__ValleyAudio();
initStatic__ZetaCarinaeModules();
initStatic__ZZC();

1
plugins/res/BaconPlugs Symbolic link
View File

@ -0,0 +1 @@
../BaconPlugs/res/

1
plugins/res/FehlerFabrik Symbolic link
View File

@ -0,0 +1 @@
../FehlerFabrik/res

1
plugins/res/sonusmodular Symbolic link
View File

@ -0,0 +1 @@
../sonusmodular/res

1
plugins/sonusmodular Submodule

@ -0,0 +1 @@
Subproject commit b63a685c6c68be188f5a3d5d9f6582eb94d62e53