mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
121 lines
3.3 KiB
C++
121 lines
3.3 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE library.
|
|
Copyright (c) 2017 - ROLI Ltd.
|
|
|
|
JUCE is an open source library subject to commercial or open-source
|
|
licensing.
|
|
|
|
By using JUCE, you agree to the terms of both the JUCE 5 End-User License
|
|
Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
|
|
27th April 2017).
|
|
|
|
End User License Agreement: www.juce.com/juce-5-licence
|
|
Privacy Policy: www.juce.com/juce-5-privacy-policy
|
|
|
|
Or: You may also use this code under the terms of the GPL v3 (see
|
|
www.gnu.org/licenses).
|
|
|
|
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
|
|
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
|
|
DISCLAIMED.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "../JuceLibraryCode/JuceHeader.h"
|
|
|
|
// A very simple decaying meter.
|
|
class SimpleMeter : public Component,
|
|
private Timer
|
|
{
|
|
public:
|
|
SimpleMeter()
|
|
{
|
|
startTimerHz (30);
|
|
}
|
|
|
|
//==============================================================================
|
|
void paint (Graphics& g) override
|
|
{
|
|
g.fillAll (Colours::transparentBlack);
|
|
|
|
auto area = g.getClipBounds();
|
|
g.setColour (getLookAndFeel().findColour (Slider::thumbColourId));
|
|
g.fillRoundedRectangle (area.toFloat(), 6.0);
|
|
|
|
auto unfilledHeight = area.getHeight() * (1.0 - level);
|
|
g.reduceClipRegion (area.getX(), area.getY(),
|
|
area.getWidth(), (int) unfilledHeight);
|
|
g.setColour (getLookAndFeel().findColour (Slider::trackColourId));
|
|
g.fillRoundedRectangle (area.toFloat(), 6.0);
|
|
}
|
|
|
|
void resized() override {}
|
|
|
|
//==============================================================================
|
|
// Called from the audio thread.
|
|
void update (float newLevel)
|
|
{
|
|
// We don't care if maxLevel gets set to zero (in timerCallback) between the
|
|
// load and the assignment.
|
|
maxLevel = jmax (maxLevel.load(), newLevel);
|
|
}
|
|
|
|
private:
|
|
//==============================================================================
|
|
void timerCallback() override
|
|
{
|
|
auto callbackLevel = maxLevel.exchange (0.0);
|
|
|
|
auto decayFactor = 0.95;
|
|
|
|
if (callbackLevel > level)
|
|
level = callbackLevel;
|
|
else if (level > 0.001)
|
|
level *= decayFactor;
|
|
else
|
|
level = 0;
|
|
|
|
repaint();
|
|
}
|
|
|
|
std::atomic<float> maxLevel {0.0};
|
|
float level = 0;
|
|
|
|
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SimpleMeter)
|
|
};
|
|
|
|
#if JUCE_PROJUCER_LIVE_BUILD
|
|
|
|
// Animate the meter in the Projucer live build.
|
|
struct MockSimpleMeter : public Component,
|
|
private Timer
|
|
{
|
|
MockSimpleMeter()
|
|
{
|
|
addAndMakeVisible (meter);
|
|
resized();
|
|
startTimerHz (100);
|
|
}
|
|
|
|
void paint (Graphics&) override {}
|
|
|
|
void resized() override
|
|
{
|
|
meter.setBounds (getBounds());
|
|
}
|
|
|
|
void timerCallback() override
|
|
{
|
|
meter.update (std::pow (randomNumberGenerator.nextFloat(), 2));
|
|
}
|
|
|
|
SimpleMeter meter;
|
|
Random randomNumberGenerator;
|
|
};
|
|
|
|
#endif
|