Fixup for module updates
This commit is contained in:
parent
5fc282b84f
commit
f1b66f66f7
3 changed files with 39 additions and 17 deletions
34
plugins/BidooDark/plugin.cpp
Normal file
34
plugins/BidooDark/plugin.cpp
Normal file
|
|
@ -0,0 +1,34 @@
|
||||||
|
#include "../Bidoo/src/plugin.hpp"
|
||||||
|
#undef ModuleWidget
|
||||||
|
|
||||||
|
void InstantiateExpanderItem::onAction(const event::Action &e) {
|
||||||
|
engine::Module* module = model->createModule();
|
||||||
|
APP->engine->addModule(module);
|
||||||
|
ModuleWidget* mw = model->createModuleWidget(module);
|
||||||
|
if (mw) {
|
||||||
|
APP->scene->rack->setModulePosNearest(mw, posit);
|
||||||
|
APP->scene->rack->addModule(mw);
|
||||||
|
history::ModuleAdd *h = new history::ModuleAdd;
|
||||||
|
h->name = "create expander module";
|
||||||
|
h->setModule(mw);
|
||||||
|
APP->history->push(h);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
json_t* BidooModule::dataToJson() {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
void BidooModule::dataFromJson(json_t*) {
|
||||||
|
}
|
||||||
|
|
||||||
|
void BidooWidget::appendContextMenu(Menu*) {
|
||||||
|
}
|
||||||
|
|
||||||
|
void BidooWidget::prepareThemes(const std::string& filename) {
|
||||||
|
setPanel(APP->window->loadSvg(filename));
|
||||||
|
}
|
||||||
|
|
||||||
|
void BidooWidget::step() {
|
||||||
|
CardinalModuleWidget::step();
|
||||||
|
}
|
||||||
|
|
@ -431,12 +431,13 @@ BEFACO_CUSTOM = ADSR Mixer
|
||||||
# --------------------------------------------------------------
|
# --------------------------------------------------------------
|
||||||
# Bidoo
|
# Bidoo
|
||||||
|
|
||||||
PLUGIN_FILES += $(filter-out Bidoo/src/ANTN.cpp,$(wildcard Bidoo/src/*.cpp))
|
PLUGIN_FILES += $(filter-out Bidoo/src/plugin.cpp Bidoo/src/ANTN.cpp,$(wildcard Bidoo/src/*.cpp))
|
||||||
PLUGIN_FILES += $(wildcard Bidoo/src/dep/*.cpp)
|
PLUGIN_FILES += $(wildcard Bidoo/src/dep/*.cpp)
|
||||||
PLUGIN_FILES += $(wildcard Bidoo/src/dep/filters/*.cpp)
|
PLUGIN_FILES += $(wildcard Bidoo/src/dep/filters/*.cpp)
|
||||||
PLUGIN_FILES += $(wildcard Bidoo/src/dep/freeverb/*.cpp)
|
PLUGIN_FILES += $(wildcard Bidoo/src/dep/freeverb/*.cpp)
|
||||||
PLUGIN_FILES += $(wildcard Bidoo/src/dep/lodepng/*.cpp)
|
PLUGIN_FILES += $(wildcard Bidoo/src/dep/lodepng/*.cpp)
|
||||||
PLUGIN_FILES += $(filter-out Bidoo/src/dep/resampler/main.cpp,$(wildcard Bidoo/src/dep/resampler/*.cpp))
|
PLUGIN_FILES += $(filter-out Bidoo/src/dep/resampler/main.cpp,$(wildcard Bidoo/src/dep/resampler/*.cpp))
|
||||||
|
PLUGIN_FILES += BidooDark/plugin.cpp
|
||||||
|
|
||||||
# modules/types which are present in other plugins
|
# modules/types which are present in other plugins
|
||||||
BIDOO_CUSTOM = ChannelDisplay InstantiateExpanderItem LadderFilter $(DRWAV)
|
BIDOO_CUSTOM = ChannelDisplay InstantiateExpanderItem LadderFilter $(DRWAV)
|
||||||
|
|
@ -1297,21 +1298,7 @@ $(BUILD_DIR)/Befaco/%.cpp.o: Befaco/%.cpp
|
||||||
$(foreach m,$(BEFACO_CUSTOM),$(call custom_module_names,$(m),Befaco)) \
|
$(foreach m,$(BEFACO_CUSTOM),$(call custom_module_names,$(m),Befaco)) \
|
||||||
-DpluginInstance=pluginInstance__Befaco
|
-DpluginInstance=pluginInstance__Befaco
|
||||||
|
|
||||||
$(BUILD_DIR)/Bidoo/src/plugin.cpp.o: Bidoo/src/plugin.cpp
|
$(BUILD_DIR)/Bidoo%.cpp.o: Bidoo%.cpp
|
||||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
|
||||||
@echo "Compiling $<"
|
|
||||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
|
||||||
$(foreach m,$(BIDOO_CUSTOM),$(call custom_module_names,$(m),Bidoo)) \
|
|
||||||
-DpluginInstance=pluginInstance__Bidoo \
|
|
||||||
-Dinit=init__Bidoo \
|
|
||||||
-DSKIP_MINGW_FORMAT \
|
|
||||||
-IBidoo/src/dep/gverb/include \
|
|
||||||
-Wno-ignored-qualifiers \
|
|
||||||
-Wno-sign-compare \
|
|
||||||
-Wno-unused-function \
|
|
||||||
-UBUILDING_PLUGIN_MODULES
|
|
||||||
|
|
||||||
$(BUILD_DIR)/Bidoo/%.cpp.o: Bidoo/%.cpp
|
|
||||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||||
@echo "Compiling $<"
|
@echo "Compiling $<"
|
||||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||||
|
|
@ -1456,6 +1443,7 @@ $(BUILD_DIR)/GrandeModular/%.cpp.o: GrandeModular/%.cpp
|
||||||
$(foreach m,$(GRANDEMODULAR_CUSTOM),$(call custom_module_names,$(m),GrandeModular)) \
|
$(foreach m,$(GRANDEMODULAR_CUSTOM),$(call custom_module_names,$(m),GrandeModular)) \
|
||||||
-DpluginInstance=pluginInstance__GrandeModular \
|
-DpluginInstance=pluginInstance__GrandeModular \
|
||||||
-Wno-missing-braces \
|
-Wno-missing-braces \
|
||||||
|
-Wno-narrowing \
|
||||||
-Wno-self-assign
|
-Wno-self-assign
|
||||||
|
|
||||||
$(BUILD_DIR)/HamptonHarmonics/%.cpp.o: HamptonHarmonics/%.cpp
|
$(BUILD_DIR)/HamptonHarmonics/%.cpp.o: HamptonHarmonics/%.cpp
|
||||||
|
|
|
||||||
|
|
@ -697,7 +697,7 @@ extern Plugin* pluginInstance__Autinn;
|
||||||
Plugin* pluginInstance__Axioma;
|
Plugin* pluginInstance__Axioma;
|
||||||
Plugin* pluginInstance__Bacon;
|
Plugin* pluginInstance__Bacon;
|
||||||
Plugin* pluginInstance__Befaco;
|
Plugin* pluginInstance__Befaco;
|
||||||
extern Plugin* pluginInstance__Bidoo;
|
Plugin* pluginInstance__Bidoo;
|
||||||
Plugin* pluginInstance__BogaudioModules;
|
Plugin* pluginInstance__BogaudioModules;
|
||||||
Plugin* pluginInstance__CatroModulo;
|
Plugin* pluginInstance__CatroModulo;
|
||||||
Plugin* pluginInstance__cf;
|
Plugin* pluginInstance__cf;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue