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