Basics of content dialogs.
[dcpomatic.git] / src / wx / audio_dialog.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 <boost/filesystem.hpp>
21 #include "lib/audio_analysis.h"
22 #include "lib/film.h"
23 #include "lib/audio_mapping.h"
24 #include "audio_dialog.h"
25 #include "audio_plot.h"
26 #include "wx_util.h"
27
28 using boost::shared_ptr;
29 using boost::bind;
30 using boost::optional;
31
32 AudioDialog::AudioDialog (wxWindow* parent)
33         : wxDialog (parent, wxID_ANY, _("Audio"), wxDefaultPosition, wxSize (640, 512), wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
34         , _plot (0)
35 {
36         wxBoxSizer* sizer = new wxBoxSizer (wxHORIZONTAL);
37
38         _plot = new AudioPlot (this);
39         sizer->Add (_plot, 1, wxALL, 12);
40
41         wxBoxSizer* side = new wxBoxSizer (wxVERTICAL);
42
43         {
44                 wxStaticText* m = new wxStaticText (this, wxID_ANY, _("Channels"));
45                 side->Add (m, 1, wxALIGN_CENTER_VERTICAL | wxTOP, 16);
46         }
47         
48
49         for (int i = 0; i < MAX_AUDIO_CHANNELS; ++i) {
50                 _channel_checkbox[i] = new wxCheckBox (this, wxID_ANY, std_to_wx (audio_channel_name (i)));
51                 side->Add (_channel_checkbox[i], 1, wxEXPAND | wxALL, 3);
52                 _channel_checkbox[i]->Connect (wxID_ANY, wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler (AudioDialog::channel_clicked), 0, this);
53         }
54
55         {
56                 wxStaticText* m = new wxStaticText (this, wxID_ANY, _("Type"));
57                 side->Add (m, 1, wxALIGN_CENTER_VERTICAL | wxTOP, 16);
58         }
59         
60         wxString const types[] = {
61                 _("Peak"),
62                 _("RMS")
63         };
64
65         for (int i = 0; i < AudioPoint::COUNT; ++i) {
66                 _type_checkbox[i] = new wxCheckBox (this, wxID_ANY, types[i]);
67                 side->Add (_type_checkbox[i], 1, wxEXPAND | wxALL, 3);
68                 _type_checkbox[i]->Connect (wxID_ANY, wxEVT_COMMAND_CHECKBOX_CLICKED, wxCommandEventHandler (AudioDialog::type_clicked), 0, this);
69         }
70
71         {
72                 wxStaticText* m = new wxStaticText (this, wxID_ANY, _("Smoothing"));
73                 side->Add (m, 1, wxALIGN_CENTER_VERTICAL | wxTOP, 16);
74         }
75         
76         _smoothing = new wxSlider (this, wxID_ANY, AudioPlot::max_smoothing / 2, 1, AudioPlot::max_smoothing);
77         _smoothing->Connect (wxID_ANY, wxEVT_SCROLL_THUMBTRACK, wxScrollEventHandler (AudioDialog::smoothing_changed), 0, this);
78         side->Add (_smoothing, 1, wxEXPAND);
79
80         sizer->Add (side, 0, wxALL, 12);
81
82         SetSizer (sizer);
83         sizer->Layout ();
84         sizer->SetSizeHints (this);
85 }
86
87 void
88 AudioDialog::set_film (shared_ptr<Film> f)
89 {
90         _film_changed_connection.disconnect ();
91         _film_audio_analysis_succeeded_connection.disconnect ();
92         
93         _film = f;
94
95         try_to_load_analysis ();
96         setup_channels ();
97         _plot->set_gain (_film->audio_gain ());
98
99         _film_changed_connection = _film->Changed.connect (bind (&AudioDialog::film_changed, this, _1));
100         _film_audio_analysis_succeeded_connection = _film->AudioAnalysisSucceeded.connect (bind (&AudioDialog::try_to_load_analysis, this));
101
102         SetTitle (wxString::Format (_("DVD-o-matic audio - %s"), std_to_wx(_film->name()).data()));
103 }
104
105 void
106 AudioDialog::setup_channels ()
107 {
108         if (!_film->has_audio()) {
109                 return;
110         }
111
112         AutomaticAudioMapping m (_film->audio_channels ());
113         
114         for (int i = 0; i < MAX_AUDIO_CHANNELS; ++i) {
115                 if (m.dcp_to_source(static_cast<libdcp::Channel>(i))) {
116                         _channel_checkbox[i]->Show ();
117                 } else {
118                         _channel_checkbox[i]->Hide ();
119                 }
120         }
121 }       
122
123 void
124 AudioDialog::try_to_load_analysis ()
125 {
126         shared_ptr<AudioAnalysis> a;
127
128         if (boost::filesystem::exists (_film->audio_analysis_path())) {
129                 a.reset (new AudioAnalysis (_film->audio_analysis_path ()));
130         } else {
131                 if (IsShown ()) {
132                         _film->analyse_audio ();
133                 }
134         }
135                 
136         _plot->set_analysis (a);
137
138         AutomaticAudioMapping m (_film->audio_channels ());
139         optional<libdcp::Channel> c = m.source_to_dcp (0);
140         if (c) {
141                 _channel_checkbox[c.get()]->SetValue (true);
142                 _plot->set_channel_visible (0, true);
143         }
144
145         for (int i = 0; i < AudioPoint::COUNT; ++i) {
146                 _type_checkbox[i]->SetValue (true);
147                 _plot->set_type_visible (i, true);
148         }
149 }
150
151 void
152 AudioDialog::channel_clicked (wxCommandEvent& ev)
153 {
154         int c = 0;
155         while (c < MAX_AUDIO_CHANNELS && ev.GetEventObject() != _channel_checkbox[c]) {
156                 ++c;
157         }
158
159         assert (c < MAX_AUDIO_CHANNELS);
160
161         AutomaticAudioMapping m (_film->audio_channels ());
162         optional<int> s = m.dcp_to_source (static_cast<libdcp::Channel> (c));
163         if (s) {
164                 _plot->set_channel_visible (s.get(), _channel_checkbox[c]->GetValue ());
165         }
166 }
167
168 void
169 AudioDialog::film_changed (Film::Property p)
170 {
171         switch (p) {
172         case Film::AUDIO_GAIN:
173                 _plot->set_gain (_film->audio_gain ());
174                 break;
175         case Film::CONTENT:
176                 setup_channels ();
177                 break;
178         default:
179                 break;
180         }
181 }
182
183 void
184 AudioDialog::type_clicked (wxCommandEvent& ev)
185 {
186         int t = 0;
187         while (t < AudioPoint::COUNT && ev.GetEventObject() != _type_checkbox[t]) {
188                 ++t;
189         }
190
191         assert (t < AudioPoint::COUNT);
192
193         _plot->set_type_visible (t, _type_checkbox[t]->GetValue ());
194 }
195
196 void
197 AudioDialog::smoothing_changed (wxScrollEvent &)
198 {
199         _plot->set_smoothing (_smoothing->GetValue ());
200 }