Merged with trunk R776
[ardour.git] / libs / ardour / ardour / vst_plugin.h
1 /*
2     Copyright (C) 2004 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     $Id$
19 */
20
21 #ifndef __ardour_vst_plugin_h__
22 #define __ardour_vst_plugin_h__
23
24 #include <list>
25 #include <map>
26 #include <set>
27 #include <vector>
28 #include <string>
29 #include <dlfcn.h>
30
31 #include <sigc++/signal.h>
32 #include <pbd/stateful.h> 
33 #include <jack/types.h>
34 #include <ardour/plugin_state.h>
35 #include <ardour/plugin.h>
36
37 using std::string;
38 using std::vector;
39 using std::list;
40 using std::map;
41
42 struct _FSTHandle;
43 struct _FST;
44 typedef struct _FSTHandle FSTHandle;
45 typedef struct _FST FST;
46 class AEffect;
47
48 namespace ARDOUR {
49 class AudioEngine;
50 class Session;
51
52 class VSTPlugin : public ARDOUR::Plugin
53 {
54   public:
55         VSTPlugin (ARDOUR::AudioEngine&, ARDOUR::Session&, FSTHandle* handle);
56         VSTPlugin (const VSTPlugin &);
57         ~VSTPlugin ();
58
59         /* Plugin interface */
60         
61         uint32_t unique_id() const;
62         const char * label() const;
63         const char * name() const;
64         const char * maker() const;
65         uint32_t parameter_count() const;
66         float default_value (uint32_t port);
67         jack_nframes_t latency() const;
68         void set_parameter (uint32_t port, float val);
69         float get_parameter (uint32_t port) const;
70         int get_parameter_descriptor (uint32_t which, ParameterDescriptor&) const;
71         std::set<uint32_t> automatable() const;
72         uint32_t nth_parameter (uint32_t port, bool& ok) const;
73         void activate ();
74         void deactivate ();
75         void set_block_size (jack_nframes_t nframes);
76         int connect_and_run (vector<Sample*>& bufs, uint32_t maxbuf, int32_t& in, int32_t& out, jack_nframes_t nframes, jack_nframes_t offset);
77         void store_state (ARDOUR::PluginState&);
78         void restore_state (ARDOUR::PluginState&);
79         string describe_parameter (uint32_t);
80         string state_node_name() const { return "vst"; }
81         void print_parameter (uint32_t, char*, uint32_t len) const;
82
83         bool parameter_is_audio(uint32_t i) const { return false; }
84         bool parameter_is_control(uint32_t i) const { return true; }
85         bool parameter_is_input(uint32_t i) const { return true; }
86         bool parameter_is_output(uint32_t i) const { return false; }
87
88         bool load_preset (const string preset_label );
89         bool save_preset(string name);
90
91         bool has_editor () const;
92
93         XMLNode& get_state();
94         int set_state(const XMLNode& node);
95
96         AEffect* plugin() const { return _plugin; }
97         FST* fst() const { return _fst; }
98
99
100   private:
101         FSTHandle* handle;
102         FST*       _fst;
103         AEffect*   _plugin;
104         bool        been_resumed;
105 };
106
107 class VSTPluginInfo : public PluginInfo
108 {
109   public:
110         VSTPluginInfo () {}
111         ~VSTPluginInfo () {}
112         
113         PluginPtr load (Session& session);
114 };
115
116 } // namespace ARDOUR
117
118 #endif /* __ardour_vst_plugin_h__ */