aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LV2/src/Distance2
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/LV2/src/Distance2')
-rw-r--r--plugins/LV2/src/Distance2/Distance2.cpp83
-rw-r--r--plugins/LV2/src/Distance2/Distance2.h84
-rw-r--r--plugins/LV2/src/Distance2/Distance2.ttl60
-rw-r--r--plugins/LV2/src/Distance2/manifest.ttl.in6
4 files changed, 233 insertions, 0 deletions
diff --git a/plugins/LV2/src/Distance2/Distance2.cpp b/plugins/LV2/src/Distance2/Distance2.cpp
new file mode 100644
index 0000000..3fa2788
--- /dev/null
+++ b/plugins/LV2/src/Distance2/Distance2.cpp
@@ -0,0 +1,83 @@
+#include "Distance2.h"
+#include <iostream>
+#include <lv2wrapper.h>
+
+Distance2::Distance2(double rate)
+ : LV2Plugin(rate)
+{
+}
+
+void Distance2::activate()
+{
+ A = 0.85;
+ B = 0.618;
+ C = 0.618;
+
+ thirdSampleL = lastSampleL = 0.0;
+ thirdSampleR = lastSampleR = 0.0;
+
+ lastSampleAL = 0.0;
+ lastSampleBL = 0.0;
+ lastSampleCL = 0.0;
+ lastSampleDL = 0.0;
+ lastSampleEL = 0.0;
+ lastSampleFL = 0.0;
+ lastSampleGL = 0.0;
+ lastSampleHL = 0.0;
+ lastSampleIL = 0.0;
+ lastSampleJL = 0.0;
+ lastSampleKL = 0.0;
+ lastSampleLL = 0.0;
+ lastSampleML = 0.0;
+
+ lastSampleAR = 0.0;
+ lastSampleBR = 0.0;
+ lastSampleCR = 0.0;
+ lastSampleDR = 0.0;
+ lastSampleER = 0.0;
+ lastSampleFR = 0.0;
+ lastSampleGR = 0.0;
+ lastSampleHR = 0.0;
+ lastSampleIR = 0.0;
+ lastSampleJR = 0.0;
+ lastSampleKR = 0.0;
+ lastSampleLR = 0.0;
+ lastSampleMR = 0.0;
+
+ thresholdA = 0.618033988749894;
+ thresholdB = 0.679837387624884;
+ thresholdC = 0.747821126387373;
+ thresholdD = 0.82260323902611;
+ thresholdE = 0.904863562928721;
+ thresholdF = 0.995349919221593;
+ thresholdG = 1.094884911143752;
+ thresholdH = 1.204373402258128;
+ thresholdI = 1.32481074248394;
+ thresholdJ = 1.457291816732335;
+ thresholdK = 1.603020998405568;
+ thresholdL = 1.763323098246125;
+ thresholdM = 1.939655408070737;
+
+ fpNShapeL = 0.0;
+ fpNShapeR = 0.0;
+ //this is reset: values being initialized only once. Startup values, whatever they are.
+
+}
+
+void Distance2::run(uint32_t num_samples)
+{
+ A = *params[0];
+ B = *params[1];
+ C = *params[2];
+
+ processReplacing(const_cast<float **>(in), out, num_samples);
+}
+
+//
+// Include the processing code from the VST version.
+//
+#include <cmath>
+#include "../../../LinuxVST/src/Distance2/Distance2Proc.cpp"
+
+// Create the LV2Wrapper and register the plugin
+LV2Wrapper<Distance2> plugin;
diff --git a/plugins/LV2/src/Distance2/Distance2.h b/plugins/LV2/src/Distance2/Distance2.h
new file mode 100644
index 0000000..e49e0df
--- /dev/null
+++ b/plugins/LV2/src/Distance2/Distance2.h
@@ -0,0 +1,84 @@
+#ifndef __Distance2_H
+#define __Distance2_H
+
+#include <lv2plugin.h>
+
+class Distance2 : public LV2Plugin<3> {
+public:
+ Distance2(double rate);
+
+ void activate();
+ void run(uint32_t num_samples);
+
+ static constexpr const char * URI = "https://www.airwindows.com/distance2";
+
+private:
+ /*
+ * These are the original DSP functions from the VST plugin.
+ * They need to be called from the LV2 plugins `run` function.
+ */
+ void processReplacing(float **in, float **out, VstInt32 samples);
+ void processDoubleReplacing(double **in, double **out, VstInt32 samples);
+
+ /*
+ * Members needed by the processing functions.
+ */
+
+ long double fpNShapeL;
+ long double fpNShapeR;
+ //default stuff
+
+ long double lastSampleAL;
+ long double lastSampleBL;
+ long double lastSampleCL;
+ long double lastSampleDL;
+ long double lastSampleEL;
+ long double lastSampleFL;
+ long double lastSampleGL;
+ long double lastSampleHL;
+ long double lastSampleIL;
+ long double lastSampleJL;
+ long double lastSampleKL;
+ long double lastSampleLL;
+ long double lastSampleML;
+
+ long double lastSampleAR;
+ long double lastSampleBR;
+ long double lastSampleCR;
+ long double lastSampleDR;
+ long double lastSampleER;
+ long double lastSampleFR;
+ long double lastSampleGR;
+ long double lastSampleHR;
+ long double lastSampleIR;
+ long double lastSampleJR;
+ long double lastSampleKR;
+ long double lastSampleLR;
+ long double lastSampleMR;
+
+ long double thresholdA;
+ long double thresholdB;
+ long double thresholdC;
+ long double thresholdD;
+ long double thresholdE;
+ long double thresholdF;
+ long double thresholdG;
+ long double thresholdH;
+ long double thresholdI;
+ long double thresholdJ;
+ long double thresholdK;
+ long double thresholdL;
+ long double thresholdM;
+
+ double thirdSampleL;
+ double lastSampleL;
+
+ double thirdSampleR;
+ double lastSampleR;
+
+ float A;
+ float B;
+ float C;
+};
+
+#endif
diff --git a/plugins/LV2/src/Distance2/Distance2.ttl b/plugins/LV2/src/Distance2/Distance2.ttl
new file mode 100644
index 0000000..0d7dc0c
--- /dev/null
+++ b/plugins/LV2/src/Distance2/Distance2.ttl
@@ -0,0 +1,60 @@
+# Airwindows Distance2 plugin description
+
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix units: <http://lv2plug.in/ns/extensions/units#> .
+
+<https://www.airwindows.com/distance2>
+ a lv2:Plugin ,
+ lv2:EffectsPlugin ;
+ lv2:project <https://www.airwindows.com> ;
+
+ lv2:optionalFeature lv2:hardRTCapable ;
+
+ # Define the ports for this plugin.
+ lv2:port [
+ a lv2:InputPort , lv2:ControlPort ;
+ lv2:index 0 ;
+ lv2:symbol "A" ;
+ lv2:name "Atmosph" ;
+ lv2:default 0.5 ;
+ lv2:minimum 0.0 ;
+ lv2:maximum 1.0 ;
+ ] , [
+ a lv2:InputPort , lv2:ControlPort ;
+ lv2:index 1 ;
+ lv2:symbol "B" ;
+ lv2:name "Darken" ;
+ lv2:default 0.5 ;
+ lv2:minimum 0.0 ;
+ lv2:maximum 1.0 ;
+ ] , [
+ a lv2:InputPort , lv2:ControlPort ;
+ lv2:index 2 ;
+ lv2:symbol "C" ;
+ lv2:name "Dry/Wet" ;
+ lv2:default 0.5 ;
+ lv2:minimum 0.0 ;
+ lv2:maximum 1.0 ;
+ ] , [
+ a lv2:InputPort , lv2:AudioPort ;
+ lv2:index 3 ;
+ lv2:symbol "in_l" ;
+ lv2:name "In left" ;
+ ] , [
+ a lv2:InputPort , lv2:AudioPort ;
+ lv2:index 4 ;
+ lv2:symbol "in_r" ;
+ lv2:name "In right" ;
+ ] , [
+ a lv2:OutputPort , lv2:AudioPort ;
+ lv2:index 5 ;
+ lv2:symbol "out_l" ;
+ lv2:name "Out left" ;
+ ] , [
+ a lv2:OutputPort , lv2:AudioPort ;
+ lv2:index 6 ;
+ lv2:symbol "out_r" ;
+ lv2:name "Out right" ;
+ ] .
diff --git a/plugins/LV2/src/Distance2/manifest.ttl.in b/plugins/LV2/src/Distance2/manifest.ttl.in
new file mode 100644
index 0000000..e3388c3
--- /dev/null
+++ b/plugins/LV2/src/Distance2/manifest.ttl.in
@@ -0,0 +1,6 @@
+airwindows:distance2
+ a lv2:Plugin ;
+ doap:name "Airwindows Distance2" ;
+ doap:license <http://opensource.org/licenses/mit> ;
+ lv2:binary <Distance2@CMAKE_SHARED_LIBRARY_SUFFIX@> ;
+ rdfs:seeAlso <Distance2.ttl> .