More player debugging for butler video-full states.
[dcpomatic.git] / src / lib / cinema.cc
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 #include "cinema.h"
22 #include "screen.h"
23 #include "dcpomatic_assert.h"
24 #include <libcxml/cxml.h>
25 #include <dcp/raw_convert.h>
26 #include <libxml++/libxml++.h>
27 #include <boost/foreach.hpp>
28 #include <iostream>
29
30 using std::list;
31 using std::string;
32 using boost::shared_ptr;
33 using dcp::raw_convert;
34
35 Cinema::Cinema (cxml::ConstNodePtr node)
36         : name (node->string_child ("Name"))
37         , notes (node->optional_string_child("Notes").get_value_or(""))
38 {
39         BOOST_FOREACH (cxml::ConstNodePtr i, node->node_children("Email")) {
40                 emails.push_back (i->content ());
41         }
42
43         if (node->optional_number_child<int>("UTCOffset")) {
44                 _utc_offset_hour = node->number_child<int>("UTCOffset");
45         } else {
46                 _utc_offset_hour = node->optional_number_child<int>("UTCOffsetHour").get_value_or (0);
47         }
48
49         _utc_offset_minute = node->optional_number_child<int>("UTCOffsetMinute").get_value_or (0);
50 }
51
52 /* This is necessary so that we can use shared_from_this in add_screen (which cannot be done from
53    a constructor)
54 */
55 void
56 Cinema::read_screens (cxml::ConstNodePtr node)
57 {
58         list<cxml::NodePtr> s = node->node_children ("Screen");
59         for (list<cxml::NodePtr>::iterator i = s.begin(); i != s.end(); ++i) {
60                 add_screen (shared_ptr<Screen> (new Screen (*i)));
61         }
62 }
63
64 void
65 Cinema::as_xml (xmlpp::Element* parent) const
66 {
67         parent->add_child("Name")->add_child_text (name);
68
69         BOOST_FOREACH (string i, emails) {
70                 parent->add_child("Email")->add_child_text (i);
71         }
72
73         parent->add_child("Notes")->add_child_text (notes);
74
75         parent->add_child("UTCOffsetHour")->add_child_text (raw_convert<string> (_utc_offset_hour));
76         parent->add_child("UTCOffsetMinute")->add_child_text (raw_convert<string> (_utc_offset_minute));
77
78         BOOST_FOREACH (shared_ptr<Screen> i, _screens) {
79                 i->as_xml (parent->add_child ("Screen"));
80         }
81 }
82
83 void
84 Cinema::add_screen (shared_ptr<Screen> s)
85 {
86         s->cinema = shared_from_this ();
87         _screens.push_back (s);
88 }
89
90 void
91 Cinema::remove_screen (shared_ptr<Screen> s)
92 {
93         _screens.remove (s);
94 }
95
96 void
97 Cinema::set_utc_offset_hour (int h)
98 {
99         DCPOMATIC_ASSERT (h >= -11 && h <= 12);
100         _utc_offset_hour = h;
101 }
102
103 void
104 Cinema::set_utc_offset_minute (int m)
105 {
106         DCPOMATIC_ASSERT (m >= 0 && m <= 59);
107         _utc_offset_minute = m;
108 }