e9df66cf71e339e49a31bbc5c78e9b5c9cc9664a
[dcpomatic.git] / src / lib / font.cc
1 /*
2     Copyright (C) 2014-2015 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 #include "font.h"
21 #include "dcpomatic_assert.h"
22 #include <libxml++/libxml++.h>
23 #include <boost/foreach.hpp>
24
25 using std::string;
26
27 static char const * names[] = {
28         "Normal",
29         "Italic",
30         "Bold"
31 };
32
33 Font::Font (cxml::NodePtr node)
34         : _id (node->string_child ("Id"))
35 {
36         DCPOMATIC_ASSERT (FontFiles::VARIANTS == 3);
37
38         BOOST_FOREACH (cxml::NodePtr i, node->node_children ("File")) {
39                 string variant = i->optional_string_attribute("Variant").get_value_or ("Normal");
40                 for (int j = 0; j < FontFiles::VARIANTS; ++j) {
41                         if (variant == names[j]) {
42                                 _files.set (static_cast<FontFiles::Variant>(j), i->content());
43                         }
44                 }
45         }
46 }
47
48 void
49 Font::as_xml (xmlpp::Node* node)
50 {
51         DCPOMATIC_ASSERT (FontFiles::VARIANTS == 3);
52
53         node->add_child("Id")->add_child_text (_id);
54         for (int i = 0; i < FontFiles::VARIANTS; ++i) {
55                 if (_files.get(static_cast<FontFiles::Variant>(i))) {
56                         xmlpp::Element* e = node->add_child ("File");
57                         e->set_attribute ("Variant", names[i]);
58                         e->add_child_text (_files.get(static_cast<FontFiles::Variant>(i)).get().string ());
59                 }
60         }
61 }
62
63
64 bool
65 operator== (Font const & a, Font const & b)
66 {
67         if (a.id() != b.id()) {
68                 return false;
69         }
70
71         for (int i = 0; i < FontFiles::VARIANTS; ++i) {
72                 if (a.file(static_cast<FontFiles::Variant>(i)) != b.file(static_cast<FontFiles::Variant>(i))) {
73                         return false;
74                 }
75         }
76
77         return true;
78 }
79
80 bool
81 operator!= (Font const & a, Font const & b)
82 {
83         return !(a == b);
84 }