2 * Common plugin interface definitions (shared between LADSPA/LV2/DSSI/standalone).
4 * Copyright (C) 2007 Krzysztof Foltman
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General
17 * Public License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 * Boston, MA 02111-1307, USA.
21 #ifndef __CALF_GIFACE_H
22 #define __CALF_GIFACE_H
29 #include "primitives.h"
36 namespace calf_plugins
{
42 /// Values ORed together for flags field in parameter_properties
45 PF_TYPEMASK
= 0x000F, ///< bit mask for type
46 PF_FLOAT
= 0x0000, ///< any float value
47 PF_INT
= 0x0001, ///< integer value (still represented as float)
48 PF_BOOL
= 0x0002, ///< bool value (usually >=0.5f is treated as TRUE, which is inconsistent with LV2 etc. which treats anything >0 as TRUE)
49 PF_ENUM
= 0x0003, ///< enum value (min, min+1, ..., max, only guaranteed to work when min = 0)
50 PF_ENUM_MULTI
= 0x0004, ///< SET / multiple-choice
51 PF_STRING
= 0x0005, ///< see: http://lv2plug.in/docs/index.php?title=String_port
53 PF_SCALEMASK
= 0xF0, ///< bit mask for scale
54 PF_SCALE_DEFAULT
= 0x00, ///< no scale given
55 PF_SCALE_LINEAR
= 0x10, ///< linear scale
56 PF_SCALE_LOG
= 0x20, ///< log scale
57 PF_SCALE_GAIN
= 0x30, ///< gain = -96dB..0 or -inf dB
58 PF_SCALE_PERC
= 0x40, ///< percent
59 PF_SCALE_QUAD
= 0x50, ///< quadratic scale (decent for some gain/amplitude values)
60 PF_SCALE_LOG_INF
= 0x60, ///< log scale + +inf (FAKE_INFINITY)
62 PF_CTLMASK
= 0x0F00, ///< bit mask for control type
63 PF_CTL_DEFAULT
= 0x0000, ///< try to figure out automatically
64 PF_CTL_KNOB
= 0x0100, ///< knob
65 PF_CTL_FADER
= 0x0200, ///< fader (slider)
66 PF_CTL_TOGGLE
= 0x0300, ///< toggle button
67 PF_CTL_COMBO
= 0x0400, ///< combo box
68 PF_CTL_RADIO
= 0x0500, ///< radio button
69 PF_CTL_BUTTON
= 0x0600, ///< push button
70 PF_CTL_METER
= 0x0700, ///< volume meter
71 PF_CTL_LED
= 0x0800, ///< light emitting diode
73 PF_CTLOPTIONS
= 0x00F000, ///< bit mask for control (widget) options
74 PF_CTLO_HORIZ
= 0x001000, ///< horizontal version of the control (unused)
75 PF_CTLO_VERT
= 0x002000, ///< vertical version of the control (unused)
76 PF_CTLO_LABEL
= 0x004000, ///< add a text display to the control (meters only)
77 PF_CTLO_REVERSE
= 0x008000, ///< use VU_MONOCHROME_REVERSE mode (meters only)
79 PF_PROP_NOBOUNDS
= 0x010000, ///< no epp:hasStrictBounds
80 PF_PROP_EXPENSIVE
= 0x020000, ///< epp:expensive, may trigger expensive calculation
81 PF_PROP_OUTPUT_GAIN
=0x050000, ///< epp:outputGain + skip epp:hasStrictBounds
82 PF_PROP_OUTPUT
= 0x080000, ///< output port
83 PF_PROP_OPTIONAL
= 0x100000, ///< connection optional
84 PF_PROP_GRAPH
= 0x200000, ///< add graph
85 PF_PROP_MSGCONTEXT
= 0x400000, ///< message context
87 PF_UNITMASK
= 0xFF000000, ///< bit mask for units \todo reduce to use only 5 bits
88 PF_UNIT_DB
= 0x01000000, ///< decibels
89 PF_UNIT_COEF
= 0x02000000, ///< multiply-by factor
90 PF_UNIT_HZ
= 0x03000000, ///< Hertz
91 PF_UNIT_SEC
= 0x04000000, ///< second
92 PF_UNIT_MSEC
= 0x05000000, ///< millisecond
93 PF_UNIT_CENTS
= 0x06000000, ///< cents (1/100 of a semitone, 1/1200 of an octave)
94 PF_UNIT_SEMITONES
= 0x07000000,///< semitones
95 PF_UNIT_BPM
= 0x08000000, ///< beats per minute
96 PF_UNIT_DEG
= 0x09000000, ///< degrees
97 PF_UNIT_NOTE
= 0x0A000000, ///< MIDI note number
98 PF_UNIT_RPM
= 0x0B000000, ///< revolutions per minute
101 /// A fake infinity value (because real infinity may break some hosts)
102 #define FAKE_INFINITY (65536.0 * 65536.0)
103 /// Check for infinity (with appropriate-ish tolerance)
104 #define IS_FAKE_INFINITY(value) (fabs(value-FAKE_INFINITY) < 1.0)
106 /// Information record about plugin's menu command
107 struct plugin_command_info
109 const char *label
; ///< short command name / label
110 const char *name
; ///< human-readable command name
111 const char *description
; ///< description (for status line etc.)
114 /// Range, default value, flags and names for a parameter
115 struct parameter_properties
123 /// number of steps (for an integer value from 0 to 100 this will be 101; for 0/90/180/270/360 this will be 5), or 0 for continuous
125 /// logical OR of parameter_flags
127 /// for PF_ENUM: array of text values (from min to max step 1), otherwise NULL
128 const char **choices
;
129 /// parameter label (for use in LV2 label field etc.)
130 const char *short_name
;
131 /// parameter human-readable name
133 /// convert from [0, 1] range to [min, max] (applying scaling)
134 float from_01(double value01
) const;
135 /// convert from [min, max] to [0, 1] range (applying reverse scaling)
136 double to_01(float value
) const;
137 /// stringify (in sensible way)
138 std::string
to_string(float value
) const;
139 /// get required width (for reserving GUI space)
140 int get_char_count() const;
141 /// get increment step based on step value (if specified) and other factors
142 float get_increment() const;
147 virtual void set_source_rgba(float r
, float g
, float b
, float a
= 1.f
) = 0;
148 virtual void set_line_width(float width
) = 0;
149 virtual ~cairo_iface() {}
152 struct progress_report_iface
154 virtual void report_progress(float percentage
, const std::string
&message
) = 0;
155 virtual ~progress_report_iface() {}
158 /// 'provides live line graph values' interface
159 struct line_graph_iface
161 /// Obtain subindex'th graph of parameter 'index'
162 /// @param index parameter/graph number (usually tied to particular plugin control port)
163 /// @param subindex graph number (there may be multiple overlaid graphs for one parameter, eg. for monosynth 2x12dB filters)
164 /// @param data buffer for normalized output values
165 /// @param points number of points to fill
166 /// @param context cairo context to adjust (for multicolour graphs etc.)
167 /// @retval true graph data was returned; subindex+1 graph may or may not be available
168 /// @retval false graph data was not returned; subindex+1 graph does not exist either
169 virtual bool get_graph(int index
, int subindex
, float *data
, int points
, cairo_iface
*context
) { return false; }
171 /// Obtain subindex'th dot of parameter 'index'
172 /// @param index parameter/dot number (usually tied to particular plugin control port)
173 /// @param subindex dot number (there may be multiple dots graphs for one parameter)
174 virtual bool get_dot(int index
, int subindex
, float &x
, float &y
, int &size
, cairo_iface
*context
) { return false; }
176 /// Obtain subindex'th dot of parameter 'index'
177 /// @param index parameter/dot number (usually tied to particular plugin control port)
178 /// @param subindex dot number (there may be multiple dots graphs for one parameter)
179 virtual bool get_gridline(int index
, int subindex
, float &pos
, bool &vertical
, std::string
&legend
, cairo_iface
*context
) { return false; }
181 /// Obtain subindex'th static graph of parameter index (static graphs are only dependent on parameter value, not plugin state)
182 /// @param index parameter/graph number (usually tied to particular plugin control port)
183 /// @param subindex graph number (there may be multiple overlaid graphs for one parameter, eg. for monosynth 2x12dB filters)
184 /// @param value parameter value to pick the graph for
185 /// @param data buffer for normalized output values
186 /// @param points number of points to fill
187 /// @param context cairo context to adjust (for multicolour graphs etc.)
188 /// @retval true graph data was returned; subindex+1 graph may or may not be available
189 /// @retval false graph data was not returned; subindex+1 graph does not exist either
190 virtual bool get_static_graph(int index
, int subindex
, float value
, float *data
, int points
, cairo_iface
*context
) { return false; }
192 /// Return which graphs need to be redrawn and which can be cached for later reuse
193 /// @param generation 0 (at start) or the last value returned by the function (corresponds to a set of input values)
194 /// @param subindex_graph First graph that has to be redrawn (because it depends on values that might have changed)
195 /// @param subindex_dot First dot that has to be redrawn
196 /// @param subindex_gridline First gridline/legend that has to be redrawn
197 /// @retval Current generation (to pass when calling the function next time); if different than passed generation value, call the function again to retrieve which graph offsets should be put into cache
198 virtual int get_changed_offsets(int generation
, int &subindex_graph
, int &subindex_dot
, int &subindex_gridline
) { subindex_graph
= subindex_dot
= subindex_gridline
= 0; return 0; }
200 /// Standard destructor to make compiler happy
201 virtual ~line_graph_iface() {}
204 /// 'may receive configure variables' interface
205 struct send_configure_iface
207 /// Called to set configure variable
208 /// @param key variable name
209 /// @param value variable content
210 virtual void send_configure(const char *key
, const char *value
) = 0;
212 virtual ~send_configure_iface() {}
215 struct plugin_command_info
;
217 /// General information about the plugin - @todo XXXKF lacks the "new" id-label-name triple
218 struct ladspa_plugin_info
222 /// plugin short name (camel case)
224 /// plugin human-readable name
229 const char *copyright
;
230 /// plugin type for LRDF/LV2
231 const char *plugin_type
;
234 /// An interface returning metadata about a plugin
235 struct plugin_metadata_iface
237 /// @return plugin long name
238 virtual const char *get_name() = 0;
239 /// @return plugin LV2 label
240 virtual const char *get_id() = 0;
241 /// @return plugin human-readable label
242 virtual const char *get_label() = 0;
243 /// @return total number of parameters
244 virtual int get_param_count() = 0;
245 /// Return custom XML
246 virtual const char *get_gui_xml() = 0;
247 /// @return number of audio inputs
248 virtual int get_input_count()=0;
249 /// @return number of audio outputs
250 virtual int get_output_count()=0;
251 /// @return true if plugin can work in hard-realtime conditions
252 virtual bool is_rt_capable()=0;
253 /// @return true if plugin has MIDI input
254 virtual bool get_midi()=0;
255 /// @return true if plugin has MIDI input
256 virtual bool requires_midi()=0;
257 /// @return port offset of first control (parameter) port (= number of audio inputs + number of audio outputs in all existing plugins as for 1 Aug 2008)
258 virtual int get_param_port_offset() = 0;
259 /// @return line_graph_iface if any
260 virtual line_graph_iface
*get_line_graph_iface() = 0;
261 /// @return NULL-terminated list of menu commands
262 virtual plugin_command_info
*get_commands() { return NULL
; }
263 /// @return description structure for given parameter
264 virtual parameter_properties
*get_param_props(int param_no
) = 0;
265 /// @return retrieve names of audio ports (@note control ports are named in parameter_properties, not here)
266 virtual const char **get_port_names() = 0;
267 /// @return description structure for the plugin
268 virtual const ladspa_plugin_info
&get_plugin_info() = 0;
269 /// is a given parameter a control voltage?
270 virtual bool is_cv(int param_no
) = 0;
271 /// is the given parameter non-interpolated?
272 virtual bool is_noisy(int param_no
) = 0;
273 /// does the plugin require message context? (or DSSI configure) may be slow
274 virtual bool requires_message_context() = 0;
275 /// does the plugin require string port extension? (or DSSI configure) may be slow
276 virtual bool requires_string_ports() = 0;
277 /// add all message context parameter numbers to the ports vector
278 virtual void get_message_context_parameters(std::vector
<int> &ports
) = 0;
280 /// Do-nothing destructor to silence compiler warning
281 virtual ~plugin_metadata_iface() {}
284 /// Interface for host-GUI-plugin interaction (should be really split in two, but ... meh)
285 struct plugin_ctl_iface
: public virtual plugin_metadata_iface
287 /// @return value of given parameter
288 virtual float get_param_value(int param_no
) = 0;
289 /// Set value of given parameter
290 virtual void set_param_value(int param_no
, float value
) = 0;
291 /// Load preset with given number
292 virtual bool activate_preset(int bank
, int program
) = 0;
293 /// @return volume level for port'th port (if supported by the implementation, currently only jack_host<Module> implements that by measuring signal level on plugin ports)
294 virtual float get_level(unsigned int port
)=0;
295 /// Execute menu command with given number
296 virtual void execute(int cmd_no
)=0;
297 /// Set a configure variable on a plugin
298 virtual char *configure(const char *key
, const char *value
) { return NULL
; }
299 /// Send all configure variables set within a plugin to given destination (which may be limited to only those that plugin understands)
300 virtual void send_configures(send_configure_iface
*)=0;
301 /// Restore all state (parameters and configure vars) to default values - implemented in giface.cpp
302 virtual void clear_preset();
303 /// Do-nothing destructor to silence compiler warning
304 virtual ~plugin_ctl_iface() {}
307 struct plugin_list_info_iface
;
309 /// Get a list of all "large" (effect/synthesizer) plugins
310 extern void get_all_plugins(std::vector
<plugin_metadata_iface
*> &plugins
);
311 /// Get a list of all "small" (module) plugins
312 extern void get_all_small_plugins(plugin_list_info_iface
*plii
);
313 /// Load and strdup a text file with GUI definition
314 extern const char *load_gui_xml(const std::string
&plugin_id
);
316 /// Empty implementations for plugin functions. Note, that functions aren't virtual, because they're called via the particular
317 /// subclass (flanger_audio_module etc) via template wrappers (ladspa_wrapper<> etc), not via base class pointer/reference
318 template<class Metadata
>
319 class audio_module
: public Metadata
322 typedef Metadata metadata_type
;
324 progress_report_iface
*progress_report
;
327 progress_report
= NULL
;
330 /// Handle MIDI Note On
331 inline void note_on(int note
, int velocity
) {}
332 /// Handle MIDI Note Off
333 inline void note_off(int note
, int velocity
) {}
334 /// Handle MIDI Program Change
335 inline void program_change(int program
) {}
336 /// Handle MIDI Control Change
337 inline void control_change(int controller
, int value
) {}
338 /// Handle MIDI Pitch Bend
339 /// @param value pitch bend value (-8192 to 8191, defined as in MIDI ie. 8191 = 200 ct by default)
340 inline void pitch_bend(int value
) {}
341 /// Called when params are changed (before processing)
342 inline void params_changed() {}
343 /// LADSPA-esque activate function, except it is called after ports are connected, not before
344 inline void activate() {}
345 /// LADSPA-esque deactivate function
346 inline void deactivate() {}
347 /// Set sample rate for the plugin
348 inline void set_sample_rate(uint32_t sr
) { }
349 /// Execute menu command with given number
350 inline void execute(int cmd_no
) {}
351 /// DSSI configure call
352 virtual char *configure(const char *key
, const char *value
) { return NULL
; }
353 /// Send all understood configure vars
354 inline void send_configures(send_configure_iface
*sci
) {}
355 /// Reset parameter values for epp:trigger type parameters (ones activated by oneshot push button instead of check box)
356 inline void params_reset() {}
357 /// Called after instantiating (after all the feature pointers are set - including interfaces like progress_report_iface)
358 inline void post_instantiate() {}
359 /// Handle 'message context' port message
360 /// @arg output_ports pointer to bit array of output port "changed" flags, note that 0 = first audio input, not first parameter (use input_count + output_count)
361 inline uint32_t message_run(const void *valid_ports
, void *output_ports
) {
362 fprintf(stderr
, "ERROR: message run not implemented\n");
367 extern bool check_for_message_context_ports(parameter_properties
*parameters
, int count
);
368 extern bool check_for_string_ports(parameter_properties
*parameters
, int count
);
384 /// A class to send status updates via OSC
385 struct dssi_feedback_sender
387 /// OSC client object used to send updates
388 osctl::osc_client
*client
;
389 /// Background thread handle
391 /// Quit flag (used to terminate the thread)
393 /// Indices of graphs to send
394 std::vector
<int> indices
;
395 /// Source for the graph data (interface to marshal)
396 calf_plugins::line_graph_iface
*graph
;
398 dssi_feedback_sender(const char *URI
, line_graph_iface
*_graph
, calf_plugins::parameter_properties
*props
, int num_params
);
400 ~dssi_feedback_sender();
404 /// Metadata base class template, to provide default versions of interface functions
405 template<class Metadata
>
406 class plugin_metadata
: public virtual plugin_metadata_iface
409 static const char *port_names
[];
410 static parameter_properties param_props
[];
411 static ladspa_plugin_info plugin_info
;
413 // These below are stock implementations based on enums and static members in Metadata classes
414 // they may be overridden to provide more interesting functionality
416 const char *get_name() { return Metadata::impl_get_name(); }
417 const char *get_id() { return Metadata::impl_get_id(); }
418 const char *get_label() { return Metadata::impl_get_label(); }
419 int get_input_count() { return Metadata::in_count
; }
420 int get_output_count() { return Metadata::out_count
; }
421 int get_param_count() { return Metadata::param_count
; }
422 bool get_midi() { return Metadata::support_midi
; }
423 bool requires_midi() { return Metadata::require_midi
; }
424 bool is_rt_capable() { return Metadata::rt_capable
; }
425 line_graph_iface
*get_line_graph_iface() { return dynamic_cast<line_graph_iface
*>(this); }
426 int get_param_port_offset() { return Metadata::in_count
+ Metadata::out_count
; }
427 const char *get_gui_xml() { static const char *data_ptr
= calf_plugins::load_gui_xml(get_id()); return data_ptr
; }
428 plugin_command_info
*get_commands() { return NULL
; }
429 parameter_properties
*get_param_props(int param_no
) { return ¶m_props
[param_no
]; }
430 const char **get_port_names() { return port_names
; }
431 bool is_cv(int param_no
) { return true; }
432 bool is_noisy(int param_no
) { return false; }
433 const ladspa_plugin_info
&get_plugin_info() { return plugin_info
; }
434 bool requires_message_context() { return check_for_message_context_ports(param_props
, Metadata::param_count
); }
435 bool requires_string_ports() { return check_for_string_ports(param_props
, Metadata::param_count
); }
436 void get_message_context_parameters(std::vector
<int> &ports
) {
437 for (int i
= 0; i
< get_param_count(); ++i
) {
438 if (get_param_props(i
)->flags
& PF_PROP_MSGCONTEXT
)
444 /// A class for delegating metadata implementation to a "remote" metadata class.
445 /// Used for GUI wrappers that cannot have a dependency on actual classes,
446 /// and which instead take an "external" metadata object pointer, obtained
447 /// through get_all_plugins.
448 class plugin_metadata_proxy
: public virtual plugin_metadata_iface
451 plugin_metadata_iface
*impl
;
453 plugin_metadata_proxy(plugin_metadata_iface
*_impl
) { impl
= _impl
; }
454 const char *get_name() { return impl
->get_name(); }
455 const char *get_id() { return impl
->get_id(); }
456 const char *get_label() { return impl
->get_label(); }
457 int get_input_count() { return impl
->get_input_count(); }
458 int get_output_count() { return impl
->get_output_count(); }
459 int get_param_count() { return impl
->get_param_count(); }
460 bool get_midi() { return impl
->get_midi(); }
461 bool requires_midi() { return impl
->requires_midi(); }
462 bool is_rt_capable() { return impl
->is_rt_capable(); }
463 line_graph_iface
*get_line_graph_iface() { return impl
->get_line_graph_iface(); }
464 int get_param_port_offset() { return impl
->get_param_port_offset(); }
465 const char *get_gui_xml() { return impl
->get_gui_xml(); }
466 plugin_command_info
*get_commands() { return impl
->get_commands(); }
467 parameter_properties
*get_param_props(int param_no
) { return impl
->get_param_props(param_no
); }
468 const char **get_port_names() { return impl
->get_port_names(); }
469 bool is_cv(int param_no
) { return impl
->is_cv(param_no
); }
470 bool is_noisy(int param_no
) { return impl
->is_noisy(param_no
); }
471 const ladspa_plugin_info
&get_plugin_info() { return impl
->get_plugin_info(); }
472 bool requires_message_context() { return impl
->requires_message_context(); }
473 bool requires_string_ports() { return impl
->requires_string_ports(); }
474 void get_message_context_parameters(std::vector
<int> &ports
) { impl
->get_message_context_parameters(ports
); }
477 #define CALF_PORT_NAMES(name) template<> const char *::plugin_metadata<name##_metadata>::port_names[]
478 #define CALF_PORT_PROPS(name) template<> parameter_properties plugin_metadata<name##_metadata>::param_props[]
479 #define CALF_PLUGIN_INFO(name) template<> calf_plugins::ladspa_plugin_info plugin_metadata<name##_metadata>::plugin_info
480 #define PLUGIN_NAME_ID_LABEL(name, id, label) \
481 static const char *impl_get_name() { return name; } \
482 static const char *impl_get_id() { return id; } \
483 static const char *impl_get_label() { return label; } \
486 extern const char *calf_copyright_info
;