Add voxglitch
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
5e8a03d3dd
commit
38c25e6b78
7 changed files with 97 additions and 0 deletions
|
@ -820,6 +820,14 @@ PLUGIN_BINARIES += ValleyAudio/src/XFADE.bin
|
|||
VALLEYAUDIO_CUSTOM = $(DRWAV) DigitalDisplay
|
||||
VALLEYAUDIO_CUSTOM_PER_FILE = TempoKnob
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Voxglitch
|
||||
|
||||
PLUGIN_FILES += $(filter-out voxglitch/src/plugin.cpp,$(wildcard voxglitch/src/*.cpp))
|
||||
|
||||
# modules/types which are present in other plugins
|
||||
VOXGLITCH_CUSTOM = $(DRWAV) Readout
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# ZetaCarinaeModules
|
||||
|
||||
|
@ -1679,6 +1687,13 @@ $(BUILD_DIR)/ValleyAudio/%.cpp.o: ValleyAudio/%.cpp
|
|||
-Wno-sign-compare \
|
||||
-Wno-unused-but-set-variable
|
||||
|
||||
$(BUILD_DIR)/voxglitch/%.cpp.o: voxglitch/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(VOXGLITCH_CUSTOM),$(call custom_module_names,$(m),Voxglitch)) \
|
||||
-DpluginInstance=pluginInstance__Voxglitch
|
||||
|
||||
$(BUILD_DIR)/ZetaCarinaeModules/%.cpp.o: ZetaCarinaeModules/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
|
@ -665,6 +665,9 @@ extern Model* modelFilterPlus;
|
|||
// ValleyAudio
|
||||
#include "ValleyAudio/src/Valley.hpp"
|
||||
|
||||
// Voxglitch
|
||||
#include "voxglitch/src/plugin.hpp"
|
||||
|
||||
// ZetaCarinaeModules
|
||||
#include "ZetaCarinaeModules/src/plugin.hpp"
|
||||
|
||||
|
@ -748,6 +751,7 @@ Plugin* pluginInstance__sonusmodular;
|
|||
Plugin* pluginInstance__stocaudio;
|
||||
Plugin* pluginInstance__substation;
|
||||
Plugin* pluginInstance__ValleyAudio;
|
||||
Plugin* pluginInstance__Voxglitch;
|
||||
Plugin* pluginInstance__ZetaCarinaeModules;
|
||||
Plugin* pluginInstance__ZZC;
|
||||
#endif // NOPLUGINS
|
||||
|
@ -2430,6 +2434,37 @@ static void initStatic__ValleyAudio()
|
|||
}
|
||||
}
|
||||
|
||||
static void initStatic__Voxglitch()
|
||||
{
|
||||
Plugin* p = new Plugin;
|
||||
pluginInstance__Voxglitch = p;
|
||||
|
||||
const StaticPluginLoader spl(p, "voxglitch");
|
||||
if (spl.ok())
|
||||
{
|
||||
p->addModel(modelAutobreak);
|
||||
p->addModel(modelByteBeat);
|
||||
p->addModel(modelDigitalProgrammer);
|
||||
p->addModel(modelDigitalSequencer);
|
||||
p->addModel(modelDigitalSequencerXP);
|
||||
p->addModel(modelGlitchSequencer);
|
||||
p->addModel(modelGhosts);
|
||||
p->addModel(modelGoblins);
|
||||
p->addModel(modelGrainEngine);
|
||||
p->addModel(modelGrainEngineMK2);
|
||||
p->addModel(modelGrainEngineMK2Expander);
|
||||
p->addModel(modelGrainFx);
|
||||
p->addModel(modelHazumi);
|
||||
p->addModel(modelLooper);
|
||||
p->addModel(modelRepeater);
|
||||
p->addModel(modelSamplerX8);
|
||||
p->addModel(modelSatanonaut);
|
||||
p->addModel(modelWavBank);
|
||||
p->addModel(modelWavBankMC);
|
||||
p->addModel(modelXY);
|
||||
}
|
||||
}
|
||||
|
||||
static void initStatic__ZetaCarinaeModules()
|
||||
{
|
||||
Plugin* p = new Plugin;
|
||||
|
@ -2532,6 +2567,7 @@ void initStaticPlugins()
|
|||
initStatic__stocaudio();
|
||||
initStatic__substation();
|
||||
initStatic__ValleyAudio();
|
||||
initStatic__Voxglitch();
|
||||
initStatic__ZetaCarinaeModules();
|
||||
initStatic__ZZC();
|
||||
#endif // NOPLUGINS
|
||||
|
|
1
plugins/voxglitch
Submodule
1
plugins/voxglitch
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit c391e1a83b73b38125fb007117c40d0f5ee2091c
|
Loading…
Add table
Add a link
Reference in a new issue