Terminal++ 3.1.0.4
A C++ library for interacting with ANSI terminal windows
Loading...
Searching...
No Matches
colour.hpp
1#pragma once
2
3#include "terminalpp/graphics.hpp"
4
5#include <boost/container_hash/hash.hpp>
6
7#include <iosfwd>
8#include <variant>
9
10namespace terminalpp {
11
12//* =========================================================================
14//* =========================================================================
15struct TERMINALPP_EXPORT low_colour
16{
17 //* =====================================================================
19 //* =====================================================================
20 constexpr low_colour() noexcept
21 : low_colour(terminalpp::graphics::colour::default_)
22 {
23 }
24
25 //* =====================================================================
27 //* =====================================================================
28 constexpr low_colour( // NOLINT
29 terminalpp::graphics::colour colour) noexcept
30 : value_(colour){};
31
32 //* =====================================================================
34 //* =====================================================================
35 [[nodiscard]] friend std::size_t hash_value(low_colour const &col) noexcept
36 {
37 std::size_t seed = 0;
38 boost::hash_combine(
39 seed,
40 static_cast<std::underlying_type_t<decltype(col.value_)>>(
41 col.value_));
42 return seed;
43 }
44
45 //* =====================================================================
47 //* =====================================================================
48 [[nodiscard]] constexpr friend auto operator<=>(
49 low_colour const &lhs, low_colour const &rhs) noexcept = default;
50
51 terminalpp::graphics::colour value_;
52};
53
54//* =========================================================================
57//* =========================================================================
58TERMINALPP_EXPORT
59std::ostream &operator<<(std::ostream &out, low_colour const &col);
60
61//* =========================================================================
65//* =========================================================================
66struct TERMINALPP_EXPORT high_colour
67{
68 //* =====================================================================
70 //* =====================================================================
71 constexpr high_colour() noexcept : high_colour(0, 0, 0)
72 {
73 }
74
75 //* =====================================================================
78 //* =====================================================================
79 constexpr high_colour(byte red, byte green, byte blue) noexcept
80 : value_(ansi::graphics::encode_high_components(red, green, blue))
81 {
82 }
83
84 //* =====================================================================
86 //* =====================================================================
87 [[nodiscard]] friend std::size_t hash_value(high_colour const &col) noexcept
88 {
89 std::size_t seed = 0;
90 boost::hash_combine(seed, col.value_);
91 return seed;
92 }
93
94 //* =====================================================================
96 //* =====================================================================
97 [[nodiscard]] constexpr friend auto operator<=>(
98 high_colour const &lhs, high_colour const &rhs) noexcept = default;
99
100 byte value_;
101};
102
103//* =========================================================================
106//* =========================================================================
107TERMINALPP_EXPORT
108std::ostream &operator<<(std::ostream &out, high_colour const &col);
109
110//* =========================================================================
113//* =========================================================================
114struct TERMINALPP_EXPORT greyscale_colour
115{
116 //* =====================================================================
119 //* =====================================================================
120 constexpr greyscale_colour() noexcept : shade_(0)
121 {
122 }
123
124 //* =====================================================================
127 //* =====================================================================
128 constexpr explicit greyscale_colour(byte shade) noexcept
129 : shade_(ansi::graphics::encode_greyscale_component(shade))
130 {
131 }
132
133 //* =====================================================================
135 //* =====================================================================
136 [[nodiscard]] friend std::size_t hash_value(
137 greyscale_colour const &col) noexcept
138 {
139 std::size_t seed = 0;
140 boost::hash_combine(seed, col.shade_);
141 return seed;
142 }
143
144 //* =====================================================================
146 //* =====================================================================
147 [[nodiscard]] constexpr friend auto operator<=>(
148 greyscale_colour const &lhs,
149 greyscale_colour const &rhs) noexcept = default;
150
151 byte shade_;
152};
153
154//* =========================================================================
157//* =========================================================================
158TERMINALPP_EXPORT
159std::ostream &operator<<(std::ostream &out, greyscale_colour const &col);
160
161//* =========================================================================
164//* =========================================================================
165struct TERMINALPP_EXPORT true_colour
166{
167 //* =====================================================================
170 //* =====================================================================
171 constexpr true_colour() noexcept : true_colour(0, 0, 0)
172 {
173 }
174
175 //* =====================================================================
177 //* =====================================================================
178 constexpr true_colour(
179 byte const red, byte const green, byte const blue) noexcept // NOLINT
180 : red_(red), green_(green), blue_(blue)
181 {
182 }
183
184 //* =====================================================================
186 //* =====================================================================
187 [[nodiscard]] friend std::size_t hash_value(true_colour const &col) noexcept
188 {
189 std::size_t seed = 0;
190 boost::hash_combine(seed, col.red_);
191 boost::hash_combine(seed, col.green_);
192 boost::hash_combine(seed, col.blue_);
193 return seed;
194 }
195
196 //* =====================================================================
198 //* =====================================================================
199 [[nodiscard]] constexpr friend auto operator<=>(
200 true_colour const &lhs, true_colour const &rhs) noexcept = default;
201
202 byte red_;
203 byte green_;
204 byte blue_;
205};
206
207//* =========================================================================
210//* =========================================================================
211TERMINALPP_EXPORT
212std::ostream &operator<<(std::ostream &out, true_colour const &col);
213
214//* =========================================================================
216//* =========================================================================
217struct TERMINALPP_EXPORT colour
218{
219 //* =====================================================================
221 //* =====================================================================
222 constexpr colour() noexcept : colour{terminalpp::low_colour()}
223 {
224 }
225
226 //* =====================================================================
228 //* =====================================================================
229 constexpr colour(terminalpp::low_colour col) noexcept // NOLINT
230 : value_{std::move(col)}
231 {
232 }
233
234 //* =====================================================================
236 //* =====================================================================
237 constexpr colour(terminalpp::graphics::colour col) noexcept // NOLINT
239 {
240 }
241
242 //* =====================================================================
244 //* =====================================================================
245 constexpr colour(terminalpp::high_colour col) noexcept // NOLINT
246 : value_{high_colour{std::move(col)}}
247 {
248 }
249
250 //* =====================================================================
252 //* =====================================================================
253 constexpr colour(terminalpp::greyscale_colour col) noexcept // NOLINT
254 : value_{greyscale_colour{std::move(col)}}
255 {
256 }
257
258 //* =====================================================================
260 //* =====================================================================
261 constexpr colour(terminalpp::true_colour col) noexcept // NOLINT
262 : value_{true_colour{std::move(col)}}
263 {
264 }
265
266 //* =====================================================================
268 //* =====================================================================
269 [[nodiscard]] friend std::size_t hash_value(colour const &col) noexcept
270 {
271 return std::visit(
272 [](auto const &val) { return hash_value(val); }, col.value_);
273 }
274
275 //* =====================================================================
277 //* =====================================================================
278 [[nodiscard]] constexpr friend auto operator<=>(
279 colour const &lhs, colour const &rhs) noexcept = default;
280
281 std::variant<low_colour, high_colour, greyscale_colour, true_colour> value_;
282};
283
284//* =========================================================================
287//* =========================================================================
288TERMINALPP_EXPORT
289std::ostream &operator<<(std::ostream &out, colour const &col);
290
291} // namespace terminalpp
292
293namespace std {
294
295template <>
296struct hash<terminalpp::low_colour>
297{
299 using result_type = std::size_t;
300
301 [[nodiscard]] result_type operator()(
302 argument_type const &col) const noexcept
303 {
304 return hash_value(col);
305 }
306};
307
308template <>
309struct hash<terminalpp::high_colour>
310{
312 using result_type = std::size_t;
313
314 [[nodiscard]] result_type operator()(
315 argument_type const &col) const noexcept
316 {
317 return hash_value(col);
318 }
319};
320
321template <>
322struct hash<terminalpp::greyscale_colour>
323{
325 using result_type = std::size_t;
326
327 [[nodiscard]] result_type operator()(
328 argument_type const &col) const noexcept
329 {
330 return hash_value(col);
331 }
332};
333
334template <>
335struct hash<terminalpp::true_colour>
336{
338 using result_type = std::size_t;
339
340 [[nodiscard]] result_type operator()(
341 argument_type const &col) const noexcept
342 {
343 return hash_value(col);
344 }
345};
346
347template <>
348struct hash<terminalpp::colour>
349{
351 using result_type = std::size_t;
352
353 [[nodiscard]] result_type operator()(
354 argument_type const &col) const noexcept
355 {
356 return hash_value(col);
357 }
358};
359
360} // namespace std
Structure representing a sum type of the available colour styles.
Definition colour.hpp:218
constexpr colour(terminalpp::low_colour col) noexcept
Constructs a colour with the passed low_colour value.
Definition colour.hpp:229
constexpr friend auto operator<=>(colour const &lhs, colour const &rhs) noexcept=default
Comparison operators for colours.
constexpr colour(terminalpp::graphics::colour col) noexcept
Constructs a colour from an ANSI graphics low colour.
Definition colour.hpp:237
constexpr colour(terminalpp::greyscale_colour col) noexcept
Constructs a colour with the passed greyscale_colour value.
Definition colour.hpp:253
constexpr colour() noexcept
Default constructs the colour with the "default" ANSI colour.
Definition colour.hpp:222
constexpr colour(terminalpp::high_colour col) noexcept
Constructs a colour with the passed high_colour value.
Definition colour.hpp:245
friend std::size_t hash_value(colour const &col) noexcept
Hash function.
Definition colour.hpp:269
constexpr colour(terminalpp::true_colour col) noexcept
Constructs a colour with the passed true_colour value.
Definition colour.hpp:261
Structure representing the 24 greyscale tones of a 256-colour palette.
Definition colour.hpp:115
constexpr greyscale_colour(byte shade) noexcept
Constructs a greyscale value from the given shade, which should be in the range 0-23.
Definition colour.hpp:128
constexpr friend auto operator<=>(greyscale_colour const &lhs, greyscale_colour const &rhs) noexcept=default
Comparison operators for greyscale colours.
constexpr greyscale_colour() noexcept
Default constructs a greyscale value with the darkest available grey.
Definition colour.hpp:120
friend std::size_t hash_value(greyscale_colour const &col) noexcept
Hash function.
Definition colour.hpp:136
Structure representing the central 216 colours of a 256-colour palette, where each colour channel is ...
Definition colour.hpp:67
constexpr high_colour() noexcept
Default constructs a high-colour with the value of pure black.
Definition colour.hpp:71
constexpr high_colour(byte red, byte green, byte blue) noexcept
Constructs a high_colour from the passed-in RGB values, each of which should be in the range 0-5.
Definition colour.hpp:79
friend std::size_t hash_value(high_colour const &col) noexcept
Hash function.
Definition colour.hpp:87
constexpr friend auto operator<=>(high_colour const &lhs, high_colour const &rhs) noexcept=default
Comparison operators for high colours.
Structure representing a normal ANSI 16-colour value.
Definition colour.hpp:16
constexpr low_colour() noexcept
Constructs a low_colour with the "default" colour value.
Definition colour.hpp:20
constexpr low_colour(terminalpp::graphics::colour colour) noexcept
Constructs a low_colour from the passed-in ANSI colour.
Definition colour.hpp:28
constexpr friend auto operator<=>(low_colour const &lhs, low_colour const &rhs) noexcept=default
Comparison operators for low colours.
friend std::size_t hash_value(low_colour const &col) noexcept
Hash function.
Definition colour.hpp:35
Structure representing the ~16 million colours codes of the true colour palette.
Definition colour.hpp:166
constexpr true_colour(byte const red, byte const green, byte const blue) noexcept
Constructor.
Definition colour.hpp:178
friend std::size_t hash_value(true_colour const &col) noexcept
Hash function.
Definition colour.hpp:187
constexpr true_colour() noexcept
Default constructor constructs a true colour value that represents black.
Definition colour.hpp:171
constexpr friend auto operator<=>(true_colour const &lhs, true_colour const &rhs) noexcept=default
Comparison operators for true colours.