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