Merge.
[dcpomatic.git] / src / wx / audio_panel.cc
1 /*
2     Copyright (C) 2012-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/lexical_cast.hpp>
21 #include <wx/spinctrl.h>
22 #include "lib/config.h"
23 #include "lib/sound_processor.h"
24 #include "lib/ffmpeg_content.h"
25 #include "audio_dialog.h"
26 #include "audio_panel.h"
27 #include "audio_mapping_view.h"
28 #include "wx_util.h"
29 #include "gain_calculator_dialog.h"
30 #include "film_editor.h"
31
32 using std::vector;
33 using std::cout;
34 using std::string;
35 using boost::dynamic_pointer_cast;
36 using boost::lexical_cast;
37 using boost::shared_ptr;
38
39 AudioPanel::AudioPanel (FilmEditor* e)
40         : FilmEditorPanel (e, _("Audio"))
41         , _audio_dialog (0)
42 {
43         wxGridBagSizer* grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
44         _sizer->Add (grid, 0, wxALL, 8);
45
46         int r = 0;
47
48         _show = new wxButton (this, wxID_ANY, _("Show Audio..."));
49         grid->Add (_show, wxGBPosition (r, 0));
50         ++r;
51
52         add_label_to_grid_bag_sizer (grid, this, _("Gain"), true, wxGBPosition (r, 0));
53         _gain = new ContentSpinCtrlDouble<AudioContent> (
54                 this,
55                 new wxSpinCtrlDouble (this),
56                 AudioContentProperty::AUDIO_GAIN,
57                 boost::mem_fn (&AudioContent::audio_gain),
58                 boost::mem_fn (&AudioContent::set_audio_gain)
59                 );
60         
61         _gain->add (grid, wxGBPosition (r, 1));
62         add_label_to_grid_bag_sizer (grid, this, _("dB"), false, wxGBPosition (r, 2));
63         _gain_calculate_button = new wxButton (this, wxID_ANY, _("Calculate..."));
64         grid->Add (_gain_calculate_button, wxGBPosition (r, 3));
65         ++r;
66
67         add_label_to_grid_bag_sizer (grid, this, _("Delay"), true, wxGBPosition (r, 0));
68         _delay = new ContentSpinCtrl<AudioContent> (
69                 this,
70                 new wxSpinCtrl (this),
71                 AudioContentProperty::AUDIO_DELAY,
72                 boost::mem_fn (&AudioContent::audio_delay),
73                 boost::mem_fn (&AudioContent::set_audio_delay)
74                 );
75         
76         _delay->add (grid, wxGBPosition (r, 1));
77         /// TRANSLATORS: this is an abbreviation for milliseconds, the unit of time
78         add_label_to_grid_bag_sizer (grid, this, _("ms"), false, wxGBPosition (r, 2));
79         ++r;
80
81         add_label_to_grid_bag_sizer (grid, this, _("Stream"), true, wxGBPosition (r, 0));
82         _stream = new wxChoice (this, wxID_ANY);
83         grid->Add (_stream, wxGBPosition (r, 1));
84         _description = add_label_to_grid_bag_sizer (grid, this, "", false, wxGBPosition (r, 3));
85         ++r;
86         
87         _mapping = new AudioMappingView (this);
88         _sizer->Add (_mapping, 1, wxEXPAND | wxALL, 6);
89
90         _gain->wrapped()->SetRange (-60, 60);
91         _gain->wrapped()->SetDigits (1);
92         _gain->wrapped()->SetIncrement (0.5);
93         _delay->wrapped()->SetRange (-1000, 1000);
94
95         _stream->Bind                (wxEVT_COMMAND_CHOICE_SELECTED,  boost::bind (&AudioPanel::stream_changed, this));
96         _show->Bind                  (wxEVT_COMMAND_BUTTON_CLICKED,   boost::bind (&AudioPanel::show_clicked, this));
97         _gain_calculate_button->Bind (wxEVT_COMMAND_BUTTON_CLICKED,   boost::bind (&AudioPanel::gain_calculate_button_clicked, this));
98
99         _mapping->Changed.connect (boost::bind (&AudioPanel::mapping_changed, this, _1));
100 }
101
102
103 void
104 AudioPanel::film_changed (Film::Property property)
105 {
106         switch (property) {
107         case Film::AUDIO_CHANNELS:
108                 _mapping->set_channels (_editor->film()->audio_channels ());
109                 _sizer->Layout ();
110                 break;
111         default:
112                 break;
113         }
114 }
115
116 void
117 AudioPanel::film_content_changed (int property)
118 {
119         AudioContentList ac = _editor->selected_audio_content ();
120         shared_ptr<AudioContent> acs;
121         shared_ptr<FFmpegContent> fcs;
122         if (ac.size() == 1) {
123                 acs = ac.front ();
124                 fcs = dynamic_pointer_cast<FFmpegContent> (acs);
125         }
126         
127         if (property == AudioContentProperty::AUDIO_MAPPING) {
128                 _mapping->set (acs ? acs->audio_mapping () : AudioMapping ());
129                 _sizer->Layout ();
130         } else if (property == FFmpegContentProperty::AUDIO_STREAM) {
131                 setup_stream_description ();
132                 _mapping->set (acs ? acs->audio_mapping () : AudioMapping ());
133                 _sizer->Layout ();
134         } else if (property == FFmpegContentProperty::AUDIO_STREAMS) {
135                 _stream->Clear ();
136                 if (fcs) {
137                         vector<shared_ptr<FFmpegAudioStream> > a = fcs->audio_streams ();
138                         for (vector<shared_ptr<FFmpegAudioStream> >::iterator i = a.begin(); i != a.end(); ++i) {
139                                 _stream->Append (std_to_wx ((*i)->name), new wxStringClientData (std_to_wx ((*i)->identifier ())));
140                         }
141                         
142                         if (fcs->audio_stream()) {
143                                 checked_set (_stream, fcs->audio_stream()->identifier ());
144                                 setup_stream_description ();
145                         }
146                 }
147         }
148 }
149
150 void
151 AudioPanel::gain_calculate_button_clicked ()
152 {
153         GainCalculatorDialog* d = new GainCalculatorDialog (this);
154         d->ShowModal ();
155
156         if (d->wanted_fader() == 0 || d->actual_fader() == 0) {
157                 d->Destroy ();
158                 return;
159         }
160         
161         _gain->wrapped()->SetValue (
162                 Config::instance()->sound_processor()->db_for_fader_change (
163                         d->wanted_fader (),
164                         d->actual_fader ()
165                         )
166                 );
167
168         /* This appears to be necessary, as the change is not signalled,
169            I think.
170         */
171         _gain->view_changed ();
172         
173         d->Destroy ();
174 }
175
176 void
177 AudioPanel::show_clicked ()
178 {
179         if (_audio_dialog) {
180                 _audio_dialog->Destroy ();
181                 _audio_dialog = 0;
182         }
183
184         AudioContentList ac = _editor->selected_audio_content ();
185         if (ac.size() != 1) {
186                 return;
187         }
188         
189         _audio_dialog = new AudioDialog (this);
190         _audio_dialog->Show ();
191         _audio_dialog->set_content (ac.front ());
192 }
193
194 void
195 AudioPanel::stream_changed ()
196 {
197         FFmpegContentList fc = _editor->selected_ffmpeg_content ();
198         if (fc.size() != 1) {
199                 return;
200         }
201
202         shared_ptr<FFmpegContent> fcs = fc.front ();
203         
204         if (_stream->GetSelection() == -1) {
205                 return;
206         }
207         
208         vector<shared_ptr<FFmpegAudioStream> > a = fcs->audio_streams ();
209         vector<shared_ptr<FFmpegAudioStream> >::iterator i = a.begin ();
210         string const s = string_client_data (_stream->GetClientObject (_stream->GetSelection ()));
211         while (i != a.end() && (*i)->identifier () != s) {
212                 ++i;
213         }
214
215         if (i != a.end ()) {
216                 fcs->set_audio_stream (*i);
217         }
218
219         setup_stream_description ();
220 }
221
222 void
223 AudioPanel::setup_stream_description ()
224 {
225         FFmpegContentList fc = _editor->selected_ffmpeg_content ();
226         if (fc.size() != 1) {
227                 _description->SetLabel ("");
228                 return;
229         }
230
231         shared_ptr<FFmpegContent> fcs = fc.front ();
232
233         if (!fcs->audio_stream ()) {
234                 _description->SetLabel (wxT (""));
235         } else {
236                 wxString s;
237                 if (fcs->audio_channels() == 1) {
238                         s << _("1 channel");
239                 } else {
240                         s << fcs->audio_channels() << wxT (" ") << _("channels");
241                 }
242                 s << wxT (", ") << fcs->content_audio_frame_rate() << _("Hz");
243                 _description->SetLabel (s);
244         }
245 }
246
247 void
248 AudioPanel::mapping_changed (AudioMapping m)
249 {
250         AudioContentList c = _editor->selected_audio_content ();
251         if (c.size() == 1) {
252                 c.front()->set_audio_mapping (m);
253         }
254 }
255
256 void
257 AudioPanel::content_selection_changed ()
258 {
259         AudioContentList sel = _editor->selected_audio_content ();
260
261         if (_audio_dialog && sel.size() == 1) {
262                 _audio_dialog->set_content (sel.front ());
263         }
264         
265         _gain->set_content (sel);
266         _delay->set_content (sel);
267
268         _show->Enable (sel.size() == 1);
269         _stream->Enable (sel.size() == 1);
270         _mapping->Enable (sel.size() == 1);
271
272         film_content_changed (AudioContentProperty::AUDIO_MAPPING);
273         film_content_changed (FFmpegContentProperty::AUDIO_STREAM);
274         film_content_changed (FFmpegContentProperty::AUDIO_STREAMS);
275 }