parent
c8dea01ab9
commit
b16f955802
7 changed files with 41 additions and 3 deletions
|
@ -517,6 +517,15 @@ PLUGIN_FILES += $(wildcard mscHack/src/*.cpp)
|
|||
# modules/types which are present in other plugins
|
||||
MSCHACK_CUSTOM_PER_FILE = MAIN_SYNC_CLOCK FILTER_STRUCT FILTER_PARAM_STRUCT OSC_PARAM_STRUCT PHRASE_CHANGE_STRUCT
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Prism
|
||||
|
||||
PLUGIN_FILES += $(filter-out Prism/src/plugin.cpp, $(wildcard Prism/src/*.cpp))
|
||||
PLUGIN_FILES += $(wildcard Prism/src/scales/*.cpp)
|
||||
|
||||
# modules/types which are present in other plugins
|
||||
PRISM_CUSTOM = bogaudio Scale FilterSetting
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# rackwindows
|
||||
|
||||
|
@ -1123,6 +1132,13 @@ $(BUILD_DIR)/mscHack/%.cpp.o: mscHack/%.cpp
|
|||
-Wno-non-c-typedef-for-linkage \
|
||||
-Wno-unused-but-set-variable
|
||||
|
||||
$(BUILD_DIR)/Prism/%.cpp.o: Prism/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(PRISM_CUSTOM),$(call custom_module_names,$(m),Prism)) \
|
||||
-DpluginInstance=pluginInstance__Prism \
|
||||
|
||||
$(BUILD_DIR)/rackwindows/%.cpp.o: rackwindows/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
1
plugins/Prism
Submodule
1
plugins/Prism
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 6b2510c601db8bd3b57cd5eef8c2924cb8badfc7
|
|
@ -419,6 +419,9 @@ extern Model *modelAlienz;
|
|||
extern Model *modelOSC_WaveMorph_3;
|
||||
extern Model *modelMaude_221;
|
||||
|
||||
// Prism
|
||||
# include "Prism/src/plugin.hpp"
|
||||
|
||||
// rackwindows
|
||||
#include "rackwindows/src/plugin.hpp"
|
||||
|
||||
|
@ -489,6 +492,7 @@ Plugin* pluginInstance__Lyrae;
|
|||
extern Plugin* pluginInstance__MindMeld;
|
||||
Plugin* pluginInstance__Mog;
|
||||
extern Plugin* pluginInstance__mscHack;
|
||||
Plugin* pluginInstance__Prism;
|
||||
Plugin* pluginInstance__rackwindows;
|
||||
Plugin* pluginInstance__repelzen;
|
||||
Plugin* pluginInstance__sonusmodular;
|
||||
|
@ -1568,6 +1572,20 @@ static void initStatic__mscHack()
|
|||
}
|
||||
}
|
||||
|
||||
static void initStatic__Prism()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
pluginInstance__Prism = p;
|
||||
|
||||
const StaticPluginLoader spl(p, "Prism");
|
||||
if (spl.ok())
|
||||
{
|
||||
p->addModel(modelRainbow);
|
||||
p->addModel(modelRainbowScaleExpander);
|
||||
p->addModel(modelDroplet);
|
||||
}
|
||||
}
|
||||
|
||||
static void initStatic__rackwindows()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
|
@ -1751,6 +1769,7 @@ void initStaticPlugins()
|
|||
initStatic__MindMeld();
|
||||
initStatic__Mog();
|
||||
initStatic__mscHack();
|
||||
initStatic__Prism();
|
||||
initStatic__rackwindows();
|
||||
initStatic__repelzen();
|
||||
initStatic__sonusmodular();
|
||||
|
|
1
plugins/res/Prism
Symbolic link
1
plugins/res/Prism
Symbolic link
|
@ -0,0 +1 @@
|
|||
../Prism/res/
|
|
@ -25,9 +25,6 @@ LindenbergResearch 43959.0 (not opensource?)
|
|||
Geodesics 42761.0
|
||||
https://github.com/MarcBoule/Geodesics
|
||||
|
||||
HetrickCV 42077.0
|
||||
https://github.com/mhetrick/hetrickcv
|
||||
|
||||
Alikins 41798.0
|
||||
https://github.com/alikins/Alikins-rack-plugins
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue