1 /***************************************************************************
2 * Copyright (C) 2008-2016 by Andrzej Rybczak *
3 * electricityispower@gmail.com *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #ifndef NCMPCPP_VISUALIZER_H
22 #define NCMPCPP_VISUALIZER_H
26 #ifdef ENABLE_VISUALIZER
28 #include <boost/date_time/posix_time/posix_time_types.hpp>
29 #include "curses/window.h"
30 #include "interfaces.h"
31 #include "screens/screen.h"
37 struct Visualizer
: Screen
<NC::Window
>, Tabbable
41 virtual void switchTo() override
;
42 virtual void resize() override
;
44 virtual std::wstring
title() override
;
45 virtual ScreenType
type() override
{ return ScreenType::Visualizer
; }
47 virtual void update() override
;
48 virtual void scroll(NC::Scroll
) override
{ }
50 virtual int windowTimeout() override
;
52 virtual void mouseButtonPressed(MEVENT
) override
{ }
54 virtual bool isLockable() override
{ return true; }
55 virtual bool isMergable() override
{ return true; }
58 void ToggleVisualizationType();
62 void ResetAutoScaleMultiplier();
65 void DrawSoundWave(int16_t *, ssize_t
, size_t, size_t);
66 void DrawSoundWaveStereo(int16_t *, int16_t *, ssize_t
, size_t);
67 void DrawSoundWaveFill(int16_t *, ssize_t
, size_t, size_t);
68 void DrawSoundWaveFillStereo(int16_t *, int16_t *, ssize_t
, size_t);
69 void DrawSoundEllipse(int16_t *, ssize_t
, size_t, size_t);
70 void DrawSoundEllipseStereo(int16_t *, int16_t *, ssize_t
, size_t);
72 void DrawFrequencySpectrum(int16_t *, ssize_t
, size_t, size_t);
73 void DrawFrequencySpectrumStereo(int16_t *, int16_t *, ssize_t
, size_t);
74 # endif // HAVE_FFTW3_H
77 boost::posix_time::ptime m_timer
;
81 double m_auto_scale_multiplier
;
83 size_t m_fftw_results
;
85 fftw_complex
*m_fftw_output
;
86 fftw_plan m_fftw_plan
;
88 std::vector
<double> m_freq_magnitudes
;
89 # endif // HAVE_FFTW3_H
92 extern Visualizer
*myVisualizer
;
94 #endif // ENABLE_VISUALIZER
96 #endif // NCMPCPP_VISUALIZER_H
98 /* vim: set tabstop=4 softtabstop=4 shiftwidth=4 noexpandtab : */