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