-
Notifications
You must be signed in to change notification settings - Fork 1
/
PancakeHouse.h
46 lines (35 loc) · 1.16 KB
/
PancakeHouse.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
#ifndef __PANCAKEHOUSE__
#define __PANCAKEHOUSE__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wextra-tokens"
#include "IPlug_include_in_plug_hdr.h"
#pragma clang diagnostic pop
#include "MIDIReceiver.h"
#include "VoiceManager.h"
class PancakeHouse : public IPlug
{
public:
PancakeHouse(IPlugInstanceInfo instanceInfo);
~PancakeHouse();
void Reset();
void OnParamChange(int paramIdx);
void ProcessDoubleReplacing(double** inputs, double** outputs, int nFrames);
// to recieve 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:
void CreatePresets();
MIDIReceiver mMIDIReceiver;
IControl* mVirtualKeyboard;
void processVirtualKeyboard();
void CreateParams();
void CreateGraphics();
VoiceManager voiceManager;
};
#endif