Add ExpertSleepers-Encoders
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
3105e04f1c
commit
70039adcd6
7 changed files with 88 additions and 44 deletions
1
plugins/ExpertSleepers-Encoders
Submodule
1
plugins/ExpertSleepers-Encoders
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit df096a635fe8d3ea86a1e6451a55e45ccee5b83d
|
||||
|
|
@ -425,6 +425,11 @@ DRUMKIT_CUSTOM = ADSR Envelope LowFrequencyOscillator
|
|||
|
||||
PLUGIN_FILES += ESeries/src/E340.cpp
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# ExpertSleepers-Encoders
|
||||
|
||||
PLUGIN_FILES += $(filter-out ExpertSleepers-Encoders/src/Encoders.cpp,$(wildcard ExpertSleepers-Encoders/src/*.cpp))
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Extratone
|
||||
|
||||
|
|
@ -1030,6 +1035,13 @@ $(BUILD_DIR)/ESeries/%.cpp.o: ESeries/%.cpp
|
|||
$(foreach m,$(ESERIES_CUSTOM),$(call custom_module_names,$(m),ESeries)) \
|
||||
-DpluginInstance=pluginInstance__ESeries
|
||||
|
||||
$(BUILD_DIR)/ExpertSleepers-Encoders/src/%.cpp.o: ExpertSleepers-Encoders/src/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(EXPERTSLEEPERS_ENCODERS_CUSTOM),$(call custom_module_names,$(m),ExpertSleepersEncoders)) \
|
||||
-DpluginInstance=pluginInstance__ExpertSleepersEncoders
|
||||
|
||||
$(BUILD_DIR)/Extratone/src/%.cpp.o: Extratone/src/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
|
|||
|
|
@ -256,6 +256,9 @@ void setupSamples();
|
|||
// ESeries
|
||||
#include "ESeries/src/plugin.hpp"
|
||||
|
||||
// ExpertSleepers-Encoders
|
||||
#include "ExpertSleepers-Encoders/src/Encoders.hpp"
|
||||
|
||||
// Extratone
|
||||
#include "Extratone/src/plugin.hpp"
|
||||
|
||||
|
|
@ -509,6 +512,7 @@ Plugin* pluginInstance__cf;
|
|||
Plugin* pluginInstance__ChowDSP;
|
||||
extern Plugin* pluginInstance__DrumKit;
|
||||
Plugin* pluginInstance__ESeries;
|
||||
Plugin* pluginInstance__ExpertSleepersEncoders;
|
||||
Plugin* pluginInstance__Extratone;
|
||||
Plugin* pluginInstance__FehlerFabrik;
|
||||
Plugin* pluginInstance__Fundamental;
|
||||
|
|
@ -1262,6 +1266,23 @@ static void initStatic__ESeries()
|
|||
}
|
||||
}
|
||||
|
||||
static void initStatic__ExpertSleepersEncoders()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
pluginInstance__ExpertSleepersEncoders = p;
|
||||
|
||||
const StaticPluginLoader spl(p, "ExpertSleepers-Encoders");
|
||||
if (spl.ok())
|
||||
{
|
||||
p->addModel(model8GT);
|
||||
p->addModel(model8CV);
|
||||
p->addModel(modelES40);
|
||||
p->addModel(modelES5);
|
||||
p->addModel(modelSMUX);
|
||||
p->addModel(modelCalibrator);
|
||||
}
|
||||
}
|
||||
|
||||
static void initStatic__Extratone()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
|
|
@ -1870,6 +1891,7 @@ void initStaticPlugins()
|
|||
initStatic__ChowDSP();
|
||||
initStatic__DrumKit();
|
||||
initStatic__ESeries();
|
||||
initStatic__ExpertSleepersEncoders();
|
||||
initStatic__Extratone();
|
||||
initStatic__FehlerFabrik();
|
||||
initStatic__Fundamental();
|
||||
|
|
|
|||
1
plugins/res/ExpertSleepers-Encoders
Symbolic link
1
plugins/res/ExpertSleepers-Encoders
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../ExpertSleepers-Encoders/res
|
||||
Loading…
Add table
Add a link
Reference in a new issue