2b4bd47179ae861c4bc5e68055a98a339cb47b7e
[dcpomatic.git] / src / wx / video_view.h
1 /*
2     Copyright (C) 2019 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_VIDEO_VIEW_H
22 #define DCPOMATIC_VIDEO_VIEW_H
23
24 #include "lib/dcpomatic_time.h"
25 #include "lib/timer.h"
26 #include "lib/types.h"
27 #include "lib/exception_store.h"
28 #include <boost/shared_ptr.hpp>
29 #include <boost/signals2.hpp>
30 #include <boost/thread.hpp>
31 #include <boost/noncopyable.hpp>
32
33 class Image;
34 class wxWindow;
35 class FilmViewer;
36 class Player;
37 class PlayerVideo;
38
39 class VideoView : public ExceptionStore, public boost::noncopyable
40 {
41 public:
42         VideoView (FilmViewer* viewer);
43         virtual ~VideoView () {}
44
45         /** @return the thing displaying the image */
46         virtual wxWindow* get () const = 0;
47         /** Re-make and display the image from the current _player_video */
48         virtual void update () = 0;
49         /** Called when playback starts */
50         virtual void start ();
51         /** Called when playback stops */
52         virtual void stop () {}
53         /** Get the next frame and display it; used after seek */
54         virtual bool display_next_frame (bool) = 0;
55
56         void clear ();
57         bool reset_metadata (boost::shared_ptr<const Film> film, dcp::Size player_video_container_size);
58
59         /** Emitted from the GUI thread when our display changes in size */
60         boost::signals2::signal<void()> Sized;
61
62
63         /* Accessors for FilmViewer */
64
65         int dropped () const {
66                 boost::mutex::scoped_lock lm (_mutex);
67                 return _dropped;
68         }
69
70         int errored () const {
71                 boost::mutex::scoped_lock lm (_mutex);
72                 return _errored;
73         }
74
75         int gets () const {
76                 boost::mutex::scoped_lock lm (_mutex);
77                 return _gets;
78         }
79
80         StateTimer const & state_timer () const {
81                 return _state_timer;
82         }
83
84         dcpomatic::DCPTime position () const {
85                 boost::mutex::scoped_lock lm (_mutex);
86                 return _player_video.second;
87         }
88
89
90         /* Setters for FilmViewer so it can tell us our state and
91          * we can then use (thread) safely.
92          */
93
94         void set_video_frame_rate (int r) {
95                 boost::mutex::scoped_lock lm (_mutex);
96                 _video_frame_rate = r;
97         }
98
99         void set_length (dcpomatic::DCPTime len) {
100                 boost::mutex::scoped_lock lm (_mutex);
101                 _length = len;
102         }
103
104         void set_eyes (Eyes eyes) {
105                 boost::mutex::scoped_lock lm (_mutex);
106                 _eyes = eyes;
107         }
108
109         void set_three_d (bool t) {
110                 boost::mutex::scoped_lock lm (_mutex);
111                 _three_d = t;
112         }
113
114 protected:
115         bool get_next_frame (bool non_blocking);
116         boost::optional<int> time_until_next_frame () const;
117         dcpomatic::DCPTime one_video_frame () const;
118
119         int video_frame_rate () const {
120                 boost::mutex::scoped_lock lm (_mutex);
121                 return _video_frame_rate;
122         }
123
124         dcpomatic::DCPTime length () const {
125                 boost::mutex::scoped_lock lm (_mutex);
126                 return _length;
127         }
128
129         std::pair<boost::shared_ptr<PlayerVideo>, dcpomatic::DCPTime> player_video () const {
130                 boost::mutex::scoped_lock lm (_mutex);
131                 return _player_video;
132         }
133
134         void add_dropped () {
135                 boost::mutex::scoped_lock lm (_mutex);
136                 ++_dropped;
137         }
138
139         void add_get () {
140                 boost::mutex::scoped_lock lm (_mutex);
141                 ++_gets;
142         }
143
144         FilmViewer* _viewer;
145
146         StateTimer _state_timer;
147
148 private:
149         /** Mutex protecting all the state in this class */
150         mutable boost::mutex _mutex;
151
152         std::pair<boost::shared_ptr<PlayerVideo>, dcpomatic::DCPTime> _player_video;
153         int _video_frame_rate;
154         /** length of the film we are playing, or 0 if there is none */
155         dcpomatic::DCPTime _length;
156         Eyes _eyes;
157         bool _three_d;
158
159         int _dropped;
160         int _errored;
161         int _gets;
162 };
163
164 #endif