Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
ui_Types.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file ui_Types.hpp
4 * @brief Main UI types header.
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <pu/pu_Include.hpp>
11
12namespace pu::ui {
13
14 /**
15 * @brief Enum containing the default font sizes used by Plutonium components.
16 */
25
26 /**
27 * @brief Array containing the default font size values used by Plutonium components, for all DefaultFontSize values.
28 */
29 constexpr u32 DefaultFontSizes[static_cast<u32>(DefaultFontSize::Count)] = { 27, 30, 37, 45 };
30
31 /**
32 * @brief Makes a default font name with the specified font size.
33 * @param font_size Font size to use.
34 * @return Default font name.
35 */
36 inline std::string MakeDefaultFontName(const u32 font_size) {
37 return "DefaultFont@" + std::to_string(font_size);
38 }
39
40 /**
41 * @brief Gets the default font size value for the specified DefaultFontSize.
42 * @param kind DefaultFontSize to get the value from.
43 * @return Default font size value.
44 */
45 inline constexpr u32 GetDefaultFontSize(const DefaultFontSize kind) {
46 return DefaultFontSizes[static_cast<u32>(kind)];
47 }
48
49 /**
50 * @brief Gets the default font name for the specified DefaultFontSize.
51 * @param kind DefaultFontSize to get the font name from.
52 * @return Default font name.
53 */
54 inline std::string GetDefaultFont(const DefaultFontSize kind) {
56 }
57
58 /**
59 * @brief Type encoding a RGBA-8888 color.
60 */
61 struct Color {
62 u8 r;
63 u8 g;
64 u8 b;
65 u8 a;
66
67 /**
68 * @brief Creates a new Color with all values set to 0 (black color by default).
69 */
70 constexpr Color() : r(0), g(0), b(0), a(0xFF) {}
71
72 /**
73 * @brief Creates a new Color with the specified values.
74 * @param r Red value.
75 * @param g Green value.
76 * @param b Blue value.
77 * @param a Alpha value.
78 */
79 constexpr Color(const u8 r, const u8 g, const u8 b, const u8 a) : r(r), g(g), b(b), a(a) {}
80
81 /**
82 * @brief Creates a new Color from a hexadecimal string ("#rrggbbaa" format).
83 * @param str_clr Hexadecimal string to create the Color from.
84 * @return Created Color.
85 */
86 static Color FromHex(const std::string &str_clr);
87
88 /**
89 * @brief Creates a new Color with this Color's RGB values and the specified alpha value.
90 * @param a Alpha value to set.
91 * @return Created Color.
92 */
93 inline Color WithAlpha(const u8 a) {
94 return { this->r, this->g, this->b, a };
95 }
96 };
97
98 /**
99 * @brief Helper function to check whether a touch point hits a rectangle region.
100 * @param touch_x X coordinate of the touch point.
101 * @param touch_y Y coordinate of the touch point.
102 * @param region_x X coordinate of the region.
103 * @param region_y Y coordinate of the region.
104 * @param region_w Width of the region.
105 * @param region_h Height of the region.
106 * @return Whether the touch point hits the region.
107 */
108 static inline constexpr bool TouchHitsRegion(const i32 touch_x, const i32 touch_y, const i32 region_x, const i32 region_y, const i32 region_w, const i32 region_h) {
109 return (touch_x >= region_x) && (touch_x < (region_x + region_w)) && (touch_y >= region_y) && (touch_y < (region_y + region_h));
110 }
111
112 /**
113 * @brief Input key value used internally by Plutonium to represent the presence of a touch input.
114 */
115 constexpr u64 TouchPseudoKey = 1 << 29;
116
117 /**
118 * @brief Type encoding a touch point.
119 */
120 struct TouchPoint {
121 i32 x;
122 i32 y;
123
124 /**
125 * @brief Creates a new, invalid TouchPoint (with both coordinates set to -1).
126 */
127 constexpr TouchPoint() : x(-1), y(-1) {}
128
129 /**
130 * @brief Creates a new TouchPoint with the specified coordinates.
131 * @param x X coordinate.
132 * @param y Y coordinate.
133 */
134 constexpr TouchPoint(const u32 x, const u32 y) : x(x), y(y) {}
135
136 /**
137 * @brief Checks whether this TouchPoint is not valid (both coordinates are less than 0).
138 * @return Whether this TouchPoint is invalid/empty.
139 */
140 inline constexpr bool IsEmpty() const {
141 return (this->x < 0) && (this->y < 0);
142 }
143
144 /**
145 * @brief Checks whether this TouchPoint hits a rectangle region.
146 * @param region_x X coordinate of the region.
147 * @param region_y Y coordinate of the region.
148 * @param region_w Width of the region.
149 * @param region_h Height of the region.
150 * @return Whether this TouchPoint hits the region.
151 */
152 inline constexpr bool HitsRegion(const i32 region_x, const i32 region_y, const i32 region_w, const i32 region_h) const {
153 if(this->IsEmpty()) {
154 return false;
155 }
156
157 return TouchHitsRegion(this->x, this->y, region_x, region_y, region_w, region_h);
158 }
159 };
160
161 /**
162 * @brief Type used to vary a value, from an initial value to a final one, following the shape of a sigmoid function.
163 * @tparam T Type of the value to vary.
164 */
165 template<typename T>
167 private:
168 double f;
169 double f_incr;
170 T target_initial_val;
171 T target_incr;
172 bool inverted_for_zero;
173
174 inline double ComputeIncrement() {
175 return (double)this->target_incr * (1.0f / (1.0f + exp(-this->f)));
176 }
177
178 public:
179 /**
180 * @brief Allowed error for the initial/final point reach precision.
181 */
182 static constexpr double AllowedError = 0.4f;
183
184 /**
185 * @brief Creates a new SigmoidIncrementer with all values reset.
186 */
187 constexpr SigmoidIncrementer() : f(0.0f), f_incr(0.0f), target_initial_val(0), target_incr(0) {}
188
189 /**
190 * @brief Starts the incrementation process from an initial value to a final one, with a specified number of steps.
191 * @param f_steps Number of steps to reach the final value.
192 * @param target_initial_val Initial value.
193 * @param target_incr Final increment from the initial value (final value - initial value).
194 */
195 void Start(const u32 f_steps, const T target_initial_val, const T target_incr) {
196 this->target_initial_val = target_initial_val;
197 this->target_incr = target_incr;
198 this->inverted_for_zero = false;
199
200 auto target_final_val = target_initial_val + target_incr;
201 if(target_final_val == 0) {
202 // Compute from 0 to X instead of from X to 0
203 this->inverted_for_zero = true;
204 this->target_initial_val = 0;
205 this->target_incr = target_initial_val;
206 target_final_val = target_initial_val;
207 }
208
209 const auto f_limit_abs = log((abs((double)target_final_val) - AllowedError) / AllowedError);
210 this->f_incr = (2.0f * f_limit_abs) / (double)f_steps;
211 this->f = -f_limit_abs;
212 }
213
214 /**
215 * @brief Starts the incrementation process from 0 to a final value, with a specified number of steps.
216 * @param f_steps Number of steps to reach the final value.
217 * @param target_final_val Final value.
218 */
219 inline void StartFromZero(const u32 f_steps, const T target_final_val) {
220 this->Start(f_steps, 0, target_final_val);
221 }
222
223 /**
224 * @brief Starts the incrementation process from an initial value to 0, with a specified number of steps.
225 * @param f_steps Number of steps to reach the final value.
226 * @param target_initial_val Initial value.
227 */
228 inline void StartToZero(const u32 f_steps, const T target_initial_val) {
229 this->Start(f_steps, target_initial_val, -target_initial_val);
230 }
231
232 /**
233 * @brief Increments the target value (performs a step in the incrementation process).
234 * @param target Output variable where the current value will be stored.
235 * @note If the incrementation process has already finished, this will do nothing and return false.
236 * @return Whether the target value has reached the final value.
237 */
238 bool Increment(T &target) {
239 if(this->IsDone()) {
240 return false;
241 }
242
243 const auto target_f = (double)this->target_initial_val + this->ComputeIncrement();
244 if(this->target_incr > 0) {
245 target = (T)((i32)(target_f + 0.5f));
246 }
247 else {
248 target = (T)((i32)(target_f - 0.5f));
249 }
250 this->f += this->f_incr;
251
252 const auto is_done = abs((double)target) >= abs((double)(this->target_initial_val + this->target_incr));
253 if(is_done) {
254 if(this->inverted_for_zero) {
255 target = 0;
256 }
257 else {
258 target = this->target_initial_val + this->target_incr;
259 }
260 this->target_incr = 0;
261 return true;
262 }
263 else if(this->inverted_for_zero) {
264 target = this->target_incr - target;
265 }
266
267 return false;
268 }
269
270 /**
271 * @brief Checks whether the incrementation process has finished.
272 * @return Whether the incrementation process has finished.
273 */
274 inline bool IsDone() {
275 return this->target_incr == 0;
276 }
277 };
278
279}
Type used to vary a value, from an initial value to a final one, following the shape of a sigmoid fun...
Definition ui_Types.hpp:166
bool IsDone()
Checks whether the incrementation process has finished.
Definition ui_Types.hpp:274
void StartFromZero(const u32 f_steps, const T target_final_val)
Starts the incrementation process from 0 to a final value, with a specified number of steps.
Definition ui_Types.hpp:219
void StartToZero(const u32 f_steps, const T target_initial_val)
Starts the incrementation process from an initial value to 0, with a specified number of steps.
Definition ui_Types.hpp:228
bool Increment(T &target)
Increments the target value (performs a step in the incrementation process).
Definition ui_Types.hpp:238
void Start(const u32 f_steps, const T target_initial_val, const T target_incr)
Starts the incrementation process from an initial value to a final one, with a specified number of st...
Definition ui_Types.hpp:195
constexpr SigmoidIncrementer()
Creates a new SigmoidIncrementer with all values reset.
Definition ui_Types.hpp:187
static constexpr double AllowedError
Allowed error for the initial/final point reach precision.
Definition ui_Types.hpp:182
constexpr u32 DefaultFontSizes[static_cast< u32 >(DefaultFontSize::Count)]
Array containing the default font size values used by Plutonium components, for all DefaultFontSize v...
Definition ui_Types.hpp:29
static constexpr bool TouchHitsRegion(const i32 touch_x, const i32 touch_y, const i32 region_x, const i32 region_y, const i32 region_w, const i32 region_h)
Helper function to check whether a touch point hits a rectangle region.
Definition ui_Types.hpp:108
std::string MakeDefaultFontName(const u32 font_size)
Makes a default font name with the specified font size.
Definition ui_Types.hpp:36
constexpr u64 TouchPseudoKey
Input key value used internally by Plutonium to represent the presence of a touch input.
Definition ui_Types.hpp:115
constexpr u32 GetDefaultFontSize(const DefaultFontSize kind)
Gets the default font size value for the specified DefaultFontSize.
Definition ui_Types.hpp:45
std::string GetDefaultFont(const DefaultFontSize kind)
Gets the default font name for the specified DefaultFontSize.
Definition ui_Types.hpp:54
DefaultFontSize
Enum containing the default font sizes used by Plutonium components.
Definition ui_Types.hpp:17
@ Small
Definition ui_Types.hpp:18
@ Large
Definition ui_Types.hpp:21
@ MediumLarge
Definition ui_Types.hpp:20
@ Medium
Definition ui_Types.hpp:19
@ Count
Definition ui_Types.hpp:23
Type encoding a RGBA-8888 color.
Definition ui_Types.hpp:61
static Color FromHex(const std::string &str_clr)
Creates a new Color from a hexadecimal string ("#rrggbbaa" format).
u8 g
Definition ui_Types.hpp:63
u8 a
Definition ui_Types.hpp:65
u8 r
Definition ui_Types.hpp:62
Color WithAlpha(const u8 a)
Creates a new Color with this Color's RGB values and the specified alpha value.
Definition ui_Types.hpp:93
constexpr Color()
Creates a new Color with all values set to 0 (black color by default).
Definition ui_Types.hpp:70
u8 b
Definition ui_Types.hpp:64
constexpr Color(const u8 r, const u8 g, const u8 b, const u8 a)
Creates a new Color with the specified values.
Definition ui_Types.hpp:79
Type encoding a touch point.
Definition ui_Types.hpp:120
i32 y
Definition ui_Types.hpp:122
constexpr TouchPoint(const u32 x, const u32 y)
Creates a new TouchPoint with the specified coordinates.
Definition ui_Types.hpp:134
constexpr TouchPoint()
Creates a new, invalid TouchPoint (with both coordinates set to -1).
Definition ui_Types.hpp:127
constexpr bool HitsRegion(const i32 region_x, const i32 region_y, const i32 region_w, const i32 region_h) const
Checks whether this TouchPoint hits a rectangle region.
Definition ui_Types.hpp:152
i32 x
Definition ui_Types.hpp:121
constexpr bool IsEmpty() const
Checks whether this TouchPoint is not valid (both coordinates are less than 0).
Definition ui_Types.hpp:140