|
- /*
- ==============================================================================
-
- This file is part of the dRowAudio JUCE module
- Copyright 2004-13 by dRowAudio.
-
- ------------------------------------------------------------------------------
-
- dRowAudio is provided under the terms of The MIT License (MIT):
-
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
-
- The above copyright notice and this permission notice shall be included in all
- copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- SOFTWARE.
-
- ==============================================================================
- */
-
- #if JUCE_MAC || JUCE_IOS || DROWAUDIO_USE_FFTREAL
-
- Spectroscope::Spectroscope (int fftSizeLog2)
- : fftEngine (fftSizeLog2),
- needsRepaint (true),
- tempBlock (fftEngine.getFFTSize()),
- circularBuffer (fftEngine.getMagnitudesBuffer().getSize() * 4),
- logFrequency (false)
- {
- setOpaque (true);
-
- fftEngine.setWindowType (Window::Hann);
- numBins = fftEngine.getFFTProperties().fftSizeHalved;
-
- circularBuffer.reset();
-
- scopeImage = Image (Image::RGB,
- 100, 100,
- false);
- scopeImage.clear (scopeImage.getBounds(), Colours::black);
- }
-
- Spectroscope::~Spectroscope()
- {
- }
-
- void Spectroscope::resized()
- {
- scopeImage = scopeImage.rescaled (jmax (1, getWidth()), jmax (1, getHeight()));
- }
-
- void Spectroscope::paint(Graphics& g)
- {
- g.drawImageAt (scopeImage, 0, 0, false);
- }
-
- void Spectroscope::setLogFrequencyDisplay (bool shouldDisplayLog)
- {
- logFrequency = shouldDisplayLog;
- }
-
- //==============================================================================
- void Spectroscope::copySamples (const float* samples, int numSamples)
- {
- circularBuffer.writeSamples (samples, numSamples);
- needToProcess = true;
- }
-
- void Spectroscope::timerCallback()
- {
- const int magnitudeBufferSize = fftEngine.getMagnitudesBuffer().getSize();
- float* magnitudeBuffer = fftEngine.getMagnitudesBuffer().getData();
-
- renderScopeImage();
-
- // fall levels here
- for (int i = 0; i < magnitudeBufferSize; i++)
- magnitudeBuffer[i] *= 0.707f;
- }
-
- void Spectroscope::process()
- {
- jassert (circularBuffer.getNumFree() != 0); // buffer is too small!
-
- while (circularBuffer.getNumAvailable() > fftEngine.getFFTSize())
- {
- circularBuffer.readSamples (tempBlock.getData(), fftEngine.getFFTSize());
- fftEngine.performFFT (tempBlock);
- fftEngine.updateMagnitudesIfBigger();
-
- needsRepaint = true;
- }
- }
-
- void Spectroscope::flagForRepaint()
- {
- needsRepaint = true;
- repaint();
- }
-
- //==============================================================================
- void Spectroscope::renderScopeImage()
- {
- if (needsRepaint)
- {
- Graphics g (scopeImage);
-
- const int w = getWidth();
- const int h = getHeight();
-
- g.setColour (Colours::black);
- g.fillAll();
-
- g.setColour (Colours::white);
-
- const int numBins = fftEngine.getMagnitudesBuffer().getSize() - 1;
- const float xScale = (float)w / (numBins + 1);
- const float* data = fftEngine.getMagnitudesBuffer().getData();
-
- float y2, y1 = jlimit (0.0f, 1.0f, float (1 + (toDecibels (data[0]) / 100.0f)));
- float x2, x1 = 0;
-
- if (logFrequency)
- {
- for (int i = 0; i < numBins; ++i)
- {
- y2 = jlimit (0.0f, 1.0f, float (1 + (toDecibels (data[i]) / 100.0f)));
- x2 = log10 (1 + 39 * ((i + 1.0f) / numBins)) / log10 (40.0f) * w;
-
- g.drawLine (x1, h - h * y1,
- x2, h - h * y2);
-
- y1 = y2;
- x1 = x2;
- }
- }
- else
- {
- for (int i = 0; i < numBins; ++i)
- {
- y2 = jlimit (0.0f, 1.0f, float (1 + (toDecibels (data[i]) / 100.0f)));
- x2 = (i + 1) * xScale;
-
- g.drawLine (x1, h - h * y1,
- x2, h - h * y2);
-
- y1 = y2;
- x1 = x2;
- }
- }
-
- needsRepaint = false;
-
- repaint();
- }
- }
-
- #endif // JUCE_MAC || JUCE_IOS || DROWAUDIO_USE_FFTREAL
|