|  | /*
 * DISTRHO MVerb, a DPF'ied MVerb.
 * Copyright (c) 2010 Martin Eastwood
 * Copyright (C) 2015 Filipe Coelho <falktx@falktx.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 3 of
 * the License, or any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * For a full copy of the GNU General Public License see the LICENSE file.
 */
#ifndef DISTRHO_PLUGIN_MVERB_HPP_INCLUDED
#define DISTRHO_PLUGIN_MVERB_HPP_INCLUDED
#include "DistrhoPlugin.hpp"
#include "MVerb.h"
START_NAMESPACE_DISTRHO
// -----------------------------------------------------------------------
class DistrhoPluginMVerb : public Plugin
{
public:
    DistrhoPluginMVerb();
protected:
    // -------------------------------------------------------------------
    // Information
    const char* getLabel() const noexcept override
    {
        return "MVerb";
    }
    const char* getMaker() const noexcept override
    {
        return "Martin Eastwood, falkTX";
    }
    const char* getLicense() const noexcept override
    {
        return "GPL v3+";
    }
    uint32_t getVersion() const noexcept override
    {
        return 0x1000;
    }
    int64_t getUniqueId() const noexcept override
    {
        return d_cconst('M', 'V', 'r', 'b');
    }
    // -------------------------------------------------------------------
    // Init
    void initParameter(uint32_t index, Parameter& parameter) override;
    void initProgramName(uint32_t index, String& programName) override;
    // -------------------------------------------------------------------
    // Internal data
    float getParameterValue(uint32_t index) const override;
    void  setParameterValue(uint32_t index, float value) override;
    void  loadProgram(uint32_t index) override;
    // -------------------------------------------------------------------
    // Process
    void activate() override;
    void run(const float** inputs, float** outputs, uint32_t frames) override;
    // -------------------------------------------------------------------
    // Callbacks
    void sampleRateChanged(double newSampleRate) override;
    // -------------------------------------------------------------------
private:
    MVerb<float> fVerb;
    DISTRHO_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(DistrhoPluginMVerb)
};
// -----------------------------------------------------------------------
END_NAMESPACE_DISTRHO
#endif  // DISTRHO_PLUGIN_MVERB_HPP_INCLUDED
 |