mirror of
https://github.com/airwindows/airwindows.git
synced 2026-05-15 22:01:19 -06:00
94 lines
3 KiB
C++
Executable file
94 lines
3 KiB
C++
Executable file
/* ========================================
|
|
* Edge - Edge.h
|
|
* Created 8/12/11 by SPIAdmin
|
|
* Copyright (c) 2011 __MyCompanyName__, Airwindows uses the MIT license
|
|
* ======================================== */
|
|
|
|
#ifndef __Edge_H
|
|
#define __Edge_H
|
|
|
|
#ifndef __audioeffect__
|
|
#include "audioeffectx.h"
|
|
#endif
|
|
|
|
#include <set>
|
|
#include <string>
|
|
#include <math.h>
|
|
|
|
enum {
|
|
kParamA = 0,
|
|
kParamB = 1,
|
|
kParamC = 2,
|
|
kParamD = 3,
|
|
kParamE = 4,
|
|
kNumParameters = 5
|
|
}; //
|
|
|
|
const int kNumPrograms = 0;
|
|
const int kNumInputs = 2;
|
|
const int kNumOutputs = 2;
|
|
const unsigned long kUniqueId = 'edge'; //Change this to what the AU identity is!
|
|
|
|
class Edge :
|
|
public AudioEffectX
|
|
{
|
|
public:
|
|
Edge(audioMasterCallback audioMaster);
|
|
~Edge();
|
|
virtual bool getEffectName(char* name); // The plug-in name
|
|
virtual VstPlugCategory getPlugCategory(); // The general category for the plug-in
|
|
virtual bool getProductString(char* text); // This is a unique plug-in string provided by Steinberg
|
|
virtual bool getVendorString(char* text); // Vendor info
|
|
virtual VstInt32 getVendorVersion(); // Version number
|
|
virtual void processReplacing (float** inputs, float** outputs, VstInt32 sampleFrames);
|
|
virtual void processDoubleReplacing (double** inputs, double** outputs, VstInt32 sampleFrames);
|
|
virtual void getProgramName(char *name); // read the name from the host
|
|
virtual void setProgramName(char *name); // changes the name of the preset displayed in the host
|
|
virtual VstInt32 getChunk (void** data, bool isPreset);
|
|
virtual VstInt32 setChunk (void* data, VstInt32 byteSize, bool isPreset);
|
|
virtual float getParameter(VstInt32 index); // get the parameter value at the specified index
|
|
virtual void setParameter(VstInt32 index, float value); // set the parameter at index to value
|
|
virtual void getParameterLabel(VstInt32 index, char *text); // label for the parameter (eg dB)
|
|
virtual void getParameterName(VstInt32 index, char *text); // name of the parameter
|
|
virtual void getParameterDisplay(VstInt32 index, char *text); // text description of the current value
|
|
virtual VstInt32 canDo(char *text);
|
|
private:
|
|
char _programName[kVstMaxProgNameLen + 1];
|
|
std::set< std::string > _canDo;
|
|
|
|
enum {
|
|
fix_freq,
|
|
fix_reso,
|
|
fix_a0,
|
|
fix_a1,
|
|
fix_a2,
|
|
fix_b1,
|
|
fix_b2,
|
|
fix_sL1,
|
|
fix_sL2,
|
|
fix_sR1,
|
|
fix_sR2,
|
|
fix_total
|
|
}; //fixed frequency biquad filter for ultrasonics, stereo
|
|
double fixA[fix_total];
|
|
double fixB[fix_total];
|
|
double fixC[fix_total];
|
|
double fixD[fix_total];
|
|
double fixE[fix_total];
|
|
double fixF[fix_total];
|
|
double fixG[fix_total];
|
|
double iirSampleL;
|
|
double iirSampleR;
|
|
|
|
uint32_t fpdL;
|
|
uint32_t fpdR;
|
|
//default stuff
|
|
|
|
float A;
|
|
float B;
|
|
float C;
|
|
float D;
|
|
float E; //parameters. Always 0-1, and we scale/alter them elsewhere.
|
|
};
|
|
|
|
#endif
|