Forward-port move of content description generation to lib/ rather than wx/.
[dcpomatic.git] / src / wx / video_panel.cc
1 /*
2     Copyright (C) 2012-2014 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 <wx/spinctrl.h>
21 #include "lib/filter.h"
22 #include "lib/ffmpeg_content.h"
23 #include "lib/colour_conversion.h"
24 #include "lib/config.h"
25 #include "lib/util.h"
26 #include "lib/ratio.h"
27 #include "lib/frame_rate_change.h"
28 #include "filter_dialog.h"
29 #include "video_panel.h"
30 #include "wx_util.h"
31 #include "content_colour_conversion_dialog.h"
32 #include "content_widget.h"
33 #include "content_panel.h"
34
35 using std::vector;
36 using std::string;
37 using std::pair;
38 using std::cout;
39 using std::list;
40 using std::set;
41 using boost::shared_ptr;
42 using boost::dynamic_pointer_cast;
43 using boost::bind;
44 using boost::optional;
45
46 static VideoContentScale
47 index_to_scale (int n)
48 {
49         vector<VideoContentScale> scales = VideoContentScale::all ();
50         assert (n >= 0);
51         assert (n < int (scales.size ()));
52         return scales[n];
53 }
54
55 static int
56 scale_to_index (VideoContentScale scale)
57 {
58         vector<VideoContentScale> scales = VideoContentScale::all ();
59         for (size_t i = 0; i < scales.size(); ++i) {
60                 if (scales[i] == scale) {
61                         return i;
62                 }
63         }
64
65         assert (false);
66 }
67
68 VideoPanel::VideoPanel (ContentPanel* p)
69         : ContentSubPanel (p, _("Video"))
70 {
71         wxGridBagSizer* grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
72         _sizer->Add (grid, 0, wxALL, 8);
73
74         int r = 0;
75
76         add_label_to_grid_bag_sizer (grid, this, _("Type"), true, wxGBPosition (r, 0));
77         _frame_type = new ContentChoice<VideoContent, VideoFrameType> (
78                 this,
79                 new wxChoice (this, wxID_ANY),
80                 VideoContentProperty::VIDEO_FRAME_TYPE,
81                 boost::mem_fn (&VideoContent::video_frame_type),
82                 boost::mem_fn (&VideoContent::set_video_frame_type),
83                 &caster<int, VideoFrameType>,
84                 &caster<VideoFrameType, int>
85                 );
86         _frame_type->add (grid, wxGBPosition (r, 1), wxGBSpan (1, 2));
87         ++r;
88         
89         add_label_to_grid_bag_sizer (grid, this, _("Left crop"), true, wxGBPosition (r, 0));
90         _left_crop = new ContentSpinCtrl<VideoContent> (
91                 this,
92                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
93                 VideoContentProperty::VIDEO_CROP,
94                 boost::mem_fn (&VideoContent::left_crop),
95                 boost::mem_fn (&VideoContent::set_left_crop)
96                 );
97         _left_crop->add (grid, wxGBPosition (r, 1));
98
99         add_label_to_grid_bag_sizer (grid, this, _("Right crop"), true, wxGBPosition (r, 2));
100         _right_crop = new ContentSpinCtrl<VideoContent> (
101                 this,
102                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
103                 VideoContentProperty::VIDEO_CROP,
104                 boost::mem_fn (&VideoContent::right_crop),
105                 boost::mem_fn (&VideoContent::set_right_crop)
106                 );
107         _right_crop->add (grid, wxGBPosition (r, 3));
108         
109         ++r;
110         
111         add_label_to_grid_bag_sizer (grid, this, _("Top crop"), true, wxGBPosition (r, 0));
112         _top_crop = new ContentSpinCtrl<VideoContent> (
113                 this,
114                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
115                 VideoContentProperty::VIDEO_CROP,
116                 boost::mem_fn (&VideoContent::top_crop),
117                 boost::mem_fn (&VideoContent::set_top_crop)
118                 );
119         _top_crop->add (grid, wxGBPosition (r, 1));
120         
121         add_label_to_grid_bag_sizer (grid, this, _("Bottom crop"), true, wxGBPosition (r, 2));
122         _bottom_crop = new ContentSpinCtrl<VideoContent> (
123                 this,
124                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
125                 VideoContentProperty::VIDEO_CROP,
126                 boost::mem_fn (&VideoContent::bottom_crop),
127                 boost::mem_fn (&VideoContent::set_bottom_crop)
128                 );
129         _bottom_crop->add (grid, wxGBPosition (r, 3));
130         
131         ++r;
132
133         add_label_to_grid_bag_sizer (grid, this, _("Fade in"), true, wxGBPosition (r, 0));
134         _fade_in = new Timecode<ContentTime> (this);
135         grid->Add (_fade_in, wxGBPosition (r, 1), wxGBSpan (1, 3));
136         ++r;
137
138         add_label_to_grid_bag_sizer (grid, this, _("Fade out"), true, wxGBPosition (r, 0));
139         _fade_out = new Timecode<ContentTime> (this);
140         grid->Add (_fade_out, wxGBPosition (r, 1), wxGBSpan (1, 3));
141         ++r;
142         
143         add_label_to_grid_bag_sizer (grid, this, _("Scale to"), true, wxGBPosition (r, 0));
144         _scale = new ContentChoice<VideoContent, VideoContentScale> (
145                 this,
146                 new wxChoice (this, wxID_ANY),
147                 VideoContentProperty::VIDEO_SCALE,
148                 boost::mem_fn (&VideoContent::scale),
149                 boost::mem_fn (&VideoContent::set_scale),
150                 &index_to_scale,
151                 &scale_to_index
152                 );
153         _scale->add (grid, wxGBPosition (r, 1), wxGBSpan (1, 2));
154         ++r;
155
156         wxClientDC dc (this);
157         wxSize size = dc.GetTextExtent (wxT ("A quite long name"));
158         size.SetHeight (-1);
159         
160         add_label_to_grid_bag_sizer (grid, this, _("Filters"), true, wxGBPosition (r, 0));
161         _filters = new wxStaticText (this, wxID_ANY, _("None"), wxDefaultPosition, size);
162         grid->Add (_filters, wxGBPosition (r, 1), wxGBSpan (1, 2), wxALIGN_CENTER_VERTICAL);
163         _filters_button = new wxButton (this, wxID_ANY, _("Edit..."));
164         grid->Add (_filters_button, wxGBPosition (r, 3), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
165         ++r;
166         
167         _enable_colour_conversion = new wxCheckBox (this, wxID_ANY, _("Colour conversion"));
168         grid->Add (_enable_colour_conversion, wxGBPosition (r, 0), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
169         _colour_conversion = new wxStaticText (this, wxID_ANY, wxT (""), wxDefaultPosition, size);
170         grid->Add (_colour_conversion, wxGBPosition (r, 1), wxGBSpan (1, 2), wxALIGN_CENTER_VERTICAL);
171         _colour_conversion_button = new wxButton (this, wxID_ANY, _("Edit..."));
172         grid->Add (_colour_conversion_button, wxGBPosition (r, 3), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
173         ++r;
174
175         _description = new wxStaticText (this, wxID_ANY, wxT ("\n \n \n \n \n"), wxDefaultPosition, wxDefaultSize);
176         grid->Add (_description, wxGBPosition (r, 0), wxGBSpan (1, 4), wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6);
177         wxFont font = _description->GetFont();
178         font.SetStyle(wxFONTSTYLE_ITALIC);
179         font.SetPointSize(font.GetPointSize() - 1);
180         _description->SetFont(font);
181         ++r;
182
183         _left_crop->wrapped()->SetRange (0, 1024);
184         _top_crop->wrapped()->SetRange (0, 1024);
185         _right_crop->wrapped()->SetRange (0, 1024);
186         _bottom_crop->wrapped()->SetRange (0, 1024);
187
188         vector<VideoContentScale> scales = VideoContentScale::all ();
189         _scale->wrapped()->Clear ();
190         for (vector<VideoContentScale>::iterator i = scales.begin(); i != scales.end(); ++i) {
191                 _scale->wrapped()->Append (std_to_wx (i->name ()));
192         }
193
194         _frame_type->wrapped()->Append (_("2D"));
195         _frame_type->wrapped()->Append (_("3D left/right"));
196         _frame_type->wrapped()->Append (_("3D top/bottom"));
197         _frame_type->wrapped()->Append (_("3D alternate"));
198         _frame_type->wrapped()->Append (_("3D left only"));
199         _frame_type->wrapped()->Append (_("3D right only"));
200
201         _fade_in->Changed.connect (boost::bind (&VideoPanel::fade_in_changed, this));
202         _fade_out->Changed.connect (boost::bind (&VideoPanel::fade_out_changed, this));
203         
204         _filters_button->Bind           (wxEVT_COMMAND_BUTTON_CLICKED,   boost::bind (&VideoPanel::edit_filters_clicked, this));
205         _enable_colour_conversion->Bind (wxEVT_COMMAND_CHECKBOX_CLICKED, boost::bind (&VideoPanel::enable_colour_conversion_clicked, this));
206         _colour_conversion_button->Bind (wxEVT_COMMAND_BUTTON_CLICKED,   boost::bind (&VideoPanel::edit_colour_conversion_clicked, this));
207 }
208
209 void
210 VideoPanel::film_changed (Film::Property property)
211 {
212         switch (property) {
213         case Film::CONTAINER:
214         case Film::VIDEO_FRAME_RATE:
215         case Film::RESOLUTION:
216                 setup_description ();
217                 break;
218         default:
219                 break;
220         }
221 }
222
223 void
224 VideoPanel::film_content_changed (int property)
225 {
226         VideoContentList vc = _parent->selected_video ();
227         shared_ptr<VideoContent> vcs;
228         shared_ptr<FFmpegContent> fcs;
229         if (!vc.empty ()) {
230                 vcs = vc.front ();
231                 fcs = dynamic_pointer_cast<FFmpegContent> (vcs);
232         }
233         
234         if (property == VideoContentProperty::VIDEO_FRAME_TYPE) {
235                 setup_description ();
236         } else if (property == VideoContentProperty::VIDEO_CROP) {
237                 setup_description ();
238         } else if (property == VideoContentProperty::VIDEO_SCALE) {
239                 setup_description ();
240         } else if (property == VideoContentProperty::VIDEO_FRAME_RATE) {
241                 setup_description ();
242         } else if (property == VideoContentProperty::COLOUR_CONVERSION) {
243                 if (!vcs) {
244                         _colour_conversion->SetLabel (wxT (""));
245                 } else if (vcs->colour_conversion ()) {
246                         optional<size_t> preset = vcs->colour_conversion().get().preset ();
247                         vector<PresetColourConversion> cc = Config::instance()->colour_conversions ();
248                         _colour_conversion->SetLabel (preset ? std_to_wx (cc[preset.get()].name) : _("Custom"));
249                         _enable_colour_conversion->SetValue (true);
250                         _colour_conversion->Enable (true);
251                         _colour_conversion_button->Enable (true);
252                 } else {
253                         _colour_conversion->SetLabel (_("None"));
254                         _enable_colour_conversion->SetValue (false);
255                         _colour_conversion->Enable (false);
256                         _colour_conversion_button->Enable (false);
257                 }
258         } else if (property == FFmpegContentProperty::FILTERS) {
259                 if (fcs) {
260                         string const p = Filter::ffmpeg_string (fcs->filters ());
261                         if (p.empty ()) {
262                                 _filters->SetLabel (_("None"));
263                         } else {
264                                 _filters->SetLabel (std_to_wx (p));
265                         }
266                 }
267         } else if (property == VideoContentProperty::VIDEO_FADE_IN) {
268                 set<ContentTime> check;
269                 for (VideoContentList::const_iterator i = vc.begin (); i != vc.end(); ++i) {
270                         check.insert ((*i)->fade_in ());
271                 }
272                 
273                 if (check.size() == 1) {
274                         _fade_in->set (vc.front()->fade_in (), vc.front()->video_frame_rate ());
275                 } else {
276                         _fade_in->clear ();
277                 }
278         } else if (property == VideoContentProperty::VIDEO_FADE_OUT) {
279                 set<ContentTime> check;
280                 for (VideoContentList::const_iterator i = vc.begin (); i != vc.end(); ++i) {
281                         check.insert ((*i)->fade_out ());
282                 }
283                 
284                 if (check.size() == 1) {
285                         _fade_out->set (vc.front()->fade_out (), vc.front()->video_frame_rate ());
286                 } else {
287                         _fade_out->clear ();
288                 }
289         }
290 }
291
292 /** Called when the `Edit filters' button has been clicked */
293 void
294 VideoPanel::edit_filters_clicked ()
295 {
296         FFmpegContentList c = _parent->selected_ffmpeg ();
297         if (c.size() != 1) {
298                 return;
299         }
300
301         FilterDialog* d = new FilterDialog (this, c.front()->filters());
302         d->ActiveChanged.connect (bind (&FFmpegContent::set_filters, c.front(), _1));
303         d->ShowModal ();
304         d->Destroy ();
305 }
306
307 void
308 VideoPanel::setup_description ()
309 {
310         VideoContentList vc = _parent->selected_video ();
311         if (vc.empty ()) {
312                 _description->SetLabel ("");
313                 return;
314         } else if (vc.size() > 1) {
315                 _description->SetLabel (_("Multiple content selected"));
316                 return;
317         }
318
319         string d = vc.front()->processing_description ();
320         size_t lines = count (d.begin(), d.end(), '\n');
321
322         for (int i = lines; i < 6; ++i) {
323                 d += "\n ";
324         }
325
326         _description->SetLabel (std_to_wx (d));
327         _sizer->Layout ();
328 }
329
330 void
331 VideoPanel::edit_colour_conversion_clicked ()
332 {
333         VideoContentList vc = _parent->selected_video ();
334         if (vc.size() != 1) {
335                 return;
336         }
337
338         if (!vc.front()->colour_conversion ()) {
339                 return;
340         }
341
342         ColourConversion conversion = vc.front()->colour_conversion().get ();
343         ContentColourConversionDialog* d = new ContentColourConversionDialog (this);
344         d->set (conversion);
345         d->ShowModal ();
346
347         vc.front()->set_colour_conversion (d->get ());
348         d->Destroy ();
349 }
350
351 void
352 VideoPanel::content_selection_changed ()
353 {
354         VideoContentList video_sel = _parent->selected_video ();
355         FFmpegContentList ffmpeg_sel = _parent->selected_ffmpeg ();
356         
357         bool const single = video_sel.size() == 1;
358
359         _left_crop->set_content (video_sel);
360         _right_crop->set_content (video_sel);
361         _top_crop->set_content (video_sel);
362         _bottom_crop->set_content (video_sel);
363         _frame_type->set_content (video_sel);
364         _scale->set_content (video_sel);
365
366         _filters_button->Enable (single && !ffmpeg_sel.empty ());
367         _colour_conversion_button->Enable (single);
368
369         film_content_changed (VideoContentProperty::VIDEO_CROP);
370         film_content_changed (VideoContentProperty::VIDEO_FRAME_RATE);
371         film_content_changed (VideoContentProperty::COLOUR_CONVERSION);
372         film_content_changed (VideoContentProperty::VIDEO_FADE_IN);
373         film_content_changed (VideoContentProperty::VIDEO_FADE_OUT);
374         film_content_changed (FFmpegContentProperty::FILTERS);
375 }
376
377 void
378 VideoPanel::fade_in_changed ()
379 {
380         VideoContentList vc = _parent->selected_video ();
381         for (VideoContentList::const_iterator i = vc.begin(); i != vc.end(); ++i) {
382                 (*i)->set_fade_in (_fade_in->get (_parent->film()->video_frame_rate ()));
383         }
384 }
385
386 void
387 VideoPanel::fade_out_changed ()
388 {
389         VideoContentList vc = _parent->selected_video ();
390         for (VideoContentList::const_iterator i = vc.begin(); i != vc.end(); ++i) {
391                 (*i)->set_fade_out (_fade_out->get (_parent->film()->video_frame_rate ()));
392         }
393 }
394
395 void
396 VideoPanel::enable_colour_conversion_clicked ()
397 {
398         VideoContentList vc = _parent->selected_video ();
399         if (vc.size() != 1) {
400                 return;
401         }
402
403         if (_enable_colour_conversion->GetValue()) {
404                 vc.front()->set_default_colour_conversion ();
405         } else {
406                 vc.front()->unset_colour_conversion ();
407         }
408 }