-
Notifications
You must be signed in to change notification settings - Fork 2
/
resource.h
78 lines (59 loc) · 2.42 KB
/
resource.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#define PLUG_MFR "Damien Quartz"
#define PLUG_NAME "SpectralHarp"
#define PLUG_CLASS_NAME SpectralHarp
#define BUNDLE_DOMAIN "net"
#define BUNDLE_MFR "compartmental"
#define BUNDLE_NAME "SpectralHarp"
#define PLUG_ENTRY SpectralHarp_Entry
#define PLUG_VIEW_ENTRY SpectralHarp_ViewEntry
#define PLUG_ENTRY_STR "SpectralHarp_Entry"
#define PLUG_VIEW_ENTRY_STR "SpectralHarp_ViewEntry"
#define VIEW_CLASS SpectralHarp_View
#define VIEW_CLASS_STR "SpectralHarp_View"
// Format 0xMAJR.MN.BG - in HEX! so version 10.1.5 would be 0x000A0105
#define PLUG_VER 0x00010100
#define VST3_VER_STR "1.1.0"
// http://service.steinberg.de/databases/plugin.nsf/plugIn?openForm
// 4 chars, single quotes. At least one capital letter
#define PLUG_UNIQUE_ID 'Shrp'
// make sure this is not the same as BUNDLE_MFR
#define PLUG_MFR_ID 'Cpmt'
// ProTools stuff
#if (defined(AAX_API) || defined(RTAS_API)) && !defined(_PIDS_)
#define _PIDS_
const int PLUG_TYPE_IDS[2] = {'EFN1', 'EFN2'};
const int PLUG_TYPE_IDS_AS[2] = {'EFA1', 'EFA2'}; // AudioSuite
#endif
#define PLUG_MFR_PT "Damien Quartz\nDamien Quartz\nCompartmental"
#define PLUG_NAME_PT "Damien Quartz\nSHRP"
#define PLUG_TYPE_PT "Effect"
#define PLUG_DOES_AUDIOSUITE 1
/* PLUG_TYPE_PT can be "None", "EQ", "Dynamics", "PitchShift", "Reverb", "Delay", "Modulation",
"Harmonic" "NoiseReduction" "Dither" "SoundField" "Effect"
instrument determined by PLUG _IS _INST
*/
#define PLUG_CHANNEL_IO "1-1 2-2"
#define PLUG_LATENCY 0
#define PLUG_IS_INST 1
// if this is 0 RTAS can't get tempo info
#define PLUG_DOES_MIDI 1
#define PLUG_DOES_STATE_CHUNKS 0
// GUI default dimensions
#define GUI_WIDTH 1024
#define GUI_HEIGHT 400
// on MSVC, you must define SA_API in the resource editor preprocessor macros as well as the c++ ones
#if defined(SA_API)
#include "app_wrapper/app_resource.h"
#endif
// vst3 stuff
#define MFR_URL "www.compartmental.net"
#define MFR_EMAIL "[email protected]"
#define EFFECT_TYPE_VST3 "Instrument|Synth"
/* "Fx|Analyzer"", "Fx|Delay", "Fx|Distortion", "Fx|Dynamics", "Fx|EQ", "Fx|Filter",
"Fx", "Fx|Instrument", "Fx|InstrumentExternal", "Fx|Spatial", "Fx|Generator",
"Fx|Mastering", "Fx|Modulation", "Fx|PitchShift", "Fx|Restoration", "Fx|Reverb",
"Fx|Surround", "Fx|Tools", "Instrument", "Instrument|Drum", "Instrument|Sampler",
"Instrument|Synth", "Instrument|Synth|Sampler", "Instrument|External", "Spatial",
"Spatial|Fx", "OnlyRT", "OnlyOfflineProcess", "Mono", "Stereo",
"Surround"
*/