Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
ui_Application.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file ui_Application.hpp
4 * @brief Contains pu::ui::Application class
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <pu/ui/ui_Dialog.hpp>
11#include <pu/ui/ui_Layout.hpp>
12#include <pu/ui/ui_Overlay.hpp>
13#include <chrono>
14
15namespace pu::ui {
16
17 /**
18 * @brief Type that represents the basic object in this library, the general context for UI and rendering.
19 */
21 public:
22 /**
23 * @brief Function type used to further customize a Dialog (setting fields) when using Application::CreateShowDialog.
24 */
25 using DialogPrepareCallback = std::function<void(Dialog::Ref&)>;
26
27 /**
28 * @brief Function type used to handle input events.
29 * @param keys_down The keys that were pressed in this frame.
30 * @param keys_up The keys that were released in this frame.
31 * @param keys_held The keys that are being held in this frame.
32 * @param touch_pos The position of the touch on the screen.
33 */
34 using OnInputCallback = std::function<void(const u64 keys_down, const u64 keys_up, const u64 keys_held, const TouchPoint touch_pos)>;
35
36 /**
37 * @brief Function type to be called every rendering loop/frame.
38 */
39 using RenderCallback = std::function<void()>;
40
41 /**
42 * @brief Function type to be called when rendering over the main rendering loop/frame.
43 * @param renderer The Renderer instance to render over.
44 * @return Whether the rendering loop/frame should continue.
45 */
46 using RenderOverFunction = std::function<bool(render::Renderer::Ref&)>;
47
48 // Self-explanatory constant(s)
49
50 static constexpr u8 DefaultFadeAlphaIncrementSteps = 20;
51
52 private:
53 void OnRender();
54
55 protected:
56 bool loaded;
58 RenderOverFunction render_over_fn;
65 Layout::Ref lyt;
68 std::chrono::steady_clock::time_point ovl_start_time;
70 OnInputCallback on_ipt_cb;
73
74 public:
75 /**
76 * @brief Creates a new Application with the specified Renderer.
77 * @param renderer The Renderer to use for rendering.
78 */
79 Application(render::Renderer::Ref renderer);
81 virtual ~Application();
82
83 /**
84 * @brief Loads the Layout to be used by the Application.
85 * @param lyt The Layout to load.
86 */
87 inline void LoadLayout(Layout::Ref lyt) {
88 this->lyt = lyt;
89 }
90
91 /**
92 * @brief Gets the current Layout (of the specified type).
93 * @tparam L The type of Layout to get.
94 * @return The Layout of the specified type.
95 */
96 template<typename L>
97 inline std::shared_ptr<L> GetLayout() {
98 static_assert(std::is_base_of_v<ui::Layout, L>);
99 return std::static_pointer_cast<L>(this->lyt);
100 }
101
102 /**
103 * @brief Loads the Application.
104 * @note This function must be called before calling Application::Show or similar.
105 * @return Whether the Application was loaded successfully.
106 */
107 Result Load();
108
109 /**
110 * @brief Function to be implemented by child classes, called when the Application is loaded.
111 * @note This function must be implemented by the user.
112 */
113 virtual void OnLoad() = 0;
114
115 /**
116 * @brief Adds a RenderCallback to the Application.
117 * @param render_cb The RenderCallback to add.
118 */
119 inline void AddRenderCallback(RenderCallback render_cb) {
120 this->render_cbs.push_back(render_cb);
121 }
122
123 /**
124 * @brief Sets the OnInputCallback for the Application.
125 * @param on_ipt_cb The OnInputCallback to set.
126 */
127 inline void SetOnInput(OnInputCallback on_ipt_cb) {
128 this->on_ipt_cb = on_ipt_cb;
129 }
130
131 /**
132 * @brief Shows a Dialog and waits for the user to interact with it.
133 * @param dialog The Dialog to show.
134 * @return The index of the option selected by the user.
135 */
136 inline i32 ShowDialog(Dialog::Ref &dialog) {
137 return dialog->Show(this);
138 }
139
140 /**
141 * @brief Wrapper function that creates a Dialog with the specified parameters and shows it.
142 * @param title The title of the Dialog.
143 * @param content The content of the Dialog.
144 * @param opts The options of the Dialog.
145 * @param use_last_opt_as_cancel Whether the last option should be used as a cancel option.
146 * @param icon The icon of the Dialog.
147 * @param prepare_cb The DialogPrepareCallback to further customize the Dialog.
148 * @return The index of the option selected by the user.
149 */
150 i32 CreateShowDialog(const std::string &title, const std::string &content, const std::vector<std::string> &opts, const bool use_last_opt_as_cancel, sdl2::TextureHandle::Ref icon = {}, DialogPrepareCallback prepare_cb = nullptr);
151
152 /**
153 * @brief Starts an Overlay.
154 * @param ovl The Overlay to start.
155 */
156 inline void StartOverlay(Overlay::Ref ovl) {
157 if(this->ovl == nullptr) {
158 this->ovl = ovl;
159 }
160 }
161
162 /**
163 * @brief Starts an Overlay with a timeout.
164 * @param ovl The Overlay to start.
165 * @param ms The timeout in milliseconds.
166 */
167 void StartOverlayWithTimeout(Overlay::Ref ovl, const u64 ms);
168
169 /**
170 * @brief Ends the current Overlay.
171 */
173
174 /**
175 * @brief Shows the Application.
176 * @note Application::Load must be called before calling this function, and the Layout must be previously set using Application::LoadLayout.
177 * @note If no Layout was previously set or if the Application was not loaded yet, this function will inmediately return.
178 */
179 void Show();
180
181 /**
182 * @brief Shows the Application with a fade-in effect.
183 * @note Application::Load must be called before calling this function, and the Layout must be previously set using Application::LoadLayout.
184 * @note If no Layout was previously set or if the Application was not loaded yet, this function will inmediately return.
185 */
186 inline void ShowWithFadeIn() {
187 this->FadeIn();
188 this->Show();
189 }
190
191 /**
192 * @brief Gets whether the Application is currently shown.
193 * @return Whether the Application is currently shown.
194 */
195 inline bool IsShown() {
196 return this->is_shown;
197 }
198
199 /**
200 * @brief Gets whether the Application can be shown.
201 * @note This function checks if the Application is loaded and if any Layout was set.
202 * @return Whether the Application can be shown.
203 */
204 inline bool CanBeShown() {
205 return this->loaded && (this->lyt != nullptr);
206 }
207
208 /**
209 * @brief Calls for rendering the Application.
210 * @note This is essentially the rendering code called every frame. This function may be used to create custom rendering loops, but be careful when using it.
211 * @return Whether the rendering loop/frame should continue.
212 */
214
215 /**
216 * @brief Calls for rendering the Application with a custom RenderOverFunction.
217 * @param render_over_fn The RenderOverFunction to use.
218 * @note This function is useful when you want to render over the main rendering loop/frame. This logic is internally used with Dialog rendering.
219 * @return Whether the rendering loop/frame should continue.
220 */
221 bool CallForRenderWithRenderOver(RenderOverFunction render_over_fn);
222
223 /**
224 * @brief Locks the rendering mutex.
225 */
226 inline void LockRender() {
227 rmutexLock(&this->render_lock);
228 }
229
230 /**
231 * @brief Unlocks the rendering mutex.
232 */
233 inline void UnlockRender() {
234 rmutexUnlock(&this->render_lock);
235 }
236
237 /**
238 * @brief Starts and waits for a fade-in effect.
239 * @note This function will block until the fade-in effect is completed.
240 */
241 void FadeIn();
242
243 /**
244 * @brief Starts and waits for a fade-out effect.
245 * @note This function will block until the fade-out effect is completed.
246 */
247 void FadeOut();
248
249 /**
250 * @brief Gets whether the Application is currently fading in or already faded in.
251 * @return Whether the Application is currently fading in or already faded in.
252 */
253 inline bool IsFadingOrFadedIn() {
254 return this->fade_alpha > 0;
255 }
256
257 /**
258 * @brief Sets the number of steps for the fade-in and fade-out effects.
259 * @param fade_alpha_increment_steps The number of steps for the fade-in and fade-out effects.
260 */
261 inline void SetFadeAlphaIncrementStepCount(const u8 fade_alpha_increment_steps) {
262 this->fade_alpha_increment_steps = fade_alpha_increment_steps;
263 }
264
265 /**
266 * @brief Sets the target background image for the fade effect.
267 * @param bg_tex The background image to use for the fade effect.
268 * @note Fade effects will start/end with the specified background image.
269 */
271
272 /**
273 * @brief Resets the background image used for the fade effect.
274 * @note This function will reset the background image used for the fade effect, and the fade effect will use the set solid color instead.
275 */
277
278 /**
279 * @brief Gets the background image used for the fade effect.
280 * @return The background image used for the fade effect.
281 */
283 return this->fade_bg_tex;
284 }
285
286 /**
287 * @brief Gets whether the fade effect is using a background image.
288 * @return Whether the fade effect is using a background image.
289 */
291 return this->fade_bg_tex != nullptr;
292 }
293
294 /**
295 * @brief Sets the background color for the fade effect.
296 * @param clr The background color to use for the fade effect.
297 * @note Fade effects will start/end with the specified background color.
298 * @note If a background image is set, this function will reset it.
299 */
301
302 /**
303 * @brief Closes the Application.
304 * @param do_exit Whether the program should fully exit after closing.
305 * @note This function will finish the Application and, if specified, exit the program using `exit(0)`.
306 */
307 void Close(const bool do_exit = false);
308
309 /**
310 * @brief Closes the Application with a fade-out effect.
311 * @param do_exit Whether the program should fully exit after closing.
312 * @note This function will finish the Application with a fade-out effect and, if specified, exit the program using `exit(0)`.
313 */
314 inline void CloseWithFadeOut(const bool do_exit = false) {
315 this->FadeOut();
316 this->Close(do_exit);
317 }
318
319 /**
320 * @brief Gets the currently pressed button keys.
321 * @return The currently pressed button keys.
322 */
323 inline u64 GetButtonsDown() {
324 return this->renderer->GetButtonsDown();
325 }
326
327 /**
328 * @brief Gets the currently released button keys.
329 * @return The currently released button keys.
330 */
331 inline u64 GetButtonsUp() {
332 return this->renderer->GetButtonsUp();
333 }
334
335 /**
336 * @brief Gets the currently held button keys.
337 * @return The currently held button keys.
338 */
339 inline u64 GetButtonsHeld() {
340 return this->renderer->GetButtonsHeld();
341 }
342
343 /**
344 * @brief Gets the currently pressed touch position.
345 * @return The currently pressed touch position.
346 */
347 inline HidTouchScreenState GetTouchState() {
348 HidTouchScreenState state = {};
349 hidGetTouchScreenStates(&state, 1);
350 return state;
351 }
352 };
353
354}
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
bool IsShown()
Gets whether the Application is currently shown.
Definition ui_Application.hpp:195
bool is_shown
Definition ui_Application.hpp:59
virtual ~Application()
sdl2::TextureHandle::Ref fade_bg_tex
Definition ui_Application.hpp:63
std::vector< RenderCallback > render_cbs
Definition ui_Application.hpp:69
HidTouchScreenState GetTouchState()
Gets the currently pressed touch position.
Definition ui_Application.hpp:347
virtual void OnLoad()=0
Function to be implemented by child classes, called when the Application is loaded.
bool CallForRender()
Calls for rendering the Application.
OnInputCallback on_ipt_cb
Definition ui_Application.hpp:70
Application(render::Renderer::Ref renderer)
Creates a new Application with the specified Renderer.
Result Load()
Loads the Application.
static constexpr u8 DefaultFadeAlphaIncrementSteps
Definition ui_Application.hpp:50
SigmoidIncrementer< i32 > fade_alpha_incr
Definition ui_Application.hpp:61
u8 fade_alpha_increment_steps
Definition ui_Application.hpp:60
Layout::Ref lyt
Definition ui_Application.hpp:65
void StartOverlay(Overlay::Ref ovl)
Starts an Overlay.
Definition ui_Application.hpp:156
void SetFadeBackgroundColor(const Color clr)
Sets the background color for the fade effect.
void StartOverlayWithTimeout(Overlay::Ref ovl, const u64 ms)
Starts an Overlay with a timeout.
u64 GetButtonsDown()
Gets the currently pressed button keys.
Definition ui_Application.hpp:323
void LockRender()
Locks the rendering mutex.
Definition ui_Application.hpp:226
u64 GetButtonsUp()
Gets the currently released button keys.
Definition ui_Application.hpp:331
u64 GetButtonsHeld()
Gets the currently held button keys.
Definition ui_Application.hpp:339
bool CanBeShown()
Gets whether the Application can be shown.
Definition ui_Application.hpp:204
void FadeOut()
Starts and waits for a fade-out effect.
void FadeIn()
Starts and waits for a fade-in effect.
void AddRenderCallback(RenderCallback render_cb)
Adds a RenderCallback to the Application.
Definition ui_Application.hpp:119
void ShowWithFadeIn()
Shows the Application with a fade-in effect.
Definition ui_Application.hpp:186
void CloseWithFadeOut(const bool do_exit=false)
Closes the Application with a fade-out effect.
Definition ui_Application.hpp:314
void SetFadeBackgroundImage(sdl2::TextureHandle::Ref bg_tex)
Sets the target background image for the fade effect.
void EndOverlay()
Ends the current Overlay.
bool in_render_over
Definition ui_Application.hpp:57
i32 fade_alpha
Definition ui_Application.hpp:62
bool HasFadeBackgroundImage()
Gets whether the fade effect is using a background image.
Definition ui_Application.hpp:290
bool IsFadingOrFadedIn()
Gets whether the Application is currently fading in or already faded in.
Definition ui_Application.hpp:253
void ResetFadeBackgroundImage()
Resets the background image used for the fade effect.
void SetOnInput(OnInputCallback on_ipt_cb)
Sets the OnInputCallback for the Application.
Definition ui_Application.hpp:127
RMutex render_lock
Definition ui_Application.hpp:72
bool loaded
Definition ui_Application.hpp:56
void SetFadeAlphaIncrementStepCount(const u8 fade_alpha_increment_steps)
Sets the number of steps for the fade-in and fade-out effects.
Definition ui_Application.hpp:261
std::shared_ptr< L > GetLayout()
Gets the current Layout (of the specified type).
Definition ui_Application.hpp:97
Color fade_bg_clr
Definition ui_Application.hpp:64
void Close(const bool do_exit=false)
Closes the Application.
Overlay::Ref ovl
Definition ui_Application.hpp:66
RenderOverFunction render_over_fn
Definition ui_Application.hpp:58
u64 ovl_timeout_ms
Definition ui_Application.hpp:67
i32 CreateShowDialog(const std::string &title, const std::string &content, const std::vector< std::string > &opts, const bool use_last_opt_as_cancel, sdl2::TextureHandle::Ref icon={}, DialogPrepareCallback prepare_cb=nullptr)
Wrapper function that creates a Dialog with the specified parameters and shows it.
bool CallForRenderWithRenderOver(RenderOverFunction render_over_fn)
Calls for rendering the Application with a custom RenderOverFunction.
render::Renderer::Ref renderer
Definition ui_Application.hpp:71
sdl2::TextureHandle::Ref & GetFadeBackgroundImageTexture()
Gets the background image used for the fade effect.
Definition ui_Application.hpp:282
void LoadLayout(Layout::Ref lyt)
Loads the Layout to be used by the Application.
Definition ui_Application.hpp:87
i32 ShowDialog(Dialog::Ref &dialog)
Shows a Dialog and waits for the user to interact with it.
Definition ui_Application.hpp:136
void Show()
Shows the Application.
void UnlockRender()
Unlocks the rendering mutex.
Definition ui_Application.hpp:233
std::chrono::steady_clock::time_point ovl_start_time
Definition ui_Application.hpp:68
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
Class that represents a layout, the core UI container in the library.
Definition ui_Layout.hpp:19
Class that represents an overlay, which is a container that is rendered over the current Layout.
Definition ui_Overlay.hpp:18
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
The main class dealing with rendering.
Definition render_Renderer.hpp:198
Definition sdl2_Types.hpp:17
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
Type encoding a RGBA-8888 color.
Definition ui_Types.hpp:61
Type encoding a touch point.
Definition ui_Types.hpp:120