Restore erroneously-removed line.
[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         } else if (film->audio_channels() == 0) {
78                 /* Carsten Kurz reckons having no audio can be a problem */
79                 hint = true;
80                 _text->WriteText (_("Your DCP has no audio channels.  This is likely to cause problems on playback."));
81                 _text->Newline ();
82         }
83
84         ContentList content = film->content ();
85         int flat_or_narrower = 0;
86         int scope = 0;
87         for (ContentList::const_iterator i = content.begin(); i != content.end(); ++i) {
88                 shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (*i);
89                 if (vc) {
90                         Ratio const * r = vc->scale().ratio ();
91                         if (r && r->id() == "239") {
92                                 ++scope;
93                         } else if (r && r->id() != "239" && r->id() != "full-frame") {
94                                 ++flat_or_narrower;
95                         }
96                 }
97         }
98
99         if (scope && !flat_or_narrower && film->container()->id() == "185") {
100                 hint = true;
101                 _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."));
102                 _text->Newline ();
103         }
104
105         if (!scope && flat_or_narrower && film->container()->id() == "239") {
106                 hint = true;
107                 _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."));
108                 _text->Newline ();
109         }
110         
111         if (film->video_frame_rate() != 24 && film->video_frame_rate() != 48) {
112                 hint = true;
113                 _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()));
114                 _text->Newline ();
115         }
116
117         if (film->j2k_bandwidth() >= 245000000) {
118                 hint = true;
119                 _text->WriteText (_("A few projectors have problems playing back very high bit-rate DCPs.  It is a good idea to drop the JPEG2000 bandwidth down to about 200Mbit/s; this is unlikely to have any visible effect on the image."));
120                 _text->Newline ();
121         }
122
123         int vob = 0;
124         for (ContentList::const_iterator i = content.begin(); i != content.end(); ++i) {
125                 if (boost::algorithm::starts_with ((*i)->path(0).filename().string(), "VTS_")) {
126                         ++vob;
127                 }
128         }
129
130         if (vob > 1) {
131                 hint = true;
132                 _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));
133                 _text->Newline ();
134         }
135
136         _text->EndSymbolBullet ();
137
138         if (!hint) {
139                 _text->WriteText (_("There are no hints: everything looks good!"));
140         }
141 }