Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
ui_Overlay.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file ui_Overlay.hpp
4 * @brief Overlay class header.
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <pu/ui/ui_Container.hpp>
11
12namespace pu::ui {
13
14 /**
15 * @brief Class that represents an overlay, which is a container that is rendered over the current Layout.
16 * @note The overlay consists on a base rectangle (or rounded rectangle) over which child classes can do custom rendering.
17 */
18 class Overlay : public Container {
19 public:
20 /**
21 * @brief Default radius of the overlay rectangle.
22 */
23 static constexpr i32 DefaultRadius = 37;
24
25 /**
26 * @brief Default maximum alpha value for the overlay fade effect.
27 */
28 static constexpr u8 DefaultMaxFadeAlpha = 200;
29
30 /**
31 * @brief Default alpha variation (increment) for the overlay fade effect.
32 */
33 static constexpr u8 DefaultFadeAlphaVariation = 25;
34
35 private:
36 i32 fade_a;
37 Color bg_clr;
38 i32 rad;
39 bool is_ending;
40 u8 max_fade_alpha;
41 u8 fade_alpha_variation;
42
43 public:
44 /**
45 * @brief Creates a new Overlay with the specified position, size, and background color.
46 * @param x X coordinate of the Overlay.
47 * @param y Y coordinate of the Overlay.
48 * @param width Width of the Overlay.
49 * @param height Height of the Overlay.
50 * @param bg_clr Background color of the Overlay.
51 */
52 Overlay(const i32 x, const i32 y, const i32 width, const i32 height, const Color bg_clr) : Container(x, y, width, height), fade_a(0), bg_clr(bg_clr), rad(DefaultRadius), is_ending(false), max_fade_alpha(DefaultMaxFadeAlpha), fade_alpha_variation(DefaultFadeAlphaVariation) {}
54
55 PU_CLASS_POD_GETSET(Radius, rad, i32)
56
57 /**
58 * @brief Checks whether the overlay has a radius for its background rectangle.
59 * @return Whether the overlay has a rounded rectangle.
60 */
61 inline bool HasRadius() {
62 return this->rad > 0;
63 }
64
65 PU_CLASS_POD_GETSET(BackgroundColor, bg_clr, Color)
66 PU_CLASS_POD_GETSET(MaxFadeAlpha, max_fade_alpha, u8)
67 PU_CLASS_POD_GETSET(FadeAlphaVariation, fade_alpha_variation, u8)
68
69 /**
70 * @brief Function called before the overlay is rendered. You may use it to configure additional effects, such as alpha modulation during the Overlay rendering.
71 * @param drawer Renderer used to render the overlay.
72 */
73 virtual void OnPreRender(render::Renderer::Ref &drawer) {}
74
75 /**
76 * @brief Function called after the overlay is rendered. You may use it to configure additional effects, such as alpha modulation during the Overlay rendering.
77 * @param drawer Renderer used to render the overlay.
78 */
79 virtual void OnPostRender(render::Renderer::Ref &drawer) {}
80
81 /**
82 * @brief Rendering callback of the overlay.
83 */
84 bool Render(render::Renderer::Ref &drawer);
85
86 /**
87 * @brief Notifies the overlay that it is ending (fading out).
88 * @note Used by Application to handle the overlay fade out effect.
89 * @param ending Whether the overlay is ending.
90 */
91 inline void NotifyEnding(const bool ending) {
92 this->is_ending = ending;
93 }
94 };
95
96}
Type containing a list of elements.
Definition ui_Container.hpp:19
Container(const i32 x, const i32 y, const i32 width, const i32 height)
Creates a new Container with the specified position and size.
Definition ui_Container.hpp:35
Class that represents an overlay, which is a container that is rendered over the current Layout.
Definition ui_Overlay.hpp:18
void NotifyEnding(const bool ending)
Notifies the overlay that it is ending (fading out).
Definition ui_Overlay.hpp:91
virtual void OnPostRender(render::Renderer::Ref &drawer)
Function called after the overlay is rendered. You may use it to configure additional effects,...
Definition ui_Overlay.hpp:79
bool Render(render::Renderer::Ref &drawer)
Rendering callback of the overlay.
Overlay(const i32 x, const i32 y, const i32 width, const i32 height, const Color bg_clr)
Creates a new Overlay with the specified position, size, and background color.
Definition ui_Overlay.hpp:52
static constexpr i32 DefaultRadius
Default radius of the overlay rectangle.
Definition ui_Overlay.hpp:23
bool HasRadius()
Checks whether the overlay has a radius for its background rectangle.
Definition ui_Overlay.hpp:61
static constexpr u8 DefaultFadeAlphaVariation
Default alpha variation (increment) for the overlay fade effect.
Definition ui_Overlay.hpp:33
static constexpr u8 DefaultMaxFadeAlpha
Default maximum alpha value for the overlay fade effect.
Definition ui_Overlay.hpp:28
virtual void OnPreRender(render::Renderer::Ref &drawer)
Function called before the overlay is rendered. You may use it to configure additional effects,...
Definition ui_Overlay.hpp:73
The main class dealing with rendering.
Definition render_Renderer.hpp:198
Definition render_Renderer.hpp:15
#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
Type encoding a RGBA-8888 color.
Definition ui_Types.hpp:61