Partial addition of DCP audio channel count to Film.
[dcpomatic.git] / src / wx / film_viewer.cc
1 /* -*- c-basic-offset: 8; default-tab-width: 8; -*- */
2
3 /*
4     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
5
6     This program 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     This program 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 this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 */
21
22 /** @file  src/film_viewer.cc
23  *  @brief A wx widget to view a preview of a Film.
24  */
25
26 #include <iostream>
27 #include <iomanip>
28 #include <wx/tglbtn.h>
29 #include "lib/film.h"
30 #include "lib/container.h"
31 #include "lib/format.h"
32 #include "lib/util.h"
33 #include "lib/job_manager.h"
34 #include "lib/subtitle.h"
35 #include "lib/image.h"
36 #include "lib/scaler.h"
37 #include "lib/exceptions.h"
38 #include "lib/examine_content_job.h"
39 #include "lib/filter.h"
40 #include "lib/player.h"
41 #include "lib/video_content.h"
42 #include "lib/ffmpeg_content.h"
43 #include "lib/imagemagick_content.h"
44 #include "film_viewer.h"
45 #include "wx_util.h"
46 #include "video_decoder.h"
47
48 using std::string;
49 using std::pair;
50 using std::max;
51 using std::cout;
52 using std::list;
53 using boost::shared_ptr;
54 using boost::dynamic_pointer_cast;
55 using boost::weak_ptr;
56 using libdcp::Size;
57
58 FilmViewer::FilmViewer (shared_ptr<Film> f, wxWindow* p)
59         : wxPanel (p)
60         , _panel (new wxPanel (this))
61         , _slider (new wxSlider (this, wxID_ANY, 0, 0, 4096))
62         , _back_button (new wxButton (this, wxID_ANY, wxT("<")))
63         , _forward_button (new wxButton (this, wxID_ANY, wxT(">")))
64         , _frame (new wxStaticText (this, wxID_ANY, wxT("")))
65         , _timecode (new wxStaticText (this, wxID_ANY, wxT("")))
66         , _play_button (new wxToggleButton (this, wxID_ANY, _("Play")))
67         , _display_frame_x (0)
68         , _got_frame (false)
69 {
70         _panel->SetDoubleBuffered (true);
71 #if wxMAJOR_VERSION == 2 && wxMINOR_VERSION >= 9
72         _panel->SetBackgroundStyle (wxBG_STYLE_PAINT);
73 #endif  
74         
75         _v_sizer = new wxBoxSizer (wxVERTICAL);
76         SetSizer (_v_sizer);
77
78         _v_sizer->Add (_panel, 1, wxEXPAND);
79
80         wxBoxSizer* h_sizer = new wxBoxSizer (wxHORIZONTAL);
81
82         wxBoxSizer* time_sizer = new wxBoxSizer (wxVERTICAL);
83         time_sizer->Add (_frame, 0, wxEXPAND);
84         time_sizer->Add (_timecode, 0, wxEXPAND);
85
86         h_sizer->Add (_back_button, 0, wxALL, 2);
87         h_sizer->Add (time_sizer, 0, wxEXPAND);
88         h_sizer->Add (_forward_button, 0, wxALL, 2);
89         h_sizer->Add (_play_button, 0, wxEXPAND);
90         h_sizer->Add (_slider, 1, wxEXPAND);
91
92         _v_sizer->Add (h_sizer, 0, wxEXPAND | wxALL, 6);
93
94         _frame->SetMinSize (wxSize (84, -1));
95         _back_button->SetMinSize (wxSize (32, -1));
96         _forward_button->SetMinSize (wxSize (32, -1));
97
98         _panel->Connect (wxID_ANY, wxEVT_PAINT, wxPaintEventHandler (FilmViewer::paint_panel), 0, this);
99         _panel->Connect (wxID_ANY, wxEVT_SIZE, wxSizeEventHandler (FilmViewer::panel_sized), 0, this);
100         _slider->Connect (wxID_ANY, wxEVT_SCROLL_THUMBTRACK, wxScrollEventHandler (FilmViewer::slider_moved), 0, this);
101         _slider->Connect (wxID_ANY, wxEVT_SCROLL_PAGEUP, wxScrollEventHandler (FilmViewer::slider_moved), 0, this);
102         _slider->Connect (wxID_ANY, wxEVT_SCROLL_PAGEDOWN, wxScrollEventHandler (FilmViewer::slider_moved), 0, this);
103         _play_button->Connect (wxID_ANY, wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, wxCommandEventHandler (FilmViewer::play_clicked), 0, this);
104         _timer.Connect (wxID_ANY, wxEVT_TIMER, wxTimerEventHandler (FilmViewer::timer), 0, this);
105         _back_button->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (FilmViewer::back_clicked), 0, this);
106         _forward_button->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (FilmViewer::forward_clicked), 0, this);
107
108         set_film (f);
109
110         JobManager::instance()->ActiveJobsChanged.connect (
111                 bind (&FilmViewer::active_jobs_changed, this, _1)
112                 );
113 }
114
115 void
116 FilmViewer::film_changed (Film::Property p)
117 {
118         switch (p) {
119         case Film::CONTAINER:
120                 calculate_sizes ();
121                 update_from_raw ();
122                 break;
123         case Film::CONTENT:
124         {
125                 calculate_sizes ();
126                 wxScrollEvent ev;
127                 slider_moved (ev);
128                 break;
129         }
130         case Film::WITH_SUBTITLES:
131         case Film::SUBTITLE_OFFSET:
132         case Film::SUBTITLE_SCALE:
133                 raw_to_display ();
134                 _panel->Refresh ();
135                 _panel->Update ();
136                 break;
137         case Film::SCALER:
138         case Film::FILTERS:
139                 update_from_decoder ();
140                 break;
141         default:
142                 break;
143         }
144 }
145
146 void
147 FilmViewer::set_film (shared_ptr<Film> f)
148 {
149         if (_film == f) {
150                 return;
151         }
152
153         _film = f;
154
155         _raw_frame.reset ();
156         _display_frame.reset ();
157         _panel->Refresh ();
158         _panel->Update ();
159
160         if (!_film) {
161                 return;
162         }
163
164         _player = f->player ();
165         _player->disable_audio ();
166         /* Don't disable subtitles here as we may need them, and it's nice to be able to turn them
167            on and off without needing obtain a new Player.
168         */
169         
170         _player->Video.connect (bind (&FilmViewer::process_video, this, _1, _2, _3, _4));
171         
172         _film->Changed.connect (boost::bind (&FilmViewer::film_changed, this, _1));
173         _film->ContentChanged.connect (boost::bind (&FilmViewer::film_content_changed, this, _1, _2));
174
175         film_changed (Film::CONTENT);
176         film_changed (Film::CONTAINER);
177         film_changed (Film::WITH_SUBTITLES);
178         film_changed (Film::SUBTITLE_OFFSET);
179         film_changed (Film::SUBTITLE_SCALE);
180 }
181
182 void
183 FilmViewer::update_from_decoder ()
184 {
185         if (!_player) {
186                 return;
187         }
188
189         _player->seek (_player->position ());
190         get_frame ();
191         _panel->Refresh ();
192         _panel->Update ();
193 }
194
195 void
196 FilmViewer::timer (wxTimerEvent &)
197 {
198         if (!_player) {
199                 return;
200         }
201         
202         _panel->Refresh ();
203         _panel->Update ();
204
205         get_frame ();
206
207         if (_film->length()) {
208                 int const new_slider_position = 4096 * _player->position() / _film->length();
209                 if (new_slider_position != _slider->GetValue()) {
210                         _slider->SetValue (new_slider_position);
211                 }
212         }
213 }
214
215
216 void
217 FilmViewer::paint_panel (wxPaintEvent &)
218 {
219         wxPaintDC dc (_panel);
220
221         if (!_display_frame || !_film || !_out_size.width || !_out_size.height) {
222                 dc.Clear ();
223                 return;
224         }
225
226         if (_display_frame_x) {
227                 dc.SetPen(*wxBLACK_PEN);
228                 dc.SetBrush(*wxBLACK_BRUSH);
229                 dc.DrawRectangle (0, 0, _display_frame_x, _film_size.height);
230                 dc.DrawRectangle (_display_frame_x + _film_size.width, 0, _display_frame_x, _film_size.height);
231         }
232
233         wxImage frame (_film_size.width, _film_size.height, _display_frame->data()[0], true);
234         wxBitmap frame_bitmap (frame);
235         dc.DrawBitmap (frame_bitmap, _display_frame_x, 0);
236
237         if (_film->with_subtitles() && _display_sub) {
238                 wxImage sub (_display_sub->size().width, _display_sub->size().height, _display_sub->data()[0], _display_sub->alpha(), true);
239                 wxBitmap sub_bitmap (sub);
240                 dc.DrawBitmap (sub_bitmap, _display_sub_position.x, _display_sub_position.y);
241         }
242
243         if (_out_size.width < _panel_size.width) {
244                 wxPen p (GetBackgroundColour ());
245                 wxBrush b (GetBackgroundColour ());
246                 dc.SetPen (p);
247                 dc.SetBrush (b);
248                 dc.DrawRectangle (_out_size.width, 0, _panel_size.width - _out_size.width, _panel_size.height);
249         }
250
251         if (_out_size.height < _panel_size.height) {
252                 wxPen p (GetBackgroundColour ());
253                 wxBrush b (GetBackgroundColour ());
254                 dc.SetPen (p);
255                 dc.SetBrush (b);
256                 dc.DrawRectangle (0, _out_size.height, _panel_size.width, _panel_size.height - _out_size.height);
257         }               
258 }
259
260
261 void
262 FilmViewer::slider_moved (wxScrollEvent &)
263 {
264         cout << "slider " << _slider->GetValue() << " " << _film->length() << "\n";
265         
266         if (_film && _player) {
267                 _player->seek (_slider->GetValue() * _film->length() / 4096);
268         }
269         
270         get_frame ();
271         _panel->Refresh ();
272         _panel->Update ();
273 }
274
275 void
276 FilmViewer::panel_sized (wxSizeEvent& ev)
277 {
278         _panel_size.width = ev.GetSize().GetWidth();
279         _panel_size.height = ev.GetSize().GetHeight();
280         calculate_sizes ();
281         update_from_raw ();
282 }
283
284 void
285 FilmViewer::update_from_raw ()
286 {
287         if (!_raw_frame) {
288                 return;
289         }
290
291         raw_to_display ();
292         
293         _panel->Refresh ();
294         _panel->Update ();
295 }
296
297 void
298 FilmViewer::raw_to_display ()
299 {
300         if (!_raw_frame || _out_size.width < 64 || _out_size.height < 64 || !_film) {
301                 return;
302         }
303
304         shared_ptr<const Image> input = _raw_frame;
305
306         pair<string, string> const s = Filter::ffmpeg_strings (_film->filters());
307         if (!s.second.empty ()) {
308                 input = input->post_process (s.second, true);
309         }
310         
311         /* Get a compacted image as we have to feed it to wxWidgets */
312         _display_frame = input->scale_and_convert_to_rgb (_film_size, 0, _film->scaler(), false);
313
314         if (_raw_sub) {
315
316                 /* Our output is already cropped by the decoder, so we need to account for that
317                    when working out the scale that we are applying.
318                 */
319
320                 /* XXX */
321                 Size const cropped_size = _raw_frame->size ();//_film->cropped_size (_raw_frame->size ());
322
323                 Rect tx = subtitle_transformed_area (
324                         float (_film_size.width) / cropped_size.width,
325                         float (_film_size.height) / cropped_size.height,
326                         _raw_sub->area(), _film->subtitle_offset(), _film->subtitle_scale()
327                         );
328                 
329                 _display_sub.reset (new RGBPlusAlphaImage (_raw_sub->image()->scale (tx.size(), _film->scaler(), false)));
330                 _display_sub_position = tx.position();
331                 _display_sub_position.x += _display_frame_x;
332         } else {
333                 _display_sub.reset ();
334         }
335 }       
336
337 void
338 FilmViewer::calculate_sizes ()
339 {
340         if (!_film || !_player) {
341                 return;
342         }
343
344         Container const * container = _film->container ();
345         
346         float const panel_ratio = static_cast<float> (_panel_size.width) / _panel_size.height;
347         float const film_ratio = container ? container->ratio () : 1.78;
348                         
349         if (panel_ratio < film_ratio) {
350                 /* panel is less widscreen than the film; clamp width */
351                 _out_size.width = _panel_size.width;
352                 _out_size.height = _out_size.width / film_ratio;
353         } else {
354                 /* panel is more widescreen than the film; clamp height */
355                 _out_size.height = _panel_size.height;
356                 _out_size.width = _out_size.height * film_ratio;
357         }
358
359         /* Work out how much padding there is in terms of our display; this will be the x position
360            of our _display_frame.
361         */
362         _display_frame_x = 0;
363 //      if (format) {
364 //              _display_frame_x = static_cast<float> (format->dcp_padding (_film)) * _out_size.width / format->dcp_size().width;
365 //      }
366
367         _film_size = _out_size;
368         _film_size.width -= _display_frame_x * 2;
369
370         /* Catch silly values */
371         if (_out_size.width < 64) {
372                 _out_size.width = 64;
373         }
374 }
375
376 void
377 FilmViewer::play_clicked (wxCommandEvent &)
378 {
379         check_play_state ();
380 }
381
382 void
383 FilmViewer::check_play_state ()
384 {
385         if (!_film || _film->dcp_video_frame_rate() == 0) {
386                 return;
387         }
388         
389         if (_play_button->GetValue()) {
390                 _timer.Start (1000 / _film->dcp_video_frame_rate());
391         } else {
392                 _timer.Stop ();
393         }
394 }
395
396 void
397 FilmViewer::process_video (shared_ptr<const Image> image, bool, shared_ptr<Subtitle> sub, Time t)
398 {
399         _raw_frame = image;
400         _raw_sub = sub;
401
402         raw_to_display ();
403
404         _got_frame = true;
405
406         double const fps = _film->dcp_video_frame_rate ();
407         _frame->SetLabel (wxString::Format (wxT("%d"), int (rint (t * fps / TIME_HZ))));
408
409         double w = static_cast<double>(t) / TIME_HZ;
410         int const h = (w / 3600);
411         w -= h * 3600;
412         int const m = (w / 60);
413         w -= m * 60;
414         int const s = floor (w);
415         w -= s;
416         int const f = rint (w * fps);
417         _timecode->SetLabel (wxString::Format (wxT("%02d:%02d:%02d:%02d"), h, m, s, f));
418 }
419
420 /** Get a new _raw_frame from the decoder and then do
421  *  raw_to_display ().
422  */
423 void
424 FilmViewer::get_frame ()
425 {
426         /* Clear our raw frame in case we don't get a new one */
427         _raw_frame.reset ();
428
429         if (!_player) {
430                 _display_frame.reset ();
431                 return;
432         }
433
434         try {
435                 _got_frame = false;
436                 while (!_got_frame) {
437                         if (_player->pass ()) {
438                                 /* We didn't get a frame before the decoder gave up,
439                                    so clear our display frame.
440                                 */
441                                 _display_frame.reset ();
442                                 break;
443                         }
444                 }
445         } catch (DecodeError& e) {
446                 _play_button->SetValue (false);
447                 check_play_state ();
448                 error_dialog (this, wxString::Format (_("Could not decode video for view (%s)"), std_to_wx(e.what()).data()));
449         }
450 }
451
452 void
453 FilmViewer::active_jobs_changed (bool a)
454 {
455         if (a) {
456                 list<shared_ptr<Job> > jobs = JobManager::instance()->get ();
457                 list<shared_ptr<Job> >::iterator i = jobs.begin ();             
458                 while (i != jobs.end() && boost::dynamic_pointer_cast<ExamineContentJob> (*i) == 0) {
459                         ++i;
460                 }
461                 
462                 if (i == jobs.end() || (*i)->finished()) {
463                         /* no examine content job running, so we're ok to use the viewer */
464                         a = false;
465                 }
466         }
467                         
468         _slider->Enable (!a);
469         _play_button->Enable (!a);
470 }
471
472 void
473 FilmViewer::film_content_changed (weak_ptr<Content>, int p)
474 {
475         if (p == VideoContentProperty::VIDEO_LENGTH) {
476                 /* Force an update to our frame */
477                 wxScrollEvent ev;
478                 slider_moved (ev);
479         } else if (p == VideoContentProperty::VIDEO_CROP) {
480                 update_from_decoder ();
481         }               
482 }
483
484 void
485 FilmViewer::back_clicked (wxCommandEvent &)
486 {
487         if (!_player) {
488                 return;
489         }
490         
491         _player->seek_back ();
492         get_frame ();
493         _panel->Refresh ();
494         _panel->Update ();
495 }
496
497 void
498 FilmViewer::forward_clicked (wxCommandEvent &)
499 {
500         if (!_player) {
501                 return;
502         }
503
504         _player->seek_forward ();
505         get_frame ();
506         _panel->Refresh ();
507         _panel->Update ();
508 }