aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/WinVST/ToVinyl4/ToVinyl4.cpp
diff options
context:
space:
mode:
authorChris Johnson <jinx6568@sover.net>2018-10-22 18:04:06 -0400
committerChris Johnson <jinx6568@sover.net>2018-10-22 18:04:06 -0400
commit633be2e22c6648c901f08f3b4cd4e8e14ea86443 (patch)
tree1e272c3d2b5bd29636b9f9f521af62734e4df012 /plugins/WinVST/ToVinyl4/ToVinyl4.cpp
parent057757aa8eb0a463caf0cdfdb5894ac5f723ff3f (diff)
downloadairwindows-lv2-port-633be2e22c6648c901f08f3b4cd4e8e14ea86443.tar.gz
airwindows-lv2-port-633be2e22c6648c901f08f3b4cd4e8e14ea86443.tar.bz2
airwindows-lv2-port-633be2e22c6648c901f08f3b4cd4e8e14ea86443.zip
Updates (in case my plane crashes)
Diffstat (limited to 'plugins/WinVST/ToVinyl4/ToVinyl4.cpp')
-rwxr-xr-xplugins/WinVST/ToVinyl4/ToVinyl4.cpp217
1 files changed, 217 insertions, 0 deletions
diff --git a/plugins/WinVST/ToVinyl4/ToVinyl4.cpp b/plugins/WinVST/ToVinyl4/ToVinyl4.cpp
new file mode 100755
index 0000000..b0c91f8
--- /dev/null
+++ b/plugins/WinVST/ToVinyl4/ToVinyl4.cpp
@@ -0,0 +1,217 @@
+/* ========================================
+ * ToVinyl4 - ToVinyl4.h
+ * Copyright (c) 2016 airwindows, All rights reserved
+ * ======================================== */
+
+#ifndef __ToVinyl4_H
+#include "ToVinyl4.h"
+#endif
+
+AudioEffect* createEffectInstance(audioMasterCallback audioMaster) {return new ToVinyl4(audioMaster);}
+
+ToVinyl4::ToVinyl4(audioMasterCallback audioMaster) :
+ AudioEffectX(audioMaster, kNumPrograms, kNumParameters)
+{
+ for(int count = 0; count < 11; count++) {
+ aMid[count] = 0.0;
+ bMid[count] = 0.0;
+ fMid[count] = 0.0;
+ aSide[count] = 0.0;
+ bSide[count] = 0.0;
+ fSide[count] = 0.0;
+ }
+ aMidPrev = 0.0; aSidePrev = 0.0;
+ bMidPrev = 0.0; bSidePrev = 0.0;
+ ataLastOutL = ataLastOutR = 0.0;
+ midSampleA = 0.0;
+ midSampleB = 0.0;
+ midSampleC = 0.0;
+ midSampleD = 0.0;
+ midSampleE = 0.0;
+ midSampleF = 0.0;
+ midSampleG = 0.0;
+ midSampleH = 0.0;
+ midSampleI = 0.0;
+ midSampleJ = 0.0;
+ midSampleK = 0.0;
+ midSampleL = 0.0;
+ midSampleM = 0.0;
+ midSampleN = 0.0;
+ midSampleO = 0.0;
+ midSampleP = 0.0;
+ midSampleQ = 0.0;
+ midSampleR = 0.0;
+ midSampleS = 0.0;
+ midSampleT = 0.0;
+ midSampleU = 0.0;
+ midSampleV = 0.0;
+ midSampleW = 0.0;
+ midSampleX = 0.0;
+ midSampleY = 0.0;
+ midSampleZ = 0.0;
+
+ sideSampleA = 0.0;
+ sideSampleB = 0.0;
+ sideSampleC = 0.0;
+ sideSampleD = 0.0;
+ sideSampleE = 0.0;
+ sideSampleF = 0.0;
+ sideSampleG = 0.0;
+ sideSampleH = 0.0;
+ sideSampleI = 0.0;
+ sideSampleJ = 0.0;
+ sideSampleK = 0.0;
+ sideSampleL = 0.0;
+ sideSampleM = 0.0;
+ sideSampleN = 0.0;
+ sideSampleO = 0.0;
+ sideSampleP = 0.0;
+ sideSampleQ = 0.0;
+ sideSampleR = 0.0;
+ sideSampleS = 0.0;
+ sideSampleT = 0.0;
+ sideSampleU = 0.0;
+ sideSampleV = 0.0;
+ sideSampleW = 0.0;
+ sideSampleX = 0.0;
+ sideSampleY = 0.0;
+ sideSampleZ = 0.0;
+ s1L = s2L = s3L = 0.0;
+ o1L = o2L = o3L = 0.0;
+ m1L = m2L = desL = 0.0;
+ s1R = s2R = s3R = 0.0;
+ o1R = o2R = o3R = 0.0;
+ m1R = m2R = desR = 0.0;
+
+ A = 0.203419; //22.0 hz = ((A*A)*290)+10 (A*A)*290 = 12 (A*A) = 0.0413793 sqrt() = 0.203419
+ B = 0.3424051; //44.0 hz = ((B*B)*290)+10 (B*B)*290 = 34 (B*B) = 0.1172413 sqrt() = 0.3424051
+ C = 0.32;
+ D = 0.064;
+ fpNShapeLA = 0.0;
+ fpNShapeLB = 0.0;
+ fpNShapeRA = 0.0;
+ fpNShapeRB = 0.0;
+ fpFlip = true;
+ //this is reset: values being initialized only once. Startup values, whatever they are.
+
+ _canDo.insert("plugAsChannelInsert"); // plug-in can be used as a channel insert effect.
+ _canDo.insert("plugAsSend"); // plug-in can be used as a send effect.
+ _canDo.insert("x2in2out");
+ setNumInputs(kNumInputs);
+ setNumOutputs(kNumOutputs);
+ setUniqueID(kUniqueId);
+ canProcessReplacing(); // supports output replacing
+ canDoubleReplacing(); // supports double precision processing
+ programsAreChunks(true);
+ vst_strncpy (_programName, "Default", kVstMaxProgNameLen); // default program name
+}
+
+ToVinyl4::~ToVinyl4() {}
+VstInt32 ToVinyl4::getVendorVersion () {return 1000;}
+void ToVinyl4::setProgramName(char *name) {vst_strncpy (_programName, name, kVstMaxProgNameLen);}
+void ToVinyl4::getProgramName(char *name) {vst_strncpy (name, _programName, kVstMaxProgNameLen);}
+//airwindows likes to ignore this stuff. Make your own programs, and make a different plugin rather than
+//trying to do versioning and preventing people from using older versions. Maybe they like the old one!
+
+static float pinParameter(float data)
+{
+ if (data < 0.0f) return 0.0f;
+ if (data > 1.0f) return 1.0f;
+ return data;
+}
+
+VstInt32 ToVinyl4::getChunk (void** data, bool isPreset)
+{
+ float *chunkData = (float *)calloc(kNumParameters, sizeof(float));
+ chunkData[0] = A;
+ chunkData[1] = B;
+ chunkData[2] = C;
+ chunkData[3] = D;
+ /* Note: The way this is set up, it will break if you manage to save settings on an Intel
+ machine and load them on a PPC Mac. However, it's fine if you stick to the machine you
+ started with. */
+
+ *data = chunkData;
+ return kNumParameters * sizeof(float);
+}
+
+VstInt32 ToVinyl4::setChunk (void* data, VstInt32 byteSize, bool isPreset)
+{
+ float *chunkData = (float *)data;
+ A = pinParameter(chunkData[0]);
+ B = pinParameter(chunkData[1]);
+ C = pinParameter(chunkData[2]);
+ D = pinParameter(chunkData[3]);
+ /* We're ignoring byteSize as we found it to be a filthy liar */
+
+ /* calculate any other fields you need here - you could copy in
+ code from setParameter() here. */
+ return 0;
+}
+
+void ToVinyl4::setParameter(VstInt32 index, float value) {
+ switch (index) {
+ case kParamA: A = value; break;
+ case kParamB: B = value; break;
+ case kParamC: C = value; break;
+ case kParamD: D = value; break;
+ default: throw; // unknown parameter, shouldn't happen!
+ }
+}
+
+float ToVinyl4::getParameter(VstInt32 index) {
+ switch (index) {
+ case kParamA: return A; break;
+ case kParamB: return B; break;
+ case kParamC: return C; break;
+ case kParamD: return D; break;
+ default: break; // unknown parameter, shouldn't happen!
+ } return 0.0; //we only need to update the relevant name, this is simple to manage
+}
+
+void ToVinyl4::getParameterName(VstInt32 index, char *text) {
+ switch (index) {
+ case kParamA: vst_strncpy (text, "Mid HiP", kVstMaxParamStrLen); break;
+ case kParamB: vst_strncpy (text, "SideHiP", kVstMaxParamStrLen); break;
+ case kParamC: vst_strncpy (text, "H Limit", kVstMaxParamStrLen); break;
+ case kParamD: vst_strncpy (text, "Gv Wear", kVstMaxParamStrLen); break;
+ default: break; // unknown parameter, shouldn't happen!
+ } //this is our labels for displaying in the VST host
+}
+
+void ToVinyl4::getParameterDisplay(VstInt32 index, char *text) {
+ switch (index) {
+ case kParamA: float2string (((A*A)*290.0)+10.0, text, kVstMaxParamStrLen); break;
+ case kParamB: float2string (((B*B)*290.0)+10.0, text, kVstMaxParamStrLen); break;
+ case kParamC: float2string (C, text, kVstMaxParamStrLen); break;
+ case kParamD: float2string (D, text, kVstMaxParamStrLen); break;
+ default: break; // unknown parameter, shouldn't happen!
+ } //this displays the values and handles 'popups' where it's discrete choices
+}
+
+void ToVinyl4::getParameterLabel(VstInt32 index, char *text) {
+ switch (index) {
+ case kParamA: vst_strncpy (text, "hz", kVstMaxParamStrLen); break;
+ case kParamB: vst_strncpy (text, "hz", kVstMaxParamStrLen); break;
+ case kParamC: vst_strncpy (text, "", kVstMaxParamStrLen); break;
+ case kParamD: vst_strncpy (text, "", kVstMaxParamStrLen); break;
+ default: break; // unknown parameter, shouldn't happen!
+ }
+}
+
+VstInt32 ToVinyl4::canDo(char *text)
+{ return (_canDo.find(text) == _canDo.end()) ? -1: 1; } // 1 = yes, -1 = no, 0 = don't know
+
+bool ToVinyl4::getEffectName(char* name) {
+ vst_strncpy(name, "ToVinyl4", kVstMaxProductStrLen); return true;
+}
+
+VstPlugCategory ToVinyl4::getPlugCategory() {return kPlugCategEffect;}
+
+bool ToVinyl4::getProductString(char* text) {
+ vst_strncpy (text, "airwindows ToVinyl4", kVstMaxProductStrLen); return true;
+}
+
+bool ToVinyl4::getVendorString(char* text) {
+ vst_strncpy (text, "airwindows", kVstMaxVendorStrLen); return true;
+}