Same thing with inter_size.
[dcpomatic.git] / src / wx / simple_video_view.cc
1 /*
2     Copyright (C) 2019 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 #include "simple_video_view.h"
22 #include "film_viewer.h"
23 #include "wx_util.h"
24 #include "closed_captions_dialog.h"
25 #include "lib/image.h"
26 #include "lib/dcpomatic_log.h"
27 #include "lib/butler.h"
28 #include <dcp/util.h>
29 #include <wx/wx.h>
30 #include <boost/bind.hpp>
31
32 using std::max;
33 using std::string;
34 using boost::optional;
35 using boost::shared_ptr;
36 using namespace dcpomatic;
37
38 SimpleVideoView::SimpleVideoView (FilmViewer* viewer, wxWindow* parent)
39         : VideoView (viewer)
40 {
41         _panel = new wxPanel (parent);
42
43 #ifndef __WXOSX__
44         _panel->SetDoubleBuffered (true);
45 #endif
46
47         _panel->SetBackgroundStyle (wxBG_STYLE_PAINT);
48         _panel->SetBackgroundColour (*wxBLACK);
49
50         _panel->Bind (wxEVT_PAINT, boost::bind (&SimpleVideoView::paint, this));
51         _panel->Bind (wxEVT_SIZE, boost::bind(boost::ref(Sized)));
52
53         _timer.Bind (wxEVT_TIMER, boost::bind(&SimpleVideoView::timer, this));
54 }
55
56 void
57 SimpleVideoView::paint ()
58 {
59         _viewer->state_timer().set("paint-panel");
60         wxPaintDC dc (_panel);
61
62         dcp::Size const out_size = _viewer->out_size ();
63         wxSize const panel_size = _panel->GetSize ();
64
65 #ifdef DCPOMATIC_VARIANT_SWAROOP
66         if (_viewer->background_image()) {
67                 dc.Clear ();
68                 optional<boost::filesystem::path> bg = Config::instance()->player_background_image();
69                 if (bg) {
70                         wxImage image (std_to_wx(bg->string()));
71                         wxBitmap bitmap (image);
72                         dc.DrawBitmap (bitmap, max(0, (panel_size.GetWidth() - image.GetSize().GetWidth()) / 2), max(0, (panel_size.GetHeight() - image.GetSize().GetHeight()) / 2));
73                 }
74                 return;
75         }
76 #endif
77
78         if (!out_size.width || !out_size.height || !_image || out_size != _image->size()) {
79                 dc.Clear ();
80         } else {
81
82                 wxImage frame (out_size.width, out_size.height, _image->data()[0], true);
83                 wxBitmap frame_bitmap (frame);
84                 dc.DrawBitmap (frame_bitmap, 0, max(0, (panel_size.GetHeight() - out_size.height) / 2));
85
86 #ifdef DCPOMATIC_VARIANT_SWAROOP
87                 DCPTime const period = DCPTime::from_seconds(Config::instance()->player_watermark_period() * 60);
88                 int64_t n = _viewer->position().get() / period.get();
89                 DCPTime from(n * period.get());
90                 DCPTime to = from + DCPTime::from_seconds(Config::instance()->player_watermark_duration() / 1000.0);
91                 if (from <= _viewer->position() && _viewer->position() <= to) {
92                         if (!_in_watermark) {
93                                 _in_watermark = true;
94                                 _watermark_x = rand() % panel_size.GetWidth();
95                                 _watermark_y = rand() % panel_size.GetHeight();
96                         }
97                         dc.SetTextForeground(*wxWHITE);
98                         string wm = Config::instance()->player_watermark_theatre();
99                         boost::posix_time::ptime t = boost::posix_time::second_clock::local_time();
100                         wm += "\n" + boost::posix_time::to_iso_extended_string(t);
101                         dc.DrawText(std_to_wx(wm), _watermark_x, _watermark_y);
102                 } else {
103                         _in_watermark = false;
104                 }
105 #endif
106         }
107
108         if (out_size.width < panel_size.GetWidth()) {
109                 /* XXX: these colours are right for GNOME; may need adjusting for other OS */
110                 wxPen   p (_viewer->pad_black() ? wxColour(0, 0, 0) : wxColour(240, 240, 240));
111                 wxBrush b (_viewer->pad_black() ? wxColour(0, 0, 0) : wxColour(240, 240, 240));
112                 dc.SetPen (p);
113                 dc.SetBrush (b);
114                 dc.DrawRectangle (out_size.width, 0, panel_size.GetWidth() - out_size.width, panel_size.GetHeight());
115         }
116
117         if (out_size.height < panel_size.GetHeight()) {
118                 wxPen   p (_viewer->pad_black() ? wxColour(0, 0, 0) : wxColour(240, 240, 240));
119                 wxBrush b (_viewer->pad_black() ? wxColour(0, 0, 0) : wxColour(240, 240, 240));
120                 dc.SetPen (p);
121                 dc.SetBrush (b);
122                 int const gap = (panel_size.GetHeight() - out_size.height) / 2;
123                 dc.DrawRectangle (0, 0, panel_size.GetWidth(), gap);
124                 dc.DrawRectangle (0, gap + out_size.height + 1, panel_size.GetWidth(), gap + 1);
125         }
126
127         if (_viewer->outline_content()) {
128                 wxPen p (wxColour (255, 0, 0), 2);
129                 dc.SetPen (p);
130                 dc.SetBrush (*wxTRANSPARENT_BRUSH);
131                 dc.DrawRectangle (_inter_position.x, _inter_position.y + (panel_size.GetHeight() - out_size.height) / 2, _inter_size.width, _inter_size.height);
132         }
133         _viewer->state_timer().unset();
134 }
135
136 void
137 SimpleVideoView::update ()
138 {
139         _panel->Refresh ();
140         _panel->Update ();
141 }
142
143 void
144 SimpleVideoView::timer ()
145 {
146         if (!_viewer->playing()) {
147                 return;
148         }
149
150         display_next_frame (false);
151         DCPTime const next = _viewer->position() + _viewer->one_video_frame();
152
153         if (next >= length()) {
154                 _viewer->stop ();
155                 _viewer->Finished ();
156                 return;
157         }
158
159         LOG_DEBUG_PLAYER("%1 -> %2; delay %3", next.seconds(), _viewer->time().seconds(), max((next.seconds() - _viewer->time().seconds()) * 1000, 1.0));
160         _timer.Start (time_until_next_frame(), wxTIMER_ONE_SHOT);
161
162         if (_viewer->butler()) {
163                 _viewer->butler()->rethrow ();
164         }
165 }
166
167 void
168 SimpleVideoView::start ()
169 {
170         VideoView::start ();
171         timer ();
172 }
173
174 /** Try to get a frame from the butler and display it.
175  *  @param non_blocking true to return false quickly if no video is available quickly (i.e. we are waiting for the butler).
176  *  false to ask the butler to block until it has video (unless it is suspended).
177  *  @return true on success, false if we did nothing because it would have taken too long.
178  */
179 bool
180 SimpleVideoView::display_next_frame (bool non_blocking)
181 {
182         bool r = get_next_frame (non_blocking);
183         if (!r) {
184                 if (non_blocking) {
185                         /* No video available; return saying we failed */
186                         return false;
187                 } else {
188                         /* Player was suspended; come back later */
189                         signal_manager->when_idle (boost::bind(&SimpleVideoView::display_next_frame, this, false));
190                         return false;
191                 }
192         }
193
194         display_player_video ();
195
196         try {
197                 _viewer->butler()->rethrow ();
198         } catch (DecodeError& e) {
199                 error_dialog (get(), e.what());
200         }
201
202         return true;
203 }
204
205 void
206 SimpleVideoView::display_player_video ()
207 {
208         if (!player_video().first) {
209                 set_image (shared_ptr<Image>());
210                 _viewer->refresh_view ();
211                 return;
212         }
213
214         if (_viewer->playing() && (_viewer->time() - player_video().second) > one_video_frame()) {
215                 /* Too late; just drop this frame before we try to get its image (which will be the time-consuming
216                    part if this frame is J2K).
217                 */
218                 add_dropped ();
219                 return;
220         }
221
222         /* In an ideal world, what we would do here is:
223          *
224          * 1. convert to XYZ exactly as we do in the DCP creation path.
225          * 2. convert back to RGB for the preview display, compensating
226          *    for the monitor etc. etc.
227          *
228          * but this is inefficient if the source is RGB.  Since we don't
229          * (currently) care too much about the precise accuracy of the preview's
230          * colour mapping (and we care more about its speed) we try to short-
231          * circuit this "ideal" situation in some cases.
232          *
233          * The content's specified colour conversion indicates the colourspace
234          * which the content is in (according to the user).
235          *
236          * PlayerVideo::image (bound to PlayerVideo::force) will take the source
237          * image and convert it (from whatever the user has said it is) to RGB.
238          */
239
240         _viewer->_state_timer.set ("get image");
241
242         set_image (
243                 player_video().first->image(bind(&PlayerVideo::force, _1, AV_PIX_FMT_RGB24), false, true)
244                 );
245
246         _viewer->_state_timer.set ("ImageChanged");
247         _viewer->ImageChanged (player_video().first);
248         _viewer->_state_timer.unset ();
249
250         _inter_position = player_video().first->inter_position ();
251         _inter_size = player_video().first->inter_size ();
252
253         _viewer->refresh_view ();
254
255         _viewer->_closed_captions_dialog->update (_viewer->time());
256 }