aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/src/PurestSquish/PurestSquish.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/LV2/src/PurestSquish/PurestSquish.cpp')
-rw-r--r--plugins/LV2/src/PurestSquish/PurestSquish.cpp86
1 files changed, 86 insertions, 0 deletions
diff --git a/plugins/LV2/src/PurestSquish/PurestSquish.cpp b/plugins/LV2/src/PurestSquish/PurestSquish.cpp
new file mode 100644
index 0000000..8bf5ccb
--- /dev/null
+++ b/plugins/LV2/src/PurestSquish/PurestSquish.cpp
@@ -0,0 +1,86 @@
+#include "PurestSquish.h"
+#include <iostream>
+#include <lv2wrapper.h>
+
+PurestSquish::PurestSquish(double rate)
+ : LV2Plugin(rate)
+{
+}
+
+void PurestSquish::activate()
+{
+ A = 0.0;
+ B = 0.0;
+ C = 1.0;
+ D = 1.0;
+
+ muSpeedAL = 10000;
+ muSpeedBL = 10000;
+ muSpeedCL = 10000;
+ muSpeedDL = 10000;
+ muSpeedEL = 10000;
+ muCoefficientAL = 1;
+ muCoefficientBL = 1;
+ muCoefficientCL = 1;
+ muCoefficientDL = 1;
+ muCoefficientEL = 1;
+ iirSampleAL = 0.0;
+ iirSampleBL = 0.0;
+ iirSampleCL = 0.0;
+ iirSampleDL = 0.0;
+ iirSampleEL = 0.0;
+ lastCoefficientAL = 1;
+ lastCoefficientBL = 1;
+ lastCoefficientCL = 1;
+ lastCoefficientDL = 1;
+ mergedCoefficientsL = 1;
+ muVaryL = 1;
+
+ muSpeedAR = 10000;
+ muSpeedBR = 10000;
+ muSpeedCR = 10000;
+ muSpeedDR = 10000;
+ muSpeedER = 10000;
+ muCoefficientAR = 1;
+ muCoefficientBR = 1;
+ muCoefficientCR = 1;
+ muCoefficientDR = 1;
+ muCoefficientER = 1;
+ iirSampleAR = 0.0;
+ iirSampleBR = 0.0;
+ iirSampleCR = 0.0;
+ iirSampleDR = 0.0;
+ iirSampleER = 0.0;
+ lastCoefficientAR = 1;
+ lastCoefficientBR = 1;
+ lastCoefficientCR = 1;
+ lastCoefficientDR = 1;
+ mergedCoefficientsR = 1;
+ muVaryR = 1;
+
+ count = 1;
+ fpFlip = true;
+
+ fpd = 17;
+ //this is reset: values being initialized only once. Startup values, whatever they are.
+
+}
+
+void PurestSquish::run(uint32_t num_samples)
+{
+ A = *params[0];
+ B = *params[1];
+ C = *params[2];
+ D = *params[3];
+
+ processReplacing(const_cast<float **>(in), out, num_samples);
+}
+
+//
+// Include the processing code from the VST version.
+//
+#include <cmath>
+#include "../../../LinuxVST/src/PurestSquish/PurestSquishProc.cpp"
+
+// Create the LV2Wrapper and register the plugin
+LV2Wrapper<PurestSquish> plugin;