Hint when there may be a better DCP container option (#392).
[dcpomatic.git] / src / wx / hints_dialog.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/algorithm/string.hpp>
21 #include <wx/richtext/richtextctrl.h>
22 #include "lib/film.h"
23 #include "lib/ratio.h"
24 #include "hints_dialog.h"
25
26 using boost::shared_ptr;
27 using boost::dynamic_pointer_cast;
28
29 HintsDialog::HintsDialog (wxWindow* parent, boost::weak_ptr<Film> f)
30         : wxDialog (parent, wxID_ANY, _("Hints"))
31         , _film (f)
32 {
33         wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);
34         _text = new wxRichTextCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (400, 300), wxRE_READONLY);
35         sizer->Add (_text, 1, wxEXPAND | wxALL, 6);
36
37         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
38         if (buttons) {
39                 sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
40         }
41
42         SetSizer (sizer);
43         sizer->Layout ();
44         sizer->SetSizeHints (this);
45
46         _text->GetCaret()->Hide ();
47
48         boost::shared_ptr<Film> film = _film.lock ();
49         if (film) {
50                 film->Changed.connect (boost::bind (&HintsDialog::film_changed, this));
51                 film->ContentChanged.connect (boost::bind (&HintsDialog::film_changed, this));
52         }
53
54         film_changed ();
55 }
56
57 void
58 HintsDialog::film_changed ()
59 {
60         _text->Clear ();
61         bool hint = false;
62         
63         boost::shared_ptr<Film> film = _film.lock ();
64         if (!film) {
65                 return;
66         }
67
68         _text->BeginStandardBullet (N_("standard/circle"), 1, 50);
69         if (film->audio_channels() % 2) {
70                 hint = true;
71                 _text->WriteText (_("Your DCP has an odd number of audio channels.  This is very likely to cause problems on playback."));
72                 _text->Newline ();
73         } else if (film->audio_channels() < 6) {
74                 hint = true;
75                 _text->WriteText (_("Your DCP has fewer than 6 audio channels.  This may cause problems on some projectors."));
76                 _text->Newline ();
77         }
78
79         ContentList content = film->content ();
80         int flat_or_narrower = 0;
81         int scope = 0;
82         for (ContentList::const_iterator i = content.begin(); i != content.end(); ++i) {
83                 shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (*i);
84                 if (vc) {
85                         Ratio const * r = vc->scale().ratio ();
86                         if (r && r->id() == "239") {
87                                 ++scope;
88                         } else if (r && r->id() != "239" && r->id() != "full-frame") {
89                                 ++flat_or_narrower;
90                         }
91                 }
92         }
93
94         if (scope && !flat_or_narrower && film->container()->id() == "185") {
95                 hint = true;
96                 _text->WriteText (_("All of your content is in Scope (2.39:1) but your DCP's container is Flat (1.85:1).  This will letter-box your content inside a Flat (1.85:1) frame.  You may prefer to set your DCP's container to Scope (2.39:1) in the \"DCP\" tab."));
97                 _text->Newline ();
98         }
99
100         if (!scope && flat_or_narrower && film->container()->id() == "239") {
101                 hint = true;
102                 _text->WriteText (_("All of your content is at 1.85:1 or narrower but your DCP's container is Scope (2.39:1).  This will pillar-box your content inside a Flat (1.85:1) frame.  You may prefer to set your DCP's container to Flat (1.85:1) in the \"DCP\" tab."));
103                 _text->Newline ();
104         }
105         
106         if (film->video_frame_rate() != 24 && film->video_frame_rate() != 48) {
107                 hint = true;
108                 _text->WriteText (wxString::Format (_("Your DCP frame rate (%d fps) may cause problems in a few (mostly older) projectors.  Use 24 or 48 frames per second to be on the safe side."), film->video_frame_rate()));
109                 _text->Newline ();
110         }
111
112         int vob = 0;
113         for (ContentList::const_iterator i = content.begin(); i != content.end(); ++i) {
114                 if (boost::algorithm::starts_with ((*i)->path(0).filename().string(), "VTS_")) {
115                         ++vob;
116                 }
117         }
118
119         if (vob > 1) {
120                 hint = true;
121                 _text->WriteText (wxString::Format (_("You have %d files that look like they are VOB files from DVD. You should join them to ensure smooth joins between the files."), vob));
122                 _text->Newline ();
123         }
124
125         _text->EndSymbolBullet ();
126
127         if (!hint) {
128                 _text->WriteText (_("There are no hints: everything looks good!"));
129         }
130 }