Make the preview respond to changes in subtitle line spacing.
[dcpomatic.git] / src / lib / player.h
1 /*
2     Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #ifndef DCPOMATIC_PLAYER_H
22 #define DCPOMATIC_PLAYER_H
23
24 #include "player_subtitles.h"
25 #include "film.h"
26 #include "content.h"
27 #include "position_image.h"
28 #include "piece.h"
29 #include <boost/shared_ptr.hpp>
30 #include <boost/enable_shared_from_this.hpp>
31 #include <list>
32
33 namespace dcp {
34         class ReelAsset;
35 }
36
37 class PlayerVideo;
38 class Playlist;
39 class Font;
40 class AudioBuffers;
41 class ReferencedReelAsset;
42
43 /** @class Player
44  *  @brief A class which can `play' a Playlist.
45  */
46 class Player : public boost::enable_shared_from_this<Player>, public boost::noncopyable
47 {
48 public:
49         Player (boost::shared_ptr<const Film>, boost::shared_ptr<const Playlist> playlist);
50
51         std::list<boost::shared_ptr<PlayerVideo> > get_video (DCPTime time, bool accurate);
52         boost::shared_ptr<AudioBuffers> get_audio (DCPTime time, DCPTime length, bool accurate);
53         PlayerSubtitles get_subtitles (DCPTime time, DCPTime length, bool starting, bool burnt, bool accurate);
54         std::list<boost::shared_ptr<Font> > get_subtitle_fonts ();
55         std::list<ReferencedReelAsset> get_reel_assets ();
56
57         void set_video_container_size (dcp::Size);
58         void set_ignore_video ();
59         void set_ignore_audio ();
60         void set_enable_subtitles (bool enable);
61         void set_always_burn_subtitles (bool burn);
62         void set_fast ();
63         void set_play_referenced ();
64
65         /** Emitted when something has changed such that if we went back and emitted
66          *  the last frame again it would look different.  This is not emitted after
67          *  a seek.
68          *
69          *  The parameter is true if these signals are currently likely to be frequent.
70          */
71         boost::signals2::signal<void (bool)> Changed;
72
73 private:
74         friend class PlayerWrapper;
75         friend class Piece;
76         friend struct player_overlaps_test;
77         friend struct player_time_calculation_test1;
78         friend struct player_time_calculation_test2;
79         friend struct player_time_calculation_test3;
80
81         void setup_pieces ();
82         void reset_pieces ();
83         void flush ();
84         void film_changed (Film::Property);
85         void playlist_changed ();
86         void playlist_content_changed (boost::weak_ptr<Content>, int, bool);
87         std::list<PositionImage> transform_image_subtitles (std::list<ImageSubtitle>) const;
88         void update_subtitle_from_text ();
89         Frame dcp_to_content_video (boost::shared_ptr<const Piece> piece, DCPTime t) const;
90         DCPTime content_video_to_dcp (boost::shared_ptr<const Piece> piece, Frame f) const;
91         Frame dcp_to_resampled_audio (boost::shared_ptr<const Piece> piece, DCPTime t) const;
92         ContentTime dcp_to_content_subtitle (boost::shared_ptr<const Piece> piece, DCPTime t) const;
93         DCPTime content_subtitle_to_dcp (boost::shared_ptr<const Piece> piece, ContentTime t) const;
94         boost::shared_ptr<PlayerVideo> black_player_video_frame (DCPTime) const;
95         std::list<boost::shared_ptr<Piece> > overlaps (DCPTime from, DCPTime to, boost::function<bool (Content *)> valid);
96
97         boost::shared_ptr<const Film> _film;
98         boost::shared_ptr<const Playlist> _playlist;
99
100         /** Our pieces are ready to go; if this is false the pieces must be (re-)created before they are used */
101         bool _have_valid_pieces;
102         std::list<boost::shared_ptr<Piece> > _pieces;
103
104         /** Size of the image in the DCP (e.g. 1990x1080 for flat) */
105         dcp::Size _video_container_size;
106         boost::shared_ptr<Image> _black_image;
107
108         /** true if the player should ignore all video; i.e. never produce any */
109         bool _ignore_video;
110         /** true if the player should ignore all audio; i.e. never produce any */
111         bool _ignore_audio;
112         /** true if the player should always burn subtitles into the video regardless
113             of content settings
114         */
115         bool _always_burn_subtitles;
116         /** true if we should try to be fast rather than high quality */
117         bool _fast;
118         /** true if we should `play' (i.e output) referenced DCP data (e.g. for preview) */
119         bool _play_referenced;
120
121         boost::shared_ptr<AudioProcessor> _audio_processor;
122
123         boost::signals2::scoped_connection _film_changed_connection;
124         boost::signals2::scoped_connection _playlist_changed_connection;
125         boost::signals2::scoped_connection _playlist_content_changed_connection;
126 };
127
128 #endif