Add BaconPlugs
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
62af644a49
commit
9986267165
4 changed files with 65 additions and 0 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -82,3 +82,6 @@
|
||||||
[submodule "plugins/AriaModules"]
|
[submodule "plugins/AriaModules"]
|
||||||
path = plugins/AriaModules
|
path = plugins/AriaModules
|
||||||
url = https://github.com/CardinalModules/AriaModules.git
|
url = https://github.com/CardinalModules/AriaModules.git
|
||||||
|
[submodule "plugins/BaconPlugs"]
|
||||||
|
path = plugins/BaconPlugs
|
||||||
|
url = https://github.com/CardinalModules/BaconPlugs.git
|
||||||
|
|
1
plugins/BaconPlugs
Submodule
1
plugins/BaconPlugs
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 2bc40e3a13ad4a9d79ad327abdfe012f6b410805
|
|
@ -339,6 +339,13 @@ PLUGIN_FILES += AudibleInstruments/eurorack/streams/svf.cc
|
||||||
PLUGIN_FILES += AudibleInstruments/eurorack/streams/vactrol.cc
|
PLUGIN_FILES += AudibleInstruments/eurorack/streams/vactrol.cc
|
||||||
PLUGIN_FILES += AudibleInstruments/eurorack/streams/compressor.cc
|
PLUGIN_FILES += AudibleInstruments/eurorack/streams/compressor.cc
|
||||||
|
|
||||||
|
# --------------------------------------------------------------
|
||||||
|
# BaconPlugs
|
||||||
|
|
||||||
|
PLUGIN_FILES += $(filter-out BaconPlugs/src/BaconPlugs.cpp,$(wildcard BaconPlugs/src/*.cpp))
|
||||||
|
PLUGIN_FILES += $(wildcard BaconPlugs/libs/midifile/src/*.cpp)
|
||||||
|
PLUGIN_FILES += $(wildcard BaconPlugs/libs/open303-code/Source/DSPCode/*.cpp)
|
||||||
|
|
||||||
# --------------------------------------------------------------
|
# --------------------------------------------------------------
|
||||||
# Befaco
|
# Befaco
|
||||||
|
|
||||||
|
@ -821,6 +828,18 @@ $(BUILD_DIR)/AudibleInstruments/%.o: AudibleInstruments/%
|
||||||
-Wno-class-memaccess \
|
-Wno-class-memaccess \
|
||||||
-Wno-unused-local-typedefs
|
-Wno-unused-local-typedefs
|
||||||
|
|
||||||
|
$(BUILD_DIR)/BaconPlugs/%.cpp.o: BaconPlugs/%.cpp
|
||||||
|
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||||
|
@echo "Compiling $<"
|
||||||
|
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||||
|
$(foreach m,$(BACON_CUSTOM),$(call custom_module_names,$(m),BaconPlugs)) \
|
||||||
|
-DpluginInstance=pluginInstance__Bacon \
|
||||||
|
-DDARK_BACON \
|
||||||
|
-IBaconPlugs/libs/midifile/include \
|
||||||
|
-IBaconPlugs/libs/open303-code/Source/DSPCode \
|
||||||
|
-Wno-array-bounds \
|
||||||
|
-Wno-strict-aliasing
|
||||||
|
|
||||||
$(BUILD_DIR)/Befaco/%.cpp.o: Befaco/%.cpp
|
$(BUILD_DIR)/Befaco/%.cpp.o: Befaco/%.cpp
|
||||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||||
@echo "Compiling $<"
|
@echo "Compiling $<"
|
||||||
|
|
|
@ -72,6 +72,13 @@ extern Model *modelBlank;
|
||||||
// AudibleInstruments
|
// AudibleInstruments
|
||||||
#include "AudibleInstruments/src/plugin.hpp"
|
#include "AudibleInstruments/src/plugin.hpp"
|
||||||
|
|
||||||
|
// BaconPlugs
|
||||||
|
#define INCLUDE_COMPONENTS_HPP
|
||||||
|
#include "BaconPlugs/src/BaconPlugs.hpp"
|
||||||
|
#undef INCLUDE_COMPONENTS_HPP
|
||||||
|
#undef SCREW_WIDTH
|
||||||
|
#undef RACK_HEIGHT
|
||||||
|
|
||||||
// Befaco
|
// Befaco
|
||||||
#define modelADSR modelBefacoADSR
|
#define modelADSR modelBefacoADSR
|
||||||
#define modelMixer modelBefacoMixer
|
#define modelMixer modelBefacoMixer
|
||||||
|
@ -358,6 +365,7 @@ Plugin* pluginInstance__Aria;
|
||||||
Plugin* pluginInstance__AS;
|
Plugin* pluginInstance__AS;
|
||||||
Plugin* pluginInstance__Atelier;
|
Plugin* pluginInstance__Atelier;
|
||||||
Plugin* pluginInstance__AudibleInstruments;
|
Plugin* pluginInstance__AudibleInstruments;
|
||||||
|
Plugin* pluginInstance__Bacon;
|
||||||
Plugin* pluginInstance__Befaco;
|
Plugin* pluginInstance__Befaco;
|
||||||
Plugin* pluginInstance__Bidoo;
|
Plugin* pluginInstance__Bidoo;
|
||||||
Plugin* pluginInstance__BogaudioModules;
|
Plugin* pluginInstance__BogaudioModules;
|
||||||
|
@ -713,6 +721,39 @@ static void initStatic__AudibleInstruments()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void initStatic__Bacon()
|
||||||
|
{
|
||||||
|
Plugin* const p = new Plugin;
|
||||||
|
pluginInstance__Bacon = p;
|
||||||
|
|
||||||
|
const StaticPluginLoader spl(p, "BaconPlugs");
|
||||||
|
if (spl.ok())
|
||||||
|
{
|
||||||
|
p->addModel(modelHarMoNee);
|
||||||
|
p->addModel(modelGlissinator);
|
||||||
|
p->addModel(modelPolyGnome);
|
||||||
|
p->addModel(modelQuantEyes);
|
||||||
|
p->addModel(modelSampleDelay);
|
||||||
|
#ifdef BUILD_SORTACHORUS
|
||||||
|
p->addModel(modelSortaChorus);
|
||||||
|
#endif
|
||||||
|
p->addModel(modelChipNoise);
|
||||||
|
p->addModel(modelChipWaves);
|
||||||
|
p->addModel(modelChipYourWave);
|
||||||
|
p->addModel(modelOpen303);
|
||||||
|
#ifdef BUILD_GENERICLSFR
|
||||||
|
p->addModel(modelGenericLFSR);
|
||||||
|
#endif
|
||||||
|
p->addModel(modelKarplusStrongPoly);
|
||||||
|
p->addModel(modelALingADing);
|
||||||
|
p->addModel(modelBitulator);
|
||||||
|
#ifdef BUILD_PHASER
|
||||||
|
p->addModel(modelPhaser);
|
||||||
|
#endif
|
||||||
|
p->addModel(modelPolyGenerator);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void initStatic__Befaco()
|
static void initStatic__Befaco()
|
||||||
{
|
{
|
||||||
Plugin* const p = new Plugin;
|
Plugin* const p = new Plugin;
|
||||||
|
@ -1362,6 +1403,7 @@ void initStaticPlugins()
|
||||||
initStatic__AS();
|
initStatic__AS();
|
||||||
initStatic__Atelier();
|
initStatic__Atelier();
|
||||||
initStatic__AudibleInstruments();
|
initStatic__AudibleInstruments();
|
||||||
|
initStatic__Bacon();
|
||||||
initStatic__Befaco();
|
initStatic__Befaco();
|
||||||
initStatic__Bidoo();
|
initStatic__Bidoo();
|
||||||
initStatic__BogaudioModules();
|
initStatic__BogaudioModules();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue