Terminal++ 3.1.0.4
A C++ library for interacting with ANSI terminal windows
Loading...
Searching...
No Matches
effect.hpp
1#pragma once
2
3#include "terminalpp/graphics.hpp"
4
5#include <boost/container_hash/hash.hpp>
6
7#include <iostream>
8#include <type_traits>
9
10namespace terminalpp {
11
12//* =========================================================================
14//* =========================================================================
15template <class Type>
17
18template <class Type>
19constexpr Type effect_default_v = effect_default<Type>::value;
20
21//* =========================================================================
24//* =========================================================================
25template <class Type>
26struct effect
27{
28 //* =====================================================================
30 //* =====================================================================
31 constexpr effect() noexcept : effect(effect_default_v<Type>)
32 {
33 }
34
35 //* =====================================================================
37 //* =====================================================================
38 constexpr effect(Type value) noexcept // NOLINT
39 : value_(value)
40 {
41 }
42
43 //* =====================================================================
45 //* =====================================================================
46 [[nodiscard]] friend std::size_t hash_value(effect const &eff) noexcept
47 {
48 std::size_t seed = 0;
49 boost::hash_combine(seed, eff.value_);
50 return seed;
51 }
52
53 //* =====================================================================
55 //* =====================================================================
56 [[nodiscard]] constexpr friend auto operator<=>(
57 effect const &lhs, effect const &rhs) noexcept = default;
58
59 Type value_;
60};
61
62//* =========================================================================
64//* =========================================================================
65template <>
66struct effect_default<terminalpp::graphics::intensity>
67 : std::integral_constant<
68 terminalpp::graphics::intensity,
69 terminalpp::graphics::intensity::normal>
70{
71};
72
73//* =========================================================================
75//* =========================================================================
76template <>
77struct effect_default<terminalpp::graphics::underlining>
78 : std::integral_constant<
79 terminalpp::graphics::underlining,
80 terminalpp::graphics::underlining::not_underlined>
81{
82};
83
84//* =========================================================================
86//* =========================================================================
87template <>
88struct effect_default<terminalpp::graphics::polarity>
89 : std::integral_constant<
90 terminalpp::graphics::polarity,
91 terminalpp::graphics::polarity::positive>
92{
93};
94
95//* =========================================================================
97//* =========================================================================
98template <>
99struct effect_default<terminalpp::graphics::blinking>
100 : std::integral_constant<
101 terminalpp::graphics::blinking,
102 terminalpp::graphics::blinking::steady>
103{
104};
105
110
111template <typename EffectType>
112struct effect_has_normal : std::bool_constant<false>
113{
114};
115
116template <>
117struct effect_has_normal<terminalpp::graphics::intensity>
118 : std::bool_constant<true>
119{
120};
121
122//* =========================================================================
125//* =========================================================================
127std::ostream &operator<<(std::ostream &out, intensity const &eff);
128
129//* =========================================================================
132//* =========================================================================
134std::ostream &operator<<(std::ostream &out, underlining const &eff);
135
136//* =========================================================================
139//* =========================================================================
141std::ostream &operator<<(std::ostream &out, polarity const &eff);
142
143//* =========================================================================
146//* =========================================================================
148std::ostream &operator<<(std::ostream &out, blinking const &eff);
149
150} // namespace terminalpp
151
152namespace std {
153
154template <class Effect>
155struct hash<terminalpp::effect<Effect>>
156{
158 using result_type = std::size_t;
159
160 [[nodiscard]] result_type operator()(
161 argument_type const &effect) const noexcept
162 {
163 return hash_value(effect);
164 }
165};
166
167} // namespace std
A traits class for which value of an effect is the "default" one.
Definition effect.hpp:16
Definition effect.hpp:113
A structure representing an ANSI graphics effect (e.g. intensity, underlining)
Definition effect.hpp:27
friend std::size_t hash_value(effect const &eff) noexcept
Hash function.
Definition effect.hpp:46
constexpr effect() noexcept
Initialises the intensity to the default (normal) value.
Definition effect.hpp:31
constexpr friend auto operator<=>(effect const &lhs, effect const &rhs) noexcept=default
Relational operators for effects.
constexpr effect(Type value) noexcept
Initialises the effect to the given value.
Definition effect.hpp:38