wesnoth/src/color.cpp
Martin Hrubý (hrubymar10) 674fda85b7 Migrate links to https if available - Fwd c18537edc0678f40a209797d72dfaba3e5e88545
(cherry-picked from commit bc4d22dc72e79c3d6a3364ac896e473afd298246)
2018-10-07 03:23:36 +00:00

132 lines
3.3 KiB
C++

/*
Copyright (C) 2003 - 2018 by the Battle for Wesnoth Project https://www.wesnoth.org/
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.
See the COPYING file for more details.
*/
#include "serialization/string_utils.hpp"
#include "color.hpp"
#include <iomanip>
#include <sstream>
color_t color_t::from_rgba_string(const std::string& c)
{
if(c.empty()) {
return null_color();
}
std::vector<std::string> fields = utils::split(c);
// Allow either 3 (automatic opaque alpha) or 4 (explicit alpha) fields
if(fields.size() != 3 && fields.size() != 4) {
throw std::invalid_argument("Wrong number of components for RGBA color");
}
return {
static_cast<uint8_t>(std::stoul(fields[0])),
static_cast<uint8_t>(std::stoul(fields[1])),
static_cast<uint8_t>(std::stoul(fields[2])),
static_cast<uint8_t>(fields.size() == 4 ? std::stoul(fields[3]) : ALPHA_OPAQUE)
};
}
color_t color_t::from_rgb_string(const std::string& c)
{
if(c.empty()) {
return null_color();
}
std::vector<std::string> fields = utils::split(c);
if(fields.size() != 3) {
throw std::invalid_argument("Wrong number of components for RGB color");
}
return {
static_cast<uint8_t>(std::stoul(fields[0])),
static_cast<uint8_t>(std::stoul(fields[1])),
static_cast<uint8_t>(std::stoul(fields[2])),
static_cast<uint8_t>(ALPHA_OPAQUE)
};
}
color_t color_t::from_hex_string(const std::string& c)
{
if(c.length() != 6) {
throw std::invalid_argument("Color hex string should be exactly 6 digits");
}
unsigned long temp_c = std::strtol(c.c_str(), nullptr, 16);
return {
static_cast<uint8_t>((0x00FFFFFF & temp_c) >> 16),
static_cast<uint8_t>((0x00FFFFFF & temp_c) >> 8),
static_cast<uint8_t>((0x00FFFFFF & temp_c)),
ALPHA_OPAQUE
};
}
color_t color_t::from_rgba_bytes(uint32_t c)
{
return {
static_cast<uint8_t>((RGBA_RED_MASK & c) >> RGBA_RED_BITSHIFT),
static_cast<uint8_t>((RGBA_GREEN_MASK & c) >> RGBA_GREEN_BITSHIFT),
static_cast<uint8_t>((RGBA_BLUE_MASK & c) >> RGBA_BLUE_BITSHIFT),
static_cast<uint8_t>((RGBA_ALPHA_MASK & c) >> RGBA_ALPHA_BITSHIFT),
};
}
color_t color_t::from_argb_bytes(uint32_t c)
{
return {
static_cast<uint8_t>((SDL_RED_MASK & c) >> SDL_RED_BITSHIFT),
static_cast<uint8_t>((SDL_GREEN_MASK & c) >> SDL_GREEN_BITSHIFT),
static_cast<uint8_t>((SDL_BLUE_MASK & c) >> SDL_BLUE_BITSHIFT),
static_cast<uint8_t>((SDL_ALPHA_MASK & c) >> SDL_ALPHA_BITSHIFT),
};
}
std::string color_t::to_hex_string() const
{
std::ostringstream h;
h << "#"
<< std::hex << std::setfill('0')
<< std::setw(2) << static_cast<int>(r)
<< std::setw(2) << static_cast<int>(g)
<< std::setw(2) << static_cast<int>(b);
return h.str();
}
std::string color_t::to_rgba_string() const
{
std::ostringstream color;
color << static_cast<int>(r) << ','
<< static_cast<int>(g) << ','
<< static_cast<int>(b) << ','
<< static_cast<int>(a);
return color.str();
}
std::string color_t::to_rgb_string() const
{
std::ostringstream color;
color << static_cast<int>(r) << ','
<< static_cast<int>(g) << ','
<< static_cast<int>(b);
return color.str();
}