Be more careful in a few places.
[dcpomatic.git] / src / wx / film_viewer.cc
index 8398b8162634c2ac80a9af5aa1770dd45dba8a33..4f99516f2a3e5d1ea6ea2194c5e8c7aed5e7983a 100644 (file)
 */
 
 /** @file  src/film_viewer.cc
- *  @brief A wx widget to view `thumbnails' of a Film.
+ *  @brief A wx widget to view a preview of a Film.
  */
 
 #include <iostream>
 #include <iomanip>
+#include <wx/tglbtn.h>
 #include "lib/film.h"
 #include "lib/format.h"
 #include "lib/util.h"
-#include "lib/thumbs_job.h"
 #include "lib/job_manager.h"
-#include "lib/film_state.h"
 #include "lib/options.h"
+#include "lib/subtitle.h"
+#include "lib/image.h"
+#include "lib/scaler.h"
 #include "film_viewer.h"
 #include "wx_util.h"
+#include "video_decoder.h"
 
-using namespace std;
-using namespace boost;
+using std::string;
+using std::pair;
+using std::max;
+using std::cout;
+using boost::shared_ptr;
 
-class ThumbPanel : public wxPanel
+FilmViewer::FilmViewer (shared_ptr<Film> f, wxWindow* p)
+       : wxPanel (p)
+       , _panel (new wxPanel (this))
+       , _slider (new wxSlider (this, wxID_ANY, 0, 0, 4096))
+       , _play_button (new wxToggleButton (this, wxID_ANY, wxT ("Play")))
+       , _out_width (0)
+       , _out_height (0)
+       , _panel_width (0)
+       , _panel_height (0)
 {
-public:
-       ThumbPanel (wxPanel* parent, Film* film)
-               : wxPanel (parent)
-               , _film (film)
-               , _image (0)
-               , _bitmap (0)
-       {
-       }
+       wxBoxSizer* v_sizer = new wxBoxSizer (wxVERTICAL);
+       SetSizer (v_sizer);
 
-       void paint_event (wxPaintEvent& ev)
-       {
-               if (_current_image != _pending_image) {
-                       delete _image;
-                       _image = new wxImage (std_to_wx (_pending_image));
-                       _current_image = _pending_image;
-                       setup ();
-               }
+       v_sizer->Add (_panel, 1, wxEXPAND);
 
-               if (_current_crop != _pending_crop) {
-                       _current_crop = _pending_crop;
-                       setup ();
-               }
+       wxBoxSizer* h_sizer = new wxBoxSizer (wxHORIZONTAL);
+       h_sizer->Add (_play_button, 0, wxEXPAND);
+       h_sizer->Add (_slider, 1, wxEXPAND);
 
-               wxPaintDC dc (this);
-               if (_bitmap) {
-                       dc.DrawBitmap (*_bitmap, 0, 0, false);
-               }
-       }
+       v_sizer->Add (h_sizer, 0, wxEXPAND);
 
-       void size_event (wxSizeEvent &)
-       {
-               if (!_image) {
-                       return;
-               }
+       _panel->Bind (wxEVT_PAINT, &FilmViewer::paint_panel, this);
+       _panel->Bind (wxEVT_SIZE, &FilmViewer::panel_sized, this);
+       _slider->Bind (wxEVT_SCROLL_THUMBTRACK, &FilmViewer::slider_moved, this);
+       _slider->Bind (wxEVT_SCROLL_PAGEUP, &FilmViewer::slider_moved, this);
+       _slider->Bind (wxEVT_SCROLL_PAGEDOWN, &FilmViewer::slider_moved, this);
+       _play_button->Bind (wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, &FilmViewer::play_clicked, this);
+       _timer.Bind (wxEVT_TIMER, &FilmViewer::timer, this);
 
-               setup ();
-               Refresh ();
-       }
+       set_film (_film);
+}
 
-       void set (string f)
+void
+FilmViewer::film_changed (Film::Property p)
+{
+       switch (p) {
+       case Film::FORMAT:
+               calculate_sizes ();
+               update_from_raw ();
+               break;
+       case Film::CONTENT:
        {
-               _pending_image = f;
-               Refresh ();
+               shared_ptr<DecodeOptions> o (new DecodeOptions);
+               o->decode_audio = false;
+               o->decode_subtitles = true;
+               o->video_sync = false;
+               _decoders = decoder_factory (_film, o, 0);
+               _decoders.video->Video.connect (bind (&FilmViewer::process_video, this, _1, _2));
+               _decoders.video->OutputChanged.connect (boost::bind (&FilmViewer::decoder_changed, this));
+               _decoders.video->set_subtitle_stream (_film->subtitle_stream());
+               break;
        }
-
-       void set_crop (Crop c)
-       {
-               _pending_crop = c;
-               Refresh ();
+       case Film::WITH_SUBTITLES:
+       case Film::SUBTITLE_OFFSET:
+       case Film::SUBTITLE_SCALE:
+               update_from_raw ();
+               break;
+       case Film::SUBTITLE_STREAM:
+               _decoders.video->set_subtitle_stream (_film->subtitle_stream ());
+               break;
+       default:
+               break;
        }
+}
 
-       void set_film (Film* f)
-       {
-               _film = f;
-               if (!_film) {
-                       clear ();
-                       Refresh ();
-               } else {
-                       setup ();
-                       Refresh ();
-               }
+void
+FilmViewer::set_film (shared_ptr<Film> f)
+{
+       if (_film == f) {
+               return;
        }
+       
+       _film = f;
 
-       void clear ()
-       {
-               delete _bitmap;
-               _bitmap = 0;
-               delete _image;
-               _image = 0;
+       if (!_film) {
+               return;
        }
 
-       void refresh ()
-       {
-               setup ();
-               Refresh ();
-       }
+       _film->Changed.connect (boost::bind (&FilmViewer::film_changed, this, _1));
 
-       DECLARE_EVENT_TABLE ();
+       film_changed (Film::CONTENT);
+       film_changed (Film::CROP);
+       film_changed (Film::FORMAT);
+       film_changed (Film::WITH_SUBTITLES);
+       film_changed (Film::SUBTITLE_OFFSET);
+       film_changed (Film::SUBTITLE_SCALE);
+       film_changed (Film::SUBTITLE_STREAM);
+}
 
-private:
+void
+FilmViewer::decoder_changed ()
+{
+       seek_and_update (_decoders.video->last_source_frame ());
+}
 
-       void setup ()
-       {
-               if (!_film || !_image) {
-                       return;
-               }
-               
-               int vw, vh;
-               GetSize (&vw, &vh);
-
-               float const target = _film->format() ? _film->format()->ratio_as_float () : 1.78;
-
-               _cropped_image = _image->GetSubImage (
-                       wxRect (
-                               _current_crop.left,
-                               _current_crop.top,
-                               _image->GetWidth() - (_current_crop.left + _current_crop.right),
-                               _image->GetHeight() - (_current_crop.top + _current_crop.bottom)
-                               )
-                       );
+void
+FilmViewer::timer (wxTimerEvent& ev)
+{
+       if (!_film) {
+               return;
+       }
+       
+       _panel->Refresh ();
+       _panel->Update ();
 
-               if ((float (vw) / vh) > target) {
-                       /* view is longer (horizontally) than the ratio; fit height */
-                       _cropped_image.Rescale (vh * target, vh, wxIMAGE_QUALITY_HIGH);
-               } else {
-                       /* view is shorter (horizontally) than the ratio; fit width */
-                       _cropped_image.Rescale (vw, vw / target, wxIMAGE_QUALITY_HIGH);
-               }
+       get_frame ();
 
-               delete _bitmap;
-               _bitmap = new wxBitmap (_cropped_image);
+       if (_film->length()) {
+               int const new_slider_position = 4096 * _decoders.video->last_source_frame() / _film->length().get();
+               if (new_slider_position != _slider->GetValue()) {
+                       _slider->SetValue (new_slider_position);
+               }
        }
+}
 
-       Film* _film;
-       wxImage* _image;
-       std::string _current_image;
-       std::string _pending_image;
-       wxImage _cropped_image;
-       wxBitmap* _bitmap;
-       Crop _current_crop;
-       Crop _pending_crop;
-};
-
-BEGIN_EVENT_TABLE (ThumbPanel, wxPanel)
-EVT_PAINT (ThumbPanel::paint_event)
-EVT_SIZE (ThumbPanel::size_event)
-END_EVENT_TABLE ()
-
-FilmViewer::FilmViewer (Film* f, wxWindow* p)
-       : wxPanel (p)
-       , _film (f)
+
+void
+FilmViewer::paint_panel (wxPaintEvent& ev)
 {
-       _sizer = new wxBoxSizer (wxVERTICAL);
-       SetSizer (_sizer);
-       
-       _thumb_panel = new ThumbPanel (this, f);
-       _sizer->Add (_thumb_panel, 1, wxEXPAND);
+       wxPaintDC dc (_panel);
 
-       int const max = f ? f->num_thumbs() - 1 : 0;
-       _slider = new wxSlider (this, wxID_ANY, 0, 0, max);
-       _sizer->Add (_slider, 0, wxEXPAND | wxLEFT | wxRIGHT);
-       set_thumbnail (0);
+       if (!_display_frame || !_film) {
+               return;
+       }
 
-       _slider->Connect (wxID_ANY, wxEVT_COMMAND_SLIDER_UPDATED, wxCommandEventHandler (FilmViewer::slider_changed), 0, this);
+       wxImage frame (_out_width, _out_height, _display_frame->data()[0], true);
+       wxBitmap frame_bitmap (frame);
+       dc.DrawBitmap (frame_bitmap, 0, 0);
 
-       set_film (_film);
+       if (_film->with_subtitles() && _display_sub) {
+               wxImage sub (_display_sub->size().width, _display_sub->size().height, _display_sub->data()[0], _display_sub->alpha(), true);
+               wxBitmap sub_bitmap (sub);
+               dc.DrawBitmap (sub_bitmap, _display_sub_position.x, _display_sub_position.y);
+       }
+}
+
+
+void
+FilmViewer::slider_moved (wxCommandEvent& ev)
+{
+       if (!_film) {
+               return;
+       }
+       
+       if (_film->length()) {
+               seek_and_update (_slider->GetValue() * _film->length().get() / 4096);
+       }
 }
 
 void
-FilmViewer::set_thumbnail (int n)
+FilmViewer::seek_and_update (SourceFrame f)
 {
-       if (_film == 0 || _film->num_thumbs() <= n) {
+       if (_decoders.video->seek (f)) {
                return;
        }
 
-       _thumb_panel->set (_film->thumb_file(n));
+       get_frame ();
+       _panel->Refresh ();
+       _panel->Update ();
 }
 
 void
-FilmViewer::slider_changed (wxCommandEvent &)
+FilmViewer::panel_sized (wxSizeEvent& ev)
 {
-       set_thumbnail (_slider->GetValue ());
+       _panel_width = ev.GetSize().GetWidth();
+       _panel_height = ev.GetSize().GetHeight();
+       calculate_sizes ();
+       update_from_raw ();
 }
 
 void
-FilmViewer::film_changed (Film::Property p)
+FilmViewer::update_from_raw ()
 {
-       if (p == Film::CROP) {
-               _thumb_panel->set_crop (_film->crop ());
-       } else if (p == Film::THUMBS) {
-               if (_film && _film->num_thumbs() > 1) {
-                       _slider->SetRange (0, _film->num_thumbs () - 1);
-               } else {
-                       _thumb_panel->clear ();
-                       _slider->SetRange (0, 1);
-               }
-               
-               _slider->SetValue (0);
-               set_thumbnail (0);
-       } else if (p == Film::FORMAT) {
-               _thumb_panel->refresh ();
-       } else if (p == Film::CONTENT) {
-               setup_visibility ();
-               _film->examine_content ();
-               update_thumbs ();
+       if (!_raw_frame) {
+               return;
        }
+
+       raw_to_display ();
+       
+       _panel->Refresh ();
+       _panel->Update ();
 }
 
 void
-FilmViewer::set_film (Film* f)
+FilmViewer::raw_to_display ()
 {
-       _film = f;
-       _thumb_panel->set_film (_film);
+       if (!_out_width || !_out_height || !_film) {
+               return;
+       }
+       
+       _display_frame = _raw_frame->scale_and_convert_to_rgb (Size (_out_width, _out_height), 0, _film->scaler());
+
+       if (_raw_sub) {
+               Rect tx = subtitle_transformed_area (
+                       float (_out_width) / _film->size().width,
+                       float (_out_height) / _film->size().height,
+                       _raw_sub->area(), _film->subtitle_offset(), _film->subtitle_scale()
+                       );
+               
+               _display_sub.reset (new RGBPlusAlphaImage (_raw_sub->image()->scale (tx.size(), _film->scaler ())));
+               _display_sub_position = tx.position();
+       } else {
+               _display_sub.reset ();
+       }
+}      
 
+void
+FilmViewer::calculate_sizes ()
+{
        if (!_film) {
                return;
        }
+       
+       float const panel_ratio = static_cast<float> (_panel_width) / _panel_height;
+       float const film_ratio = _film->format() ? _film->format()->ratio_as_float(_film) : 1.78;
+       if (panel_ratio < film_ratio) {
+               /* panel is less widscreen than the film; clamp width */
+               _out_width = _panel_width;
+               _out_height = _out_width / film_ratio;
+       } else {
+               /* panel is more widescreen than the film; clamp heignt */
+               _out_height = _panel_height;
+               _out_width = _out_height * film_ratio;
+       }
+}
 
-       _film->Changed.connect (sigc::mem_fun (*this, &FilmViewer::film_changed));
-       film_changed (Film::THUMBS);
-       _thumb_panel->refresh ();
-       setup_visibility ();
+void
+FilmViewer::play_clicked (wxCommandEvent &)
+{
+       check_play_state ();
 }
 
 void
-FilmViewer::update_thumbs ()
+FilmViewer::check_play_state ()
 {
        if (!_film) {
                return;
        }
+       
+       if (_play_button->GetValue()) {
+               _timer.Start (1000 / _film->frames_per_second());
+       } else {
+               _timer.Stop ();
+       }
+}
 
-       _film->update_thumbs_pre_gui ();
+void
+FilmViewer::process_video (shared_ptr<Image> image, shared_ptr<Subtitle> sub)
+{
+       _raw_frame = image;
+       _raw_sub = sub;
 
-       shared_ptr<const FilmState> s = _film->state_copy ();
-       shared_ptr<Options> o (new Options (s->dir ("thumbs"), ".tiff", ""));
-       o->out_size = _film->size ();
-       o->apply_crop = false;
-       o->decode_audio = false;
-       o->decode_video_frequency = 128;
-       
-       shared_ptr<Job> j (new ThumbsJob (s, o, _film->log ()));
-       j->Finished.connect (sigc::mem_fun (_film, &Film::update_thumbs_post_gui));
-       JobManager::instance()->add (j);
+       raw_to_display ();
 }
 
 void
-FilmViewer::setup_visibility ()
+FilmViewer::get_frame ()
 {
-       if (!_film) {
+       if (!_out_width || !_out_height) {
                return;
        }
-
-       ContentType const c = _film->content_type ();
-       _slider->Show (c == VIDEO);
+       
+       shared_ptr<Image> last = _display_frame;
+       while (last == _display_frame) {
+               _decoders.video->pass ();
+       }
 }