891d1671b875265a859a2e760da423ebc0efa447
[dcpomatic.git] / src / wx / film_viewer.cc
1 /*
2     Copyright (C) 2012 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 /** @file  src/film_viewer.cc
21  *  @brief A wx widget to view a preview of a Film.
22  */
23
24 #include <iostream>
25 #include <iomanip>
26 #include <wx/tglbtn.h>
27 #include "lib/film.h"
28 #include "lib/format.h"
29 #include "lib/util.h"
30 #include "lib/job_manager.h"
31 #include "lib/options.h"
32 #include "lib/subtitle.h"
33 #include "lib/image.h"
34 #include "lib/scaler.h"
35 #include "lib/exceptions.h"
36 #include "lib/examine_content_job.h"
37 #include "film_viewer.h"
38 #include "wx_util.h"
39 #include "video_decoder.h"
40
41 using std::string;
42 using std::pair;
43 using std::max;
44 using std::cout;
45 using std::list;
46 using boost::shared_ptr;
47
48 FilmViewer::FilmViewer (shared_ptr<Film> f, wxWindow* p)
49         : wxPanel (p)
50         , _panel (new wxPanel (this))
51         , _slider (new wxSlider (this, wxID_ANY, 0, 0, 4096))
52         , _play_button (new wxToggleButton (this, wxID_ANY, wxT ("Play")))
53         , _out_width (0)
54         , _out_height (0)
55         , _panel_width (0)
56         , _panel_height (0)
57 {
58         _panel->SetDoubleBuffered (true);
59         _panel->SetBackgroundStyle (wxBG_STYLE_PAINT);
60         
61         wxBoxSizer* v_sizer = new wxBoxSizer (wxVERTICAL);
62         SetSizer (v_sizer);
63
64         v_sizer->Add (_panel, 1, wxEXPAND);
65
66         wxBoxSizer* h_sizer = new wxBoxSizer (wxHORIZONTAL);
67         h_sizer->Add (_play_button, 0, wxEXPAND);
68         h_sizer->Add (_slider, 1, wxEXPAND);
69
70         v_sizer->Add (h_sizer, 0, wxEXPAND);
71
72         _panel->Bind (wxEVT_PAINT, &FilmViewer::paint_panel, this);
73         _panel->Bind (wxEVT_SIZE, &FilmViewer::panel_sized, this);
74         _slider->Bind (wxEVT_SCROLL_THUMBTRACK, &FilmViewer::slider_moved, this);
75         _slider->Bind (wxEVT_SCROLL_PAGEUP, &FilmViewer::slider_moved, this);
76         _slider->Bind (wxEVT_SCROLL_PAGEDOWN, &FilmViewer::slider_moved, this);
77         _play_button->Bind (wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, &FilmViewer::play_clicked, this);
78         _timer.Bind (wxEVT_TIMER, &FilmViewer::timer, this);
79
80         set_film (_film);
81
82         JobManager::instance()->ActiveJobsChanged.connect (
83                 bind (&FilmViewer::active_jobs_changed, this, _1)
84                 );
85 }
86
87 void
88 FilmViewer::film_changed (Film::Property p)
89 {
90         switch (p) {
91         case Film::FORMAT:
92                 calculate_sizes ();
93                 update_from_raw ();
94                 break;
95         case Film::CONTENT:
96         {
97                 shared_ptr<DecodeOptions> o (new DecodeOptions);
98                 o->decode_audio = false;
99                 o->decode_subtitles = true;
100                 o->video_sync = false;
101                 _decoders = decoder_factory (_film, o, 0);
102                 _decoders.video->Video.connect (bind (&FilmViewer::process_video, this, _1, _2));
103                 _decoders.video->OutputChanged.connect (boost::bind (&FilmViewer::decoder_changed, this));
104                 _decoders.video->set_subtitle_stream (_film->subtitle_stream());
105                 calculate_sizes ();
106                 get_frame ();
107                 _panel->Refresh ();
108                 _slider->Show (_film->content_type() == VIDEO);
109                 _play_button->Show (_film->content_type() == VIDEO);
110                 break;
111         }
112         case Film::WITH_SUBTITLES:
113         case Film::SUBTITLE_OFFSET:
114         case Film::SUBTITLE_SCALE:
115         case Film::SCALER:
116                 update_from_raw ();
117                 break;
118         case Film::SUBTITLE_STREAM:
119                 _decoders.video->set_subtitle_stream (_film->subtitle_stream ());
120                 break;
121         default:
122                 break;
123         }
124 }
125
126 void
127 FilmViewer::set_film (shared_ptr<Film> f)
128 {
129         if (_film == f) {
130                 return;
131         }
132         
133         _film = f;
134
135         if (!_film) {
136                 return;
137         }
138
139         _film->Changed.connect (boost::bind (&FilmViewer::film_changed, this, _1));
140
141         film_changed (Film::CONTENT);
142         film_changed (Film::CROP);
143         film_changed (Film::FORMAT);
144         film_changed (Film::WITH_SUBTITLES);
145         film_changed (Film::SUBTITLE_OFFSET);
146         film_changed (Film::SUBTITLE_SCALE);
147         film_changed (Film::SUBTITLE_STREAM);
148 }
149
150 void
151 FilmViewer::decoder_changed ()
152 {
153         seek_and_update (_decoders.video->last_source_frame ());
154 }
155
156 void
157 FilmViewer::timer (wxTimerEvent& ev)
158 {
159         if (!_film) {
160                 return;
161         }
162         
163         _panel->Refresh ();
164         _panel->Update ();
165
166         get_frame ();
167
168         if (_film->length()) {
169                 int const new_slider_position = 4096 * _decoders.video->last_source_frame() / _film->length().get();
170                 if (new_slider_position != _slider->GetValue()) {
171                         _slider->SetValue (new_slider_position);
172                 }
173         }
174 }
175
176
177 void
178 FilmViewer::paint_panel (wxPaintEvent& ev)
179 {
180         wxPaintDC dc (_panel);
181
182         if (!_display_frame || !_film) {
183                 dc.Clear ();
184                 return;
185         }
186
187         wxImage frame (_out_width, _out_height, _display_frame->data()[0], true);
188         wxBitmap frame_bitmap (frame);
189         dc.DrawBitmap (frame_bitmap, 0, 0);
190
191         if (_film->with_subtitles() && _display_sub) {
192                 wxImage sub (_display_sub->size().width, _display_sub->size().height, _display_sub->data()[0], _display_sub->alpha(), true);
193                 wxBitmap sub_bitmap (sub);
194                 dc.DrawBitmap (sub_bitmap, _display_sub_position.x, _display_sub_position.y);
195         }
196 }
197
198
199 void
200 FilmViewer::slider_moved (wxCommandEvent& ev)
201 {
202         if (!_film) {
203                 return;
204         }
205         
206         if (_film->length()) {
207                 seek_and_update (_slider->GetValue() * _film->length().get() / 4096);
208         }
209 }
210
211 void
212 FilmViewer::seek_and_update (SourceFrame f)
213 {
214         if (_decoders.video->seek (f)) {
215                 cout << "could not s&u to " << f << "\n";
216                 return;
217         }
218
219         get_frame ();
220         _panel->Refresh ();
221         _panel->Update ();
222 }
223
224 void
225 FilmViewer::panel_sized (wxSizeEvent& ev)
226 {
227         _panel_width = ev.GetSize().GetWidth();
228         _panel_height = ev.GetSize().GetHeight();
229         calculate_sizes ();
230         update_from_raw ();
231 }
232
233 void
234 FilmViewer::update_from_raw ()
235 {
236         if (!_raw_frame) {
237                 return;
238         }
239
240         raw_to_display ();
241         
242         _panel->Refresh ();
243         _panel->Update ();
244 }
245
246 void
247 FilmViewer::raw_to_display ()
248 {
249         if (!_raw_frame || !_out_width || !_out_height || !_film) {
250                 return;
251         }
252
253         /* Get a compacted image as we have to feed it to wxWidgets */
254         _display_frame = _raw_frame->scale_and_convert_to_rgb (Size (_out_width, _out_height), 0, _film->scaler(), false);
255
256         if (_raw_sub) {
257                 Rect tx = subtitle_transformed_area (
258                         float (_out_width) / _film->size().width,
259                         float (_out_height) / _film->size().height,
260                         _raw_sub->area(), _film->subtitle_offset(), _film->subtitle_scale()
261                         );
262                 
263                 _display_sub.reset (new RGBPlusAlphaImage (_raw_sub->image()->scale (tx.size(), _film->scaler(), false)));
264                 _display_sub_position = tx.position();
265         } else {
266                 _display_sub.reset ();
267         }
268 }       
269
270 void
271 FilmViewer::calculate_sizes ()
272 {
273         if (!_film) {
274                 return;
275         }
276         
277         float const panel_ratio = static_cast<float> (_panel_width) / _panel_height;
278         float const film_ratio = _film->format() ? _film->format()->ratio_as_float(_film) : 1.78;
279         if (panel_ratio < film_ratio) {
280                 /* panel is less widscreen than the film; clamp width */
281                 _out_width = _panel_width;
282                 _out_height = _out_width / film_ratio;
283         } else {
284                 /* panel is more widescreen than the film; clamp heignt */
285                 _out_height = _panel_height;
286                 _out_width = _out_height * film_ratio;
287         }
288 }
289
290 void
291 FilmViewer::play_clicked (wxCommandEvent &)
292 {
293         check_play_state ();
294 }
295
296 void
297 FilmViewer::check_play_state ()
298 {
299         if (!_film) {
300                 return;
301         }
302         
303         if (_play_button->GetValue()) {
304                 _timer.Start (1000 / _film->frames_per_second());
305         } else {
306                 _timer.Stop ();
307         }
308 }
309
310 void
311 FilmViewer::process_video (shared_ptr<Image> image, shared_ptr<Subtitle> sub)
312 {
313         _raw_frame = image;
314         _raw_sub = sub;
315
316         raw_to_display ();
317 }
318
319 void
320 FilmViewer::get_frame ()
321 {
322         /* Clear our raw frame in case we don't get a new one */
323         _raw_frame.reset ();
324         
325         try {
326                 shared_ptr<Image> last = _display_frame;
327                 while (last == _display_frame) {
328                         if (_decoders.video->pass ()) {
329                                 /* We didn't get a frame before the decoder gave up,
330                                    so clear our display frame.
331                                 */
332                                 _display_frame.reset ();
333                                 break;
334                         }
335                 }
336         } catch (DecodeError& e) {
337                 error_dialog (this, String::compose ("Could not decode video for view (%1)", e.what()));
338         }
339 }
340
341 void
342 FilmViewer::active_jobs_changed (bool a)
343 {
344         if (a) {
345                 list<shared_ptr<Job> > jobs = JobManager::instance()->get ();
346                 list<shared_ptr<Job> >::iterator i = jobs.begin ();             
347                 while (i != jobs.end() && boost::dynamic_pointer_cast<ExamineContentJob> (*i) == 0) {
348                         ++i;
349                 }
350                 
351                 if (i == jobs.end() || (*i)->finished()) {
352                         /* no examine content job running, so we're ok to use the viewer */
353                         a = false;
354                 }
355         }
356                         
357         _slider->Enable (!a);
358         _play_button->Enable (!a);
359 }
360