-
Notifications
You must be signed in to change notification settings - Fork 2
/
Synthesis.h
49 lines (45 loc) · 1.49 KB
/
Synthesis.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef __SYNTHESIS__
#define __SYNTHESIS__
//Memory leakage debugging
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
//end of memory leakage debugging
#include "IPlug_include_in_plug_hdr.h"
#include "MIDIReceiver.h"
#include "ADSRVisualizationControl.h"
#include "VoiceManager.h"
#include "../verbengine.h"
class Synthesis : public IPlug
{
public:
Synthesis(IPlugInstanceInfo instanceInfo);
~Synthesis();
void Reset();
void OnParamChange(int paramIdx);
void ProcessDoubleReplacing(double** inputs, double** outputs, int nFrames);
// to receive MIDI messages:
void ProcessMidiMsg(IMidiMsg* pMsg);
// Needed for the GUI keyboard:
// Should return non-zero if one or more keys are playing.
inline int GetNumKeys() const { return mMIDIReceiver.getNumKeys(); };
// Should return true if the specified key is playing.
inline bool GetKeyStatus(int key) const { return mMIDIReceiver.getKeyStatus(key); };
static const int virtualKeyboardMinimumNoteNumber = 0;
int lastVirtualKeyboardNoteNumber;
private:
WDL_ReverbEngine mVerbEngine;
double mDry = 1., mWet = 0.5;
double *ori_l = nullptr, *ori_r = nullptr; // to make free alloced space easy.
double mFrequency;
void CreatePresets();
VoiceManager voiceManager;
MIDIReceiver mMIDIReceiver;
IControl* mVirtualKeyboard;
IKnobMultiControl* ampAdsrKnobs[4];
IKnobMultiControl* filterAdsrKnobs[4];
ADSRVisualizationControl* ampAdsrVisualization;
ADSRVisualizationControl* filterEnvAdsrVisualization;
void processVirtualKeyboard();
};
#endif