d8b00047fbe2e3520ed2a91349e4cb130bc173db
[dcpomatic.git] / src / lib / empty.h
1 /*
2     Copyright (C) 2017 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 #include "playlist.h"
22 #include "dcpomatic_time.h"
23 #include "content_part.h"
24 #include <list>
25
26 struct empty_test1;
27 struct empty_test2;
28 struct player_subframe_test;
29
30 class Empty
31 {
32 public:
33         Empty () {}
34         Empty (ContentList content, DCPTime length, boost::function<boost::shared_ptr<ContentPart> (Content *)> part);
35
36         DCPTime position () const {
37                 return _position;
38         }
39
40         DCPTimePeriod period_at_position () const;
41
42         bool done () const;
43
44         void set_position (DCPTime amount);
45
46 private:
47         friend struct ::empty_test1;
48         friend struct ::empty_test2;
49         friend struct ::player_subframe_test;
50
51         std::list<DCPTimePeriod> _periods;
52         DCPTime _position;
53 };