|
- /*
- * DISTRHO Plugin Framework (DPF)
- * Copyright (C) 2012-2018 Filipe Coelho <falktx@falktx.com>
- *
- * Permission to use, copy, modify, and/or distribute this software for any purpose with
- * or without fee is hereby granted, provided that the above copyright notice and this
- * permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
- * TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN
- * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
- * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
- * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
- #include "DistrhoPlugin.hpp"
-
- START_NAMESPACE_DISTRHO
-
- // -----------------------------------------------------------------------------------------------------------
-
- /**
- Plugin to show how to get some basic information sent to the UI.
- */
- class ExternalExamplePlugin : public Plugin
- {
- public:
- ExternalExamplePlugin()
- : Plugin(kParameterCount, 0, 0),
- fValue(0.0f)
- {
- }
-
- protected:
- /* --------------------------------------------------------------------------------------------------------
- * Information */
-
- /**
- Get the plugin label.
- This label is a short restricted name consisting of only _, a-z, A-Z and 0-9 characters.
- */
- const char* getLabel() const override
- {
- return "ExternalUI";
- }
-
- /**
- Get an extensive comment/description about the plugin.
- */
- const char* getDescription() const override
- {
- return "Plugin to show how to use an external / remote UI.";
- }
-
- /**
- Get the plugin author/maker.
- */
- const char* getMaker() const override
- {
- return "DISTRHO";
- }
-
- /**
- Get the plugin homepage.
- */
- const char* getHomePage() const override
- {
- return "https://github.com/DISTRHO/DPF";
- }
-
- /**
- Get the plugin license name (a single line of text).
- For commercial plugins this should return some short copyright information.
- */
- const char* getLicense() const override
- {
- return "ISC";
- }
-
- /**
- Get the plugin version, in hexadecimal.
- */
- uint32_t getVersion() const override
- {
- return d_version(1, 0, 0);
- }
-
- /**
- Get the plugin unique Id.
- This value is used by LADSPA, DSSI and VST plugin formats.
- */
- int64_t getUniqueId() const override
- {
- return d_cconst('d', 'E', 'x', 't');
- }
-
- /* --------------------------------------------------------------------------------------------------------
- * Init */
-
- /**
- Initialize the parameter @a index.
- This function will be called once, shortly after the plugin is created.
- */
- void initParameter(uint32_t index, Parameter& parameter) override
- {
- if (index != 0)
- return;
-
- parameter.hints = kParameterIsAutomable|kParameterIsInteger;
- parameter.ranges.def = 0.0f;
- parameter.ranges.min = 0.0f;
- parameter.ranges.max = 100.0f;
- parameter.name = "Value";
- parameter.symbol = "value";
- }
-
- /* --------------------------------------------------------------------------------------------------------
- * Internal data */
-
- /**
- Get the current value of a parameter.
- The host may call this function from any context, including realtime processing.
- */
- float getParameterValue(uint32_t index) const override
- {
- if (index != 0)
- return 0.0f;
-
- return fValue;
-
- }
-
- /**
- Change a parameter value.
- The host may call this function from any context, including realtime processing.
- When a parameter is marked as automable, you must ensure no non-realtime operations are performed.
- @note This function will only be called for parameter inputs.
- */
- void setParameterValue(uint32_t index, float value) override
- {
- if (index != 0)
- return;
-
- fValue = value;
- }
-
- /* --------------------------------------------------------------------------------------------------------
- * Audio/MIDI Processing */
-
- /**
- Run/process function for plugins without MIDI input.
- @note Some parameters might be null if there are no audio inputs or outputs.
- */
- void run(const float** inputs, float** outputs, uint32_t frames) override
- {
- /**
- This plugin does nothing, it just demonstrates information usage.
- So here we directly copy inputs over outputs, leaving the audio untouched.
- We need to be careful in case the host re-uses the same buffer for both inputs and outputs.
- */
- if (outputs[0] != inputs[0])
- std::memcpy(outputs[0], inputs[0], sizeof(float)*frames);
- }
-
- // -------------------------------------------------------------------------------------------------------
-
- private:
- // Parameters
- float fValue;
-
- /**
- Set our plugin class as non-copyable and add a leak detector just in case.
- */
- DISTRHO_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(ExternalExamplePlugin)
- };
-
- /* ------------------------------------------------------------------------------------------------------------
- * Plugin entry point, called by DPF to create a new plugin instance. */
-
- Plugin* createPlugin()
- {
- return new ExternalExamplePlugin();
- }
-
- // -----------------------------------------------------------------------------------------------------------
-
- END_NAMESPACE_DISTRHO
|