mirror of
https://github.com/airwindows/airwindows.git
synced 2026-05-17 14:16:01 -06:00
296 lines
9.9 KiB
C++
Executable file
296 lines
9.9 KiB
C++
Executable file
/* ========================================
|
|
* kCathedral3 - kCathedral3.h
|
|
* Copyright (c) airwindows, Airwindows uses the MIT license
|
|
* ======================================== */
|
|
|
|
#ifndef __kCathedral3_H
|
|
#include "kCathedral3.h"
|
|
#endif
|
|
|
|
AudioEffect* createEffectInstance(audioMasterCallback audioMaster) {return new kCathedral3(audioMaster);}
|
|
|
|
kCathedral3::kCathedral3(audioMasterCallback audioMaster) :
|
|
AudioEffectX(audioMaster, kNumPrograms, kNumParameters)
|
|
{
|
|
A = 0.5;
|
|
B = 0.5;
|
|
C = 1.0;
|
|
D = 0.0;
|
|
E = 0.25;
|
|
|
|
gainOutL = gainOutR = 1.0;
|
|
|
|
for(int count = 0; count < delayA+2; count++) {aAL[count] = 0.0; aAR[count] = 0.0;}
|
|
for(int count = 0; count < delayB+2; count++) {aBL[count] = 0.0; aBR[count] = 0.0;}
|
|
for(int count = 0; count < delayC+2; count++) {aCL[count] = 0.0; aCR[count] = 0.0;}
|
|
for(int count = 0; count < delayD+2; count++) {aDL[count] = 0.0; aDR[count] = 0.0;}
|
|
for(int count = 0; count < delayE+2; count++) {aEL[count] = 0.0; aER[count] = 0.0;}
|
|
for(int count = 0; count < delayF+2; count++) {aFL[count] = 0.0; aFR[count] = 0.0;}
|
|
for(int count = 0; count < delayG+2; count++) {aGL[count] = 0.0; aGR[count] = 0.0;}
|
|
for(int count = 0; count < delayH+2; count++) {aHL[count] = 0.0; aHR[count] = 0.0;}
|
|
for(int count = 0; count < delayI+2; count++) {aIL[count] = 0.0; aIR[count] = 0.0;}
|
|
for(int count = 0; count < delayJ+2; count++) {aJL[count] = 0.0; aJR[count] = 0.0;}
|
|
for(int count = 0; count < delayK+2; count++) {aKL[count] = 0.0; aKR[count] = 0.0;}
|
|
for(int count = 0; count < delayL+2; count++) {aLL[count] = 0.0; aLR[count] = 0.0;}
|
|
for(int count = 0; count < delayM+2; count++) {aML[count] = 0.0; aMR[count] = 0.0;}
|
|
for(int count = 0; count < delayN+2; count++) {aNL[count] = 0.0; aNR[count] = 0.0;}
|
|
for(int count = 0; count < delayO+2; count++) {aOL[count] = 0.0; aOR[count] = 0.0;}
|
|
for(int count = 0; count < delayP+2; count++) {aPL[count] = 0.0; aPR[count] = 0.0;}
|
|
for(int count = 0; count < delayQ+2; count++) {aQL[count] = 0.0; aQR[count] = 0.0;}
|
|
for(int count = 0; count < delayR+2; count++) {aRL[count] = 0.0; aRR[count] = 0.0;}
|
|
for(int count = 0; count < delayS+2; count++) {aSL[count] = 0.0; aSR[count] = 0.0;}
|
|
for(int count = 0; count < delayT+2; count++) {aTL[count] = 0.0; aTR[count] = 0.0;}
|
|
for(int count = 0; count < delayU+2; count++) {aUL[count] = 0.0; aUR[count] = 0.0;}
|
|
for(int count = 0; count < delayV+2; count++) {aVL[count] = 0.0; aVR[count] = 0.0;}
|
|
for(int count = 0; count < delayW+2; count++) {aWL[count] = 0.0; aWR[count] = 0.0;}
|
|
for(int count = 0; count < delayX+2; count++) {aXL[count] = 0.0; aXR[count] = 0.0;}
|
|
for(int count = 0; count < delayY+2; count++) {aYL[count] = 0.0; aYR[count] = 0.0;}
|
|
|
|
for(int count = 0; count < predelay+2; count++) {aZL[count] = 0.0; aZR[count] = 0.0;}
|
|
for(int count = 0; count < vlfpredelay+2; count++) {aVLFL[count] = 0.0; aVLFR[count] = 0.0;}
|
|
|
|
feedbackAL = 0.0;
|
|
feedbackBL = 0.0;
|
|
feedbackCL = 0.0;
|
|
feedbackDL = 0.0;
|
|
feedbackEL = 0.0;
|
|
|
|
feedbackER = 0.0;
|
|
feedbackJR = 0.0;
|
|
feedbackOR = 0.0;
|
|
feedbackTR = 0.0;
|
|
feedbackYR = 0.0;
|
|
|
|
countAL = 1;
|
|
countBL = 1;
|
|
countCL = 1;
|
|
countDL = 1;
|
|
countEL = 1;
|
|
countFL = 1;
|
|
countGL = 1;
|
|
countHL = 1;
|
|
countIL = 1;
|
|
countJL = 1;
|
|
countKL = 1;
|
|
countLL = 1;
|
|
countML = 1;
|
|
countNL = 1;
|
|
countOL = 1;
|
|
countPL = 1;
|
|
countQL = 1;
|
|
countRL = 1;
|
|
countSL = 1;
|
|
countTL = 1;
|
|
countUL = 1;
|
|
countVL = 1;
|
|
countWL = 1;
|
|
countXL = 1;
|
|
countYL = 1;
|
|
|
|
countAR = 1;
|
|
countBR = 1;
|
|
countCR = 1;
|
|
countDR = 1;
|
|
countER = 1;
|
|
countFR = 1;
|
|
countGR = 1;
|
|
countHR = 1;
|
|
countIR = 1;
|
|
countJR = 1;
|
|
countKR = 1;
|
|
countLR = 1;
|
|
countMR = 1;
|
|
countNR = 1;
|
|
countOR = 1;
|
|
countPR = 1;
|
|
countQR = 1;
|
|
countRR = 1;
|
|
countSR = 1;
|
|
countTR = 1;
|
|
countUR = 1;
|
|
countVR = 1;
|
|
countWR = 1;
|
|
countXR = 1;
|
|
countYR = 1;
|
|
|
|
countZ = 1;
|
|
countVLF = 1;
|
|
|
|
for (int x = 0; x < pear_total; x++) {pearA[x] = 0.0; pearB[x] = 0.0; pearC[x] = 0.0; pearD[x] = 0.0; pearE[x] = 0.0; pearF[x] = 0.0;}
|
|
//from PearEQ
|
|
|
|
vibratoL = vibAL = vibAR = vibBL = vibBR = 0.0;
|
|
vibratoR = M_PI_4;
|
|
|
|
subAL = subAR = subBL = subBR = subCL = subCR = 0.0;
|
|
sbAL = sbAR = sbBL = sbBR = sbCL = sbCR = 0.0;
|
|
//from SubTight
|
|
|
|
for(int count = 0; count < dscBuf+2; count++) {
|
|
dBaL[count] = 0.0;
|
|
dBaR[count] = 0.0;
|
|
dBbL[count] = 0.0;
|
|
dBbR[count] = 0.0;
|
|
dBcL[count] = 0.0;
|
|
dBcR[count] = 0.0;
|
|
dBdL[count] = 0.0;
|
|
dBdR[count] = 0.0;
|
|
dBeL[count] = 0.0;
|
|
dBeR[count] = 0.0;
|
|
}
|
|
dBaPosL = 0.0;
|
|
dBbPosL = 0.0;
|
|
dBcPosL = 0.0;
|
|
dBdPosL = 0.0;
|
|
dBePosL = 0.0;
|
|
dBaPosR = 0.0;
|
|
dBbPosR = 0.0;
|
|
dBcPosR = 0.0;
|
|
dBdPosR = 0.0;
|
|
dBePosR = 0.0;
|
|
dBaXL = 1;
|
|
dBbXL = 1;
|
|
dBcXL = 1;
|
|
dBdXL = 1;
|
|
dBeXL = 1;
|
|
dBaXR = 1;
|
|
dBbXR = 1;
|
|
dBcXR = 1;
|
|
dBdXR = 1;
|
|
dBeXR = 1;
|
|
|
|
for (int x = 0; x < bez_total; x++) bez[x] = 0.0;
|
|
bez[bez_cycle] = 1.0;
|
|
|
|
fpdL = 1.0; while (fpdL < 16386) fpdL = rand()*UINT32_MAX;
|
|
fpdR = 1.0; while (fpdR < 16386) fpdR = rand()*UINT32_MAX;
|
|
//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
|
|
}
|
|
|
|
kCathedral3::~kCathedral3() {}
|
|
VstInt32 kCathedral3::getVendorVersion () {return 1000;}
|
|
void kCathedral3::setProgramName(char *name) {vst_strncpy (_programName, name, kVstMaxProgNameLen);}
|
|
void kCathedral3::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 kCathedral3::getChunk (void** data, bool isPreset)
|
|
{
|
|
float *chunkData = (float *)calloc(kNumParameters, sizeof(float));
|
|
chunkData[0] = A;
|
|
chunkData[1] = B;
|
|
chunkData[2] = C;
|
|
chunkData[3] = D;
|
|
chunkData[4] = E;
|
|
/* 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 kCathedral3::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]);
|
|
E = pinParameter(chunkData[4]);
|
|
/* 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 kCathedral3::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;
|
|
case kParamE: E = value; break;
|
|
default: throw; // unknown parameter, shouldn't happen!
|
|
}
|
|
}
|
|
|
|
float kCathedral3::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;
|
|
case kParamE: return E; 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 kCathedral3::getParameterName(VstInt32 index, char *text) {
|
|
switch (index) {
|
|
case kParamA: vst_strncpy (text, "Top dB", kVstMaxParamStrLen); break;
|
|
case kParamB: vst_strncpy (text, "Regen", kVstMaxParamStrLen); break;
|
|
case kParamC: vst_strncpy (text, "DeRez", kVstMaxParamStrLen); break;
|
|
case kParamD: vst_strncpy (text, "Predlay", kVstMaxParamStrLen); break;
|
|
case kParamE: vst_strncpy (text, "Wetness", kVstMaxParamStrLen); break;
|
|
default: break; // unknown parameter, shouldn't happen!
|
|
} //this is our labels for displaying in the VST host
|
|
}
|
|
|
|
void kCathedral3::getParameterDisplay(VstInt32 index, char *text) {
|
|
switch (index) {
|
|
case kParamA: float2string ((A*70.0)+70.0, text, kVstMaxParamStrLen); break;
|
|
case kParamB: float2string (B, text, kVstMaxParamStrLen); break;
|
|
case kParamC: float2string (C, text, kVstMaxParamStrLen); break;
|
|
case kParamD: float2string (D, text, kVstMaxParamStrLen); break;
|
|
case kParamE: float2string (E, text, kVstMaxParamStrLen); break;
|
|
default: break; // unknown parameter, shouldn't happen!
|
|
} //this displays the values and handles 'popups' where it's discrete choices
|
|
}
|
|
|
|
void kCathedral3::getParameterLabel(VstInt32 index, char *text) {
|
|
switch (index) {
|
|
case kParamA: vst_strncpy (text, "dB", kVstMaxParamStrLen); break;
|
|
case kParamB: vst_strncpy (text, "", kVstMaxParamStrLen); break;
|
|
case kParamC: vst_strncpy (text, "", kVstMaxParamStrLen); break;
|
|
case kParamD: vst_strncpy (text, "", kVstMaxParamStrLen); break;
|
|
case kParamE: vst_strncpy (text, "", kVstMaxParamStrLen); break;
|
|
default: break; // unknown parameter, shouldn't happen!
|
|
}
|
|
}
|
|
|
|
VstInt32 kCathedral3::canDo(char *text)
|
|
{ return (_canDo.find(text) == _canDo.end()) ? -1: 1; } // 1 = yes, -1 = no, 0 = don't know
|
|
|
|
bool kCathedral3::getEffectName(char* name) {
|
|
vst_strncpy(name, "kCathedral3", kVstMaxProductStrLen); return true;
|
|
}
|
|
|
|
VstPlugCategory kCathedral3::getPlugCategory() {return kPlugCategEffect;}
|
|
|
|
bool kCathedral3::getProductString(char* text) {
|
|
vst_strncpy (text, "airwindows kCathedral3", kVstMaxProductStrLen); return true;
|
|
}
|
|
|
|
bool kCathedral3::getVendorString(char* text) {
|
|
vst_strncpy (text, "airwindows", kVstMaxVendorStrLen); return true;
|
|
}
|