airwindows/plugins/MacVST/Hype/source/Hype.cpp
2022-11-21 09:20:21 -05:00

102 lines
3.6 KiB
C++
Executable file

/* ========================================
* Hype - Hype.h
* Copyright (c) 2016 airwindows, Airwindows uses the MIT license
* ======================================== */
#ifndef __Hype_H
#include "Hype.h"
#endif
AudioEffect* createEffectInstance(audioMasterCallback audioMaster) {return new Hype(audioMaster);}
Hype::Hype(audioMasterCallback audioMaster) :
AudioEffectX(audioMaster, kNumPrograms, kNumParameters)
{
for(int count = 0; count < 10; count++) {softL[count] = 0.0; softR[count] = 0.0;}
double overallscale = 1.0;
overallscale /= 44100.0;
overallscale *= getSampleRate();
cycleEnd = floor(overallscale);
if (cycleEnd < 1) cycleEnd = 1;
if (cycleEnd == 3) cycleEnd = 4;
if (cycleEnd > 4) cycleEnd = 4;
//this is going to be 2 for 88.1 or 96k, 4 for 176 or 192k
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
}
Hype::~Hype() {}
VstInt32 Hype::getVendorVersion () {return 1000;}
void Hype::setProgramName(char *name) {vst_strncpy (_programName, name, kVstMaxProgNameLen);}
void Hype::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!
VstInt32 Hype::getChunk (void** data, bool isPreset)
{
return kNumParameters * sizeof(float);
}
VstInt32 Hype::setChunk (void* data, VstInt32 byteSize, bool isPreset)
{
return 0;
}
void Hype::setParameter(VstInt32 index, float value) {
switch (index) {
default: throw; // unknown parameter, shouldn't happen!
}
}
float Hype::getParameter(VstInt32 index) {
switch (index) {
default: break; // unknown parameter, shouldn't happen!
} return 0.0; //we only need to update the relevant name, this is simple to manage
}
void Hype::getParameterName(VstInt32 index, char *text) {
switch (index) {
default: break; // unknown parameter, shouldn't happen!
} //this is our labels for displaying in the VST host
}
void Hype::getParameterDisplay(VstInt32 index, char *text) {
switch (index) {
default: break; // unknown parameter, shouldn't happen!
} //this displays the values and handles 'popups' where it's discrete choices
}
void Hype::getParameterLabel(VstInt32 index, char *text) {
switch (index) {
default: break; // unknown parameter, shouldn't happen!
}
}
VstInt32 Hype::canDo(char *text)
{ return (_canDo.find(text) == _canDo.end()) ? -1: 1; } // 1 = yes, -1 = no, 0 = don't know
bool Hype::getEffectName(char* name) {
vst_strncpy(name, "Hype", kVstMaxProductStrLen); return true;
}
VstPlugCategory Hype::getPlugCategory() {return kPlugCategEffect;}
bool Hype::getProductString(char* text) {
vst_strncpy (text, "airwindows Hype", kVstMaxProductStrLen); return true;
}
bool Hype::getVendorString(char* text) {
vst_strncpy (text, "airwindows", kVstMaxVendorStrLen); return true;
}