Fix dumb-assery. Initial axes.
[dcpomatic.git] / src / wx / audio_plot.cc
1 /*
2     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <iostream>
21 #include <boost/bind.hpp>
22 #include <wx/graphics.h>
23 #include "audio_plot.h"
24 #include "lib/decoder_factory.h"
25 #include "lib/audio_decoder.h"
26 #include "lib/audio_analysis.h"
27 #include "wx/wx_util.h"
28
29 using std::cout;
30 using std::vector;
31 using std::max;
32 using std::min;
33 using boost::bind;
34 using boost::shared_ptr;
35
36 int const AudioPlot::_minimum = -90;
37
38 AudioPlot::AudioPlot (wxWindow* parent)
39         : wxPanel (parent)
40         , _gain (0)
41 {
42         SetDoubleBuffered (true);
43
44         for (int i = 0; i < MAX_AUDIO_CHANNELS; ++i) {
45                 _channel_visible[i] = false;
46         }
47
48         for (int i = 0; i < AudioPoint::COUNT; ++i) {
49                 _type_visible[i] = false;
50         }
51
52         _colours.push_back (wxColour (  0,   0,   0));
53         _colours.push_back (wxColour (255,   0,   0));
54         _colours.push_back (wxColour (  0, 255,   0));
55         _colours.push_back (wxColour (139,   0, 204));
56         _colours.push_back (wxColour (  0,   0, 255));
57         _colours.push_back (wxColour (100, 100, 100));
58         
59         Connect (wxID_ANY, wxEVT_PAINT, wxPaintEventHandler (AudioPlot::paint), 0, this);
60         
61         SetMinSize (wxSize (640, 512));
62 }
63
64 void
65 AudioPlot::set_analysis (shared_ptr<AudioAnalysis> a)
66 {
67         _analysis = a;
68
69         for (int i = 0; i < MAX_AUDIO_CHANNELS; ++i) {
70                 _channel_visible[i] = false;
71         }
72
73         for (int i = 0; i < AudioPoint::COUNT; ++i) {
74                 _type_visible[i] = false;
75         }
76         
77         Refresh ();
78 }
79
80 void
81 AudioPlot::set_channel_visible (int c, bool v)
82 {
83         _channel_visible[c] = v;
84         Refresh ();
85 }
86
87 void
88 AudioPlot::set_type_visible (int t, bool v)
89 {
90         _type_visible[t] = v;
91         Refresh ();
92 }
93
94 void
95 AudioPlot::paint (wxPaintEvent &)
96 {
97         wxPaintDC dc (this);
98
99         wxGraphicsContext* gc = wxGraphicsContext::Create (dc);
100         if (!gc) {
101                 return;
102         }
103
104         if (!_analysis) {
105                 gc->SetFont (gc->CreateFont (*wxNORMAL_FONT));
106                 gc->DrawText (_("Please wait; audio is being analysed..."), 32, 32);
107                 return;
108         }
109         
110         int const width = GetSize().GetWidth();
111         /* Assume all channels have the same number of points */
112         float const xs = width / float (_analysis->points (0));
113         int const height = GetSize().GetHeight ();
114         float const ys = height / -_minimum;
115         int const border = 8;
116
117         wxGraphicsPath grid = gc->CreatePath ();
118         gc->SetFont (gc->CreateFont (*wxSMALL_FONT));
119         for (int i = _minimum; i <= 0; i += 10) {
120                 int const y = height - (i - _minimum) * ys;
121                 grid.MoveToPoint (0, y);
122                 grid.AddLineToPoint (width, y);
123                 gc->DrawText (std_to_wx (String::compose ("%1dB", i)), width - 32, y - 12);
124         }
125         gc->SetPen (*wxLIGHT_GREY_PEN);
126         gc->StrokePath (grid);
127
128         wxGraphicsPath axes = gc->CreatePath ();
129         axes.MoveToPoint (border, border);
130         axes.AddLineToPoint (border, height - border);
131         axes.AddLineToPoint (width - border, height - border);
132         gc->SetPen (*wxBLACK_PEN);
133         gc->StrokePath (axes);
134
135         for (int c = 0; c < MAX_AUDIO_CHANNELS; ++c) {
136                 if (!_channel_visible[c] || c >= _analysis->channels()) {
137                         continue;
138                 }
139
140                 wxGraphicsPath path[AudioPoint::COUNT];
141                 
142                 for (int i = 0; i < AudioPoint::COUNT; ++i) {
143                         if (!_type_visible[i]) {
144                                 continue;
145                         }
146                         
147                         path[i] = gc->CreatePath ();
148                         path[i].MoveToPoint (0, height - (max (_analysis->get_point(c, 0)[i], float (_minimum)) - _minimum + _gain) * ys);
149                 }
150
151                 for (int i = 0; i < _analysis->points(c); ++i) {
152                         for (int j = 0; j < AudioPoint::COUNT; ++j) {
153                                 if (!_type_visible[j]) {
154                                         continue;
155                                 }
156                                 
157                                 path[j].AddLineToPoint (i * xs, height - (max (_analysis->get_point(c, i)[j], float (_minimum)) - _minimum + _gain) * ys);
158                         }
159                 }
160
161                 wxColour const col = _colours[c];
162
163                 if (_type_visible[AudioPoint::RMS]) {
164                         gc->SetPen (*wxThePenList->FindOrCreatePen (col));
165                         gc->StrokePath (path[AudioPoint::RMS]);
166                 }
167
168                 if (_type_visible[AudioPoint::PEAK]) {
169                         gc->SetPen (*wxThePenList->FindOrCreatePen (wxColour (col.Red(), col.Green(), col.Blue(), col.Alpha() / 2)));
170                         gc->StrokePath (path[AudioPoint::PEAK]);
171                 }
172         }
173
174         delete gc;
175 }
176
177 void
178 AudioPlot::set_gain (float g)
179 {
180         _gain = g;
181         Refresh ();
182 }