Implement MIDI-Map, finishing all core replacements
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
eec0438d50
commit
cb26617890
11 changed files with 749 additions and 193 deletions
17
src/Makefile
17
src/Makefile
|
@ -127,15 +127,10 @@ IGNORED_FILES += Rack/src/rtmidi.cpp
|
|||
IGNORED_FILES += Rack/src/app/MenuBar.cpp
|
||||
IGNORED_FILES += Rack/src/app/Scene.cpp
|
||||
IGNORED_FILES += Rack/src/app/TipWindow.cpp
|
||||
IGNORED_FILES += Rack/src/core/Audio.cpp
|
||||
IGNORED_FILES += Rack/src/core/CV_MIDI.cpp
|
||||
IGNORED_FILES += Rack/src/core/CV_MIDICC.cpp
|
||||
IGNORED_FILES += Rack/src/core/MIDI_CV.cpp
|
||||
IGNORED_FILES += Rack/src/core/MIDICC_CV.cpp
|
||||
IGNORED_FILES += Rack/src/core/Notes.cpp
|
||||
IGNORED_FILES += Rack/src/engine/Engine.cpp
|
||||
IGNORED_FILES += Rack/src/plugin/Model.cpp
|
||||
IGNORED_FILES += Rack/src/window/Window.cpp
|
||||
IGNORED_FILES += $(wildcard Rack/src/core/*.cpp)
|
||||
|
||||
RACK_FILES += $(wildcard Rack/src/*.c)
|
||||
RACK_FILES += $(wildcard Rack/src/*/*.c)
|
||||
|
@ -200,16 +195,6 @@ $(BUILD_DIR)/override/MIDI_CV.cpp.o: override/MIDI_CV.cpp
|
|||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -UPRIVATE -c -o $@
|
||||
|
||||
$(BUILD_DIR)/Rack/src/core/Blank.cpp.o: Rack/src/core/Blank.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -UPRIVATE -D'nvgRGB(r,g,b)=nvgRGBblank(r,g,b)' -c -o $@
|
||||
|
||||
$(BUILD_DIR)/Rack/src/core/%.cpp.o: Rack/src/core/%.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -UPRIVATE -c -o $@
|
||||
|
||||
$(BUILD_DIR)/%.cpp.o: %.cpp
|
||||
-@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)"
|
||||
@echo "Compiling $<"
|
||||
|
|
|
@ -89,9 +89,13 @@ static const std::map<PluginModuleSlug, PluginModuleSlug> moduleSlugFallbacks =
|
|||
{{"Core", "AudioInterface16"}, {"Cardinal", "HostAudio8"}},
|
||||
{{"Core", "MIDIToCVInterface"}, {"Cardinal", "HostMIDI"}},
|
||||
{{"Core", "MIDICCToCVInterface"}, {"Cardinal", "HostMIDICC"}},
|
||||
{{"Core", "MIDITriggerToCVInterface"}, {"Cardinal", "HostMIDIGate"}},
|
||||
{{"Core", "CV-MIDI"}, {"Cardinal", "HostMIDI"}},
|
||||
{{"Core", "CV-CC"}, {"Cardinal", "HostMIDICC"}},
|
||||
{{"Core", "CV-Gate"}, {"Cardinal", "HostMIDIGate"}},
|
||||
{{"Core", "MIDI-Map"}, {"Cardinal", "HostMIDIMap"}},
|
||||
{{"Core", "Notes"}, {"Cardinal", "TextEditor"}},
|
||||
{{"Core", "Blank"}, {"Cardinal", "Blank"}},
|
||||
{{"MindMeld-ShapeMasterPro", "ShapeMasterPro"}, {"MindMeldModular", "ShapeMaster"}},
|
||||
// {{"", ""}, {"", ""}},
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue