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