Some attempts to block referencing of DCPs when it is not possible.
[dcpomatic.git] / src / wx / video_panel.cc
1 /*
2     Copyright (C) 2012-2015 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 "filter_dialog.h"
21 #include "video_panel.h"
22 #include "wx_util.h"
23 #include "content_colour_conversion_dialog.h"
24 #include "content_widget.h"
25 #include "content_panel.h"
26 #include "lib/filter.h"
27 #include "lib/ffmpeg_content.h"
28 #include "lib/colour_conversion.h"
29 #include "lib/config.h"
30 #include "lib/util.h"
31 #include "lib/ratio.h"
32 #include "lib/frame_rate_change.h"
33 #include "lib/dcp_content.h"
34 #include <wx/spinctrl.h>
35 #include <boost/foreach.hpp>
36 #include <set>
37 #include <iostream>
38
39 using std::vector;
40 using std::string;
41 using std::pair;
42 using std::cout;
43 using std::list;
44 using std::set;
45 using boost::shared_ptr;
46 using boost::dynamic_pointer_cast;
47 using boost::bind;
48 using boost::optional;
49
50 static VideoContentScale
51 index_to_scale (int n)
52 {
53         vector<VideoContentScale> scales = VideoContentScale::all ();
54         DCPOMATIC_ASSERT (n >= 0);
55         DCPOMATIC_ASSERT (n < int (scales.size ()));
56         return scales[n];
57 }
58
59 static int
60 scale_to_index (VideoContentScale scale)
61 {
62         vector<VideoContentScale> scales = VideoContentScale::all ();
63         for (size_t i = 0; i < scales.size(); ++i) {
64                 if (scales[i] == scale) {
65                         return i;
66                 }
67         }
68
69         DCPOMATIC_ASSERT (false);
70 }
71
72 VideoPanel::VideoPanel (ContentPanel* p)
73         : ContentSubPanel (p, _("Video"))
74 {
75         wxGridBagSizer* grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
76         _sizer->Add (grid, 0, wxALL, 8);
77
78         int r = 0;
79
80         _reference = new wxCheckBox (this, wxID_ANY, _("Refer to existing DCP"));
81         grid->Add (_reference, wxGBPosition (r, 0), wxGBSpan (1, 2));
82         ++r;
83
84         add_label_to_grid_bag_sizer (grid, this, _("Type"), true, wxGBPosition (r, 0));
85         _frame_type = new ContentChoice<VideoContent, VideoFrameType> (
86                 this,
87                 new wxChoice (this, wxID_ANY),
88                 VideoContentProperty::VIDEO_FRAME_TYPE,
89                 boost::mem_fn (&VideoContent::video_frame_type),
90                 boost::mem_fn (&VideoContent::set_video_frame_type),
91                 &caster<int, VideoFrameType>,
92                 &caster<VideoFrameType, int>
93                 );
94         _frame_type->add (grid, wxGBPosition (r, 1), wxGBSpan (1, 2));
95         ++r;
96
97         add_label_to_grid_bag_sizer (grid, this, _("Crop"), true, wxGBPosition (r, 0));
98
99         int cr = 0;
100         wxGridBagSizer* crop = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
101
102         add_label_to_grid_bag_sizer (crop, this, _("Left"), true, wxGBPosition (cr, 0));
103         _left_crop = new ContentSpinCtrl<VideoContent> (
104                 this,
105                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
106                 VideoContentProperty::VIDEO_CROP,
107                 boost::mem_fn (&VideoContent::left_crop),
108                 boost::mem_fn (&VideoContent::set_left_crop)
109                 );
110         _left_crop->add (crop, wxGBPosition (cr, 1));
111
112         add_label_to_grid_bag_sizer (crop, this, _("Right"), true, wxGBPosition (cr, 2));
113         _right_crop = new ContentSpinCtrl<VideoContent> (
114                 this,
115                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
116                 VideoContentProperty::VIDEO_CROP,
117                 boost::mem_fn (&VideoContent::right_crop),
118                 boost::mem_fn (&VideoContent::set_right_crop)
119                 );
120         _right_crop->add (crop, wxGBPosition (cr, 3));
121
122         ++cr;
123
124         add_label_to_grid_bag_sizer (crop, this, _("Top"), true, wxGBPosition (cr, 0));
125         _top_crop = new ContentSpinCtrl<VideoContent> (
126                 this,
127                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
128                 VideoContentProperty::VIDEO_CROP,
129                 boost::mem_fn (&VideoContent::top_crop),
130                 boost::mem_fn (&VideoContent::set_top_crop)
131                 );
132         _top_crop->add (crop, wxGBPosition (cr, 1));
133
134         add_label_to_grid_bag_sizer (crop, this, _("Bottom"), true, wxGBPosition (cr, 2));
135         _bottom_crop = new ContentSpinCtrl<VideoContent> (
136                 this,
137                 new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (64, -1)),
138                 VideoContentProperty::VIDEO_CROP,
139                 boost::mem_fn (&VideoContent::bottom_crop),
140                 boost::mem_fn (&VideoContent::set_bottom_crop)
141                 );
142         _bottom_crop->add (crop, wxGBPosition (cr, 3));
143
144         grid->Add (crop, wxGBPosition (r, 1), wxGBSpan (2, 3));
145         r += 2;
146
147         add_label_to_grid_bag_sizer (grid, this, _("Fade in"), true, wxGBPosition (r, 0));
148         _fade_in = new Timecode<ContentTime> (this);
149         grid->Add (_fade_in, wxGBPosition (r, 1), wxGBSpan (1, 3));
150         ++r;
151
152         add_label_to_grid_bag_sizer (grid, this, _("Fade out"), true, wxGBPosition (r, 0));
153         _fade_out = new Timecode<ContentTime> (this);
154         grid->Add (_fade_out, wxGBPosition (r, 1), wxGBSpan (1, 3));
155         ++r;
156
157         add_label_to_grid_bag_sizer (grid, this, _("Scale to"), true, wxGBPosition (r, 0));
158         _scale = new ContentChoice<VideoContent, VideoContentScale> (
159                 this,
160                 new wxChoice (this, wxID_ANY),
161                 VideoContentProperty::VIDEO_SCALE,
162                 boost::mem_fn (&VideoContent::scale),
163                 boost::mem_fn (&VideoContent::set_scale),
164                 &index_to_scale,
165                 &scale_to_index
166                 );
167         _scale->add (grid, wxGBPosition (r, 1), wxGBSpan (1, 2));
168         ++r;
169
170         wxClientDC dc (this);
171         wxSize size = dc.GetTextExtent (wxT ("A quite long name"));
172         size.SetHeight (-1);
173
174         add_label_to_grid_bag_sizer (grid, this, _("Filters"), true, wxGBPosition (r, 0));
175         {
176                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
177
178                 _filters = new wxStaticText (this, wxID_ANY, _("None"), wxDefaultPosition, size);
179                 s->Add (_filters, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6);
180                 _filters_button = new wxButton (this, wxID_ANY, _("Edit..."));
181                 s->Add (_filters_button, 0, wxALIGN_CENTER_VERTICAL);
182
183                 grid->Add (s, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
184         }
185         ++r;
186
187         add_label_to_grid_bag_sizer (grid, this, _("Colour conversion"), true, wxGBPosition (r, 0));
188         {
189                 wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
190
191                 _colour_conversion = new wxChoice (this, wxID_ANY, wxDefaultPosition, size);
192                 _colour_conversion->Append (_("None"));
193                 BOOST_FOREACH (PresetColourConversion const & i, PresetColourConversion::all()) {
194                         _colour_conversion->Append (std_to_wx (i.name));
195                 }
196                 _colour_conversion->Append (_("Custom"));
197                 s->Add (_colour_conversion, 1, wxEXPAND | wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM | wxRIGHT, 6);
198
199                 _edit_colour_conversion_button = new wxButton (this, wxID_ANY, _("Edit..."));
200                 s->Add (_edit_colour_conversion_button, 0, wxALIGN_CENTER_VERTICAL);
201
202                 grid->Add (s, wxGBPosition (r, 1), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
203         }
204         ++r;
205
206         _description = new wxStaticText (this, wxID_ANY, wxT ("\n \n \n \n \n"), wxDefaultPosition, wxDefaultSize);
207         grid->Add (_description, wxGBPosition (r, 0), wxGBSpan (1, 4), wxEXPAND | wxALIGN_CENTER_VERTICAL | wxALL, 6);
208         wxFont font = _description->GetFont();
209         font.SetStyle(wxFONTSTYLE_ITALIC);
210         font.SetPointSize(font.GetPointSize() - 1);
211         _description->SetFont(font);
212         ++r;
213
214         _left_crop->wrapped()->SetRange (0, 1024);
215         _top_crop->wrapped()->SetRange (0, 1024);
216         _right_crop->wrapped()->SetRange (0, 1024);
217         _bottom_crop->wrapped()->SetRange (0, 1024);
218
219         _scale->wrapped()->Clear ();
220         BOOST_FOREACH (VideoContentScale const & i, VideoContentScale::all ()) {
221                 _scale->wrapped()->Append (std_to_wx (i.name ()));
222         }
223
224         _frame_type->wrapped()->Append (_("2D"));
225         _frame_type->wrapped()->Append (_("3D left/right"));
226         _frame_type->wrapped()->Append (_("3D top/bottom"));
227         _frame_type->wrapped()->Append (_("3D alternate"));
228         _frame_type->wrapped()->Append (_("3D left only"));
229         _frame_type->wrapped()->Append (_("3D right only"));
230
231         _fade_in->Changed.connect (boost::bind (&VideoPanel::fade_in_changed, this));
232         _fade_out->Changed.connect (boost::bind (&VideoPanel::fade_out_changed, this));
233
234         _reference->Bind                     (wxEVT_COMMAND_CHECKBOX_CLICKED, boost::bind (&VideoPanel::reference_clicked, this));
235         _filters_button->Bind                (wxEVT_COMMAND_BUTTON_CLICKED,   boost::bind (&VideoPanel::edit_filters_clicked, this));
236         _colour_conversion->Bind             (wxEVT_COMMAND_CHOICE_SELECTED,  boost::bind (&VideoPanel::colour_conversion_changed, this));
237         _edit_colour_conversion_button->Bind (wxEVT_COMMAND_BUTTON_CLICKED,   boost::bind (&VideoPanel::edit_colour_conversion_clicked, this));
238 }
239
240 void
241 VideoPanel::film_changed (Film::Property property)
242 {
243         switch (property) {
244         case Film::CONTAINER:
245         case Film::VIDEO_FRAME_RATE:
246         case Film::RESOLUTION:
247                 setup_description ();
248                 break;
249         case Film::REEL_TYPE:
250                 setup_sensitivity ();
251         default:
252                 break;
253         }
254 }
255
256 void
257 VideoPanel::film_content_changed (int property)
258 {
259         VideoContentList vc = _parent->selected_video ();
260         shared_ptr<VideoContent> vcs;
261         shared_ptr<FFmpegContent> fcs;
262         if (!vc.empty ()) {
263                 vcs = vc.front ();
264                 fcs = dynamic_pointer_cast<FFmpegContent> (vcs);
265         }
266
267         if (property == VideoContentProperty::VIDEO_FRAME_TYPE) {
268                 setup_description ();
269         } else if (property == VideoContentProperty::VIDEO_CROP) {
270                 setup_description ();
271         } else if (property == VideoContentProperty::VIDEO_SCALE) {
272                 setup_description ();
273         } else if (property == VideoContentProperty::VIDEO_FRAME_RATE) {
274                 setup_description ();
275         } else if (property == VideoContentProperty::COLOUR_CONVERSION) {
276                 if (!vcs) {
277                         checked_set (_colour_conversion, 0);
278                         _edit_colour_conversion_button->Enable (false);
279                 } else if (vcs->colour_conversion ()) {
280                         optional<size_t> preset = vcs->colour_conversion().get().preset ();
281                         vector<PresetColourConversion> cc = PresetColourConversion::all ();
282                         if (preset) {
283                                 checked_set (_colour_conversion, preset.get() + 1);
284                                 _edit_colour_conversion_button->Enable (false);
285                         } else {
286                                 checked_set (_colour_conversion, cc.size() + 1);
287                                 _edit_colour_conversion_button->Enable (true);
288                         }
289                 } else {
290                         checked_set (_colour_conversion, 0);
291                         _edit_colour_conversion_button->Enable (false);
292                 }
293         } else if (property == FFmpegContentProperty::FILTERS) {
294                 if (fcs) {
295                         string p = Filter::ffmpeg_string (fcs->filters ());
296                         if (p.empty ()) {
297                                 checked_set (_filters, _("None"));
298                         } else {
299                                 if (p.length() > 25) {
300                                         p = p.substr (0, 25) + "...";
301                                 }
302                                 checked_set (_filters, p);
303                         }
304                 }
305         } else if (property == VideoContentProperty::VIDEO_FADE_IN) {
306                 set<Frame> check;
307                 BOOST_FOREACH (shared_ptr<const VideoContent> i, vc) {
308                         check.insert (i->fade_in ());
309                 }
310
311                 if (check.size() == 1) {
312                         _fade_in->set (ContentTime::from_frames (vc.front()->fade_in (), vc.front()->video_frame_rate ()), vc.front()->video_frame_rate ());
313                 } else {
314                         _fade_in->clear ();
315                 }
316         } else if (property == VideoContentProperty::VIDEO_FADE_OUT) {
317                 set<Frame> check;
318                 BOOST_FOREACH (shared_ptr<const VideoContent> i, vc) {
319                         check.insert (i->fade_out ());
320                 }
321
322                 if (check.size() == 1) {
323                         _fade_out->set (ContentTime::from_frames (vc.front()->fade_out (), vc.front()->video_frame_rate ()), vc.front()->video_frame_rate ());
324                 } else {
325                         _fade_out->clear ();
326                 }
327         } else if (property == DCPContentProperty::REFERENCE_VIDEO) {
328                 if (vc.size() == 1) {
329                         shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (vc.front ());
330                         checked_set (_reference, dcp ? dcp->reference_video () : false);
331                 } else {
332                         checked_set (_reference, false);
333                 }
334
335                 setup_sensitivity ();
336         }
337 }
338
339 /** Called when the `Edit filters' button has been clicked */
340 void
341 VideoPanel::edit_filters_clicked ()
342 {
343         FFmpegContentList c = _parent->selected_ffmpeg ();
344         if (c.size() != 1) {
345                 return;
346         }
347
348         FilterDialog* d = new FilterDialog (this, c.front()->filters());
349         d->ActiveChanged.connect (bind (&FFmpegContent::set_filters, c.front(), _1));
350         d->ShowModal ();
351         d->Destroy ();
352 }
353
354 void
355 VideoPanel::setup_description ()
356 {
357         VideoContentList vc = _parent->selected_video ();
358         if (vc.empty ()) {
359                 checked_set (_description, wxT (""));
360                 return;
361         } else if (vc.size() > 1) {
362                 checked_set (_description, _("Multiple content selected"));
363                 return;
364         }
365
366         string d = vc.front()->processing_description ();
367         size_t lines = count (d.begin(), d.end(), '\n');
368
369         for (int i = lines; i < 6; ++i) {
370                 d += "\n ";
371         }
372
373         checked_set (_description, d);
374         _sizer->Layout ();
375 }
376
377 void
378 VideoPanel::colour_conversion_changed ()
379 {
380         VideoContentList vc = _parent->selected_video ();
381         if (vc.size() != 1) {
382                 return;
383         }
384
385         int const s = _colour_conversion->GetSelection ();
386         vector<PresetColourConversion> all = PresetColourConversion::all ();
387
388         if (s == 0) {
389                 vc.front()->unset_colour_conversion ();
390         } else if (s == int (all.size() + 1)) {
391                 edit_colour_conversion_clicked ();
392         } else {
393                 vc.front()->set_colour_conversion (all[s - 1].conversion);
394         }
395 }
396
397 void
398 VideoPanel::edit_colour_conversion_clicked ()
399 {
400         VideoContentList vc = _parent->selected_video ();
401         if (vc.size() != 1) {
402                 return;
403         }
404
405         ContentColourConversionDialog* d = new ContentColourConversionDialog (this);
406         d->set (vc.front()->colour_conversion().get_value_or (PresetColourConversion::all().front ().conversion));
407         d->ShowModal ();
408         vc.front()->set_colour_conversion (d->get ());
409         d->Destroy ();
410 }
411
412 void
413 VideoPanel::content_selection_changed ()
414 {
415         VideoContentList video_sel = _parent->selected_video ();
416
417         _frame_type->set_content (video_sel);
418         _left_crop->set_content (video_sel);
419         _right_crop->set_content (video_sel);
420         _top_crop->set_content (video_sel);
421         _bottom_crop->set_content (video_sel);
422         _scale->set_content (video_sel);
423
424         film_content_changed (VideoContentProperty::VIDEO_CROP);
425         film_content_changed (VideoContentProperty::VIDEO_FRAME_RATE);
426         film_content_changed (VideoContentProperty::COLOUR_CONVERSION);
427         film_content_changed (VideoContentProperty::VIDEO_FADE_IN);
428         film_content_changed (VideoContentProperty::VIDEO_FADE_OUT);
429         film_content_changed (FFmpegContentProperty::FILTERS);
430         film_content_changed (DCPContentProperty::REFERENCE_VIDEO);
431
432         setup_sensitivity ();
433 }
434
435 void
436 VideoPanel::setup_sensitivity ()
437 {
438         ContentList sel = _parent->selected ();
439
440         shared_ptr<DCPContent> dcp;
441         if (sel.size() == 1) {
442                 dcp = dynamic_pointer_cast<DCPContent> (sel.front ());
443         }
444
445         list<string> why_not;
446         bool const can_reference = dcp && dcp->can_reference_video(why_not);
447         _reference->Enable (can_reference);
448
449         wxString s;
450         if (!can_reference) {
451                 s = _("Cannot reference this DCP.  ");
452                 BOOST_FOREACH (string i, why_not) {
453                         s += std_to_wx(i) + wxT("  ");
454                 }
455         }
456         _reference->SetToolTip (s);
457
458         if (_reference->GetValue ()) {
459                 _frame_type->wrapped()->Enable (false);
460                 _left_crop->wrapped()->Enable (false);
461                 _right_crop->wrapped()->Enable (false);
462                 _top_crop->wrapped()->Enable (false);
463                 _bottom_crop->wrapped()->Enable (false);
464                 _fade_in->Enable (false);
465                 _fade_out->Enable (false);
466                 _scale->wrapped()->Enable (false);
467                 _description->Enable (false);
468                 _filters->Enable (false);
469                 _filters_button->Enable (false);
470                 _colour_conversion->Enable (false);
471                 _edit_colour_conversion_button->Enable (false);
472         } else {
473                 VideoContentList video_sel = _parent->selected_video ();
474                 FFmpegContentList ffmpeg_sel = _parent->selected_ffmpeg ();
475                 bool const single = video_sel.size() == 1;
476
477                 _frame_type->wrapped()->Enable (true);
478                 _left_crop->wrapped()->Enable (true);
479                 _right_crop->wrapped()->Enable (true);
480                 _top_crop->wrapped()->Enable (true);
481                 _bottom_crop->wrapped()->Enable (true);
482                 _fade_in->Enable (!video_sel.empty ());
483                 _fade_out->Enable (!video_sel.empty ());
484                 _scale->wrapped()->Enable (true);
485                 _description->Enable (true);
486                 _filters->Enable (true);
487                 _filters_button->Enable (single && !ffmpeg_sel.empty ());
488                 _colour_conversion->Enable (single && !video_sel.empty ());
489                 _edit_colour_conversion_button->Enable (true);
490         }
491 }
492
493 void
494 VideoPanel::fade_in_changed ()
495 {
496         BOOST_FOREACH (shared_ptr<VideoContent> i, _parent->selected_video ()) {
497                 int const vfr = _parent->film()->video_frame_rate ();
498                 i->set_fade_in (_fade_in->get (vfr).frames_round (vfr));
499         }
500 }
501
502 void
503 VideoPanel::fade_out_changed ()
504 {
505         BOOST_FOREACH (shared_ptr<VideoContent> i, _parent->selected_video ()) {
506                 int const vfr = _parent->film()->video_frame_rate ();
507                 i->set_fade_out (_fade_out->get (vfr).frames_round (vfr));
508         }
509 }
510
511 void
512 VideoPanel::reference_clicked ()
513 {
514         ContentList c = _parent->selected ();
515         if (c.size() != 1) {
516                 return;
517         }
518
519         shared_ptr<DCPContent> d = dynamic_pointer_cast<DCPContent> (c.front ());
520         if (!d) {
521                 return;
522         }
523
524         d->set_reference_video (_reference->GetValue ());
525 }