Remove unused RGBPlusAlphaImage; merge Image/SimpleImage.
[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/ratio.h"
29 #include "lib/util.h"
30 #include "lib/job_manager.h"
31 #include "lib/image.h"
32 #include "lib/scaler.h"
33 #include "lib/exceptions.h"
34 #include "lib/examine_content_job.h"
35 #include "lib/filter.h"
36 #include "lib/player.h"
37 #include "lib/video_content.h"
38 #include "lib/ffmpeg_content.h"
39 #include "lib/imagemagick_content.h"
40 #include "film_viewer.h"
41 #include "wx_util.h"
42 #include "video_decoder.h"
43
44 using std::string;
45 using std::pair;
46 using std::min;
47 using std::max;
48 using std::cout;
49 using std::list;
50 using boost::shared_ptr;
51 using boost::dynamic_pointer_cast;
52 using boost::weak_ptr;
53 using libdcp::Size;
54
55 FilmViewer::FilmViewer (shared_ptr<Film> f, wxWindow* p)
56         : wxPanel (p)
57         , _panel (new wxPanel (this))
58         , _slider (new wxSlider (this, wxID_ANY, 0, 0, 4096))
59         , _back_button (new wxButton (this, wxID_ANY, wxT("<")))
60         , _forward_button (new wxButton (this, wxID_ANY, wxT(">")))
61         , _frame_number (new wxStaticText (this, wxID_ANY, wxT("")))
62         , _timecode (new wxStaticText (this, wxID_ANY, wxT("")))
63         , _play_button (new wxToggleButton (this, wxID_ANY, _("Play")))
64         , _got_frame (false)
65 {
66 #ifndef __WXOSX__
67         _panel->SetDoubleBuffered (true);
68 #endif
69         
70         _panel->SetBackgroundStyle (wxBG_STYLE_PAINT);
71         
72         _v_sizer = new wxBoxSizer (wxVERTICAL);
73         SetSizer (_v_sizer);
74
75         _v_sizer->Add (_panel, 1, wxEXPAND);
76
77         wxBoxSizer* h_sizer = new wxBoxSizer (wxHORIZONTAL);
78
79         wxBoxSizer* time_sizer = new wxBoxSizer (wxVERTICAL);
80         time_sizer->Add (_frame_number, 0, wxEXPAND);
81         time_sizer->Add (_timecode, 0, wxEXPAND);
82
83         h_sizer->Add (_back_button, 0, wxALL, 2);
84         h_sizer->Add (time_sizer, 0, wxEXPAND);
85         h_sizer->Add (_forward_button, 0, wxALL, 2);
86         h_sizer->Add (_play_button, 0, wxEXPAND);
87         h_sizer->Add (_slider, 1, wxEXPAND);
88
89         _v_sizer->Add (h_sizer, 0, wxEXPAND | wxALL, 6);
90
91         _frame_number->SetMinSize (wxSize (84, -1));
92         _back_button->SetMinSize (wxSize (32, -1));
93         _forward_button->SetMinSize (wxSize (32, -1));
94
95         _panel->Connect (wxID_ANY, wxEVT_PAINT, wxPaintEventHandler (FilmViewer::paint_panel), 0, this);
96         _panel->Connect (wxID_ANY, wxEVT_SIZE, wxSizeEventHandler (FilmViewer::panel_sized), 0, this);
97         _slider->Connect (wxID_ANY, wxEVT_SCROLL_THUMBTRACK, wxScrollEventHandler (FilmViewer::slider_moved), 0, this);
98         _slider->Connect (wxID_ANY, wxEVT_SCROLL_PAGEUP, wxScrollEventHandler (FilmViewer::slider_moved), 0, this);
99         _slider->Connect (wxID_ANY, wxEVT_SCROLL_PAGEDOWN, wxScrollEventHandler (FilmViewer::slider_moved), 0, this);
100         _play_button->Connect (wxID_ANY, wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, wxCommandEventHandler (FilmViewer::play_clicked), 0, this);
101         _timer.Connect (wxID_ANY, wxEVT_TIMER, wxTimerEventHandler (FilmViewer::timer), 0, this);
102         _back_button->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (FilmViewer::back_clicked), 0, this);
103         _forward_button->Connect (wxID_ANY, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler (FilmViewer::forward_clicked), 0, this);
104
105         set_film (f);
106
107         JobManager::instance()->ActiveJobsChanged.connect (
108                 bind (&FilmViewer::active_jobs_changed, this, _1)
109                 );
110 }
111
112 void
113 FilmViewer::set_film (shared_ptr<Film> f)
114 {
115         if (_film == f) {
116                 return;
117         }
118
119         _film = f;
120
121         _frame.reset ();
122
123         if (!_film) {
124                 return;
125         }
126
127         _player = f->player ();
128         _player->disable_audio ();
129         _player->Video.connect (boost::bind (&FilmViewer::process_video, this, _1, _2, _3));
130         _player->Changed.connect (boost::bind (&FilmViewer::player_changed, this));
131
132         calculate_sizes ();
133         fetch_current_frame_again ();
134 }
135
136 void
137 FilmViewer::fetch_current_frame_again ()
138 {
139         if (!_player) {
140                 return;
141         }
142
143         Time const t = _film->video_frames_to_time (1);
144         
145         _player->seek (_player->video_position() - t * 1.5, true);
146         fetch_next_frame ();
147 }
148
149 void
150 FilmViewer::timer (wxTimerEvent &)
151 {
152         if (!_player) {
153                 return;
154         }
155         
156         fetch_next_frame ();
157
158         if (_film->length()) {
159                 int const new_slider_position = 4096 * _player->video_position() / _film->length();
160                 if (new_slider_position != _slider->GetValue()) {
161                         _slider->SetValue (new_slider_position);
162                 }
163         }
164 }
165
166
167 void
168 FilmViewer::paint_panel (wxPaintEvent &)
169 {
170         wxPaintDC dc (_panel);
171
172         if (!_frame || !_film || !_out_size.width || !_out_size.height) {
173                 dc.Clear ();
174                 return;
175         }
176
177         shared_ptr<Image> packed_frame (new Image (_frame, false));
178
179         wxImage frame (_out_size.width, _out_size.height, packed_frame->data()[0], true);
180         wxBitmap frame_bitmap (frame);
181         dc.DrawBitmap (frame_bitmap, 0, 0);
182
183         if (_out_size.width < _panel_size.width) {
184                 wxPen p (GetBackgroundColour ());
185                 wxBrush b (GetBackgroundColour ());
186                 dc.SetPen (p);
187                 dc.SetBrush (b);
188                 dc.DrawRectangle (_out_size.width, 0, _panel_size.width - _out_size.width, _panel_size.height);
189         }
190
191         if (_out_size.height < _panel_size.height) {
192                 wxPen p (GetBackgroundColour ());
193                 wxBrush b (GetBackgroundColour ());
194                 dc.SetPen (p);
195                 dc.SetBrush (b);
196                 dc.DrawRectangle (0, _out_size.height, _panel_size.width, _panel_size.height - _out_size.height);
197         }               
198 }
199
200
201 void
202 FilmViewer::slider_moved (wxScrollEvent &)
203 {
204         if (_film && _player) {
205                 _player->seek (_slider->GetValue() * _film->length() / 4096, false);
206                 fetch_next_frame ();
207         }
208 }
209
210 void
211 FilmViewer::panel_sized (wxSizeEvent& ev)
212 {
213         _panel_size.width = ev.GetSize().GetWidth();
214         _panel_size.height = ev.GetSize().GetHeight();
215         calculate_sizes ();
216         fetch_current_frame_again ();
217 }
218
219 void
220 FilmViewer::calculate_sizes ()
221 {
222         if (!_film || !_player) {
223                 return;
224         }
225
226         Ratio const * container = _film->container ();
227         
228         float const panel_ratio = static_cast<float> (_panel_size.width) / _panel_size.height;
229         float const film_ratio = container ? container->ratio () : 1.78;
230                         
231         if (panel_ratio < film_ratio) {
232                 /* panel is less widscreen than the film; clamp width */
233                 _out_size.width = _panel_size.width;
234                 _out_size.height = _out_size.width / film_ratio;
235         } else {
236                 /* panel is more widescreen than the film; clamp height */
237                 _out_size.height = _panel_size.height;
238                 _out_size.width = _out_size.height * film_ratio;
239         }
240
241         /* Catch silly values */
242         _out_size.width = max (64, _out_size.width);
243         _out_size.height = max (64, _out_size.height);
244
245         _player->set_video_container_size (_out_size);
246 }
247
248 void
249 FilmViewer::play_clicked (wxCommandEvent &)
250 {
251         check_play_state ();
252 }
253
254 void
255 FilmViewer::check_play_state ()
256 {
257         if (!_film || _film->dcp_video_frame_rate() == 0) {
258                 return;
259         }
260         
261         if (_play_button->GetValue()) {
262                 _timer.Start (1000 / _film->dcp_video_frame_rate());
263         } else {
264                 _timer.Stop ();
265         }
266 }
267
268 void
269 FilmViewer::process_video (shared_ptr<const Image> image, bool, Time t)
270 {
271         _frame = image;
272
273         _got_frame = true;
274
275         double const fps = _film->dcp_video_frame_rate ();
276         /* Count frame number from 1 ... not sure if this is the best idea */
277         _frame_number->SetLabel (wxString::Format (wxT("%d"), int (rint (t * fps / TIME_HZ)) + 1));
278         
279         double w = static_cast<double>(t) / TIME_HZ;
280         int const h = (w / 3600);
281         w -= h * 3600;
282         int const m = (w / 60);
283         w -= m * 60;
284         int const s = floor (w);
285         w -= s;
286         int const f = rint (w * fps);
287         _timecode->SetLabel (wxString::Format (wxT("%02d:%02d:%02d:%02d"), h, m, s, f));
288 }
289
290 /** Ask the player to emit its next frame, then update our display */
291 void
292 FilmViewer::fetch_next_frame ()
293 {
294         /* Clear our frame in case we don't get a new one */
295         _frame.reset ();
296
297         if (!_player) {
298                 return;
299         }
300
301         try {
302                 _got_frame = false;
303                 while (!_got_frame && !_player->pass ()) {}
304         } catch (DecodeError& e) {
305                 _play_button->SetValue (false);
306                 check_play_state ();
307                 error_dialog (this, wxString::Format (_("Could not decode video for view (%s)"), std_to_wx(e.what()).data()));
308         }
309
310         _panel->Refresh ();
311         _panel->Update ();
312 }
313
314 void
315 FilmViewer::active_jobs_changed (bool a)
316 {
317         if (a) {
318                 list<shared_ptr<Job> > jobs = JobManager::instance()->get ();
319                 list<shared_ptr<Job> >::iterator i = jobs.begin ();             
320                 while (i != jobs.end() && boost::dynamic_pointer_cast<ExamineContentJob> (*i) == 0) {
321                         ++i;
322                 }
323                 
324                 if (i == jobs.end() || (*i)->finished()) {
325                         /* no examine content job running, so we're ok to use the viewer */
326                         a = false;
327                 }
328         }
329                         
330         _slider->Enable (!a);
331         _play_button->Enable (!a);
332 }
333
334 void
335 FilmViewer::back_clicked (wxCommandEvent &)
336 {
337         if (!_player) {
338                 return;
339         }
340
341         Time const t = _film->video_frames_to_time (1);
342         
343         _player->seek (_player->video_position() - t * 2.5, true);
344         fetch_next_frame ();
345 }
346
347 void
348 FilmViewer::forward_clicked (wxCommandEvent &)
349 {
350         if (!_player) {
351                 return;
352         }
353
354         fetch_next_frame ();
355 }
356
357 void
358 FilmViewer::player_changed ()
359 {
360         calculate_sizes ();
361         fetch_current_frame_again ();
362 }