21#include <AUI/Common/AColor.h>
29 enum Value : std::uint32_t {
40 RGB_BYTE = RGB | BYTE,
41 RGBA_BYTE = RGBA | BYTE,
42 RGBA_FLOAT = RGBA | FLOAT,
46 DEFAULT = RGBA | BYTE,
49 static constexpr std::uint32_t COMPONENT_BITS = BGRA;
50 static constexpr std::uint32_t TYPE_BITS = 0b11;
52 constexpr APixelFormat(Value value)
noexcept: mValue(value) {}
53 constexpr APixelFormat(std::uint32_t value)
noexcept: mValue((Value)value) {}
55 constexpr operator Value()
const noexcept {
60 uint8_t bytesPerPixel()
const noexcept {
62 switch (
static_cast<std::uint8_t
>(mValue & COMPONENT_BITS)) {
64 case RG: b = 2;
break;
65 case RGB: b = 3;
break;
66 default: b = 4;
break;
80namespace aui::pixel_format {
83 template<
typename T, std::u
int32_t componentBits>
84 struct component_representation;
86 template<
typename T>
struct component_representation<T,
APixelFormat::R> {
90 template<
typename T>
struct component_representation<T, APixelFormat::RG> {
94 template<
typename T>
struct component_representation<T, APixelFormat::RGB> {
98 template<
typename T>
struct component_representation<T, APixelFormat::RGBA> {
101 template< >
struct component_representation<float, APixelFormat::RGBA>: AColor {
102 using AColor::AColor;
105 template<
typename T>
struct component_representation<T, APixelFormat::BGRA> {
109 template<
typename T>
struct component_representation<T, APixelFormat::ARGB> {
113 template<std::u
int32_t componentBits>
114 constexpr std::size_t component_count() {
115 return sizeof(component_representation<std::uint8_t, componentBits>);
119 template<std::u
int32_t typeBits>
123 struct type<APixelFormat::FLOAT> {
128 struct type<APixelFormat::BYTE> {
129 using value = std::uint8_t;
134 constexpr auto format_of = (APixelFormat)T::FORMAT;
136 inline constexpr auto format_of<AColor> = APixelFormat::RGBA_FLOAT;
139 template<std::u
int32_t format>
141 static constexpr std::size_t FORMAT = format;
142 static constexpr std::size_t COMPONENT_COUNT = detail::component_count<format & APixelFormat::COMPONENT_BITS>();
143 using component_t =
typename detail::type<format & APixelFormat::TYPE_BITS>::value;
147 using representation_t_impl = detail::component_representation<component_t, format & APixelFormat::COMPONENT_BITS>;
154 using super = representation_t_impl;
155 static constexpr std::size_t FORMAT = format;
156 explicit operator AColor()
const noexcept;
158 component_t* begin() {
159 return reinterpret_cast<component_t*
>(
this);
162 const component_t* begin()
const {
163 return reinterpret_cast<const component_t*
>(
this);
167 return begin() + COMPONENT_COUNT;
170 const component_t* end()
const {
171 return begin() + COMPONENT_COUNT;
175 std::transform(begin(), end(), rhs, begin(), std::plus<component_t>{});
179 std::transform(begin(), end(), rhs, begin(), std::minus<component_t>{});
183 std::transform(begin(), end(), rhs, begin(), std::multiplies<component_t>{});
187 std::transform(begin(), end(), rhs, begin(), std::divides<component_t>{});
192 std::transform(begin(), end(), begin(), [&](
auto lhs) {
return lhs + rhs; });
196 std::transform(begin(), end(), begin(), [&](
auto lhs) {
return lhs - rhs; });
200 std::transform(begin(), end(), begin(), [&](
auto lhs) {
return lhs * rhs; });
204 std::transform(begin(), end(), begin(), [&](
auto lhs) {
return lhs / rhs; });
231 template<
typename From,
typename To>
236 static constexpr T convert(T t) {
243 static constexpr float convert(std::uint8_t t) {
244 return float(t) / 255.f;
250 static constexpr std::uint8_t convert(
float t) {
251 return std::uint8_t(t * 255.f);
256 template<APixelFormat::Value from, APixelFormat::Value to>
260 constexpr std::size_t countFrom = traits_from::COMPONENT_COUNT;
261 constexpr std::size_t countTo = traits_to::COMPONENT_COUNT;
263 typename traits_to::representation_t out;
267 out.r = my_component_converter::convert(in.r);
268 if constexpr(countTo > 1) {
269 if constexpr(countFrom > 1) {
270 out.g = my_component_converter::convert(in.g);
272 out.g = my_component_converter::convert(0);
276 if constexpr(countTo > 2) {
277 if constexpr(countFrom > 2) {
278 out.b = my_component_converter::convert(in.b);
280 out.b = my_component_converter::convert(0);
284 if constexpr(countTo > 3) {
285 if constexpr(countFrom > 3) {
286 out.a = my_component_converter::convert(in.a);
295 template<std::u
int32_t format>
297 return convert<(APixelFormat::Value)format, (APixelFormat::Value)(APixelFormat::RGBA | APixelFormat::FLOAT)>(*
this);
306template<auto pixelFormat = APixelFormat::DEFAULT>
309template<
typename Source>
310struct AFormattedColorConverter {
312 constexpr explicit AFormattedColorConverter(
const Source& color) : mColor(color) {}
314 template<
typename Destination>
315 constexpr operator Destination()
const noexcept {
316 constexpr auto source = aui::pixel_format::detail::format_of<std::decay_t<Source>>;
317 return aui::pixel_format::convert<source, aui::pixel_format::detail::format_of<std::decay_t<Destination>>>(
Represents a 4-component floating point color (RGBA).
Definition AColor.h:26