Remove unused variable.
[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                 _kdm_panel = new wxPanel(this, wxID_ANY);
77                 auto s = new wxBoxSizer(wxVERTICAL);
78                 add_label_to_sizer(s, _kdm_panel, _("KDM"), false, 0)->SetFont(title_font);
79                 auto g = new wxGridBagSizer(0, DCPOMATIC_SIZER_GAP);
80                 add_label_to_sizer(g, _kdm_panel, _("Valid from"), true, wxGBPosition(0, 0));
81                 _kdm_from = add_label_to_sizer(g, _kdm_panel, wxT(""), false, wxGBPosition(0, 1));
82                 add_label_to_sizer(g, _kdm_panel, _("Valid to"), true, wxGBPosition(1, 0));
83                 _kdm_to = add_label_to_sizer(g, _kdm_panel, wxT(""), false, wxGBPosition(1, 1));
84                 s->Add(g, 1, wxEXPAND | wxLEFT, DCPOMATIC_SIZER_GAP);
85                 _kdm_panel->SetSizer(s);
86                 _sizer->Add(_kdm_panel, 1, wxEXPAND | wxALL, 6);
87         }
88
89         {
90                 auto s = new wxBoxSizer (wxVERTICAL);
91                 add_label_to_sizer(s, this, _("Performance"), false, 0)->SetFont(title_font);
92                 _dropped = add_label_to_sizer(s, this, wxT(""), false, 0);
93                 _decode_resolution = add_label_to_sizer(s, this, wxT(""), false, 0);
94                 _sizer->Add (s, 2, wxEXPAND | wxALL, 6);
95         }
96
97         SetSizerAndFit (_sizer);
98
99         triggered_update ();
100
101         Bind (wxEVT_TIMER, boost::bind (&PlayerInformation::periodic_update, this));
102         _timer.reset (new wxTimer (this));
103         _timer->Start (500);
104 }
105
106
107 void
108 PlayerInformation::periodic_update ()
109 {
110         auto fv = _viewer.lock ();
111         if (fv) {
112                 auto s = wxString::Format(_("Dropped frames: %d"), fv->dropped() + fv->errored());
113                 if (fv->errored() == 1) {
114                         s += wxString::Format(_(" (%d error)"), fv->errored());
115                 } else if (fv->errored() > 1) {
116                         s += wxString::Format(_(" (%d errors)"), fv->errored());
117                 }
118                 checked_set (_dropped, s);
119         }
120 }
121
122
123 void
124 PlayerInformation::triggered_update ()
125 {
126         auto fv = _viewer.lock ();
127         if (!fv) {
128                 return;
129         }
130
131         shared_ptr<DCPContent> dcp;
132         if (fv->film()) {
133                 auto content = fv->film()->content();
134                 if (content.size() == 1) {
135                         dcp = dynamic_pointer_cast<DCPContent>(content.front());
136                 }
137         }
138
139         if (!dcp) {
140                 checked_set (_dcp[0], _("No DCP loaded."));
141                 for (int r = 1; r < dcp_lines; ++r) {
142                         checked_set (_dcp[r], wxT(""));
143                 }
144                 checked_set (_decode_resolution, wxT(""));
145                 _kdm_panel->Hide();
146                 return;
147         }
148
149         int r = 0;
150         checked_set (_dcp[r++], std_to_wx(dcp->name()));
151
152         if (dcp->needs_assets()) {
153                 checked_set (_dcp[r], _("Needs OV"));
154                 return;
155         }
156
157         if (dcp->needs_kdm()) {
158                 checked_set (_dcp[r], _("Needs KDM"));
159                 return;
160         }
161
162         DCPOMATIC_ASSERT (dcp->video);
163
164         checked_set (_dcp[r++], wxString::Format(_("Size: %dx%d"), dcp->video->size().width, dcp->video->size().height));
165         if (dcp->video_frame_rate()) {
166                 checked_set (_dcp[r++], wxString::Format(_("Frame rate: %d"), (int) lrint(*dcp->video_frame_rate())));
167         }
168         if (dcp->audio && !dcp->audio->streams().empty()) {
169                 checked_set (_dcp[r++], wxString::Format(_("Audio channels: %d"), dcp->audio->streams().front()->channels()));
170         }
171         if (!dcp->text.empty()) {
172                 checked_set (_dcp[r++], _("Subtitles: yes"));
173         } else {
174                 checked_set (_dcp[r++], _("Subtitles: no"));
175         }
176
177         optional<double> vfr;
178         vfr = dcp->video_frame_rate ();
179         DCPOMATIC_ASSERT (vfr);
180
181         auto const len = String::compose(
182                 wx_to_std(_("Length: %1 (%2 frames)")),
183                 time_to_hmsf(dcp->full_length(fv->film()), lrint(*vfr)),
184                 dcp->full_length(fv->film()).frames_round(*vfr)
185                 );
186
187         checked_set (_dcp[r++], std_to_wx(len));
188
189         auto decode = dcp->video->size();
190         auto reduction = fv->dcp_decode_reduction();
191         if (reduction) {
192                 decode.width /= pow(2, *reduction);
193                 decode.height /= pow(2, *reduction);
194         }
195
196         checked_set (_decode_resolution, wxString::Format(_("Decode resolution: %dx%d"), decode.width, decode.height));
197
198         DCPOMATIC_ASSERT(r <= dcp_lines);
199
200         if (dcp->encrypted() && dcp->kdm()) {
201                 _kdm_panel->Show();
202                 auto const kdm = *dcp->kdm();
203                 auto const before = kdm.not_valid_before();
204                 checked_set(_kdm_from, wxString::Format(_("%s %s"), std_to_wx(before.date()), std_to_wx(before.time_of_day(true, false))));
205                 auto const after = kdm.not_valid_after();
206                 checked_set(_kdm_to, wxString::Format(_("%s %s"), std_to_wx(after.date()), std_to_wx(after.time_of_day(true, false))));
207         } else {
208                 _kdm_panel->Hide();
209         }
210
211         _sizer->Layout ();
212 }