-
Notifications
You must be signed in to change notification settings - Fork 3
/
ds10.h
59 lines (47 loc) · 1.42 KB
/
ds10.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
50
51
52
53
54
55
56
57
58
59
#ifndef __DS10__
#define __DS10__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wextra-tokens"
#include "IPlug_include_in_plug_hdr.h"
#pragma clang diagnostic pop
#include "MIDIReceiver.h"
extern "C" {
#include "ds10-core.h"
};
class ds10 : public IPlug
{
public:
ds10(IPlugInstanceInfo instanceInfo);
~ds10();
void SetSampleRate();
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;
void onNoteOn(int noteNumber, int velocity);
void onNoteOff(int noteNumber, int velocity);
private:
Ds10State *ds10state;
double mFrequency;
void CreatePresets();
MIDIReceiver mMIDIReceiver;
int mOversample;
double mSampleRate;
double mExtraRatio;
int mPitchByResampling;
IControl* mVirtualKeyboard;
void processVirtualKeyboard();
double filterEnvelopeAmount;
double lfoFilterModAmount;
void CreateParams();
void CreateGraphics();
};
#endif