2014-11-29 20:07:01 +01:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
Copyright 2004, Max Howell <max.howell@methylblue.com>
|
|
|
|
Copyright 2009-2010, David Sansome <davidsansome@gmail.com>
|
|
|
|
Copyright 2010, 2014, John Maguire <john.maguire@gmail.com>
|
|
|
|
Copyright 2014, Mark Furneaux <mark@romaco.ca>
|
|
|
|
Copyright 2014, Krzysztof Sobiecki <sobkas@gmail.com>
|
|
|
|
|
|
|
|
Clementine 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.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Original Author: Max Howell <max.howell@methylblue.com> 2004
|
|
|
|
*/
|
2009-12-24 20:16:07 +01:00
|
|
|
|
|
|
|
#include "boomanalyzer.h"
|
|
|
|
#include <cmath>
|
2010-03-22 14:49:08 +01:00
|
|
|
#include <QPainter>
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2014-05-13 14:46:22 +02:00
|
|
|
using Analyzer::Scope;
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
const char* BoomAnalyzer::kName =
|
|
|
|
QT_TRANSLATE_NOOP("AnalyzerContainer", "Boom analyzer");
|
|
|
|
|
|
|
|
BoomAnalyzer::BoomAnalyzer(QWidget* parent)
|
|
|
|
: Analyzer::Base(parent, 9),
|
|
|
|
K_barHeight(1.271) // 1.471
|
|
|
|
,
|
|
|
|
F_peakSpeed(1.103) // 1.122
|
|
|
|
,
|
|
|
|
F(1.0),
|
|
|
|
bar_height(BAND_COUNT, 0),
|
|
|
|
peak_height(BAND_COUNT, 0),
|
|
|
|
peak_speed(BAND_COUNT, 0.01),
|
|
|
|
barPixmap(COLUMN_WIDTH, 50) {}
|
|
|
|
|
|
|
|
void BoomAnalyzer::changeK_barHeight(int newValue) {
|
2014-11-29 21:05:59 +01:00
|
|
|
K_barHeight = static_cast<double>(newValue) / 1000;
|
2009-12-24 20:16:07 +01:00
|
|
|
}
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
void BoomAnalyzer::changeF_peakSpeed(int newValue) {
|
2014-11-29 21:05:59 +01:00
|
|
|
F_peakSpeed = static_cast<double>(newValue) / 1000;
|
2009-12-24 20:16:07 +01:00
|
|
|
}
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
void BoomAnalyzer::resizeEvent(QResizeEvent*) { init(); }
|
|
|
|
|
|
|
|
void BoomAnalyzer::init() {
|
|
|
|
const uint HEIGHT = height() - 2;
|
|
|
|
const double h = 1.2 / HEIGHT;
|
|
|
|
|
2014-11-29 20:07:01 +01:00
|
|
|
F = static_cast<double>(HEIGHT) / (log10(256) * 1.1 /*<- max. amplitude*/);
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
barPixmap = QPixmap(COLUMN_WIDTH - 2, HEIGHT);
|
2014-04-27 07:54:42 +02:00
|
|
|
canvas_ = QPixmap(size());
|
|
|
|
canvas_.fill(palette().color(QPalette::Background));
|
2014-02-07 16:34:20 +01:00
|
|
|
|
|
|
|
QPainter p(&barPixmap);
|
|
|
|
for (uint y = 0; y < HEIGHT; ++y) {
|
2014-11-29 21:05:59 +01:00
|
|
|
const double F = static_cast<double>(y) * h;
|
2014-02-07 16:34:20 +01:00
|
|
|
|
2014-11-29 20:07:01 +01:00
|
|
|
p.setPen(QColor(qMax(0, 255 - static_cast<int>(229.0 * F)),
|
|
|
|
qMax(0, 255 - static_cast<int>(229.0 * F)),
|
|
|
|
qMax(0, 255 - static_cast<int>(191.0 * F))));
|
2014-02-07 16:34:20 +01:00
|
|
|
p.drawLine(0, y, COLUMN_WIDTH - 2, y);
|
|
|
|
}
|
2010-03-21 18:22:05 +01:00
|
|
|
}
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
void BoomAnalyzer::transform(Scope& s) {
|
|
|
|
float* front = static_cast<float*>(&s.front());
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
m_fht->spectrum(front);
|
|
|
|
m_fht->scale(front, 1.0 / 60);
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
Scope scope(32, 0);
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
const uint xscale[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
|
|
|
|
11, 12, 13, 14, 15, 16, 17, 19, 24, 29, 36,
|
|
|
|
43, 52, 63, 76, 91, 108, 129, 153, 182, 216, 255};
|
2009-12-24 20:16:07 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
for (uint j, i = 0; i < 32; i++)
|
|
|
|
for (j = xscale[i]; j < xscale[i + 1]; j++)
|
|
|
|
if (s[j] > scope[i]) scope[i] = s[j];
|
|
|
|
|
|
|
|
s = scope;
|
2009-12-24 20:16:07 +01:00
|
|
|
}
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
void BoomAnalyzer::analyze(QPainter& p, const Scope& scope, bool new_frame) {
|
2014-04-27 07:54:42 +02:00
|
|
|
if (!new_frame) {
|
|
|
|
p.drawPixmap(0, 0, canvas_);
|
|
|
|
return;
|
|
|
|
}
|
2014-02-07 16:34:20 +01:00
|
|
|
float h;
|
|
|
|
const uint MAX_HEIGHT = height() - 1;
|
2010-08-28 20:48:16 +02:00
|
|
|
|
2014-04-27 07:54:42 +02:00
|
|
|
QPainter canvas_painter(&canvas_);
|
|
|
|
canvas_.fill(palette().color(QPalette::Background));
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
for (uint i = 0, x = 0, y; i < BAND_COUNT; ++i, x += COLUMN_WIDTH + 1) {
|
|
|
|
h = log10(scope[i] * 256.0) * F;
|
2010-08-28 20:48:16 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
if (h > MAX_HEIGHT) h = MAX_HEIGHT;
|
2010-08-28 20:48:16 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
if (h > bar_height[i]) {
|
|
|
|
bar_height[i] = h;
|
2010-08-28 20:48:16 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
if (h > peak_height[i]) {
|
|
|
|
peak_height[i] = h;
|
|
|
|
peak_speed[i] = 0.01;
|
2014-11-29 20:07:01 +01:00
|
|
|
} else {
|
2014-02-07 16:34:20 +01:00
|
|
|
goto peak_handling;
|
2014-11-29 20:07:01 +01:00
|
|
|
}
|
2014-02-07 16:34:20 +01:00
|
|
|
} else {
|
|
|
|
if (bar_height[i] > 0.0) {
|
|
|
|
bar_height[i] -= K_barHeight; // 1.4
|
|
|
|
if (bar_height[i] < 0.0) bar_height[i] = 0.0;
|
|
|
|
}
|
2010-08-28 20:48:16 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
peak_handling:
|
|
|
|
|
|
|
|
if (peak_height[i] > 0.0) {
|
|
|
|
peak_height[i] -= peak_speed[i];
|
|
|
|
peak_speed[i] *= F_peakSpeed; // 1.12
|
2010-08-28 20:48:16 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
if (peak_height[i] < bar_height[i]) peak_height[i] = bar_height[i];
|
|
|
|
if (peak_height[i] < 0.0) peak_height[i] = 0.0;
|
|
|
|
}
|
2009-12-24 20:16:07 +01:00
|
|
|
}
|
2014-02-07 16:34:20 +01:00
|
|
|
|
|
|
|
y = height() - uint(bar_height[i]);
|
2014-04-27 07:54:42 +02:00
|
|
|
canvas_painter.drawPixmap(x + 1, y, barPixmap, 0, y, -1, -1);
|
|
|
|
canvas_painter.setPen(palette().color(QPalette::Highlight));
|
|
|
|
if (bar_height[i] > 0)
|
|
|
|
canvas_painter.drawRect(x, y, COLUMN_WIDTH - 1, height() - y - 1);
|
2014-02-07 16:34:20 +01:00
|
|
|
|
|
|
|
y = height() - uint(peak_height[i]);
|
2014-04-27 07:54:42 +02:00
|
|
|
canvas_painter.setPen(palette().color(QPalette::Base));
|
|
|
|
canvas_painter.drawLine(x, y, x + COLUMN_WIDTH - 1, y);
|
2014-02-07 16:34:20 +01:00
|
|
|
}
|
2014-04-27 07:54:42 +02:00
|
|
|
|
|
|
|
p.drawPixmap(0, 0, canvas_);
|
2009-12-24 20:16:07 +01:00
|
|
|
}
|