313ebdd4d2fc012bf30d0aae673ae29548cbd4bf
[libsub.git] / src / dcp / text.cc
1 /*
2     Copyright (C) 2012-2014 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 /** @file  src/text.cc
21  *  @brief Text class for parsing DCP subtitle XML.
22  */
23
24 #include "../xml.h"
25 #include "text.h"
26 #include "font.h"
27 #include <libcxml/cxml.h>
28 #include <boost/foreach.hpp>
29
30 using std::string;
31 using std::list;
32 using boost::shared_ptr;
33 using boost::optional;
34 using namespace sub;
35
36 /** Read a &lt;Text&gt; node from a subtitle XML file, noting its contents
37  *  in this object's member variables.
38  *  @param node Node to read.
39  */
40 dcp::Text::Text (boost::shared_ptr<const cxml::Node> node)
41         : v_align (CENTRE_OF_SCREEN)
42 {
43         optional<float> x = node->optional_number_attribute<float> ("VPosition");
44         if (!x) {
45                 x = node->number_attribute<float> ("Vposition");
46         }
47         v_position = x.get ();
48         
49         optional<string> v = node->optional_string_attribute ("VAlign");
50         if (!v) {
51                 v = node->optional_string_attribute ("Valign");
52         }
53         
54         if (v) {
55                 if (v.get() == "top") {
56                         v_align = TOP_OF_SCREEN;
57                 } else if (v.get() == "center") {
58                         v_align = CENTRE_OF_SCREEN;
59                 } else if (v.get() == "bottom") {
60                         v_align = BOTTOM_OF_SCREEN;
61                 } else {
62                         boost::throw_exception (DCPError ("unknown subtitle valign type"));
63                 }
64         }
65 }