forked from mia/Aegisub
b43788fa7f
boost::format is slow to compile, slow to run, and has an unpleasant interface.
61 lines
1.8 KiB
C++
61 lines
1.8 KiB
C++
// Copyright (c) 2012, Thomas Goyne <plorkyeran@aegisub.org>
|
|
//
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice appear in all copies.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
#include "libaegisub/color.h"
|
|
|
|
#include "parser.h"
|
|
|
|
#include "libaegisub/format.h"
|
|
|
|
namespace agi {
|
|
|
|
Color::Color(unsigned char r, unsigned char g, unsigned char b, unsigned char a)
|
|
: r(r), g(g), b(b), a(a)
|
|
{ }
|
|
|
|
Color::Color(std::string const& str) {
|
|
parser::parse(*this, str);
|
|
}
|
|
|
|
std::string Color::GetAssStyleFormatted() const {
|
|
return agi::format("&H%02X%02X%02X%02X", a, b, g, r);
|
|
}
|
|
|
|
std::string Color::GetAssOverrideFormatted() const {
|
|
return agi::format("&H%02X%02X%02X&", b, g, r);
|
|
}
|
|
|
|
std::string Color::GetSsaFormatted() const {
|
|
return std::to_string((a << 24) + (b << 16) + (g << 8) + r);
|
|
}
|
|
|
|
std::string Color::GetHexFormatted(bool rgba) const {
|
|
if (rgba)
|
|
return agi::format("#%02X%02X%02X%02X", r, g, b, a);
|
|
return agi::format("#%02X%02X%02X", r, g, b);
|
|
}
|
|
|
|
std::string Color::GetRgbFormatted() const {
|
|
return agi::format("rgb(%d, %d, %d)", r, g, b);
|
|
}
|
|
|
|
bool Color::operator==(Color const& col) const {
|
|
return r == col.r && g == col.g && b == col.b && a == col.a;
|
|
}
|
|
|
|
bool Color::operator!=(Color const& col) const {
|
|
return !(*this == col);
|
|
}
|
|
|
|
}
|