Add overlap() for lists of time periods.
[dcpomatic.git] / src / lib / empty_video.cc
1 /*
2     Copyright (C) 2017-2021 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
22 #include "content.h"
23 #include "content_part.h"
24 #include "dcp_content.h"
25 #include "dcpomatic_time_coalesce.h"
26 #include "empty_video.h"
27 #include "film.h"
28 #include "piece.h"
29 #include "playlist.h"
30 #include "video_content.h"
31 #include <iostream>
32
33
34 using std::cout;
35 using std::dynamic_pointer_cast;
36 using std::function;
37 using std::list;
38 using std::shared_ptr;
39 using namespace dcpomatic;
40
41
42 EmptyVideo::EmptyVideo (shared_ptr<const Film> film, shared_ptr<const Playlist> playlist, DCPTime length)
43 {
44         list<DCPTimePeriod> full;
45         for (auto i: playlist->content()) {
46                 if (i->video && i->video->use() && i->can_be_played() && i->paths_valid()) {
47                         full.push_back (DCPTimePeriod(i->position(), i->end(film)));
48                 }
49         }
50
51         _periods = subtract (DCPTimePeriod(DCPTime(), length), coalesce(full));
52
53         if (!_periods.empty()) {
54                 _position = _periods.front().from;
55         }
56 }
57
58
59 void
60 EmptyVideo::set_position (DCPTime position)
61 {
62         _position = position;
63
64         for (auto i: _periods) {
65                 if (i.contains(_position)) {
66                         return;
67                 }
68         }
69
70         for (auto i: _periods) {
71                 if (i.from > _position) {
72                         _position = i.from;
73                         return;
74                 }
75         }
76 }
77
78
79 DCPTimePeriod
80 EmptyVideo::period_at_position () const
81 {
82         for (auto i: _periods) {
83                 if (i.contains(_position)) {
84                         return DCPTimePeriod (_position, i.to);
85                 }
86         }
87
88         DCPOMATIC_ASSERT (false);
89 }
90
91
92 bool
93 EmptyVideo::done () const
94 {
95         DCPTime latest;
96         for (auto i: _periods) {
97                 latest = max (latest, i.to);
98         }
99
100         return _position >= latest;
101 }