Config: reformat all descriptions to fill 80 columns
[ncmpcpp.git] / src / screens / visualizer.h
blob40e191ad587a77cbcf73b01c41f15f9b3b0b7a75
1 /***************************************************************************
2 * Copyright (C) 2008-2017 by Andrzej Rybczak *
3 * electricityispower@gmail.com *
4 * *
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. *
9 * *
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. *
14 * *
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
24 #include "config.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"
33 #ifdef HAVE_FFTW3_H
34 # include <fftw3.h>
35 #endif
37 struct Visualizer: Screen<NC::Window>, Tabbable
39 Visualizer();
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; }
57 // private members
58 void ToggleVisualizationType();
59 void SetFD();
60 void ResetFD();
61 void FindOutputID();
62 void ResetAutoScaleMultiplier();
64 private:
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);
71 # ifdef HAVE_FFTW3_H
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
76 int m_output_id;
77 boost::posix_time::ptime m_timer;
79 int m_fifo;
80 size_t m_samples;
81 double m_auto_scale_multiplier;
82 # ifdef HAVE_FFTW3_H
83 size_t m_fftw_results;
84 double *m_fftw_input;
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 : */