DISTRHO Plugin Framework
|
#include <DistrhoPlugin.hpp>
Public Member Functions | |
Plugin (uint32_t parameterCount, uint32_t programCount, uint32_t stateCount) | |
virtual | ~Plugin () |
uint32_t | getBufferSize () const noexcept |
double | getSampleRate () const noexcept |
const char * | getBundlePath () const noexcept |
bool | isDummyInstance () const noexcept |
bool | isSelfTestInstance () const noexcept |
const TimePosition & | getTimePosition () const noexcept |
void | setLatency (uint32_t frames) noexcept |
bool | writeMidiEvent (const MidiEvent &midiEvent) noexcept |
bool | canRequestParameterValueChanges () const noexcept |
bool | requestParameterValueChange (uint32_t index, float value) noexcept |
bool | updateStateValue (const char *key, const char *value) noexcept |
Protected Member Functions | |
virtual const char * | getName () const |
virtual const char * | getLabel () const =0 |
virtual const char * | getDescription () const |
virtual const char * | getMaker () const =0 |
virtual const char * | getHomePage () const |
virtual const char * | getLicense () const =0 |
virtual uint32_t | getVersion () const =0 |
virtual int64_t | getUniqueId () const =0 |
virtual void | initAudioPort (bool input, uint32_t index, AudioPort &port) |
virtual void | initParameter (uint32_t index, Parameter ¶meter) |
virtual void | initPortGroup (uint32_t groupId, PortGroup &portGroup) |
virtual void | initProgramName (uint32_t index, String &programName)=0 |
virtual void | initState (uint32_t index, State &state) |
virtual void | initState (uint32_t, String &, String &) |
virtual bool | isStateFile (uint32_t) |
virtual float | getParameterValue (uint32_t index) const |
virtual void | setParameterValue (uint32_t index, float value) |
virtual void | loadProgram (uint32_t index) |
virtual String | getState (const char *key) const |
virtual void | setState (const char *key, const char *value) |
virtual void | activate () |
virtual void | deactivate () |
virtual void | run (const float **inputs, float **outputs, uint32_t frames, const MidiEvent *midiEvents, uint32_t midiEventCount)=0 |
virtual void | bufferSizeChanged (uint32_t newBufferSize) |
virtual void | sampleRateChanged (double newSampleRate) |
virtual void | ioChanged (uint16_t numInputs, uint16_t numOutputs) |
Friends | |
class | PluginExporter |
DPF Plugin class from where plugin instances are created.
The public methods (Host state) are called from the plugin to get or set host information.
They can be called from a plugin instance at anytime unless stated otherwise.
All other methods are to be implemented by the plugin and will be called by the host.
Shortly after a plugin instance is created, the various init* functions will be called by the host.
Host will call activate() before run(), and deactivate() before the plugin instance is destroyed.
The host may call deactivate right after activate and vice-versa, but never activate/deactivate consecutively.
There is no limit on how many times run() is called, only that activate/deactivate will be called in between.
The buffer size and sample rate values will remain constant between activate and deactivate.
Buffer size is only a hint though, the host might call run() with a higher or lower number of frames.
Some of this class functions are only available according to some macros.
DISTRHO_PLUGIN_WANT_PROGRAMS activates program related features.
When enabled you need to implement initProgramName() and loadProgram().
DISTRHO_PLUGIN_WANT_STATE activates internal state features.
When enabled you need to implement initState() and setState().
The process function run() changes wherever DISTRHO_PLUGIN_WANT_MIDI_INPUT is enabled or not.
When enabled it provides midi input events.
Plugin::Plugin | ( | uint32_t | parameterCount, |
uint32_t | programCount, | ||
uint32_t | stateCount | ||
) |
Plugin class constructor.
You must set all parameter values to their defaults, matching ParameterRanges::def.
|
virtual |
Destructor.
|
noexcept |
Get the current buffer size that will probably be used during processing, in frames.
This value will remain constant between activate and deactivate.
|
noexcept |
Get the current sample rate that will be used during processing.
This value will remain constant between activate and deactivate.
|
noexcept |
Get the bundle path where the plugin resides. Can return null if the plugin is not available in a bundle (if it is a single binary).
|
noexcept |
Check if this plugin instance is a "dummy" one used for plugin meta-data/information export.
When true no processing will be done, the plugin is created only to extract information.
In DPF, LADSPA/DSSI, VST2 and VST3 formats create one global instance per plugin binary while LV2 creates one when generating turtle meta-data.
|
noexcept |
Check if this plugin instance is a "selftest" one used for automated plugin tests.
To enable this mode build with DPF_RUNTIME_TESTING
macro defined (i.e. set as compiler build flag), and run the JACK/Standalone executable with "selftest" as its only and single argument.
A few basic DSP and UI tests will run in self-test mode, with once instance having this function returning true.
You can use this chance to do a few tests of your own as well.
|
noexcept |
Get the current host transport time position.
This function should only be called during run().
You can call this during other times, but the returned position is not guaranteed to be in sync.
|
noexcept |
Change the plugin audio output latency to frames.
This function should only be called in the constructor, activate() and run().
|
noexcept |
|
noexcept |
Check if parameter value change requests will work with the current plugin host.
|
noexcept |
Request a parameter value change from the host. If successful, this function will automatically trigger a parameter update on the UI side as well. This function can fail, for example if the host is busy with the parameter for read-only automation. Some hosts simply do not have this functionality, which can be verified with canRequestParameterValueChanges().
|
noexcept |
Set state value and notify the host about the change.
This function will call setState()
and also trigger an update on the UI side as necessary.
It must not be called during run.
The state must be host readable.
TODO API under construction
|
inlineprotectedvirtual |
Get the plugin name.
Returns DISTRHO_PLUGIN_NAME by default.
|
protectedpure virtual |
Get the plugin label.
This label is a short restricted name consisting of only _, a-z, A-Z and 0-9 characters.
|
inlineprotectedvirtual |
Get an extensive comment/description about the plugin.
Optional, returns nothing by default.
|
protectedpure virtual |
Get the plugin author/maker.
|
inlineprotectedvirtual |
Get the plugin homepage.
Optional, returns nothing by default.
|
protectedpure virtual |
Get the plugin license (a single line of text or a URL).
For commercial plugins this should return some short copyright information.
|
protectedpure virtual |
Get the plugin version, in hexadecimal.
|
protectedpure virtual |
Get the plugin unique Id.
This value is used by LADSPA, DSSI, VST2, VST3 and AUv2 plugin formats.
|
protectedvirtual |
Initialize the audio port index.
This function will be called once, shortly after the plugin is created.
|
protectedvirtual |
Initialize the parameter index.
This function will be called once, shortly after the plugin is created.
|
protectedvirtual |
Initialize the port group groupId.
This function will be called once, shortly after the plugin is created and all audio ports and parameters have been enumerated.
|
protectedpure virtual |
Set the name of the program index.
This function will be called once, shortly after the plugin is created.
Must be implemented by your plugin class only if DISTRHO_PLUGIN_WANT_PROGRAMS is enabled.
|
protectedvirtual |
Initialize the state index.
This function will be called once, shortly after the plugin is created.
Must be implemented by your plugin class only if DISTRHO_PLUGIN_WANT_STATE is enabled.
|
protectedvirtual |
Get the current value of a parameter.
The host may call this function from any context, including realtime processing.
|
protectedvirtual |
Change a parameter value.
The host may call this function from any context, including realtime processing.
When a parameter is marked as automatable, you must ensure no non-realtime operations are performed.
|
protectedvirtual |
Load a program.
The host may call this function from any context, including realtime processing.
Must be implemented by your plugin class only if DISTRHO_PLUGIN_WANT_PROGRAMS is enabled.
|
protectedvirtual |
Get the value of an internal state.
The host may call this function from any non-realtime context.
Must be implemented by your plugin class if DISTRHO_PLUGIN_WANT_FULL_STATE is enabled.
|
protectedvirtual |
Change an internal state key to value.
Must be implemented by your plugin class only if DISTRHO_PLUGIN_WANT_STATE is enabled.
|
inlineprotectedvirtual |
Activate this plugin.
|
inlineprotectedvirtual |
Deactivate this plugin.
|
protectedpure virtual |
Run/process function for plugins with MIDI input.
|
protectedvirtual |
Optional callback to inform the plugin about a buffer size change.
This function will only be called when the plugin is deactivated.
|
protectedvirtual |
Optional callback to inform the plugin about a sample rate change.
This function will only be called when the plugin is deactivated.
|
protectedvirtual |
Optional callback to inform the plugin about audio port IO changes.
This function will only be called when the plugin is deactivated.
Only used in AU (AudioUnit) format when DISTRHO_PLUGIN_EXTRA_IO is defined.