├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── CPM.cmake ├── plugin ├── CMakeLists.txt ├── include │ ├── PluginEditor.h │ ├── PluginProcessor.h │ ├── dsp │ │ ├── CircularBuffer.h │ │ ├── DelayAmp.h │ │ └── Filter.h │ ├── parameterControls │ │ ├── ComboBoxControl.h │ │ ├── ParameterControl.h │ │ ├── ParameterFactory.h │ │ └── ParameterToggle.h │ └── ui │ │ ├── CtmComboBox.h │ │ ├── CtmLookAndFeel.h │ │ ├── CtmSlider.h │ │ ├── CtmToggle.h │ │ └── SliderLabel.h └── source │ ├── PluginEditor.cpp │ ├── PluginProcessor.cpp │ ├── dsp │ ├── CircularBuffer.cpp │ ├── DelayAmp.cpp │ └── Filter.cpp │ ├── parameterControls │ ├── ComboBoxControl.cpp │ ├── ParameterControl.cpp │ ├── ParameterFactory.cpp │ └── ParameterToggle.cpp │ └── ui │ ├── CtmLookAndFeel.cpp │ ├── CtmToggle.cpp │ └── SliderLabel.cpp └── screenshots ├── shot1.png ├── shot2.png ├── shot3.png └── shot4.png /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | lib/ 3 | .DS_Store 4 | cmd.txt 5 | *.sh 6 | .vscode 7 | todo.txt -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/README.md -------------------------------------------------------------------------------- /cmake/CPM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/cmake/CPM.cmake -------------------------------------------------------------------------------- /plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/CMakeLists.txt -------------------------------------------------------------------------------- /plugin/include/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/include/PluginEditor.h -------------------------------------------------------------------------------- /plugin/include/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/include/PluginProcessor.h -------------------------------------------------------------------------------- /plugin/include/dsp/CircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/include/dsp/CircularBuffer.h -------------------------------------------------------------------------------- /plugin/include/dsp/DelayAmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/include/dsp/DelayAmp.h -------------------------------------------------------------------------------- /plugin/include/dsp/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/include/dsp/Filter.h -------------------------------------------------------------------------------- /plugin/include/parameterControls/ComboBoxControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/include/parameterControls/ComboBoxControl.h -------------------------------------------------------------------------------- /plugin/include/parameterControls/ParameterControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/include/parameterControls/ParameterControl.h -------------------------------------------------------------------------------- /plugin/include/parameterControls/ParameterFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/include/parameterControls/ParameterFactory.h -------------------------------------------------------------------------------- /plugin/include/parameterControls/ParameterToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/include/parameterControls/ParameterToggle.h -------------------------------------------------------------------------------- /plugin/include/ui/CtmComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/include/ui/CtmComboBox.h -------------------------------------------------------------------------------- /plugin/include/ui/CtmLookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/include/ui/CtmLookAndFeel.h -------------------------------------------------------------------------------- /plugin/include/ui/CtmSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/include/ui/CtmSlider.h -------------------------------------------------------------------------------- /plugin/include/ui/CtmToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/include/ui/CtmToggle.h -------------------------------------------------------------------------------- /plugin/include/ui/SliderLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/include/ui/SliderLabel.h -------------------------------------------------------------------------------- /plugin/source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/source/PluginEditor.cpp -------------------------------------------------------------------------------- /plugin/source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/source/PluginProcessor.cpp -------------------------------------------------------------------------------- /plugin/source/dsp/CircularBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/source/dsp/CircularBuffer.cpp -------------------------------------------------------------------------------- /plugin/source/dsp/DelayAmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/source/dsp/DelayAmp.cpp -------------------------------------------------------------------------------- /plugin/source/dsp/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/source/dsp/Filter.cpp -------------------------------------------------------------------------------- /plugin/source/parameterControls/ComboBoxControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/source/parameterControls/ComboBoxControl.cpp -------------------------------------------------------------------------------- /plugin/source/parameterControls/ParameterControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/source/parameterControls/ParameterControl.cpp -------------------------------------------------------------------------------- /plugin/source/parameterControls/ParameterFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/source/parameterControls/ParameterFactory.cpp -------------------------------------------------------------------------------- /plugin/source/parameterControls/ParameterToggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/source/parameterControls/ParameterToggle.cpp -------------------------------------------------------------------------------- /plugin/source/ui/CtmLookAndFeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/source/ui/CtmLookAndFeel.cpp -------------------------------------------------------------------------------- /plugin/source/ui/CtmToggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/source/ui/CtmToggle.cpp -------------------------------------------------------------------------------- /plugin/source/ui/SliderLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/plugin/source/ui/SliderLabel.cpp -------------------------------------------------------------------------------- /screenshots/shot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/screenshots/shot1.png -------------------------------------------------------------------------------- /screenshots/shot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/screenshots/shot2.png -------------------------------------------------------------------------------- /screenshots/shot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/screenshots/shot3.png -------------------------------------------------------------------------------- /screenshots/shot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matth-ewe-f/audio-plugin-delay-intervals/HEAD/screenshots/shot4.png --------------------------------------------------------------------------------