Prepare moving to a dedicated x-thread signal for VST UI resizing
[ardour.git] / libs / ardour / ardour / vst_types.h
1 /*
2     Copyright (C) 2010 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_vst_types_h__
21 #define __ardour_vst_types_h__
22
23 #include <pthread.h>
24 #include "ardour/libardour_visibility.h"
25 #include "ardour/vestige/aeffectx.h"
26
27 struct LIBARDOUR_API _VSTKey
28 {
29         /** virtual-key code, or 0 if this _VSTFXKey is a `character' key */
30         int special;
31         /** `character' key, or 0 if this _VSTFXKey is a virtual-key */
32         int character;
33 };
34
35 typedef struct _VSTKey VSTKey;
36
37 struct LIBARDOUR_API _VSTInfo
38 {
39         char  *name;
40         char  *creator;
41         int    UniqueID;
42         char  *Category;
43
44         int    numInputs;
45         int    numOutputs;
46         int    numParams;
47
48         int    wantMidi;
49         int    wantEvents;
50         int    hasEditor;
51         int    isInstrument; // still unused
52         int    canProcessReplacing;
53
54         char** ParamNames;
55         char** ParamLabels;
56 };
57
58 typedef struct _VSTInfo VSTInfo;
59
60 typedef AEffect * (* main_entry_t) (audioMasterCallback);
61
62 struct LIBARDOUR_API _VSTHandle
63 {
64         void*        dll;
65         char*        name;
66         char*        path;
67
68         main_entry_t main_entry;
69
70         int          plugincnt;
71 #ifdef MACVST_SUPPORT
72         int32_t      res_file_id;
73 #endif
74 };
75
76 typedef struct _VSTHandle VSTHandle;
77
78 struct LIBARDOUR_API _VSTState
79 {
80         AEffect*    plugin;
81         VSTHandle*  handle;
82         audioMasterCallback amc;
83
84         void*       gtk_window_parent;
85         int         xid;                     ///< X11 XWindow (wine + lxvst)
86
87         /* LXVST/X11 */
88         int         linux_window;            ///< The plugin's parent X11 XWindow
89         int         linux_plugin_ui_window;  ///< The ID of the plugin UI window created by the plugin
90         void  (* eventProc) (void * event);  ///< X11 UI _XEventProc
91
92         /* Windows */
93         void*       windows_window;
94
95
96         int width;
97         int height;
98         int wantIdle;
99
100         int voffset;
101         int hoffset;
102         int gui_shown;
103         int destroy;
104         int vst_version;
105         int has_editor;
106
107         int     program_set_without_editor;
108         int     want_program;
109         int     want_chunk;
110         int     n_pending_keys;
111         unsigned char* wanted_chunk;
112         int     wanted_chunk_size;
113         float*  want_params;
114         float*  set_params;
115
116         VSTKey  pending_keys[16];
117
118         int     dispatcher_wantcall;
119         int     dispatcher_opcode;
120         int     dispatcher_index;
121         int     dispatcher_val;
122         void*   dispatcher_ptr;
123         float   dispatcher_opt;
124         int     dispatcher_retval;
125
126         struct _VSTState* next;
127         pthread_mutex_t   lock;
128         pthread_mutex_t   state_lock;
129         pthread_cond_t    window_status_change;
130         pthread_cond_t    plugin_dispatcher_called;
131         pthread_cond_t    window_created;
132         int               been_activated;
133 };
134
135 typedef struct _VSTState VSTState;
136
137 #ifdef __cplusplus
138 extern "C" {
139 #endif
140 LIBARDOUR_API extern void vststate_init (VSTState* state);
141 LIBARDOUR_API extern void vststate_maybe_set_program (VSTState* state);
142 #ifdef __cplusplus
143 }
144 #endif
145
146 #endif