Remove Content::path(), add Content::path_summary().
[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 "hints_dialog.h"
24
25 HintsDialog::HintsDialog (wxWindow* parent, boost::weak_ptr<Film> f)
26         : wxDialog (parent, wxID_ANY, _("Hints"))
27         , _film (f)
28 {
29         wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);
30         _text = new wxRichTextCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize (400, 300), wxRE_READONLY);
31         sizer->Add (_text, 1, wxEXPAND | wxALL, 6);
32
33         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
34         if (buttons) {
35                 sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
36         }
37
38         SetSizer (sizer);
39         sizer->Layout ();
40         sizer->SetSizeHints (this);
41
42         _text->GetCaret()->Hide ();
43
44         boost::shared_ptr<Film> film = _film.lock ();
45         if (film) {
46                 film->Changed.connect (boost::bind (&HintsDialog::film_changed, this));
47         }
48
49         film_changed ();
50 }
51
52 void
53 HintsDialog::film_changed ()
54 {
55         _text->Clear ();
56         bool hint = false;
57         
58         boost::shared_ptr<Film> film = _film.lock ();
59         if (!film) {
60                 return;
61         }
62
63         _text->BeginStandardBullet (N_("standard/circle"), 1, 50);
64         if (film->audio_channels() % 2) {
65                 hint = true;
66                 _text->WriteText (_("Your DCP has an odd number of audio channels.  This is very likely to cause problems on playback."));
67                 _text->Newline ();
68         } else if (film->audio_channels() < 6) {
69                 hint = true;
70                 _text->WriteText (_("Your DCP has fewer than 6 audio channels.  This may cause problems on some projectors."));
71                 _text->Newline ();
72         }
73
74         if (film->video_frame_rate() != 24 && film->video_frame_rate() != 48) {
75                 hint = true;
76                 _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()));
77                 _text->Newline ();
78         }
79
80         ContentList content = film->content ();
81         int vob = 0;
82         for (ContentList::const_iterator i = content.begin(); i != content.end(); ++i) {
83                 if (boost::algorithm::starts_with ((*i)->path(0).filename().string(), "VTS_")) {
84                         ++vob;
85                 }
86         }
87
88         if (vob > 1) {
89                 hint = true;
90                 _text->WriteText (wxString::Format (_("You have %d files that look like they are VOB files from DVD.  You should coalesce them to ensure smooth joins between the files."), vob));
91                 _text->Newline ();
92         }
93
94         _text->EndSymbolBullet ();
95
96         if (!hint) {
97                 _text->WriteText (_("There are no hints: everything looks good!"));
98         }
99 }