split PressSpace action into modular pieces
[ncmpcpp.git] / src / visualizer.h
blob48fd4d5f174f9a9d08ac5c9b4cbe16340b22b207
1 /***************************************************************************
2 * Copyright (C) 2008-2014 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 "interfaces.h"
30 #include "screen.h"
31 #include "window.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 enterPressed() OVERRIDE { }
53 virtual void mouseButtonPressed(MEVENT) OVERRIDE { }
55 virtual bool isLockable() OVERRIDE { return true; }
56 virtual bool isMergable() OVERRIDE { return true; }
58 // private members
59 void ToggleVisualizationType();
60 void SetFD();
61 void ResetFD();
62 void FindOutputID();
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 # ifdef HAVE_FFTW3_H
82 size_t m_fftw_results;
83 double *m_fftw_input;
84 fftw_complex *m_fftw_output;
85 fftw_plan m_fftw_plan;
87 std::vector<double> m_freq_magnitudes;
88 # endif // HAVE_FFTW3_H
91 extern Visualizer *myVisualizer;
93 #endif // ENABLE_VISUALIZER
95 #endif // NCMPCPP_VISUALIZER_H
97 /* vim: set tabstop=4 softtabstop=4 shiftwidth=4 noexpandtab : */