155
156
157 using OnSelectionChangedCallback = std::function<
void()>;
160 enum class MoveStatus : u8 {
171 u32 selected_item_idx;
172 i32 selected_item_alpha;
174 i32 prev_selected_item_idx;
175 i32 prev_selected_item_alpha;
177 u32 advanced_item_count;
180 Color items_focus_clr;
181 bool cooldown_enabled;
183 MoveStatus move_status;
184 std::chrono::time_point<std::chrono::steady_clock> move_start_time;
185 OnSelectionChangedCallback on_selection_changed_cb;
186 std::vector<MenuItem::Ref> items;
187 std::string font_name;
188 std::vector<sdl2::Texture> loaded_name_texs;
189 u8 item_alpha_incr_steps;
190 float icon_item_sizes_factor;
193 u8 light_scrollbar_color_factor;
196 u8 shadow_base_alpha;
197 s64 move_wait_time_ms;
199 void ReloadItemRenders();
203 inline Color MakeItemsFocusColor(
const u8 alpha) {
207 inline constexpr Color MakeLighterScrollbarColor() {
208 i32 base_r =
this->scrollbar_clr
.r -
this->light_scrollbar_color_factor;
212 i32 base_g =
this->scrollbar_clr
.g -
this->light_scrollbar_color_factor;
216 i32 base_b =
this->scrollbar_clr
.b -
this->light_scrollbar_color_factor;
221 return { static_cast<u8>(base_r)
, static_cast<u8>(base_g)
, static_cast<u8>(base_b)
, this->scrollbar_clr
.a };
224 inline void HandleOnSelectionChanged() {
225 if(
this->on_selection_changed_cb) {
226 (
this->on_selection_changed_cb)();
230 inline void RunSelectedItemCallback(
const u64 keys) {
231 auto item =
this->items.at(
this->selected_item_idx);
232 const auto cb_count = item->GetOnKeyCallbackCount();
233 for(u32 i = 0; i < cb_count; i++) {
234 if(keys & item->GetOnKeyCallbackKey(i)) {
235 if(!
this->cooldown_enabled) {
236 auto cb = item->GetOnKeyCallback(i);
243 this->cooldown_enabled =
false;
246 inline u32 GetItemCount() {
247 auto item_count =
this->items_to_show;
248 if(item_count >
this->items.size()) {
249 item_count =
this->items.size();
251 if((item_count +
this->advanced_item_count) >
this->items.size()) {
252 item_count =
this->items.size() -
this->advanced_item_count;
259
260
261
262
263
264
265
266
267
268 Menu(
const i32 x,
const i32 y,
const i32 width,
const Color items_clr,
const Color items_focus_clr,
const i32 items_height,
const u32 items_to_show);
276
277
278
279 inline void SetX(
const i32 x) {
288
289
290
291 inline void SetY(
const i32 y) {
300
301
302
308 return this->items_h *
this->items_to_show;
327
328
329
331 this->on_selection_changed_cb = on_selection_changed_cb;
335
336
337
339 this->items.push_back(item);
343
344
348
349
351 this->ReloadItemRenders();
357
358
359
361 return this->items.at(
this->selected_item_idx);
365
366
367
375
376
377
381 void OnInput(
const u64 keys_down,
const u64 keys_up,
const u64 keys_held,
const TouchPoint touch_pos)
override;
High-level handle wrapper to a texture in SDL2.
Definition sdl2_Types.hpp:47
#define PU_SMART_CTOR(type)
Defines a static function (::New(...)) as a constructor for smart ptrs, also defines a custom type (:...
Definition pu_Include.hpp:19
#define PU_CLASS_POD_GETSET(fn_name, var_name, type)
Automatically defines a getter and setter function for a POD variable.
Definition pu_Include.hpp:45
#define PU_CLASS_POD_SET(fn_name, var_name, type)
Automatically defines a setter function for a POD variable.
Definition pu_Include.hpp:37
#define PU_CLASS_POD_GET(fn_name, var_name, type)
Automatically defines a getter function for a POD variable.
Definition pu_Include.hpp:29
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