f@0
|
1 #define PLUG_MFR "QueenMaryUniversityOfLondon"
|
f@0
|
2 #define PLUG_NAME "AccessibleSpectrumAnalyser"
|
f@0
|
3
|
f@0
|
4 #define PLUG_CLASS_NAME AccessibleSpectrumAnalyser
|
f@0
|
5
|
f@0
|
6 #define BUNDLE_MFR "QueenMaryUniversityOfLondon"
|
f@0
|
7 #define BUNDLE_NAME "AccessibleSpectrumAnalyser"
|
f@0
|
8
|
f@0
|
9 #define PLUG_ENTRY AccessibleSpectrumAnalyser_Entry
|
f@0
|
10 #define PLUG_VIEW_ENTRY AccessibleSpectrumAnalyser_ViewEntry
|
f@0
|
11
|
f@0
|
12 #define PLUG_ENTRY_STR "AccessibleSpectrumAnalyser_Entry"
|
f@0
|
13 #define PLUG_VIEW_ENTRY_STR "AccessibleSpectrumAnalyser_ViewEntry"
|
f@0
|
14
|
f@0
|
15 #define VIEW_CLASS AccessibleSpectrumAnalyser_View
|
f@0
|
16 #define VIEW_CLASS_STR "AccessibleSpectrumAnalyser_View"
|
f@0
|
17
|
f@0
|
18 // Format 0xMAJR.MN.BG - in HEX! so version 10.1.5 would be 0x000A0105
|
f@0
|
19 #define PLUG_VER 0x00010000
|
f@0
|
20 #define VST3_VER_STR "1.0.0"
|
f@0
|
21
|
f@0
|
22 // http://service.steinberg.de/databases/plugin.nsf/plugIn?openForm
|
f@0
|
23 // 4 chars, single quotes. At least one capital letter
|
f@0
|
24 #define PLUG_UNIQUE_ID 'mcqk'
|
f@0
|
25 // make sure this is not the same as BUNDLE_MFR
|
f@0
|
26 #define PLUG_MFR_ID 'Qmul'
|
f@0
|
27
|
f@0
|
28 // ProTools stuff
|
f@0
|
29 #if (defined(AAX_API) || defined(RTAS_API)) && !defined(_PIDS_)
|
f@0
|
30 #define _PIDS_
|
f@0
|
31 const int PLUG_TYPE_IDS[2] = {'TXN1', 'TXN2'};
|
f@0
|
32 #endif
|
f@0
|
33 #define PLUG_MFR_PT "QueenMaryUniversityOfLondon\nQueenMaryUniversityOfLondon\nAcme"
|
f@0
|
34 #define PLUG_NAME_PT "AccessibleSpectrumAnalyser\nIPTX"
|
f@0
|
35 #define PLUG_TYPE_PT "Effect"
|
f@0
|
36 #define PLUG_DOES_AUDIOSUITE 0
|
f@0
|
37
|
f@0
|
38 /* PLUG_TYPE_PT can be "None", "EQ", "Dynamics", "PitchShift", "Reverb", "Delay", "Modulation",
|
f@0
|
39 "Harmonic" "NoiseReduction" "Dither" "SoundField" "Effect"
|
f@0
|
40 instrument determined by PLUG _IS _INST
|
f@0
|
41 */
|
f@0
|
42
|
f@0
|
43 #define PLUG_CHANNEL_IO "1-1 2-2"
|
f@0
|
44
|
f@0
|
45 #define PLUG_LATENCY 0
|
f@0
|
46 #define PLUG_IS_INST 0
|
f@0
|
47
|
f@0
|
48 // if this is 0 RTAS can't get tempo info
|
f@0
|
49 #define PLUG_DOES_MIDI 0
|
f@0
|
50
|
f@0
|
51 #define PLUG_DOES_STATE_CHUNKS 0
|
f@0
|
52
|
f@0
|
53 // Unique IDs for each image resource.
|
f@0
|
54 #define KNOB_ID 101
|
f@0
|
55
|
f@0
|
56 // Image resource locations for this plug.
|
f@0
|
57 #define KNOB_FN "resources/img/knob.png"
|
f@0
|
58
|
f@0
|
59
|
f@0
|
60 // GUI default dimensions
|
f@0
|
61 #define GUI_WIDTH 700
|
f@0
|
62 #define GUI_HEIGHT 400
|
f@0
|
63
|
f@0
|
64 // on MSVC, you must define SA_API in the resource editor preprocessor macros as well as the c++ ones
|
f@0
|
65 #if defined(SA_API) && !defined(OS_IOS)
|
f@0
|
66 #include "app_wrapper/app_resource.h"
|
f@0
|
67 #endif
|
f@0
|
68
|
f@0
|
69 // vst3 stuff
|
f@0
|
70 #define MFR_URL "http://depic.eecs.qmul.ac.uk/apm"
|
f@0
|
71 #define MFR_EMAIL "depic@eecs.qmul.ac.uk"
|
f@0
|
72 #define EFFECT_TYPE_VST3 "Fx"
|
f@0
|
73
|
f@0
|
74 /* "Fx|Analyzer"", "Fx|Delay", "Fx|Distortion", "Fx|Dynamics", "Fx|EQ", "Fx|Filter",
|
f@0
|
75 "Fx", "Fx|Instrument", "Fx|InstrumentExternal", "Fx|Spatial", "Fx|Generator",
|
f@0
|
76 "Fx|Mastering", "Fx|Modulation", "Fx|PitchShift", "Fx|Restoration", "Fx|Reverb",
|
f@0
|
77 "Fx|Surround", "Fx|Tools", "Instrument", "Instrument|Drum", "Instrument|Sampler",
|
f@0
|
78 "Instrument|Synth", "Instrument|Synth|Sampler", "Instrument|External", "Spatial",
|
f@0
|
79 "Spatial|Fx", "OnlyRT", "OnlyOfflineProcess", "Mono", "Stereo",
|
f@0
|
80 "Surround"
|
f@0
|
81 */
|