-
Notifications
You must be signed in to change notification settings - Fork 41
/
remotepluginclient.h
304 lines (250 loc) · 6.74 KB
/
remotepluginclient.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/* dssi-vst: a DSSI plugin wrapper for VST effects and instruments
Copyright 2004-2007 Chris Cannam
This file is part of linvst.
linvst is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef REMOTE_PLUGIN_CLIENT_H
#define REMOTE_PLUGIN_CLIENT_H
#define __cdecl
#include <stdint.h>
#ifdef VESTIGE
typedef int16_t VstInt16;
typedef int32_t VstInt32;
typedef int64_t VstInt64;
typedef intptr_t VstIntPtr;
#define VESTIGECALLBACK __cdecl
#include "vestige.h"
#else
#include "pluginterfaces/vst2.x/aeffectx.h"
#endif
#include "rdwrops.h"
#include "remoteplugin.h"
#include <string>
#include <sys/shm.h>
#include <vector>
#ifdef EMBED
#include <X11/Xlib.h>
#endif
#include <atomic>
// Any of the methods in this file, including constructors, should be
// considered capable of throwing RemotePluginClosedException. Do not
// call anything here without catching it.
class RemotePluginClient {
public:
RemotePluginClient(audioMasterCallback theMaster);
virtual ~RemotePluginClient();
std::string getFileIdentifiers();
int getVersion();
int getUID();
std::string getName();
std::string getMaker();
void setBufferSize(int);
void setSampleRate(int);
void reset();
void terminate();
int getInputCount();
int getOutputCount();
int getFlags();
int getinitialDelay();
int getParameterCount();
std::string getParameterName(int);
std::string getParameterLabel(int);
std::string getParameterDisplay(int);
#ifdef WAVES
int getShellName(char *ptr);
#endif
void setParameter(int, float);
float getParameter(int);
float getParameterDefault(int);
void getParameters(int, int, float *);
int getProgramCount();
int getProgramNameIndexed(int, char *ptr);
std::string getProgramName();
void setCurrentProgram(int);
int processVstEvents(VstEvents *);
#ifdef DOUBLEP
void processdouble(double **inputs, double **outputs, int sampleFrames);
bool setPrecision(int value);
#endif
bool getEffInProp(int index, void *ptr);
bool getEffOutProp(int index, void *ptr);
#ifdef MIDIEFF
// bool getEffInProp(int index, void *ptr);
// bool getEffOutProp(int index, void *ptr);
bool getEffMidiKey(int index, void *ptr);
bool getEffMidiProgName(int index, void *ptr);
bool getEffMidiCurProg(int index, void *ptr);
bool getEffMidiProgCat(int index, void *ptr);
bool getEffMidiProgCh(int index);
bool setEffSpeaker(VstIntPtr value, void *ptr);
bool getEffSpeaker(VstIntPtr value, void *ptr);
#endif
#ifdef CANDOEFF
bool getEffCanDo(char *ptr);
#endif
int getChunk(void **ptr, int bank_prog);
int setChunk(void *ptr, int sz, int bank_prog);
int canBeAutomated(int param);
int getProgram();
int EffectOpen();
// void effMainsChanged(int s);
// int getUniqueID();
// Either inputs or outputs may be NULL if (and only if) there are none
void process(float **inputs, float **outputs, int sampleFrames);
void waitForServer(ShmControl *m_shmControlptr);
void waitForServer2exit();
void waitForServer3exit();
void waitForServer4exit();
void waitForServer5exit();
void waitForServer6exit();
void waitForClientexit();
void setDebugLevel(RemotePluginDebugLevel);
bool warn(std::string);
void showGUI();
void hideGUI();
#ifdef EMBED
void openGUI();
ERect *rp;
#endif
int getEffInt(int opcode, int value);
std::string getEffString(int opcode, int index);
void effVoidOp(int opcode);
int effVoidOp2(int opcode, int index, int value, float opt);
int m_bufferSize;
int m_numInputs;
int m_numOutputs;
int m_finishaudio;
int m_runok;
int m_syncok;
int m_386run;
AEffect *theEffect;
AEffect theEffect2;
audioMasterCallback m_audioMaster;
int m_threadbreak;
int m_threadbreakexit;
int editopen;
#ifdef EMBED
#ifdef XECLOSE
int xeclose;
#endif
/*
int m_threadbreakembed;
int m_threadbreakexitembed;
*/
#endif
VstEvents vstev[VSTSIZE];
ERect retRect = {0, 0, 200, 500};
int reaperid;
int m_updateio;
int m_updatein;
int m_updateout;
int m_delay;
#ifdef CHUNKBUF
char *chunk_ptr;
#endif
#ifdef EMBED
Window child;
Window parent;
Display *display;
int handle;
int width;
int height;
struct alignas(64) winmessage {
int handle;
int width;
int height;
int winerror;
} winm2;
winmessage *winm;
int displayerr;
#ifdef EMBEDRESIZE
int resizedone;
#endif
/*
pthread_t m_EMBEDThread;
static void *callEMBEDThread(void *arg) { return
((RemotePluginClient*)arg)->EMBEDThread(); } void *EMBEDThread();
*/
#ifdef EMBEDDRAG
Window x11_win;
Window pparent;
Window root;
Window *children;
unsigned int numchildren;
int parentok;
#endif
int eventrun;
int eventstop;
#endif
char *m_shm3;
char *m_shm4;
char *m_shm5;
#ifdef PCACHE
char *m_shm6;
struct alignas(64) ParamState {
float value;
float valueupdate;
char changed;
};
#endif
int m_inexcept;
VstTimeInfo *timeInfo;
#ifdef WAVES
int wavesthread;
#endif
#ifdef EMBED
#ifdef TRACKTIONWM
int waveformid;
int waveformid2;
int hosttracktion;
#endif
#endif
struct alignas(64) vinfo {
char a[64 + 8 + (sizeof(int32_t) * 2) + 48];
// char a[96];
};
ShmControl *m_shmControlptr;
ShmControl *m_shmControl;
ShmControl *m_shmControl2;
ShmControl *m_shmControl3;
ShmControl *m_shmControl4;
ShmControl *m_shmControl5;
ShmControl *m_shmControl6;
protected:
void cleanup();
void syncStartup();
private:
int m_shmFd;
int m_shmControlFd;
char *m_shmControlFileName;
int m_AMRequestFd;
int m_AMResponseFd;
char *m_AMRequestFileName;
char *m_AMResponseFileName;
char *m_shmFileName;
char *m_shm;
size_t m_shmSize;
char *m_shm2;
int sizeShm();
pthread_t m_AMThread;
static void *callAMThread(void *arg) {
return ((RemotePluginClient *)arg)->AMThread();
}
void *AMThread();
int m_threadinit;
void RemotePluginClosedException();
bool fwait(ShmControl *m_shmControlptr, std::atomic_int *fcount, int ms);
bool fpost(ShmControl *m_shmControlptr, std::atomic_int *fcount);
bool fwait2(ShmControl *m_shmControlptr, std::atomic_int *fcount, int ms);
bool fpost2(ShmControl *m_shmControlptr, std::atomic_int *fcount);
};
#endif