Generic scale points API.
[ardour.git] / libs / ardour / ardour / plugin.h
1 /*
2     Copyright (C) 2000-2006 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_plugin_h__
21 #define __ardour_plugin_h__
22
23 #include <boost/shared_ptr.hpp>
24 #include <string>
25
26 #include "pbd/statefuldestructible.h"
27 #include "pbd/controllable.h"
28
29 #include <jack/types.h>
30 #include "ardour/chan_count.h"
31 #include "ardour/chan_mapping.h"
32 #include "ardour/cycles.h"
33 #include "ardour/latent.h"
34 #include "ardour/plugin_insert.h"
35 #include "ardour/types.h"
36 #include "ardour/midi_state_tracker.h"
37
38 #include <vector>
39 #include <set>
40 #include <map>
41
42 namespace ARDOUR {
43
44 class AudioEngine;
45 class Session;
46 class BufferSet;
47
48 class Plugin;
49
50 typedef boost::shared_ptr<Plugin> PluginPtr;
51
52 class PluginInfo {
53   public:
54         PluginInfo () { }
55         virtual ~PluginInfo () { }
56
57         std::string name;
58         std::string category;
59         std::string creator;
60         std::string path;
61         ChanCount n_inputs;
62         ChanCount n_outputs;
63         ARDOUR::PluginType type;
64
65         std::string unique_id;
66
67         virtual PluginPtr load (Session& session) = 0;
68
69   protected:
70         friend class PluginManager;
71         uint32_t index;
72 };
73
74 typedef boost::shared_ptr<PluginInfo> PluginInfoPtr;
75 typedef std::list<PluginInfoPtr> PluginInfoList;
76
77 class Plugin : public PBD::StatefulDestructible, public Latent
78 {
79   public:
80         Plugin (ARDOUR::AudioEngine&, ARDOUR::Session&);
81         Plugin (const Plugin&);
82         virtual ~Plugin ();
83
84         struct ParameterDescriptor {
85
86                 /* essentially a union of LADSPA and VST info */
87
88                 bool integer_step;
89                 bool toggled;
90                 bool logarithmic;
91                 bool sr_dependent;
92                 std::string label;
93                 float lower; ///< if this is a frequency, it will be in Hz (not a fraction of the sample rate)
94                 float upper; ///< if this is a frequency, it will be in Hz (not a fraction of the sample rate)
95                 float step;
96                 float smallstep;
97                 float largestep;
98                 bool min_unbound;
99                 bool max_unbound;
100         };
101
102         XMLNode& get_state ();
103         virtual int set_state (const XMLNode &, int version);
104
105         virtual void set_insert_info (const PluginInsert*) {}
106
107         virtual std::string unique_id() const = 0;
108         virtual const char * label() const = 0;
109         virtual const char * name() const = 0;
110         virtual const char * maker() const = 0;
111         virtual uint32_t parameter_count () const = 0;
112         virtual float default_value (uint32_t port) = 0;
113         virtual float get_parameter(uint32_t which) const = 0;
114
115         virtual int get_parameter_descriptor (uint32_t which, ParameterDescriptor&) const = 0;
116         virtual uint32_t nth_parameter (uint32_t which, bool& ok) const = 0;
117         virtual void activate () = 0;
118         virtual void deactivate () = 0;
119         virtual void flush () { deactivate(); activate(); }
120
121         virtual int set_block_size (pframes_t nframes) = 0;
122
123         virtual int connect_and_run (BufferSet& bufs,
124                                      ChanMapping in, ChanMapping out,
125                                      pframes_t nframes, framecnt_t offset);
126
127         virtual std::set<Evoral::Parameter> automatable() const = 0;
128         virtual std::string describe_parameter (Evoral::Parameter) = 0;
129         virtual std::string state_node_name() const = 0;
130         virtual void print_parameter (uint32_t, char*, uint32_t len) const = 0;
131
132         virtual bool parameter_is_audio(uint32_t) const = 0;
133         virtual bool parameter_is_control(uint32_t) const = 0;
134         virtual bool parameter_is_input(uint32_t) const = 0;
135         virtual bool parameter_is_output(uint32_t) const = 0;
136
137         typedef std::map<const std::string, const float> ScalePoints;
138
139         virtual boost::shared_ptr<ScalePoints>
140         get_scale_points(uint32_t port_index) const {
141                 return boost::shared_ptr<ScalePoints>();
142         }
143
144         void realtime_handle_transport_stopped ();
145
146         struct PresetRecord {
147                 PresetRecord () : user (true) {}
148                 PresetRecord (const std::string& u, const std::string& l, bool s = true) : uri (u), label (l), user (s)  {}
149
150                 bool operator!= (PresetRecord const & a) const {
151                         return uri != a.uri || label != a.label;
152                 }
153                 
154                 std::string uri;
155                 std::string label;
156                 bool user;
157         };
158
159         PresetRecord save_preset (std::string);
160         void remove_preset (std::string);
161
162         virtual bool load_preset (PresetRecord);
163         
164         const PresetRecord * preset_by_label (const std::string &);
165         const PresetRecord * preset_by_uri (const std::string &);
166
167         std::vector<PresetRecord> get_presets ();
168
169         /** @return Last preset to be requested; the settings may have
170          * been changed since; find out with parameter_changed_since_last_preset.
171          */
172         PresetRecord last_preset () const {
173                 return _last_preset;
174         }
175         
176         bool parameter_changed_since_last_preset () const {
177                 return _parameter_changed_since_last_preset;
178         }
179         
180         virtual int first_user_preset_index () const {
181                 return 0;
182         }
183         
184         /** Emitted when a preset is added or removed, respectively */
185         PBD::Signal0<void> PresetAdded;
186         PBD::Signal0<void> PresetRemoved;
187
188         /** Emitted when a preset has been loaded */
189         PBD::Signal0<void> PresetLoaded;
190
191         virtual bool has_editor () const = 0;
192
193         /** Emitted when any parameter changes */
194         PBD::Signal2<void, uint32_t, float> ParameterChanged;
195
196         /* NOTE: this block of virtual methods looks like the interface
197            to a Processor, but Plugin does not inherit from Processor.
198            It is therefore not required that these precisely match
199            the interface, but it is likely that they will evolve together.
200         */
201
202         /* this returns true if the plugin can change its inputs or outputs on demand.
203            LADSPA, LV2 and VST plugins cannot do this. AudioUnits can.
204         */
205
206         virtual bool reconfigurable_io() const { return false; }
207
208         /* this is only called if reconfigurable_io() returns true */
209         virtual bool configure_io (ChanCount /*in*/, ChanCount /*out*/) { return true; }
210
211         /* specific types of plugins can overload this. As of September 2008, only
212            AUPlugin does this.
213         */
214         virtual bool can_support_io_configuration (const ChanCount& /*in*/, ChanCount& /*out*/) const { return false; }
215         virtual ChanCount output_streams() const;
216         virtual ChanCount input_streams() const;
217
218         PluginInfoPtr get_info() const { return _info; }
219         void set_info (const PluginInfoPtr inf) { _info = inf; }
220
221         ARDOUR::AudioEngine& engine() const { return _engine; }
222         ARDOUR::Session& session() const { return _session; }
223
224         void set_cycles (uint32_t c) { _cycles = c; }
225         cycles_t cycles() const { return _cycles; }
226
227 protected:
228         
229         friend class PluginInsert;
230         friend struct PluginInsert::PluginControl;
231
232         virtual void set_parameter (uint32_t which, float val);
233
234         /** Do the actual saving of the current plugin settings to a preset of the provided name.
235          *  Should return a URI on success, or an empty string on failure.
236          */
237         virtual std::string do_save_preset (std::string) = 0;
238         /** Do the actual removal of a preset of the provided name */
239         virtual void do_remove_preset (std::string) = 0;
240
241         ARDOUR::AudioEngine&     _engine;
242         ARDOUR::Session&         _session;
243         PluginInfoPtr            _info;
244         uint32_t                 _cycles;
245         std::map<std::string, PresetRecord> _presets;
246
247 private:
248
249         /** Fill _presets with our presets */
250         virtual void find_presets () = 0;
251
252         /** Add state to an existing XMLNode */
253         virtual void add_state (XMLNode *) const = 0;
254
255         bool _have_presets;
256         MidiStateTracker _tracker;
257         BufferSet _pending_stop_events;
258         bool _have_pending_stop_events;
259         PresetRecord _last_preset;
260         bool _parameter_changed_since_last_preset;
261 };
262
263 PluginPtr find_plugin(ARDOUR::Session&, std::string unique_id, ARDOUR::PluginType);
264
265 } // namespace ARDOUR
266
267 #endif /* __ardour_plugin_h__ */