X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Ftypes.cc;h=c519a03d8a21e6c0d8cc2501f5b49e945421b843;hb=edf35a7acb05289dc024733efd6e13205def5174;hp=0ecf7a16439c0b1bed10ee6f7d8f4e42c2bee202;hpb=2e93ca3670e5581b5523f60130b38594de10d6c3;p=libdcp.git diff --git a/src/types.cc b/src/types.cc index 0ecf7a16..c519a03d 100644 --- a/src/types.cc +++ b/src/types.cc @@ -17,9 +17,9 @@ */ +#include "raw_convert.h" #include "types.h" #include "exceptions.h" -#include #include #include #include @@ -39,8 +39,8 @@ Fraction::Fraction (string s) if (b.size() != 2) { boost::throw_exception (XMLError ("malformed fraction " + s + " in XML node")); } - numerator = lexical_cast (b[0]); - denominator = lexical_cast (b[1]); + numerator = raw_convert (b[0]); + denominator = raw_convert (b[1]); } bool @@ -55,8 +55,8 @@ dcp::operator!= (Fraction const & a, Fraction const & b) return (a.numerator != b.numerator || a.denominator != b.denominator); } -/** Construct a Color, initialising it to black. */ -Color::Color () +/** Construct a Colour, initialising it to black. */ +Colour::Colour () : r (0) , g (0) , b (0) @@ -64,10 +64,10 @@ Color::Color () } -/** Construct a Color from R, G and B. The values run between +/** Construct a Colour from R, G and B. The values run between * 0 and 255. */ -Color::Color (int r_, int g_, int b_) +Colour::Colour (int r_, int g_, int b_) : r (r_) , g (g_) , b (b_) @@ -75,14 +75,14 @@ Color::Color (int r_, int g_, int b_) } -/** Construct a Color from an ARGB hex string; the alpha value is ignored. +/** Construct a Colour 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) +Colour::Colour (string argb_hex) { int alpha; - if (sscanf (argb_hex.c_str(), "%2x%2x%2x%2x", &alpha, &r, &g, &b) < 4) { + if (sscanf (argb_hex.c_str(), "%2x%2x%2x%2x", &alpha, &r, &g, &b) != 4) { boost::throw_exception (XMLError ("could not parse colour string")); } } @@ -91,7 +91,7 @@ Color::Color (string argb_hex) * hex value. The alpha value will always be FF (ie 255; maximum alpha). */ string -Color::to_argb_string () const +Colour::to_argb_string () const { stringstream s; s << "FF"; @@ -105,28 +105,28 @@ Color::to_argb_string () const return t; } -/** operator== for Colors. - * @param a First color to compare. - * @param b Second color to compare. +/** operator== for Colours. + * @param a First colour to compare. + * @param b Second colour to compare. */ bool -dcp::operator== (Color const & a, Color const & b) +dcp::operator== (Colour const & a, Colour 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. +/** operator!= for Colours. + * @param a First colour to compare. + * @param b Second colour to compare. */ bool -dcp::operator!= (Color const & a, Color const & b) +dcp::operator!= (Colour const & a, Colour const & b) { return !(a == b); } ostream & -dcp::operator<< (ostream& s, Color const & c) +dcp::operator<< (ostream& s, Colour const & c) { s << "(" << c.r << ", " << c.g << ", " << c.b << ")"; return s;