adding Lilac Loop
This commit is contained in:
parent
9aa4b01fe4
commit
fef10bb2cc
7 changed files with 38 additions and 0 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -160,3 +160,6 @@
|
|||
[submodule "plugins/CatroModulo"]
|
||||
path = plugins/CatroModulo
|
||||
url = https://github.com/catronomix/catro-modulo.git
|
||||
[submodule "plugins/LilacLoop"]
|
||||
path = plugins/LilacLoop
|
||||
url = https://github.com/grough/lilac-loop-vcv.git
|
||||
|
|
|
@ -131,6 +131,7 @@ At the moment the following 3rd-party modules are provided:
|
|||
- Impromptu
|
||||
- JW-Modules
|
||||
- LifeFormModular
|
||||
- Lilac Loop
|
||||
- Little Utils
|
||||
- Lomas Modules
|
||||
- Lyrae Modules
|
||||
|
|
|
@ -42,6 +42,7 @@ Bellow follows a list of all code licenses used in Cardinal and linked submodule
|
|||
| Impromptu | GPL-3.0-or-later | |
|
||||
| JW-Modules | BSD-3-Clause | |
|
||||
| LifeFormModular | MIT | |
|
||||
| Lilac Loop | GPL-3.0-or-later | |
|
||||
| Little Utils | EUPL-1.2 | |
|
||||
| Lomas Modules | GPL-3.0-or-later | |
|
||||
| Lyrae Modules | GPL-3.0-or-later | |
|
||||
|
@ -133,6 +134,7 @@ Below is a list of artwork licenses from plugins
|
|||
| JW-Modules/* | BSD-3-Clause | No artwork specific license provided |
|
||||
| JW-Modules/DejaVuSansMono.ttf | Bitstream-Vera | Unused in Cardinal |
|
||||
| LifeFormModular/* | MIT | No artwork specific license provided |
|
||||
| LilacLoop/* | GPL-3.0-or-later | No artwork specific license provided |
|
||||
| LittleUtils/* | EUPL-1.2 | Same license as source code |
|
||||
| LittleUtils/fonts/CooperHewitt-*.ttf | OFL-1.1-RFN | |
|
||||
| LittleUtils/fonts/Overpass-*.ttf | OFL-1.1-RFN | |
|
||||
|
|
1
plugins/LilacLoop
Submodule
1
plugins/LilacLoop
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 69d8d66521175cd561d53e65728d460b398950c9
|
|
@ -577,6 +577,11 @@ PLUGIN_FILES += $(filter-out LifeFormModular/src/plugin.cpp,$(wildcard LifeFormM
|
|||
# modules/types which are present in other plugins
|
||||
LIFEFORMMODULAR_CUSTOM = IO MS __ct_base __ct_comp
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Lilac Loop
|
||||
|
||||
PLUGIN_FILES += $(wildcard LilacLoop/src/*.cpp)
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# LittleUtils
|
||||
|
||||
|
@ -1417,6 +1422,13 @@ $(BUILD_DIR)/LifeFormModular/%.cpp.o: LifeFormModular/%.cpp
|
|||
$(foreach m,$(LIFEFORMMODULAR_CUSTOM),$(call custom_module_names,$(m),LifeFormModular)) \
|
||||
-DpluginInstance=pluginInstance__LifeFormModular
|
||||
|
||||
$(BUILD_DIR)/LilacLoop/%.cpp.o: LilacLoop/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@ \
|
||||
$(foreach m,$(LILACLOOP_CUSTOM),$(call custom_module_names,$(m),LilacLoop)) \
|
||||
-DpluginInstance=pluginInstance__LilacLoop
|
||||
|
||||
$(BUILD_DIR)/LittleUtils/%.cpp.o: LittleUtils/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
|
@ -431,6 +431,9 @@ extern Model* modelDriftgen;
|
|||
// LittleUtils
|
||||
#include "LittleUtils/src/plugin.hpp"
|
||||
|
||||
// Lilac Loop
|
||||
#include "LilacLoop/src/plugin.hpp"
|
||||
|
||||
// LomasModules
|
||||
#include "LomasModules/src/plugin.hpp"
|
||||
#undef DR_WAV_IMPLEMENTATION
|
||||
|
@ -657,6 +660,7 @@ extern Plugin* pluginInstance__ImpromptuModular;
|
|||
Plugin* pluginInstance__ihtsyn;
|
||||
Plugin* pluginInstance__JW;
|
||||
Plugin* pluginInstance__LifeFormModular;
|
||||
Plugin* pluginInstance__LilacLoop;
|
||||
Plugin* pluginInstance__LittleUtils;
|
||||
Plugin* pluginInstance__Lomas;
|
||||
Plugin* pluginInstance__Lyrae;
|
||||
|
@ -1790,6 +1794,18 @@ static void initStatic__LifeFormModular()
|
|||
}
|
||||
}
|
||||
|
||||
static void initStatic__LilacLoop()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
pluginInstance__LilacLoop = p;
|
||||
|
||||
const StaticPluginLoader spl(p, "LilacLoop");
|
||||
if (spl.ok())
|
||||
{
|
||||
p->addModel(modelLooperOne);
|
||||
}
|
||||
}
|
||||
|
||||
static void initStatic__LittleUtils()
|
||||
{
|
||||
Plugin* const p = new Plugin;
|
||||
|
@ -2263,6 +2279,7 @@ void initStaticPlugins()
|
|||
initStatic__ihtsyn();
|
||||
initStatic__JW();
|
||||
initStatic__LifeFormModular();
|
||||
initStatic__LilacLoop();
|
||||
initStatic__LittleUtils();
|
||||
initStatic__Lomas();
|
||||
initStatic__Lyrae();
|
||||
|
|
|
@ -234,6 +234,8 @@ static const struct {
|
|||
{ "/JW-Modules/res/Trigs.svg", {}, -1 },
|
||||
{ "/JW-Modules/res/WavHeadPanel.svg", {}, -1 },
|
||||
{ "/JW-Modules/res/XYPad.svg", {}, -1 },
|
||||
// GPL3.0-or-later
|
||||
{ "/LilacLoop/res/Looper.svg", {}, -1 },
|
||||
// EUPL-1.2
|
||||
{ "/LittleUtils/res/Bias_Semitone.svg", {}, -1 },
|
||||
{ "/LittleUtils/res/ButtonModule.svg", {}, -1 },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue