Fix merge.
[dcpomatic.git] / src / lib / cinema.h
1 /*
2     Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/lib/cinema.h
21  *  @brief Cinema class.
22  */
23
24 #include <libcxml/cxml.h>
25 #include <boost/enable_shared_from_this.hpp>
26
27 namespace xmlpp {
28         class Element;
29 }
30
31 class Screen;
32
33 /** @class Cinema
34  *  @brief A description of a Cinema for KDM generation.
35  *
36  *  This is a cinema name, some metadata and a list of
37  *  Screen objects.
38  */
39 class Cinema : public boost::enable_shared_from_this<Cinema>
40 {
41 public:
42         Cinema (std::string const & n, std::list<std::string> const & e, int utc_offset)
43                 : name (n)
44                 , emails (e)
45                 , _utc_offset (utc_offset)
46         {}
47
48         Cinema (cxml::ConstNodePtr);
49
50         void read_screens (cxml::ConstNodePtr);
51
52         void as_xml (xmlpp::Element *) const;
53
54         void add_screen (boost::shared_ptr<Screen>);
55         void remove_screen (boost::shared_ptr<Screen>);
56
57         void set_utc_offset (int o);
58
59         std::string name;
60         std::list<std::string> emails;
61         int utc_offset () const {
62                 return _utc_offset;
63         }
64         std::list<boost::shared_ptr<Screen> > screens () const {
65                 return _screens;
66         }
67
68 private:
69         std::list<boost::shared_ptr<Screen> > _screens;
70         /** Offset such that the equivalent time in UTC can be determined
71             by subtracting the offset from the local time.
72         */
73         int _utc_offset;
74 };