/* * ZamComp mono compressor * Copyright (C) 2014 Damien Zammit * * 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 "ZamCompPlugin.hpp" #include "ZamCompUI.hpp" using DGL::Point; START_NAMESPACE_DISTRHO // ----------------------------------------------------------------------- ZamCompUI::ZamCompUI() : UI() { setSize(ZamCompArtwork::zamcompWidth, ZamCompArtwork::zamcompHeight); // background fImgBackground = Image(ZamCompArtwork::zamcompData, ZamCompArtwork::zamcompWidth, ZamCompArtwork::zamcompHeight, GL_BGR); // led images fLedRedImg = Image(ZamCompArtwork::ledredData, ZamCompArtwork::ledredWidth, ZamCompArtwork::ledredHeight); fLedYellowImg = Image(ZamCompArtwork::ledyellowData, ZamCompArtwork::ledyellowWidth, ZamCompArtwork::ledyellowHeight); fTogOn = Image(ZamCompArtwork::toggleonData, ZamCompArtwork::toggleonWidth, ZamCompArtwork::toggleonHeight); fTogOff = Image(ZamCompArtwork::toggleoffData, ZamCompArtwork::toggleoffWidth, ZamCompArtwork::toggleoffHeight); // led values fLedRedValue = 0.0f; fLedYellowValue = -45.0f; // knob Image knobImage(ZamCompArtwork::knobData, ZamCompArtwork::knobWidth, ZamCompArtwork::knobHeight); // knob fKnobAttack = new ZamKnob(this, knobImage); fKnobAttack->setAbsolutePos(24, 45); fKnobAttack->setId(ZamCompPlugin::paramAttack); fKnobAttack->setRange(0.1f, 200.0f); fKnobAttack->setUsingLogScale(true); fKnobAttack->setLabel(true); fKnobAttack->setScrollStep(1.0f); fKnobAttack->setDefault(10.0f); fKnobAttack->setRotationAngle(240); fKnobAttack->setCallback(this); fKnobRelease = new ZamKnob(this, knobImage); fKnobRelease->setAbsolutePos(108, 45); fKnobRelease->setId(ZamCompPlugin::paramRelease); fKnobRelease->setRange(1.0f, 500.0f); fKnobRelease->setLabel(true); fKnobRelease->setScrollStep(1.0f); fKnobRelease->setDefault(80.0f); fKnobRelease->setRotationAngle(240); fKnobRelease->setCallback(this); fKnobThresh = new ZamKnob(this, knobImage); fKnobThresh->setAbsolutePos(191.5, 45); fKnobThresh->setId(ZamCompPlugin::paramThresh); fKnobThresh->setRange(-60.0f, 0.0f); fKnobThresh->setLabel(true); fKnobThresh->setScrollStep(1.0f); fKnobThresh->setDefault(0.0f); fKnobThresh->setRotationAngle(240); fKnobThresh->setCallback(this); fKnobRatio = new ZamKnob(this, knobImage); fKnobRatio->setAbsolutePos(270, 45); fKnobRatio->setId(ZamCompPlugin::paramRatio); fKnobRatio->setRange(1.0f, 20.0f); fKnobRatio->setScrollStep(1.0f); fKnobRatio->setLabel(true); fKnobRatio->setUsingLogScale(true); fKnobRatio->setDefault(4.0f); fKnobRatio->setRotationAngle(240); fKnobRatio->setCallback(this); fKnobKnee = new ZamKnob(this, knobImage); fKnobKnee->setAbsolutePos(348.5, 45); fKnobKnee->setId(ZamCompPlugin::paramKnee); fKnobKnee->setRange(0.0f, 8.0f); fKnobKnee->setLabel(true); fKnobKnee->setScrollStep(1.0f); fKnobKnee->setDefault(0.0f); fKnobKnee->setRotationAngle(240); fKnobKnee->setCallback(this); fKnobMakeup = new ZamKnob(this, knobImage); fKnobMakeup->setAbsolutePos(638, 62); fKnobMakeup->setId(ZamCompPlugin::paramMakeup); fKnobMakeup->setRange(-30.0f, 30.0f); fKnobMakeup->setLabel(true); fKnobMakeup->setScrollStep(1.0f); fKnobMakeup->setDefault(0.0f); fKnobMakeup->setRotationAngle(240); fKnobMakeup->setCallback(this); fKnobSlew = new ZamKnob(this, knobImage); fKnobSlew->setAbsolutePos(427.3, 45); fKnobSlew->setId(ZamCompPlugin::paramSlew); fKnobSlew->setRange(1.0f, 150.0f); fKnobSlew->setLabel(true); fKnobSlew->setScrollStep(1.0f); fKnobSlew->setDefault(1.0f); fKnobSlew->setRotationAngle(240); fKnobSlew->setCallback(this); fToggleSidechain = new ImageSwitch(this, fTogOff, fTogOn); fToggleSidechain->setAbsolutePos(500, 61); fToggleSidechain->setId(ZamCompPlugin::paramSidechain); fToggleSidechain->setCallback(this); // set default values programLoaded(0); } // ----------------------------------------------------------------------- // DSP Callbacks void ZamCompUI::parameterChanged(uint32_t index, float value) { switch (index) { case ZamCompPlugin::paramAttack: fKnobAttack->setValue(value); break; case ZamCompPlugin::paramRelease: fKnobRelease->setValue(value); break; case ZamCompPlugin::paramThresh: fKnobThresh->setValue(value); break; case ZamCompPlugin::paramRatio: fKnobRatio->setValue(value); break; case ZamCompPlugin::paramKnee: fKnobKnee->setValue(value); break; case ZamCompPlugin::paramMakeup: fKnobMakeup->setValue(value); break; case ZamCompPlugin::paramSlew: fKnobSlew->setValue(value); break; case ZamCompPlugin::paramSidechain: fToggleSidechain->setDown(value > 0.5); break; case ZamCompPlugin::paramGainRed: if (fLedRedValue != value) { fLedRedValue = value; repaint(); } break; case ZamCompPlugin::paramOutputLevel: if (fLedYellowValue != value) { fLedYellowValue = value; repaint(); } break; } } void ZamCompUI::programLoaded(uint32_t index) { switch(index) { case 0: fKnobAttack->setValue(10.0f); fKnobRelease->setValue(80.0f); fKnobKnee->setValue(0.0f); fKnobRatio->setValue(4.0f); fKnobThresh->setValue(0.0f); fKnobMakeup->setValue(0.0f); fKnobSlew->setValue(1.0f); fToggleSidechain->setDown(false); break; case 1: fKnobAttack->setValue(10.0f); fKnobRelease->setValue(80.0f); fKnobKnee->setValue(1.0f); fKnobRatio->setValue(5.0f); fKnobThresh->setValue(-18.0f); fKnobMakeup->setValue(6.0f); fKnobSlew->setValue(20.0f); fToggleSidechain->setDown(false); break; case 2: fKnobAttack->setValue(50.0f); fKnobRelease->setValue(400.0f); fKnobKnee->setValue(8.0f); fKnobRatio->setValue(5.0f); fKnobThresh->setValue(-16.0f); fKnobMakeup->setValue(9.0f); fKnobSlew->setValue(1.0f); fToggleSidechain->setDown(false); break; } } // ----------------------------------------------------------------------- // Widget Callbacks void ZamCompUI::imageKnobDragStarted(ZamKnob* knob) { editParameter(knob->getId(), true); } void ZamCompUI::imageKnobDragFinished(ZamKnob* knob) { editParameter(knob->getId(), false); } void ZamCompUI::imageKnobValueChanged(ZamKnob* knob, float value) { setParameterValue(knob->getId(), value); } void ZamCompUI::imageSwitchClicked(ImageSwitch* tog, bool down) { setParameterValue(tog->getId(), down ? 1.f : 0.f); } void ZamCompUI::onDisplay() { fImgBackground.draw(); // draw leds static const float sLedSpacing = 15.5f; static const int sLedInitialX = 498; static const int sYellowLedStaticY = 16; static const int sRedLedStaticY = 45; int numRedLeds; int numYellowLeds; if (fLedRedValue >= 40.f) numRedLeds = 12; else if (fLedRedValue >= 30.f) numRedLeds = 11; else if (fLedRedValue >= 20.f) numRedLeds = 10; else if (fLedRedValue >= 15.f) numRedLeds = 9; else if (fLedRedValue >= 10.f) numRedLeds = 8; else if (fLedRedValue >= 8.f) numRedLeds = 7; else if (fLedRedValue >= 6.f) numRedLeds = 6; else if (fLedRedValue >= 5.f) numRedLeds = 5; else if (fLedRedValue >= 4.f) numRedLeds = 4; else if (fLedRedValue >= 3.f) numRedLeds = 3; else if (fLedRedValue >= 2.f) numRedLeds = 2; else if (fLedRedValue >= 1.f) numRedLeds = 1; else numRedLeds = 0; for (int i=numRedLeds; i>0; --i) fLedRedImg.drawAt(sLedInitialX + (12 - i)*sLedSpacing, sRedLedStaticY); if (fLedYellowValue >= 20.f) numYellowLeds = 19; else if (fLedYellowValue >= 10.f) numYellowLeds = 18; else if (fLedYellowValue >= 8.f) numYellowLeds = 17; else if (fLedYellowValue >= 4.f) numYellowLeds = 16; else if (fLedYellowValue >= 2.f) numYellowLeds = 15; else if (fLedYellowValue >= 1.f) numYellowLeds = 14; else if (fLedYellowValue >= 0.f) numYellowLeds = 13; else if (fLedYellowValue >= -1.f) numYellowLeds = 12; else if (fLedYellowValue >= -2.f) numYellowLeds = 11; else if (fLedYellowValue >= -3.f) numYellowLeds = 10; else if (fLedYellowValue >= -4.f) numYellowLeds = 9; else if (fLedYellowValue >= -5.f) numYellowLeds = 8; else if (fLedYellowValue >= -6.f) numYellowLeds = 7; else if (fLedYellowValue >= -8.f) numYellowLeds = 6; else if (fLedYellowValue >= -10.f) numYellowLeds = 5; else if (fLedYellowValue >= -15.f) numYellowLeds = 4; else if (fLedYellowValue >= -20.f) numYellowLeds = 3; else if (fLedYellowValue >= -30.f) numYellowLeds = 2; else if (fLedYellowValue >= -40.f) numYellowLeds = 1; else numYellowLeds = 0; if (numYellowLeds > 12) { for (int i=12; i