|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- /*
- * Carla Native Plugins
- * Copyright (C) 2012-2017 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 2 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 doc/GPL.txt file.
- */
-
- #include "CarlaDefines.h"
-
- #include "CarlaMathUtils.hpp"
- #include "CarlaNativeExtUI.hpp"
-
- #include "water/maths/MathsFunctions.h"
-
- using water::roundToIntAccurate;
-
- // -----------------------------------------------------------------------
-
- class BigMeterPlugin : public NativePluginAndUiClass
- {
- public:
- BigMeterPlugin(const NativeHostDescriptor* const host)
- : NativePluginAndUiClass(host, "bigmeter-ui"),
- fColor(1),
- fStyle(1),
- fOutLeft(0.0f),
- fOutRight(0.0f) {}
-
- protected:
- // -------------------------------------------------------------------
- // Plugin parameter calls
-
- uint32_t getParameterCount() const override
- {
- return 4;
- }
-
- const NativeParameter* getParameterInfo(const uint32_t index) const override
- {
- CARLA_SAFE_ASSERT_RETURN(index < 4, nullptr);
-
- static NativeParameter param;
- static NativeParameterScalePoint scalePoints[3];
-
- int hints = NATIVE_PARAMETER_IS_ENABLED|NATIVE_PARAMETER_IS_AUTOMABLE;
-
- param.name = nullptr;
- param.unit = nullptr;
- param.ranges.def = 0.0f;
- param.ranges.min = 0.0f;
- param.ranges.max = 1.0f;
- param.ranges.step = 1.0f;
- param.ranges.stepSmall = 1.0f;
- param.ranges.stepLarge = 1.0f;
- param.scalePointCount = 0;
- param.scalePoints = nullptr;
-
- switch (index)
- {
- case 0:
- hints |= NATIVE_PARAMETER_IS_INTEGER|NATIVE_PARAMETER_USES_SCALEPOINTS;
- param.name = "Color";
- param.ranges.def = 1.0f;
- param.ranges.min = 1.0f;
- param.ranges.max = 2.0f;
- scalePoints[0].value = 1.0f;
- scalePoints[0].label = "Green";
- scalePoints[1].value = 2.0f;
- scalePoints[1].label = "Blue";
- param.scalePointCount = 2;
- param.scalePoints = scalePoints;
- break;
- case 1:
- hints |= NATIVE_PARAMETER_IS_INTEGER|NATIVE_PARAMETER_USES_SCALEPOINTS;
- param.name = "Style";
- param.ranges.def = 1.0f;
- param.ranges.min = 1.0f;
- param.ranges.max = 3.0f;
- scalePoints[0].value = 1.0f;
- scalePoints[0].label = "Default";
- scalePoints[1].value = 2.0f;
- scalePoints[1].label = "OpenAV";
- scalePoints[2].value = 3.0f;
- scalePoints[2].label = "RNCBC";
- param.scalePointCount = 3;
- param.scalePoints = scalePoints;
- break;
- case 2:
- hints |= NATIVE_PARAMETER_IS_OUTPUT;
- param.name = "Out Left";
- break;
- case 3:
- hints |= NATIVE_PARAMETER_IS_OUTPUT;
- param.name = "Out Right";
- break;
- }
-
- param.hints = static_cast<NativeParameterHints>(hints);
-
- return ¶m;
- }
-
- float getParameterValue(const uint32_t index) const override
- {
- switch (index)
- {
- case 0:
- return float(fColor);
- case 1:
- return float(fStyle);
- case 2:
- return fOutLeft;
- case 3:
- return fOutRight;
- default:
- return 0.0f;
- }
- }
-
- // -------------------------------------------------------------------
- // Plugin state calls
-
- void setParameterValue(const uint32_t index, const float value) override
- {
- switch (index)
- {
- case 0:
- fColor = roundToIntAccurate(value);
- break;
- case 1:
- fStyle = roundToIntAccurate(value);
- break;
- default:
- break;
- }
- }
-
- // -------------------------------------------------------------------
- // Plugin process calls
-
- void activate() override
- {
- fOutLeft = 0.0f;
- fOutRight = 0.0f;
- }
-
- void process(float** inputs, float**, const uint32_t frames, const NativeMidiEvent* const, const uint32_t) override
- {
- fOutLeft = carla_findMaxNormalizedFloat(inputs[0], frames);
- fOutRight = carla_findMaxNormalizedFloat(inputs[1], frames);
- }
-
- private:
- int fColor, fStyle;
- float fOutLeft, fOutRight;
-
- PluginClassEND(BigMeterPlugin)
- CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(BigMeterPlugin)
- };
-
- // -----------------------------------------------------------------------
-
- static const NativePluginDescriptor bigmeterDesc = {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ static_cast<NativePluginHints>(NATIVE_PLUGIN_IS_RTSAFE
- |NATIVE_PLUGIN_HAS_UI
- |NATIVE_PLUGIN_NEEDS_FIXED_BUFFERS),
- /* supports */ NATIVE_PLUGIN_SUPPORTS_NOTHING,
- /* audioIns */ 2,
- /* audioOuts */ 0,
- /* midiIns */ 0,
- /* midiOuts */ 0,
- /* paramIns */ 2,
- /* paramOuts */ 2,
- /* name */ "Big Meter",
- /* label */ "bigmeter",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- PluginDescriptorFILL(BigMeterPlugin)
- };
-
- // -----------------------------------------------------------------------
-
- CARLA_EXPORT
- void carla_register_native_plugin_bigmeter();
-
- CARLA_EXPORT
- void carla_register_native_plugin_bigmeter()
- {
- carla_register_native_plugin(&bigmeterDesc);
- }
-
- // -----------------------------------------------------------------------
|