C++11 tidying.
[dcpomatic.git] / src / wx / player_information.cc
1 /*
2     Copyright (C) 2017-2018 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "player_information.h"
23 #include "wx_util.h"
24 #include "film_viewer.h"
25 #include "lib/playlist.h"
26 #include "lib/compose.hpp"
27 #include "lib/video_content.h"
28 #include "lib/audio_content.h"
29 #include "lib/dcp_content.h"
30 #include "lib/film.h"
31
32
33 using std::cout;
34 using std::dynamic_pointer_cast;
35 using std::shared_ptr;
36 using std::string;
37 using std::weak_ptr;
38 using boost::optional;
39
40
41 /* This should be even */
42 static int const dcp_lines = 6;
43
44
45 PlayerInformation::PlayerInformation (wxWindow* parent, weak_ptr<FilmViewer> viewer)
46         : wxPanel (parent)
47         , _viewer (viewer)
48         , _sizer (new wxBoxSizer (wxHORIZONTAL))
49 {
50         wxFont title_font (*wxNORMAL_FONT);
51         title_font.SetWeight (wxFONTWEIGHT_BOLD);
52
53         _dcp = new wxStaticText*[dcp_lines];
54
55         DCPOMATIC_ASSERT ((dcp_lines % 2) == 0);
56
57         {
58                 auto s = new wxBoxSizer (wxVERTICAL);
59                 add_label_to_sizer(s, this, _("DCP"), false, 0)->SetFont(title_font);
60                 for (int i = 0; i < dcp_lines / 2; ++i) {
61                         _dcp[i] = add_label_to_sizer(s, this, wxT(""), false, 0);
62                 }
63                 _sizer->Add (s, 1, wxEXPAND | wxALL, 6);
64         }
65
66         {
67                 auto s = new wxBoxSizer (wxVERTICAL);
68                 add_label_to_sizer(s, this, wxT(" "), false, 0);
69                 for (int i = dcp_lines / 2; i < dcp_lines; ++i) {
70                         _dcp[i] = add_label_to_sizer(s, this, wxT(""), false, 0);
71                 }
72                 _sizer->Add (s, 1, wxEXPAND | wxALL, 6);
73         }
74
75         {
76                 auto s = new wxBoxSizer (wxVERTICAL);
77                 add_label_to_sizer(s, this, _("Performance"), false, 0)->SetFont(title_font);
78                 _dropped = add_label_to_sizer(s, this, wxT(""), false, 0);
79                 _decode_resolution = add_label_to_sizer(s, this, wxT(""), false, 0);
80                 _sizer->Add (s, 2, wxEXPAND | wxALL, 6);
81         }
82
83         SetSizerAndFit (_sizer);
84
85         triggered_update ();
86
87         Bind (wxEVT_TIMER, boost::bind (&PlayerInformation::periodic_update, this));
88         _timer.reset (new wxTimer (this));
89         _timer->Start (500);
90 }
91
92
93 void
94 PlayerInformation::periodic_update ()
95 {
96         auto fv = _viewer.lock ();
97         if (fv) {
98                 auto s = wxString::Format(_("Dropped frames: %d"), fv->dropped() + fv->errored());
99                 if (fv->errored() == 1) {
100                         s += wxString::Format(_(" (%d error)"), fv->errored());
101                 } else if (fv->errored() > 1) {
102                         s += wxString::Format(_(" (%d errors)"), fv->errored());
103                 }
104                 checked_set (_dropped, s);
105         }
106 }
107
108
109 void
110 PlayerInformation::triggered_update ()
111 {
112         auto fv = _viewer.lock ();
113         if (!fv) {
114                 return;
115         }
116
117         shared_ptr<DCPContent> dcp;
118         if (fv->film()) {
119                 auto content = fv->film()->content();
120                 if (content.size() == 1) {
121                         dcp = dynamic_pointer_cast<DCPContent>(content.front());
122                 }
123         }
124
125         if (!dcp) {
126                 checked_set (_dcp[0], _("No DCP loaded."));
127                 for (int r = 1; r < dcp_lines; ++r) {
128                         checked_set (_dcp[r], wxT(""));
129                 }
130                 checked_set (_decode_resolution, wxT(""));
131                 return;
132         }
133
134         int r = 0;
135         checked_set (_dcp[r++], std_to_wx(dcp->name()));
136
137         if (dcp->needs_assets()) {
138                 checked_set (_dcp[r], _("Needs OV"));
139                 return;
140         }
141
142         if (dcp->needs_kdm()) {
143                 checked_set (_dcp[r], _("Needs KDM"));
144                 return;
145         }
146
147         DCPOMATIC_ASSERT (dcp->video);
148
149         checked_set (_dcp[r++], wxString::Format(_("Size: %dx%d"), dcp->video->size().width, dcp->video->size().height));
150         if (dcp->video_frame_rate()) {
151                 checked_set (_dcp[r++], wxString::Format(_("Frame rate: %d"), (int) lrint(*dcp->video_frame_rate())));
152         }
153         if (dcp->audio && !dcp->audio->streams().empty()) {
154                 checked_set (_dcp[r++], wxString::Format(_("Audio channels: %d"), dcp->audio->streams().front()->channels()));
155         }
156         if (!dcp->text.empty()) {
157                 checked_set (_dcp[r++], _("Subtitles: yes"));
158         } else {
159                 checked_set (_dcp[r++], _("Subtitles: no"));
160         }
161
162         optional<double> vfr;
163         vfr = dcp->video_frame_rate ();
164         DCPOMATIC_ASSERT (vfr);
165
166         auto const len = String::compose(
167                 wx_to_std(_("Length: %1 (%2 frames)")),
168                 time_to_hmsf(dcp->full_length(fv->film()), lrint(*vfr)),
169                 dcp->full_length(fv->film()).frames_round(*vfr)
170                 );
171
172         checked_set (_dcp[r++], std_to_wx(len));
173
174         auto decode = dcp->video->size();
175         auto reduction = fv->dcp_decode_reduction();
176         if (reduction) {
177                 decode.width /= pow(2, *reduction);
178                 decode.height /= pow(2, *reduction);
179         }
180
181         checked_set (_decode_resolution, wxString::Format(_("Decode resolution: %dx%d"), decode.width, decode.height));
182
183         DCPOMATIC_ASSERT(r <= dcp_lines);
184
185         _sizer->Layout ();
186 }