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