2014-11-29 20:07:01 +01:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
Copyright 2003-2005, Max Howell <max.howell@methylblue.com>
|
|
|
|
Copyright 2009-2010, David Sansome <davidsansome@gmail.com>
|
|
|
|
Copyright 2010, 2014, John Maguire <john.maguire@gmail.com>
|
Add "Psychedelic Colour" mode to all analyzers
(Well, except Nyanalyzer and Rainbow dash because they are already colourful enough.)
I have added functionality for any 2D analyzer to change any part of its colour palatte with the frequency content of the music, in the same way that Moodbars do.
I find this gives the analyzer a sort of "third dimention".
This is built into Analyzer::Base, so all analyzers can use it and override it as they please. I have thus added support for Block, Boom, Turbine, Sonogram, and Bar, however Boom and Block seem to look the best in my opinion.
This is of course all optional and is toggled by a checkbox in the context menu for the analyzer, disabled by default.
I have not been able to measure any increase in CPU activity with this enabled, even at 60fps.
2015-07-01 11:48:03 -04:00
|
|
|
Copyright 2014-2015, Mark Furneaux <mark@furneaux.ca>
|
2014-11-29 20:07:01 +01:00
|
|
|
Copyright 2014, Krzysztof A. Sobiecki <sobkas@gmail.com>
|
2009-12-24 19:16:07 +00:00
|
|
|
|
2014-11-29 20:07:01 +01:00
|
|
|
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> 2003-2005
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ANALYZERS_BLOCKANALYZER_H_
|
|
|
|
#define ANALYZERS_BLOCKANALYZER_H_
|
2009-12-24 19:16:07 +00:00
|
|
|
|
|
|
|
#include "analyzerbase.h"
|
2010-08-28 18:48:16 +00:00
|
|
|
#include <qcolor.h>
|
2009-12-24 19:16:07 +00:00
|
|
|
|
|
|
|
class QResizeEvent;
|
|
|
|
class QMouseEvent;
|
|
|
|
class QPalette;
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
class BlockAnalyzer : public Analyzer::Base {
|
2010-03-20 22:45:54 +00:00
|
|
|
Q_OBJECT
|
2014-11-29 20:07:01 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
|
|
|
Q_INVOKABLE BlockAnalyzer(QWidget*);
|
|
|
|
~BlockAnalyzer();
|
|
|
|
|
Add "Psychedelic Colour" mode to all analyzers
(Well, except Nyanalyzer and Rainbow dash because they are already colourful enough.)
I have added functionality for any 2D analyzer to change any part of its colour palatte with the frequency content of the music, in the same way that Moodbars do.
I find this gives the analyzer a sort of "third dimention".
This is built into Analyzer::Base, so all analyzers can use it and override it as they please. I have thus added support for Block, Boom, Turbine, Sonogram, and Bar, however Boom and Block seem to look the best in my opinion.
This is of course all optional and is toggled by a checkbox in the context menu for the analyzer, disabled by default.
I have not been able to measure any increase in CPU activity with this enabled, even at 60fps.
2015-07-01 11:48:03 -04:00
|
|
|
static const uint kHeight;
|
|
|
|
static const uint kWidth;
|
|
|
|
static const uint kMinRows;
|
|
|
|
static const uint kMinColumns;
|
|
|
|
static const uint kMaxColumns;
|
|
|
|
static const uint kFadeSize;
|
2014-02-07 16:34:20 +01:00
|
|
|
|
|
|
|
static const char* kName;
|
|
|
|
|
|
|
|
protected:
|
2014-05-13 14:46:22 +02:00
|
|
|
virtual void transform(Analyzer::Scope&);
|
|
|
|
virtual void analyze(QPainter& p, const Analyzer::Scope&, bool new_frame);
|
2014-02-07 16:34:20 +01:00
|
|
|
virtual void resizeEvent(QResizeEvent*);
|
|
|
|
virtual void paletteChange(const QPalette&);
|
2014-05-13 16:43:46 -04:00
|
|
|
virtual void framerateChanged();
|
Add "Psychedelic Colour" mode to all analyzers
(Well, except Nyanalyzer and Rainbow dash because they are already colourful enough.)
I have added functionality for any 2D analyzer to change any part of its colour palatte with the frequency content of the music, in the same way that Moodbars do.
I find this gives the analyzer a sort of "third dimention".
This is built into Analyzer::Base, so all analyzers can use it and override it as they please. I have thus added support for Block, Boom, Turbine, Sonogram, and Bar, however Boom and Block seem to look the best in my opinion.
This is of course all optional and is toggled by a checkbox in the context menu for the analyzer, disabled by default.
I have not been able to measure any increase in CPU activity with this enabled, even at 60fps.
2015-07-01 11:48:03 -04:00
|
|
|
virtual void psychedelicModeChanged(bool);
|
2014-02-07 16:34:20 +01:00
|
|
|
|
|
|
|
void drawBackground();
|
|
|
|
void determineStep();
|
|
|
|
|
|
|
|
private:
|
Add "Psychedelic Colour" mode to all analyzers
(Well, except Nyanalyzer and Rainbow dash because they are already colourful enough.)
I have added functionality for any 2D analyzer to change any part of its colour palatte with the frequency content of the music, in the same way that Moodbars do.
I find this gives the analyzer a sort of "third dimention".
This is built into Analyzer::Base, so all analyzers can use it and override it as they please. I have thus added support for Block, Boom, Turbine, Sonogram, and Bar, however Boom and Block seem to look the best in my opinion.
This is of course all optional and is toggled by a checkbox in the context menu for the analyzer, disabled by default.
I have not been able to measure any increase in CPU activity with this enabled, even at 60fps.
2015-07-01 11:48:03 -04:00
|
|
|
QPixmap* bar() { return &barPixmap_; }
|
2014-02-07 16:34:20 +01:00
|
|
|
|
Add "Psychedelic Colour" mode to all analyzers
(Well, except Nyanalyzer and Rainbow dash because they are already colourful enough.)
I have added functionality for any 2D analyzer to change any part of its colour palatte with the frequency content of the music, in the same way that Moodbars do.
I find this gives the analyzer a sort of "third dimention".
This is built into Analyzer::Base, so all analyzers can use it and override it as they please. I have thus added support for Block, Boom, Turbine, Sonogram, and Bar, however Boom and Block seem to look the best in my opinion.
This is of course all optional and is toggled by a checkbox in the context menu for the analyzer, disabled by default.
I have not been able to measure any increase in CPU activity with this enabled, even at 60fps.
2015-07-01 11:48:03 -04:00
|
|
|
uint columns_, rows_; // number of rows and columns of blocks
|
|
|
|
uint y_; // y-offset from top of widget
|
|
|
|
QPixmap barPixmap_;
|
|
|
|
QPixmap topBarPixmap_;
|
|
|
|
QPixmap background_;
|
2014-04-27 01:54:42 -04:00
|
|
|
QPixmap canvas_;
|
2017-03-11 14:14:11 -03:00
|
|
|
Analyzer::Scope scope_; // so we don't create a vector every frame
|
|
|
|
QVector<float> store_; // current bar kHeights
|
|
|
|
QVector<float> yscale_;
|
|
|
|
|
|
|
|
QVector<QPixmap> fade_bars_;
|
|
|
|
QVector<uint> fade_pos_;
|
|
|
|
QVector<int> fade_intensity_;
|
2014-02-07 16:34:20 +01:00
|
|
|
|
Add "Psychedelic Colour" mode to all analyzers
(Well, except Nyanalyzer and Rainbow dash because they are already colourful enough.)
I have added functionality for any 2D analyzer to change any part of its colour palatte with the frequency content of the music, in the same way that Moodbars do.
I find this gives the analyzer a sort of "third dimention".
This is built into Analyzer::Base, so all analyzers can use it and override it as they please. I have thus added support for Block, Boom, Turbine, Sonogram, and Bar, however Boom and Block seem to look the best in my opinion.
This is of course all optional and is toggled by a checkbox in the context menu for the analyzer, disabled by default.
I have not been able to measure any increase in CPU activity with this enabled, even at 60fps.
2015-07-01 11:48:03 -04:00
|
|
|
float step_; // rows to fall per frame
|
2009-12-24 19:16:07 +00:00
|
|
|
};
|
|
|
|
|
2014-11-29 20:07:01 +01:00
|
|
|
#endif // ANALYZERS_BLOCKANALYZER_H_
|