3f9869b47337a98d9a03a66d5bc81e16060e4f3a
[libdcp.git] / src / parse / subtitle.cc
1 /*
2     Copyright (C) 2012-2013 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 <boost/shared_ptr.hpp>
21 #include <boost/optional.hpp>
22 #include "subtitle.h"
23 #include "../types.h"
24
25 using std::string;
26 using std::list;
27 using boost::shared_ptr;
28 using boost::optional;
29 using boost::lexical_cast;
30 using namespace dcp;
31 using namespace dcp::parse;
32
33 Font::Font (shared_ptr<const cxml::Node> node)
34 {
35         text = node->content ();
36         
37         id = node->optional_string_attribute ("Id").get_value_or ("");
38         size = node->optional_number_attribute<int64_t> ("Size").get_value_or (0);
39         italic = node->optional_bool_attribute ("Italic");
40         optional<string> c = node->optional_string_attribute ("Color");
41         if (c) {
42                 color = Color (c.get ());
43         }
44         optional<string> const e = node->optional_string_attribute ("Effect");
45         if (e) {
46                 effect = string_to_effect (e.get ());
47         }
48         c = node->optional_string_attribute ( "EffectColor");
49         if (c) {
50                 effect_color = Color (c.get ());
51         }
52         subtitle_nodes = type_children<Subtitle> (node, "Subtitle");
53         font_nodes = type_children<Font> (node, "Font");
54         text_nodes = type_children<Text> (node, "Text");
55 }
56
57 Font::Font (list<shared_ptr<Font> > const & font_nodes)
58         : size (0)
59         , italic (false)
60         , color ("FFFFFFFF")
61         , effect_color ("FFFFFFFF")
62 {
63         for (list<shared_ptr<Font> >::const_iterator i = font_nodes.begin(); i != font_nodes.end(); ++i) {
64                 if (!(*i)->id.empty ()) {
65                         id = (*i)->id;
66                 }
67                 if ((*i)->size != 0) {
68                         size = (*i)->size;
69                 }
70                 if ((*i)->italic) {
71                         italic = (*i)->italic.get ();
72                 }
73                 if ((*i)->color) {
74                         color = (*i)->color.get ();
75                 }
76                 if ((*i)->effect) {
77                         effect = (*i)->effect.get ();
78                 }
79                 if ((*i)->effect_color) {
80                         effect_color = (*i)->effect_color.get ();
81                 }
82         }
83 }
84
85 LoadFont::LoadFont (shared_ptr<const cxml::Node> node)
86 {
87         id = node->string_attribute ("Id");
88         uri = node->string_attribute ("URI");
89 }
90         
91
92 Subtitle::Subtitle (shared_ptr<const cxml::Node> node)
93 {
94         in = Time (node->string_attribute ("TimeIn"));
95         out = Time (node->string_attribute ("TimeOut"));
96         font_nodes = type_children<Font> (node, "Font");
97         text_nodes = type_children<Text> (node, "Text");
98         fade_up_time = fade_time (node, "FadeUpTime");
99         fade_down_time = fade_time (node, "FadeDownTime");
100 }
101
102 Time
103 Subtitle::fade_time (shared_ptr<const cxml::Node> node, string name)
104 {
105         string const u = node->optional_string_attribute (name).get_value_or ("");
106         Time t;
107         
108         if (u.empty ()) {
109                 t = Time (0, 0, 0, 20);
110         } else if (u.find (":") != string::npos) {
111                 t = Time (u);
112         } else {
113                 t = Time (0, 0, 0, lexical_cast<int> (u));
114         }
115
116         if (t > Time (0, 0, 8, 0)) {
117                 t = Time (0, 0, 8, 0);
118         }
119
120         return t;
121 }
122
123 Text::Text (shared_ptr<const cxml::Node> node)
124         : v_align (CENTER)
125 {
126         text = node->content ();
127         v_position = node->number_attribute<float> ("VPosition");
128         optional<string> v = node->optional_string_attribute ("VAlign");
129         if (v) {
130                 v_align = string_to_valign (v.get ());
131         }
132
133         font_nodes = type_children<Font> (node, "Font");
134 }
135