├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── playeroscs ├── noisepink.wav ├── noisewhite.wav ├── osc1.wav ├── osc2.wav ├── osc3.wav ├── osc4.wav ├── osc5.wav ├── osc6.wav ├── osc7.wav ├── osc8.wav └── saw.wav ├── plugin.json ├── res ├── ALGEBRA.svg ├── ArialBlack.ttf ├── BUFFER.svg ├── CHOKE.svg ├── CUBE.svg ├── CUTS.svg ├── DAVE.svg ├── DISTO.svg ├── DejaVu-LICENSE.txt ├── DejaVuSansMono.ttf ├── EACH.svg ├── FOUR.svg ├── FUNKTION.svg ├── L.svg ├── L3DS3Q.svg ├── LABEL.svg ├── LEDCalculator.ttf ├── LEDS.svg ├── LEDSEQ.svg ├── Ldown.svg ├── MASTER.svg ├── METRO.svg ├── MONO.svg ├── PATCH.svg ├── PEAK.svg ├── PLAY.svg ├── PLAYER.svg ├── PadButton.svg ├── PadButtonDown.svg ├── SLIDERSEQ.svg ├── STEPS.svg ├── STEREO.svg ├── SUB.svg ├── Segment7Standard.ttf ├── VARIABLE.svg ├── cach.svg ├── cfBigKnob-bg.svg ├── cfBigKnob.svg ├── cfTrimpot-bg.svg ├── cfTrimpot.svg ├── distocach.svg ├── downButton.svg ├── downButtonDown.svg ├── plusButton.svg ├── trSEQ.svg ├── upButton.svg └── upButtonDown.svg ├── screens ├── cf064.png ├── cf064b.png ├── clock.png ├── cube1.png ├── four1.png ├── four2.png ├── four3.png ├── mixer.png ├── peak1.png ├── peak2.png ├── player1.png ├── player2.png ├── steps1.png ├── steps2.png ├── trseq1.png ├── trseq2.png └── trseq3.png └── src ├── ALGEBRA.cpp ├── BUFFER.cpp ├── CHOKE.cpp ├── CUBE.cpp ├── CUTS.cpp ├── DAVE.cpp ├── DISTO.cpp ├── EACH.cpp ├── FOUR.cpp ├── FUNKTION.cpp ├── L3DS3Q.cpp ├── LABEL.cpp ├── LEDSEQ.cpp ├── MASTER.cpp ├── METRO.cpp ├── MONO.cpp ├── PATCH.cpp ├── PEAK.cpp ├── PLAY.cpp ├── PLAYER.cpp ├── SLIDERSEQ.cpp ├── STEPS.cpp ├── STEREO.cpp ├── SUB.cpp ├── VARIABLE.cpp ├── dr_wav.h ├── plugin.cpp ├── plugin.hpp └── trSEQ.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | build/ 3 | 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/README.md -------------------------------------------------------------------------------- /playeroscs/noisepink.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/playeroscs/noisepink.wav -------------------------------------------------------------------------------- /playeroscs/noisewhite.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/playeroscs/noisewhite.wav -------------------------------------------------------------------------------- /playeroscs/osc1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/playeroscs/osc1.wav -------------------------------------------------------------------------------- /playeroscs/osc2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/playeroscs/osc2.wav -------------------------------------------------------------------------------- /playeroscs/osc3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/playeroscs/osc3.wav -------------------------------------------------------------------------------- /playeroscs/osc4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/playeroscs/osc4.wav -------------------------------------------------------------------------------- /playeroscs/osc5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/playeroscs/osc5.wav -------------------------------------------------------------------------------- /playeroscs/osc6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/playeroscs/osc6.wav -------------------------------------------------------------------------------- /playeroscs/osc7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/playeroscs/osc7.wav -------------------------------------------------------------------------------- /playeroscs/osc8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/playeroscs/osc8.wav -------------------------------------------------------------------------------- /playeroscs/saw.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/playeroscs/saw.wav -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/plugin.json -------------------------------------------------------------------------------- /res/ALGEBRA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/ALGEBRA.svg -------------------------------------------------------------------------------- /res/ArialBlack.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/ArialBlack.ttf -------------------------------------------------------------------------------- /res/BUFFER.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/BUFFER.svg -------------------------------------------------------------------------------- /res/CHOKE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/CHOKE.svg -------------------------------------------------------------------------------- /res/CUBE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/CUBE.svg -------------------------------------------------------------------------------- /res/CUTS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/CUTS.svg -------------------------------------------------------------------------------- /res/DAVE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/DAVE.svg -------------------------------------------------------------------------------- /res/DISTO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/DISTO.svg -------------------------------------------------------------------------------- /res/DejaVu-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/DejaVu-LICENSE.txt -------------------------------------------------------------------------------- /res/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /res/EACH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/EACH.svg -------------------------------------------------------------------------------- /res/FOUR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/FOUR.svg -------------------------------------------------------------------------------- /res/FUNKTION.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/FUNKTION.svg -------------------------------------------------------------------------------- /res/L.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/L.svg -------------------------------------------------------------------------------- /res/L3DS3Q.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/L3DS3Q.svg -------------------------------------------------------------------------------- /res/LABEL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/LABEL.svg -------------------------------------------------------------------------------- /res/LEDCalculator.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/LEDCalculator.ttf -------------------------------------------------------------------------------- /res/LEDS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/LEDS.svg -------------------------------------------------------------------------------- /res/LEDSEQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/LEDSEQ.svg -------------------------------------------------------------------------------- /res/Ldown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/Ldown.svg -------------------------------------------------------------------------------- /res/MASTER.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/MASTER.svg -------------------------------------------------------------------------------- /res/METRO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/METRO.svg -------------------------------------------------------------------------------- /res/MONO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/MONO.svg -------------------------------------------------------------------------------- /res/PATCH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/PATCH.svg -------------------------------------------------------------------------------- /res/PEAK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/PEAK.svg -------------------------------------------------------------------------------- /res/PLAY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/PLAY.svg -------------------------------------------------------------------------------- /res/PLAYER.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/PLAYER.svg -------------------------------------------------------------------------------- /res/PadButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/PadButton.svg -------------------------------------------------------------------------------- /res/PadButtonDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/PadButtonDown.svg -------------------------------------------------------------------------------- /res/SLIDERSEQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/SLIDERSEQ.svg -------------------------------------------------------------------------------- /res/STEPS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/STEPS.svg -------------------------------------------------------------------------------- /res/STEREO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/STEREO.svg -------------------------------------------------------------------------------- /res/SUB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/SUB.svg -------------------------------------------------------------------------------- /res/Segment7Standard.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/Segment7Standard.ttf -------------------------------------------------------------------------------- /res/VARIABLE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/VARIABLE.svg -------------------------------------------------------------------------------- /res/cach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/cach.svg -------------------------------------------------------------------------------- /res/cfBigKnob-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/cfBigKnob-bg.svg -------------------------------------------------------------------------------- /res/cfBigKnob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/cfBigKnob.svg -------------------------------------------------------------------------------- /res/cfTrimpot-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/cfTrimpot-bg.svg -------------------------------------------------------------------------------- /res/cfTrimpot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/cfTrimpot.svg -------------------------------------------------------------------------------- /res/distocach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/distocach.svg -------------------------------------------------------------------------------- /res/downButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/downButton.svg -------------------------------------------------------------------------------- /res/downButtonDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/downButtonDown.svg -------------------------------------------------------------------------------- /res/plusButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/plusButton.svg -------------------------------------------------------------------------------- /res/trSEQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/trSEQ.svg -------------------------------------------------------------------------------- /res/upButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/upButton.svg -------------------------------------------------------------------------------- /res/upButtonDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/res/upButtonDown.svg -------------------------------------------------------------------------------- /screens/cf064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/cf064.png -------------------------------------------------------------------------------- /screens/cf064b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/cf064b.png -------------------------------------------------------------------------------- /screens/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/clock.png -------------------------------------------------------------------------------- /screens/cube1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/cube1.png -------------------------------------------------------------------------------- /screens/four1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/four1.png -------------------------------------------------------------------------------- /screens/four2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/four2.png -------------------------------------------------------------------------------- /screens/four3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/four3.png -------------------------------------------------------------------------------- /screens/mixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/mixer.png -------------------------------------------------------------------------------- /screens/peak1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/peak1.png -------------------------------------------------------------------------------- /screens/peak2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/peak2.png -------------------------------------------------------------------------------- /screens/player1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/player1.png -------------------------------------------------------------------------------- /screens/player2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/player2.png -------------------------------------------------------------------------------- /screens/steps1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/steps1.png -------------------------------------------------------------------------------- /screens/steps2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/steps2.png -------------------------------------------------------------------------------- /screens/trseq1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/trseq1.png -------------------------------------------------------------------------------- /screens/trseq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/trseq2.png -------------------------------------------------------------------------------- /screens/trseq3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/screens/trseq3.png -------------------------------------------------------------------------------- /src/ALGEBRA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/ALGEBRA.cpp -------------------------------------------------------------------------------- /src/BUFFER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/BUFFER.cpp -------------------------------------------------------------------------------- /src/CHOKE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/CHOKE.cpp -------------------------------------------------------------------------------- /src/CUBE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/CUBE.cpp -------------------------------------------------------------------------------- /src/CUTS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/CUTS.cpp -------------------------------------------------------------------------------- /src/DAVE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/DAVE.cpp -------------------------------------------------------------------------------- /src/DISTO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/DISTO.cpp -------------------------------------------------------------------------------- /src/EACH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/EACH.cpp -------------------------------------------------------------------------------- /src/FOUR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/FOUR.cpp -------------------------------------------------------------------------------- /src/FUNKTION.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/FUNKTION.cpp -------------------------------------------------------------------------------- /src/L3DS3Q.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/L3DS3Q.cpp -------------------------------------------------------------------------------- /src/LABEL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/LABEL.cpp -------------------------------------------------------------------------------- /src/LEDSEQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/LEDSEQ.cpp -------------------------------------------------------------------------------- /src/MASTER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/MASTER.cpp -------------------------------------------------------------------------------- /src/METRO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/METRO.cpp -------------------------------------------------------------------------------- /src/MONO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/MONO.cpp -------------------------------------------------------------------------------- /src/PATCH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/PATCH.cpp -------------------------------------------------------------------------------- /src/PEAK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/PEAK.cpp -------------------------------------------------------------------------------- /src/PLAY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/PLAY.cpp -------------------------------------------------------------------------------- /src/PLAYER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/PLAYER.cpp -------------------------------------------------------------------------------- /src/SLIDERSEQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/SLIDERSEQ.cpp -------------------------------------------------------------------------------- /src/STEPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/STEPS.cpp -------------------------------------------------------------------------------- /src/STEREO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/STEREO.cpp -------------------------------------------------------------------------------- /src/SUB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/SUB.cpp -------------------------------------------------------------------------------- /src/VARIABLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/VARIABLE.cpp -------------------------------------------------------------------------------- /src/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/dr_wav.h -------------------------------------------------------------------------------- /src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/plugin.cpp -------------------------------------------------------------------------------- /src/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/plugin.hpp -------------------------------------------------------------------------------- /src/trSEQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfoulc/cf/HEAD/src/trSEQ.cpp --------------------------------------------------------------------------------