Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
ui_Dialog.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file ui_Dialog.hpp
4 * @brief Dialog class header.
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <pu/ui/render/render_Renderer.hpp>
11#include <vector>
12
13namespace pu::ui {
14
15 class Application;
16
17 /**
18 * @brief Class that represents a dialog, which is a simple way to show a message and various options to the user and get a response.
19 * @note A Dialog is rendered over the current Layout, in a similar (but different) way to Overlay.
20 */
21 class Dialog {
22 public:
23 // These are all self-explanatory
24
25 static constexpr Color DefaultTitleColor = { 0xA, 0xA, 0xA, 0xFF };
26 static constexpr Color DefaultContentColor = { 0x14, 0x14, 0x14, 0xFF };
27 static constexpr Color DefaultOptionColor = { 0xA, 0xA, 0xA, 0xFF };
28
29 static constexpr u32 DefaultDialogBorderRadius = 52;
30
31 static constexpr u32 DefaultSpaceBetweenOptions = 30;
32 static constexpr u32 DefaultSpaceBetweenOptionRows = 15;
33
34 static constexpr u32 DefaultTitleExtraWidth = 135;
35 static constexpr u32 DefaultContentExtraWidth = 135;
36 static constexpr u32 DefaultSpaceBetweenContentAndOptions = 210;
37 static constexpr u32 DefaultTitleTopMargin = 30;
38
39 static constexpr u32 DefaultTitleX = 67;
40 static constexpr u32 DefaultTitleY = 82;
41 static constexpr u32 DefaultContentX = 67;
42 static constexpr u32 DefaultContentY = 210;
43
44 static constexpr u32 DefaultIconExtraHeight = 37;
45
46 static constexpr u32 DefaultOptionsBaseHorizontalMargin = 67;
47 static constexpr u32 DefaultOptionHeight = 90;
48 static constexpr u32 DefaultOptionHorizontalMargin = 45;
50 static constexpr u32 DefaultOptionBottomMargin = 37;
51
52 static constexpr u8 DefaultMaxScreenFadeAlpha = 125;
53
54 static constexpr u32 DefaultIconMargin = 45;
55
56 static constexpr u8 DefaultOverAlphaIncrementSteps = 12;
57 static constexpr u8 DefaultFadeAlphaIncrementSteps = 18;
58
59 static constexpr Color DefaultDialogColor = { 0xE1, 0xE1, 0xE1, 0xFF };
60 static constexpr Color DefaultOverColor = { 0xB4, 0xB4, 0xC8, 0xFF };
61
62 private:
63 std::string title_font_name;
64 std::string cnt_font_name;
65 std::string opt_font_name;
66 std::string title;
67 std::string cnt;
68 sdl2::Texture title_tex;
69 sdl2::Texture cnt_tex;
70 std::vector<std::string> opts;
71 std::string cancel_opt;
72 u32 selected_opt_idx;
73 i32 selected_opt_over_alpha;
74 SigmoidIncrementer<i32> selected_opt_over_alpha_incr;
75 i32 prev_selected_opt_idx;
76 i32 prev_selected_opt_over_alpha;
77 SigmoidIncrementer<i32> prev_selected_opt_over_alpha_incr;
78 bool user_cancelled;
79 sdl2::TextureHandle::Ref icon_tex;
80 Color title_clr;
81 Color cnt_clr;
82 Color opt_clr;
83 u32 dialog_border_radius;
84 u32 space_between_options;
85 u32 space_between_option_rows;
86 u32 title_extra_width;
87 u32 cnt_extra_width;
88 u32 space_between_cnt_and_options;
89 u32 title_top_margin;
90 u32 title_x;
91 u32 title_y;
92 u32 cnt_x;
93 u32 cnt_y;
94 u32 opts_base_h_margin;
95 u32 opt_height;
96 u32 opt_h_margin;
97 u32 opt_border_radius;
98 u32 opt_bottom_margin;
99 u8 max_screen_fade_alpha;
100 u32 icon_margin;
101 Color dialog_clr;
102 Color over_clr;
103 u8 over_alpha_incr_steps;
104 u8 fade_alpha_incr_steps;
105
106 inline Color MakeDialogColor(const u8 alpha) {
107 return this->dialog_clr.WithAlpha(alpha);
108 }
109
110 inline Color MakeOverColor(const u8 alpha) {
111 return this->over_clr.WithAlpha(alpha);
112 }
113
114 void LoadTitle();
115 void LoadContent();
116 void DisposeIcon();
117
118 public:
119 /**
120 * @brief Creates a new Dialog with the specified title and content.
121 * @param title Title of the Dialog.
122 * @param content Content of the Dialog.
123 */
124 Dialog(const std::string &title, const std::string &content);
127
128 /**
129 * @brief Adds an option to the Dialog.
130 * @param opt_name Name of the option to add.
131 */
132 void AddOption(const std::string &opt_name);
133
134 /**
135 * @brief Sets the option that will cancel the Dialog.
136 * @note If this option is selected, the Dialog will be cancelled.
137 * @note This option will always be the last one.
138 * @param opt_name Name of the option that will cancel the Dialog.
139 */
140 inline void SetCancelOption(const std::string &opt_name) {
141 this->cancel_opt = opt_name;
142 }
143
144 /**
145 * @brief Removes the cancel option from the Dialog.
146 */
147 inline void RemoveCancelOption() {
148 this->SetCancelOption("");
149 }
150
151 /**
152 * @brief Checks whether the Dialog has a cancel option.
153 * @return Whether the Dialog has a cancel option.
154 */
155 inline bool HasCancelOption() {
156 return !this->cancel_opt.empty();
157 }
158
159 PU_CLASS_POD_GET(TitleColor, title_clr, Color)
160
161 /**
162 * @brief Sets the color of the title.
163 * @param clr New color of the title.
164 */
165 void SetTitleColor(const Color clr);
166
167 /**
168 * @brief Sets the title of the Dialog.
169 * @param new_title New title of the Dialog.
170 */
171 void SetTitle(const std::string &new_title);
172
173 PU_CLASS_POD_GET(ContentColor, cnt_clr, Color)
174
175 /**
176 * @brief Sets the color of the content.
177 * @param clr New color of the content.
178 */
179 void SetContentColor(const Color clr);
180
181 /**
182 * @brief Sets the content of the Dialog.
183 * @param new_content New content of the Dialog.
184 */
185 void SetContent(const std::string &new_content);
186
187 PU_CLASS_POD_GETSET(OptionColor, opt_clr, Color)
188
189 PU_CLASS_POD_GETSET(DialogBorderRadius, dialog_border_radius, u32)
190 PU_CLASS_POD_GETSET(SpaceBetweenOptions, space_between_options, u32)
191 PU_CLASS_POD_GETSET(SpaceBetweenOptionRows, space_between_option_rows, u32)
192 PU_CLASS_POD_GETSET(TitleExtraWidth, title_extra_width, u32)
193 PU_CLASS_POD_GETSET(ContentExtraWidth, cnt_extra_width, u32)
194 PU_CLASS_POD_GETSET(SpaceBetweenContentAndOptions, space_between_cnt_and_options, u32)
195 PU_CLASS_POD_GETSET(TitleTopMargin, title_top_margin, u32)
196 PU_CLASS_POD_GETSET(TitleX, title_x, u32)
197 PU_CLASS_POD_GETSET(TitleY, title_y, u32)
198 PU_CLASS_POD_GETSET(ContentX, cnt_x, u32)
199 PU_CLASS_POD_GETSET(ContentY, cnt_y, u32)
200 PU_CLASS_POD_GETSET(OptionsBaseHorizontalMargin, opts_base_h_margin, u32)
201 PU_CLASS_POD_GETSET(OptionHeight, opt_height, u32)
202 PU_CLASS_POD_GETSET(OptionHorizontalMargin, opt_h_margin, u32)
203 PU_CLASS_POD_GETSET(OptionBorderRadius, opt_border_radius, u32)
204 PU_CLASS_POD_GETSET(OptionBottomMargin, opt_bottom_margin, u32)
205 PU_CLASS_POD_GETSET(MaxScreenFadeAlpha, max_screen_fade_alpha, u8)
206 PU_CLASS_POD_GETSET(IconMargin, icon_margin, u32)
207 PU_CLASS_POD_GETSET(DialogColor, dialog_clr, Color)
208 PU_CLASS_POD_GETSET(OverColor, over_clr, Color)
209 PU_CLASS_POD_GETSET(OverAlphaIncrementSteps, over_alpha_incr_steps, u8)
210 PU_CLASS_POD_GETSET(FadeAlphaIncrementSteps, fade_alpha_incr_steps, u8)
211
212 /**
213 * @brief Sets the icon of the Dialog.
214 * @param tex Texture of the icon.
215 */
216 void SetIcon(sdl2::TextureHandle::Ref tex);
217
218 /**
219 * @brief Checks whether the Dialog has an icon.
220 * @return Whether the Dialog has an icon.
221 */
222 inline bool HasIcon() {
223 return this->icon_tex != nullptr;
224 }
225
226 /**
227 * @brief Shows the Dialog to the user.
228 * @param app_ref Reference to the Application that will show the Dialog.
229 * @note This is not really meant to be used manually. Application calls this internally. Check Application::ShowDialog or Application::CreateShowDialog.
230 * @return Index of the selected option by the user.
231 */
232 i32 Show(Application *app_ref);
233
234 /**
235 * @brief Gets whether the user cancelled the Dialog.
236 * @note If the Dialog has not been shown yet, this will always return false.
237 * @return Whether the user cancelled the Dialog.
238 */
239 inline constexpr bool UserCancelled() {
240 return this->user_cancelled;
241 }
242
243 /**
244 * @brief Gets whether the Dialog has been shown and the user selected an option.
245 * @note If the Dialog has not been shown yet, this will always return false.
246 * @return Whether the Dialog has been shown and the user selected an option.
247 */
248 inline bool IsOk() {
249 if(this->user_cancelled) {
250 return false;
251 }
252
253 if(this->HasCancelOption() && (this->selected_opt_idx == (this->opts.size() - 1))) {
254 return false;
255 }
256
257 return true;
258 }
259 };
260
261}
High-level handle wrapper to a texture in SDL2.
Definition sdl2_Types.hpp:47
Type that represents the basic object in this library, the general context for UI and rendering.
Definition ui_Application.hpp:20
Class that represents a dialog, which is a simple way to show a message and various options to the us...
Definition ui_Dialog.hpp:21
static constexpr u32 DefaultIconMargin
Definition ui_Dialog.hpp:54
static constexpr Color DefaultTitleColor
Definition ui_Dialog.hpp:25
constexpr bool UserCancelled()
Gets whether the user cancelled the Dialog.
Definition ui_Dialog.hpp:239
void SetCancelOption(const std::string &opt_name)
Sets the option that will cancel the Dialog.
Definition ui_Dialog.hpp:140
bool HasCancelOption()
Checks whether the Dialog has a cancel option.
Definition ui_Dialog.hpp:155
static constexpr u32 DefaultContentX
Definition ui_Dialog.hpp:41
static constexpr Color DefaultDialogColor
Definition ui_Dialog.hpp:59
void SetContentColor(const Color clr)
Sets the color of the content.
static constexpr Color DefaultContentColor
Definition ui_Dialog.hpp:26
static constexpr u32 DefaultTitleTopMargin
Definition ui_Dialog.hpp:37
static constexpr u32 DefaultOptionBorderRadius
Definition ui_Dialog.hpp:49
static constexpr u32 DefaultTitleExtraWidth
Definition ui_Dialog.hpp:34
i32 Show(Application *app_ref)
Shows the Dialog to the user.
static constexpr u8 DefaultOverAlphaIncrementSteps
Definition ui_Dialog.hpp:56
static constexpr u32 DefaultOptionHorizontalMargin
Definition ui_Dialog.hpp:48
static constexpr u32 DefaultDialogBorderRadius
Definition ui_Dialog.hpp:29
static constexpr u32 DefaultSpaceBetweenContentAndOptions
Definition ui_Dialog.hpp:36
static constexpr u32 DefaultOptionsBaseHorizontalMargin
Definition ui_Dialog.hpp:46
void SetContent(const std::string &new_content)
Sets the content of the Dialog.
void SetTitle(const std::string &new_title)
Sets the title of the Dialog.
void SetTitleColor(const Color clr)
Sets the color of the title.
static constexpr u8 DefaultMaxScreenFadeAlpha
Definition ui_Dialog.hpp:52
void RemoveCancelOption()
Removes the cancel option from the Dialog.
Definition ui_Dialog.hpp:147
static constexpr Color DefaultOverColor
Definition ui_Dialog.hpp:60
static constexpr u32 DefaultOptionBottomMargin
Definition ui_Dialog.hpp:50
static constexpr u32 DefaultSpaceBetweenOptions
Definition ui_Dialog.hpp:31
void AddOption(const std::string &opt_name)
Adds an option to the Dialog.
static constexpr u32 DefaultTitleX
Definition ui_Dialog.hpp:39
static constexpr u32 DefaultSpaceBetweenOptionRows
Definition ui_Dialog.hpp:32
static constexpr u32 DefaultIconExtraHeight
Definition ui_Dialog.hpp:44
static constexpr u32 DefaultContentY
Definition ui_Dialog.hpp:42
bool HasIcon()
Checks whether the Dialog has an icon.
Definition ui_Dialog.hpp:222
void SetIcon(sdl2::TextureHandle::Ref tex)
Sets the icon of the Dialog.
static constexpr Color DefaultOptionColor
Definition ui_Dialog.hpp:27
static constexpr u32 DefaultOptionHeight
Definition ui_Dialog.hpp:47
static constexpr u32 DefaultContentExtraWidth
Definition ui_Dialog.hpp:35
bool IsOk()
Gets whether the Dialog has been shown and the user selected an option.
Definition ui_Dialog.hpp:248
static constexpr u32 DefaultTitleY
Definition ui_Dialog.hpp:40
static constexpr u8 DefaultFadeAlphaIncrementSteps
Definition ui_Dialog.hpp:57
Dialog(const std::string &title, const std::string &content)
Creates a new Dialog with the specified title and content.
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
Definition sdl2_Types.hpp:17
#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_GET(fn_name, var_name, type)
Automatically defines a getter function for a POD variable.
Definition pu_Include.hpp:29
Type encoding a RGBA-8888 color.
Definition ui_Types.hpp:61
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(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