1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
/*
==============================================================================
This file is part of the IEM plug-in suite.
Author: Daniel Rudrich
Copyright (c) 2017 - Institute of Electronic Music and Acoustics (IEM)
https://iem.at
The IEM plug-in suite 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
(at your option) any later version.
The IEM plug-in suite 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.
You should have received a copy of the GNU General Public License
along with this software. If not, see <https://www.gnu.org/licenses/>.
==============================================================================
*/
#pragma once
#include "../../resources/heatmap.h"
#include "../../resources/viridis_cropped.h"
#include "../JuceLibraryCode/JuceHeader.h"
//==============================================================================
/*
*/
class VisualizerColormap : public juce::Component
{
public:
VisualizerColormap()
{
// In your constructor, you should add any child components, and
// initialise any special settings that your component needs.
}
~VisualizerColormap() {}
void paint (juce::Graphics& g) override
{
juce::Colour colormapData[256];
if (usePerceptualColormap)
for (int i = 0; i < 256; ++i)
{
const float alpha = juce::jlimit (0.0f, 1.0f, (float) i / 50.0f);
colormapData[i] = juce::Colour::fromFloatRGBA (viridis_cropped[i][0],
viridis_cropped[i][1],
viridis_cropped[i][2],
alpha);
}
else
for (int i = 0; i < 256; ++i)
{
colormapData[i] = juce::Colour::fromFloatRGBA (heatmap[i][0],
heatmap[i][1],
heatmap[i][2],
heatmap[i][3]);
}
juce::Rectangle<int> colormapArea (getLocalBounds());
colormapArea.removeFromTop (12);
colormapArea.removeFromBottom (6);
colormapArea.removeFromRight (25);
juce::ColourGradient gradient;
gradient.point1 = colormapArea.getTopLeft().toFloat();
gradient.point2 = colormapArea.getBottomLeft().toFloat();
for (int i = 0; i < 256; ++i)
gradient.addColour (1.0f - i * 1.0f / 256, colormapData[i]);
juce::Path path;
path.addRectangle (colormapArea);
g.setGradientFill (gradient);
g.fillPath (path);
g.setColour (juce::Colours::white);
int width = colormapArea.getWidth();
auto currentFont =
juce::FontOptions (getLookAndFeel().getTypefaceForFont (juce::FontOptions (12.0f, 1)));
g.setFont (currentFont);
g.drawText ("dB", 25, 0, width, 12, juce::Justification::centred);
currentFont =
juce::FontOptions (getLookAndFeel().getTypefaceForFont (juce::FontOptions (12.0f, 0)))
.withHeight (12.0f);
g.setFont (currentFont);
const float yStep = (float) colormapArea.getHeight() / 7;
g.drawText (juce::String (maxLevel, 1), 25, 12, width, 12, juce::Justification::centred);
for (int i = 1; i < 8; ++i)
{
g.drawText (juce::String (maxLevel - range / 7.0 * i, 1),
25,
6 + yStep * i,
width,
12,
juce::Justification::centred);
}
}
void setMaxLevel (const float newMaxLevel)
{
maxLevel = newMaxLevel;
repaint();
}
void setRange (const float newRange)
{
range = newRange;
repaint();
}
void mouseDown (const juce::MouseEvent& event) override
{
usePerceptualColormap = ! usePerceptualColormap;
repaint();
}
void setColormap (bool shouldUsePerceptualColormap)
{
if (usePerceptualColormap != shouldUsePerceptualColormap)
{
usePerceptualColormap = shouldUsePerceptualColormap;
repaint();
}
}
bool getColormap() { return usePerceptualColormap; }
void resized() override {}
private:
bool usePerceptualColormap = true;
float maxLevel = 0.0f;
float range = 35.0f;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (VisualizerColormap)
};
|