Missed update to private test repo version.
[dcpomatic.git] / src / lib / cinema.h
1 /*
2     Copyright (C) 2013-2016 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 /** @file  src/lib/cinema.h
22  *  @brief Cinema class.
23  */
24
25
26 #include <libcxml/cxml.h>
27 #include <memory>
28
29
30 namespace xmlpp {
31         class Element;
32 }
33
34 namespace dcpomatic {
35         class Screen;
36 }
37
38 /** @class Cinema
39  *  @brief A description of a Cinema for KDM generation.
40  *
41  *  This is a cinema name, some metadata and a list of
42  *  Screen objects.
43  */
44 class Cinema : public std::enable_shared_from_this<Cinema>
45 {
46 public:
47         Cinema (std::string const & name_, std::list<std::string> const & e, std::string notes_, int utc_offset_hour, int utc_offset_minute)
48                 : name (name_)
49                 , emails (e)
50                 , notes (notes_)
51                 , _utc_offset_hour (utc_offset_hour)
52                 , _utc_offset_minute (utc_offset_minute)
53         {}
54
55         explicit Cinema (cxml::ConstNodePtr);
56
57         void read_screens (cxml::ConstNodePtr);
58
59         void as_xml (xmlpp::Element *) const;
60
61         void add_screen (std::shared_ptr<dcpomatic::Screen>);
62         void remove_screen (std::shared_ptr<dcpomatic::Screen>);
63
64         void set_utc_offset_hour (int h);
65         void set_utc_offset_minute (int m);
66
67         std::string name;
68         std::list<std::string> emails;
69         std::string notes;
70
71         int utc_offset_hour () const {
72                 return _utc_offset_hour;
73         }
74
75         int utc_offset_minute () const {
76                 return _utc_offset_minute;
77         }
78
79         std::list<std::shared_ptr<dcpomatic::Screen>> screens () const {
80                 return _screens;
81         }
82
83 private:
84         std::list<std::shared_ptr<dcpomatic::Screen>> _screens;
85         /** Offset such that the equivalent time in UTC can be determined
86             by subtracting the offset from the local time.
87         */
88         int _utc_offset_hour;
89         /** Additional minutes to add to _utc_offset_hour if _utc_offset_hour is
90             positive, or to subtract if _utc_offset_hour is negative.
91         */
92         int _utc_offset_minute;
93 };