1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
/*
Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <vector>
#include <cstdio>
#include <iomanip>
#include <boost/lexical_cast.hpp>
#include <boost/algorithm/string.hpp>
#include "types.h"
#include "exceptions.h"
#include "raw_convert.h"
using namespace std;
using namespace libdcp;
using namespace boost;
Fraction::Fraction (string s)
{
vector<string> b;
split (b, s, is_any_of (" "));
if (b.size() != 2) {
boost::throw_exception (XMLError ("malformed fraction " + s + " in XML node"));
}
numerator = raw_convert<int> (b[0]);
denominator = raw_convert<int> (b[1]);
}
bool
libdcp::operator== (Fraction const & a, Fraction const & b)
{
return (a.numerator == b.numerator && a.denominator == b.denominator);
}
bool
libdcp::operator!= (Fraction const & a, Fraction const & b)
{
return (a.numerator != b.numerator || a.denominator != b.denominator);
}
Color::Color ()
: r (0)
, g (0)
, b (0)
{
}
Color::Color (int r_, int g_, int b_)
: r (r_)
, g (g_)
, b (b_)
{
}
/** Construct a Color from an ARGB hex string; the alpha value is ignored.
* @param argb_hex A string of the form AARRGGBB, where e.g. RR is a two-character
* hex value.
*/
Color::Color (string argb_hex)
{
int alpha;
if (sscanf (argb_hex.c_str(), "%2x%2x%2x%2x", &alpha, &r, &g, &b) < 4) {
boost::throw_exception (XMLError ("could not parse colour string"));
}
}
/** @return An ARGB string of the form AARRGGBB, where e.g. RR is a two-character
* hex value. The alpha value will always be FF (ie 255; maximum alpha).
*/
string
Color::to_argb_string () const
{
stringstream s;
s << "FF";
s << hex
<< setw(2) << setfill('0') << r
<< setw(2) << setfill('0') << g
<< setw(2) << setfill('0') << b;
string t = s.str();
to_upper (t);
return t;
}
/** operator== for Colors.
* @param a First color to compare.
* @param b Second color to compare.
*/
bool
libdcp::operator== (Color const & a, Color const & b)
{
return (a.r == b.r && a.g == b.g && a.b == b.b);
}
/** operator!= for Colors.
* @param a First color to compare.
* @param b Second color to compare.
*/
bool
libdcp::operator!= (Color const & a, Color const & b)
{
return !(a == b);
}
ostream &
libdcp::operator<< (ostream& s, Color const & c)
{
s << "(" << c.r << ", " << c.g << ", " << c.b << ")";
return s;
}
string
libdcp::effect_to_string (Effect e)
{
switch (e) {
case NONE:
return "none";
case BORDER:
return "border";
case SHADOW:
return "shadow";
}
boost::throw_exception (MiscError ("unknown effect type"));
}
Effect
libdcp::string_to_effect (string s)
{
if (s == "none") {
return NONE;
} else if (s == "border") {
return BORDER;
} else if (s == "shadow") {
return SHADOW;
}
boost::throw_exception (DCPReadError ("unknown subtitle effect type"));
}
string
libdcp::valign_to_string (VAlign v)
{
switch (v) {
case VERTICAL_TOP:
return "top";
case VERTICAL_CENTER:
return "center";
case VERTICAL_BOTTOM:
return "bottom";
}
boost::throw_exception (MiscError ("unknown valign type"));
}
VAlign
libdcp::string_to_valign (string s)
{
if (s == "top") {
return VERTICAL_TOP;
} else if (s == "center") {
return VERTICAL_CENTER;
} else if (s == "bottom") {
return VERTICAL_BOTTOM;
}
boost::throw_exception (DCPReadError ("unknown subtitle valign type"));
}
string
libdcp::halign_to_string (HAlign h)
{
switch (h) {
case HORIZONTAL_LEFT:
return "left";
case HORIZONTAL_CENTER:
return "center";
case HORIZONTAL_RIGHT:
return "right";
}
boost::throw_exception (MiscError ("unknown halign type"));
}
HAlign
libdcp::string_to_halign (string s)
{
if (s == "left") {
return HORIZONTAL_LEFT;
} else if (s == "center") {
return HORIZONTAL_CENTER;
} else if (s == "right") {
return HORIZONTAL_RIGHT;
}
boost::throw_exception (DCPReadError ("unknown subtitle halign type"));
}
|