8-voice polyphonic granular synth (VST3/AU/LV2) with: - 128 grain pool per voice, Hann windowing, linear interpolation - Root note selector, sample rate correction, sustain pedal (CC64) - Scatter controls, direction modes (Fwd/Rev/PingPong), freeze - ADSR envelope, global filter (LP/HP/BP), reverb - Waveform display with grain visualization - Drag & drop sample loading, full state save/restore - CI/CD for Windows/macOS/Linux Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
63 sor
1.9 KiB
C++
63 sor
1.9 KiB
C++
#pragma once
|
|
#include <JuceHeader.h>
|
|
|
|
class VuMeter : public juce::Component
|
|
{
|
|
public:
|
|
void setLevel (float left, float right)
|
|
{
|
|
if (left > peakL) peakL = left;
|
|
else peakL *= 0.995f;
|
|
if (right > peakR) peakR = right;
|
|
else peakR *= 0.995f;
|
|
|
|
levelL = std::max (left, levelL * 0.85f);
|
|
levelR = std::max (right, levelR * 0.85f);
|
|
repaint();
|
|
}
|
|
|
|
void paint (juce::Graphics& g) override
|
|
{
|
|
auto bounds = getLocalBounds().toFloat().reduced (1);
|
|
float barGap = 2.0f;
|
|
float halfW = (bounds.getWidth() - barGap) / 2.0f;
|
|
auto leftBar = bounds.removeFromLeft (halfW);
|
|
bounds.removeFromLeft (barGap);
|
|
auto rightBar = bounds;
|
|
|
|
drawBar (g, leftBar, levelL, peakL);
|
|
drawBar (g, rightBar, levelR, peakR);
|
|
}
|
|
|
|
private:
|
|
float levelL = 0.0f, levelR = 0.0f;
|
|
float peakL = 0.0f, peakR = 0.0f;
|
|
|
|
void drawBar (juce::Graphics& g, juce::Rectangle<float> bar, float level, float peak)
|
|
{
|
|
g.setColour (juce::Colour (0xff111122));
|
|
g.fillRoundedRectangle (bar, 2.0f);
|
|
|
|
float displayLevel = std::pow (juce::jlimit (0.0f, 1.0f, level), 0.5f);
|
|
float h = bar.getHeight() * displayLevel;
|
|
auto filled = bar.withTop (bar.getBottom() - h);
|
|
|
|
if (displayLevel < 0.6f)
|
|
g.setColour (juce::Colour (0xff00cc44));
|
|
else if (displayLevel < 0.85f)
|
|
g.setColour (juce::Colour (0xffcccc00));
|
|
else
|
|
g.setColour (juce::Colour (0xffff3333));
|
|
|
|
g.fillRoundedRectangle (filled, 2.0f);
|
|
|
|
float displayPeak = std::pow (juce::jlimit (0.0f, 1.0f, peak), 0.5f);
|
|
if (displayPeak > 0.01f)
|
|
{
|
|
float peakY = bar.getBottom() - bar.getHeight() * displayPeak;
|
|
g.setColour (juce::Colours::white.withAlpha (0.8f));
|
|
g.fillRect (bar.getX(), peakY, bar.getWidth(), 1.5f);
|
|
}
|
|
}
|
|
};
|