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