5d857bc10e17468faa814c8664051ee69e5b06fb
[libdcp.git] / src / font_node.cc
1 /*
2     Copyright (C) 2012-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 "types.h"
21 #include "raw_convert.h"
22 #include "font_node.h"
23 #include "xml.h"
24 #include "text_node.h"
25 #include <libcxml/cxml.h>
26 #include <boost/foreach.hpp>
27
28 using std::string;
29 using std::list;
30 using boost::shared_ptr;
31 using boost::optional;
32 using namespace dcp;
33
34 FontNode::FontNode (cxml::ConstNodePtr node, int tcr, string font_id_attribute)
35 {
36         text = node->content ();
37
38         id = node->optional_string_attribute (font_id_attribute);
39         size = node->optional_number_attribute<int64_t> ("Size").get_value_or (0);
40         aspect_adjust = node->optional_number_attribute<float> ("AspectAdjust");
41         italic = node->optional_bool_attribute ("Italic");
42         optional<string> c = node->optional_string_attribute ("Color");
43         if (c) {
44                 colour = Colour (c.get ());
45         }
46         optional<string> const e = node->optional_string_attribute ("Effect");
47         if (e) {
48                 effect = string_to_effect (e.get ());
49         }
50         c = node->optional_string_attribute ("EffectColor");
51         if (c) {
52                 effect_colour = Colour (c.get ());
53         }
54
55         list<cxml::NodePtr> s = node->node_children ("Subtitle");
56         BOOST_FOREACH (cxml::NodePtr& i, s) {
57                 subtitle_nodes.push_back (shared_ptr<SubtitleNode> (new SubtitleNode (i, tcr, font_id_attribute)));
58         }
59
60         list<cxml::NodePtr> f = node->node_children ("Font");
61         BOOST_FOREACH (cxml::NodePtr& i, f) {
62                 font_nodes.push_back (shared_ptr<FontNode> (new FontNode (i, tcr, font_id_attribute)));
63         }
64
65         list<cxml::NodePtr> t = node->node_children ("Text");
66         BOOST_FOREACH (cxml::NodePtr& i, t) {
67                 text_nodes.push_back (shared_ptr<TextNode> (new TextNode (i, tcr, font_id_attribute)));
68         }
69 }
70
71 FontNode::FontNode (std::list<boost::shared_ptr<FontNode> > const & font_nodes)
72         : size (0)
73         , italic (false)
74         , colour ("FFFFFFFF")
75         , effect_colour ("FFFFFFFF")
76 {
77         for (list<shared_ptr<FontNode> >::const_iterator i = font_nodes.begin(); i != font_nodes.end(); ++i) {
78                 if ((*i)->id) {
79                         id = (*i)->id;
80                 }
81                 if ((*i)->size != 0) {
82                         size = (*i)->size;
83                 }
84                 if ((*i)->aspect_adjust) {
85                         aspect_adjust = (*i)->aspect_adjust.get ();
86                 }
87                 if ((*i)->italic) {
88                         italic = (*i)->italic.get ();
89                 }
90                 if ((*i)->colour) {
91                         colour = (*i)->colour.get ();
92                 }
93                 if ((*i)->effect) {
94                         effect = (*i)->effect.get ();
95                 }
96                 if ((*i)->effect_colour) {
97                         effect_colour = (*i)->effect_colour.get ();
98                 }
99         }
100 }