2
3
4
5
6
7
10#include <pu/pu_Include.hpp>
15
16
27
28
32
33
34
35
37 return "DefaultFont@" + std::to_string(font_size);
41
42
43
44
50
51
52
53
59
60
68
69
73
74
75
76
77
78
79 constexpr Color(
const u8 r,
const u8 g,
const u8 b,
const u8 a) :
r(r),
g(g),
b(b),
a(a) {}
82
83
84
85
89
90
91
92
99
100
101
102
103
104
105
106
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));
113
114
118
119
125
126
130
131
132
133
137
138
139
141 return (
this->x < 0) && (
this->y < 0);
145
146
147
148
149
150
151
152 inline constexpr bool HitsRegion(
const i32 region_x,
const i32 region_y,
const i32 region_w,
const i32 region_h)
const {
162
163
164
170 T target_initial_val;
172 bool inverted_for_zero;
174 inline double ComputeIncrement() {
175 return (
double)
this->target_incr * (1.0f / (1.0f + exp(-
this->f)));
180
181
185
186
190
191
192
193
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;
200 auto target_final_val = target_initial_val + target_incr;
201 if(target_final_val == 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;
210 this->f_incr = (2.0f * f_limit_abs) / (
double)f_steps;
211 this->f = -f_limit_abs;
215
216
217
218
224
225
226
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
);
233
234
235
236
237
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));
248 target = (T)((i32)(target_f - 0.5f));
250 this->f +=
this->f_incr;
252 const auto is_done = abs((
double)target) >= abs((
double)(
this->target_initial_val +
this->target_incr));
254 if(
this->inverted_for_zero) {
258 target =
this->target_initial_val +
this->target_incr;
260 this->target_incr = 0;
263 else if(
this->inverted_for_zero) {
264 target =
this->target_incr - target;
271
272
273
275 return this->target_incr == 0;
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