-
Notifications
You must be signed in to change notification settings - Fork 0
/
Synthesis.h
37 lines (32 loc) · 1.03 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
#ifndef __SYNTHESIS__
#define __SYNTHESIS__
#pragma warning( suppress : 4101 4129 )
#include "IPlug_include_in_plug_hdr.h"
#include "Oscillator.h"
#include "MIDIReceiver.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 = 48;
int lastVirtualKeyboardNoteNumber;
private:
double mFrequency;
void CreatePresets();
Oscillator mOscillator;
MIDIReceiver mMIDIReceiver;
IControl* mVirtualKeyboard;
void processVirtualKeyboard();
};
#endif