aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/src/CrunchyGrooveWear/CrunchyGrooveWear.cpp
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2021-04-03 15:07:02 +0200
committerHarald Eilertsen <haraldei@anduin.net>2021-04-03 15:30:28 +0200
commit7881b2698cee2b0187adbe8a2c0a66a90cc371c1 (patch)
tree97634f663c6f24ae7d03a9400be2320671a494f1 /plugins/LV2/src/CrunchyGrooveWear/CrunchyGrooveWear.cpp
parent44faf659b6dd2de36d086e1cb5dfa5a978d89d37 (diff)
downloadairwindows-lv2-port-7881b2698cee2b0187adbe8a2c0a66a90cc371c1.tar.gz
airwindows-lv2-port-7881b2698cee2b0187adbe8a2c0a66a90cc371c1.tar.bz2
airwindows-lv2-port-7881b2698cee2b0187adbe8a2c0a66a90cc371c1.zip
Add more plugins, Console5Buss to curve
Diffstat (limited to 'plugins/LV2/src/CrunchyGrooveWear/CrunchyGrooveWear.cpp')
-rw-r--r--plugins/LV2/src/CrunchyGrooveWear/CrunchyGrooveWear.cpp57
1 files changed, 57 insertions, 0 deletions
diff --git a/plugins/LV2/src/CrunchyGrooveWear/CrunchyGrooveWear.cpp b/plugins/LV2/src/CrunchyGrooveWear/CrunchyGrooveWear.cpp
new file mode 100644
index 0000000..9e225e1
--- /dev/null
+++ b/plugins/LV2/src/CrunchyGrooveWear/CrunchyGrooveWear.cpp
@@ -0,0 +1,57 @@
+#include "CrunchyGrooveWear.h"
+#include <iostream>
+#include <lv2wrapper.h>
+
+CrunchyGrooveWear::CrunchyGrooveWear(double rate)
+ : LV2Plugin(rate)
+{
+}
+
+void CrunchyGrooveWear::activate()
+{
+ A = 0.064;
+ B = 1.0;
+
+ for(int count = 0; count < 21; count++) {
+ aMidL[count] = 0.0;
+ bMidL[count] = 0.0;
+ cMidL[count] = 0.0;
+ dMidL[count] = 0.0;
+ aMidR[count] = 0.0;
+ bMidR[count] = 0.0;
+ cMidR[count] = 0.0;
+ dMidR[count] = 0.0;
+ fMid[count] = 0.0;
+ }
+ aMidPrevL = 0.0;
+ bMidPrevL = 0.0;
+ cMidPrevL = 0.0;
+ dMidPrevL = 0.0;
+
+ aMidPrevR = 0.0;
+ bMidPrevR = 0.0;
+ cMidPrevR = 0.0;
+ dMidPrevR = 0.0;
+
+ fpNShapeL = 0.0;
+ fpNShapeR = 0.0;
+ //this is reset: values being initialized only once. Startup values, whatever they are.
+
+}
+
+void CrunchyGrooveWear::run(uint32_t num_samples)
+{
+ A = *params[0];
+ B = *params[1];
+
+ processReplacing(const_cast<float **>(in), out, num_samples);
+}
+
+//
+// Include the processing code from the VST version.
+//
+#include <cmath>
+#include "../../../LinuxVST/src/CrunchyGrooveWear/CrunchyGrooveWearProc.cpp"
+
+// Create the LV2Wrapper and register the plugin
+LV2Wrapper<CrunchyGrooveWear> plugin;