Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
render_Renderer.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file render_Renderer.hpp
4 * @brief Main rendering header.
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <pu/ui/ui_Types.hpp>
11#include <pu/ui/render/render_SDL2.hpp>
12#include <pu/ttf/ttf_Font.hpp>
13#include <vector>
14
15namespace pu::ui::render {
16
17 constexpr u32 BaseScreenWidth = 1280;
18 constexpr u32 BaseScreenHeight = 720;
19
20 constexpr u32 ScreenWidth = 1920;
21 constexpr u32 ScreenHeight = 1080;
22
23 constexpr double ScreenFactor = (double)ScreenWidth / (double)BaseScreenWidth;
24
25 /**
26 * @brief Represents the options for initializing the Renderer.
27 */
31 u32 width;
32 u32 height;
43
44 /**
45 * @brief Creates a new RendererInitOptions with the specified parameters.
46 * @param sdl_flags The flags for initializing SDL2.
47 * @param sdl_render_flags The flags for initializing the Renderer.
48 * @param w The width of the screen. By default, it is set to 1920.
49 * @param h The height of the screen. By default, it is set to 1080.
50 */
51 RendererInitOptions(const u32 sdl_flags, const u32 sdl_render_flags, const u32 w = ScreenWidth, const u32 h = ScreenHeight) : sdl_flags(sdl_flags), sdl_render_flags(sdl_render_flags), width(w), height(h), pl_srv_type(-1), default_shared_fonts(), default_font_paths(), extra_default_font_sizes(), init_img(false), sdl_img_flags(0), init_romfs(false), pad_player_count(1), pad_id_mask(0), pad_style_tag(0) {}
52
53 /**
54 * @brief Sets the pl: service type to use.
55 * @param type The pl: service type to use.
56 * @note This function must be called for the Rendere to initialize any text/TTF functionalities.
57 * @note You should probably use PlServiceType_User for your purposes, only use other types if you know what you're doing.
58 */
59 inline void SetPlServiceType(const PlServiceType type = PlServiceType_User) {
60 this->pl_srv_type = type;
61 }
62
63 /**
64 * @brief Adds a default shared font to load.
65 * @param type The shared font type to load.
66 */
67 inline void AddDefaultSharedFont(const PlSharedFontType type) {
68 this->default_shared_fonts.push_back(type);
69 }
70
71 /**
72 * @brief Adds all shared fonts to load.
73 */
75 for(u32 i = 0; i < PlSharedFontType_Total; i++) {
76 this->default_shared_fonts.push_back(static_cast<PlSharedFontType>(i));
77 }
78 }
79
80 /**
81 * @brief Adds a default font path to load.
82 * @param font_path The path to the font to load.
83 */
84 inline void AddDefaultFontPath(const std::string &font_path) {
85 this->default_font_paths.push_back(font_path);
86 }
87
88 /**
89 * @brief Adds an extra default font size to load.
90 * @param font_size The font size to load.
91 */
92 inline void AddExtraDefaultFontSize(const u32 font_size) {
93 this->extra_default_font_sizes.push_back(font_size);
94 }
95
96 /**
97 * @brief Enables the Renderer to use SDL2_image with the specified flags.
98 * @param sdl_img_flags The flags to use for SDL2_image.
99 */
100 inline void UseImage(const i32 sdl_img_flags) {
101 this->init_img = true;
102 this->sdl_img_flags = sdl_img_flags;
103 }
104
105 /**
106 * @brief Enables the Renderer to use RomFs.
107 * @note If RomFs is enabled, Plutonium itself will handle RomFs initializing/exiting.
108 */
109 inline void UseRomfs() {
110 this->init_romfs = true;
111 }
112
113 /**
114 * @brief Sets the amount of players to use for input.
115 * @param count The amount of players to use for input.
116 */
117 inline void SetInputPlayerCount(const u32 count) {
118 this->pad_player_count = count;
119 }
120
121 /**
122 * @brief Adds an input Npad ID type to use for input.
123 * @param type The Npad ID type to use for input.
124 * @note You will need to add at least one Npad ID type to have any input.
125 */
126 inline void AddInputNpadIdType(const u64 type) {
127 this->pad_id_mask |= BITL(type);
128 }
129
130 /**
131 * @brief Adds an input Npad style tag to use for input.
132 * @param tag The Npad style tag to use for input.
133 * @note You will need to add at least one Npad style tag to have any input.
134 */
135 inline void AddInputNpadStyleTag(const u32 tag) {
136 this->pad_style_tag |= tag;
137 }
138
139 /**
140 * @brief Checks if the Renderer has initialized / will initialize the pl: service.
141 * @return true if the Renderer has initialized / will initialize the pl: service, false otherwise.
142 */
143 inline bool NeedsPlService() {
144 return this->pl_srv_type >= 0;
145 }
146
147 /**
148 * @brief Checks if the Renderer has initialized / will initialize SDL2-TTF.
149 * @return true if the Renderer has initialized / will initialize SDL2-TTF, false otherwise.
150 */
151 inline bool NeedsTtf() {
152 return !this->default_shared_fonts.empty() || !this->default_font_paths.empty();
153 }
154 };
155
156 constexpr u32 ImgAllFlags = IMG_INIT_PNG | IMG_INIT_JPG | IMG_INIT_WEBP; // IMG_INIT_TIF not included since they are not supported here
157 constexpr u32 RendererSoftwareFlags = SDL_RENDERER_SOFTWARE;
158 constexpr u32 RendererHardwareFlags = SDL_RENDERER_PRESENTVSYNC | SDL_RENDERER_ACCELERATED;
159
160 /**
161 * @brief Represents the options for rendering a texture.
162 */
165 i32 width;
168 i32 src_x;
169 i32 src_y;
170
171 static constexpr i32 NoAlpha = -1;
172 static constexpr i32 NoWidth = -1;
173 static constexpr i32 NoHeight = -1;
174 static constexpr float NoRotation = -1.0f;
175 static constexpr i32 NoSourceX = -1;
176 static constexpr i32 NoSourceY = -1;
177
178 /**
179 * @brief Creates a new TextureRenderOptions with the specified parameters.
180 * @param alpha The alpha to use for the texture, or nothing to make no alpha modifications.
181 * @param width The width to use for the texturem or nothing to use the texture's base width.
182 * @param height The height to use for the texture, or nothing to use the texture's base height.
183 * @param rot_angle The rotation angle to use for the texture, or nothing to make no rotation.
184 * @param src_x The source X to use for the texture, or nothing to use the entire texture source (0).
185 * @param src_y The source Y to use for the texture, or nothing to use the entire texture source (0).
186 */
187 constexpr TextureRenderOptions(std::optional<u8> alpha, std::optional<i32> width, std::optional<i32> height, std::optional<float> rot_angle, std::optional<i32> src_x, std::optional<i32> src_y) : alpha_mod(alpha.value_or(NoAlpha)), width(width.value_or(NoWidth)), height(height.value_or(NoHeight)), rot_angle(rot_angle.value_or(NoRotation)), src_x(src_x.value_or(NoSourceX)), src_y(src_y.value_or(NoSourceY)) {}
188
189 /**
190 * @brief Creates a new TextureRenderOptions with default parameters (no alpha modifications, no custom width, no custom height, no rotation, no custom source X, no custom source Y).
191 */
193 };
194
195 /**
196 * @brief The main class dealing with rendering.
197 */
198 class Renderer {
199 private:
200 RendererInitOptions init_opts;
201 bool initialized;
202 i32 base_x;
203 i32 base_y;
204 i32 base_a;
205 PadState input_pad;
206
207 inline u8 GetActualAlpha(const u8 input_a) {
208 if(this->base_a >= 0) {
209 return static_cast<u8>(this->base_a);
210 }
211 else {
212 return input_a;
213 }
214 }
215
216 public:
217 /**
218 * @brief Creates a new Renderer with the specified initialization options.
219 * @param init_opts The options to use for initializing the Renderer.
220 */
221 Renderer(const RendererInitOptions init_opts) : init_opts(init_opts), initialized(false), base_x(0), base_y(0), base_a(0), input_pad() {}
223
224 /**
225 * @brief Initializes the Renderer.
226 * @note This function should not be called manually, it is called by the Application using this Renderer.
227 * @return The result of the initialization.
228 */
229 Result Initialize();
230
231 /**
232 * @brief Finalizes the Renderer.
233 * @note This function should not be called manually, it is called by the Application using this Renderer.
234 */
235 void Finalize();
236
237 /**
238 * @brief Checks if the Renderer has been initialized.
239 * @return true if the Renderer has been initialized, false otherwise.
240 */
241 inline bool HasInitialized() {
242 return this->initialized;
243 }
244
245 /**
246 * @brief Initializes the rendering process.
247 * @param clr The color to use for the background.
248 * @note This function is called internally by the Application using this Renderer.
249 */
250 void InitializeRender(const Color clr);
251
252 /**
253 * @brief Finalizes the rendering process.
254 * @note This function is called internally by the Application using this Renderer.
255 */
257
258 /**
259 * @brief Renders a texture to the screen.
260 * @param texture The texture to render.
261 * @param x The X position to render the texture.
262 * @param y The Y position to render the texture.
263 * @param opts The options to use for rendering the texture.
264 * @note This function should be called each render loop / OnRender call.
265 */
266 void RenderTexture(sdl2::Texture texture, const i32 x, const i32 y, const TextureRenderOptions opts = TextureRenderOptions());
267
268 /**
269 * @brief Renders a rectangle to the screen (only the border).
270 * @param clr The color to use for the rectangle.
271 * @param x The X position to render the rectangle.
272 * @param y The Y position to render the rectangle.
273 * @param width The width of the rectangle.
274 * @param height The height of the rectangle.
275 * @note This function should be called each render loop / OnRender call.
276 */
277 void RenderRectangle(const Color clr, const i32 x, const i32 y, const i32 width, const i32 height);
278
279 /**
280 * @brief Renders a filled rectangle to the screen.
281 * @param clr The color to use for the rectangle.
282 * @param x The X position to render the rectangle.
283 * @param y The Y position to render the rectangle.
284 * @param width The width of the rectangle.
285 * @param height The height of the rectangle.
286 * @note This function should be called each render loop / OnRender call.
287 */
288 void RenderRectangleFill(const Color clr, const i32 x, const i32 y, const i32 width, const i32 height);
289
290 /**
291 * @brief Renders a rectangle outline to the screen.
292 * @param clr The color to use for the rectangle.
293 * @param x The X position to render the rectangle.
294 * @param y The Y position to render the rectangle.
295 * @param width The width of the rectangle.
296 * @param height The height of the rectangle.
297 * @param border_width The width of the border.
298 * @note This function should be called each render loop / OnRender call.
299 */
300 inline void RenderRectangleOutline(const Color clr, const i32 x, const i32 y, const i32 width, const i32 height, const i32 border_width) {
301 this->RenderRectangleFill(clr, x - border_width, y - border_width, width + (border_width * 2), height + (border_width * 2));
302 }
303
304 /**
305 * @brief Renders a rounded rectangle to the screen (only the border).
306 * @param clr The color to use for the rectangle.
307 * @param x The X position to render the rectangle.
308 * @param y The Y position to render the rectangle.
309 * @param width The width of the rectangle.
310 * @param height The height of the rectangle.
311 * @param radius The radius of the rounded corners.
312 * @note This function should be called each render loop / OnRender call.
313 */
314 void RenderRoundedRectangle(const Color clr, const i32 x, const i32 y, const i32 width, const i32 height, const i32 radius);
315
316 /**
317 * @brief Renders a filled rounded rectangle to the screen.
318 * @param clr The color to use for the rectangle.
319 * @param x The X position to render the rectangle.
320 * @param y The Y position to render the rectangle.
321 * @param width The width of the rectangle.
322 * @param height The height of the rectangle.
323 * @param radius The radius of the rounded corners.
324 * @note This function should be called each render loop / OnRender call.
325 */
326 void RenderRoundedRectangleFill(const Color clr, const i32 x, const i32 y, const i32 width, const i32 height, const i32 radius);
327
328 /**
329 * @brief Renders a circle to the screen (only the border).
330 * @param clr The color to use for the rectangle.
331 * @param x The X position to render the rectangle.
332 * @param y The Y position to render the rectangle.
333 * @param radius The radius of the circle.
334 * @note This function should be called each render loop / OnRender call.
335 */
336 void RenderCircle(const Color clr, const i32 x, const i32 y, const i32 radius);
337
338 /**
339 * @brief Renders a filled circle to the screen.
340 * @param clr The color to use for the rectangle.
341 * @param x The X position to render the rectangle.
342 * @param y The Y position to render the rectangle.
343 * @param radius The radius of the circle.
344 * @note This function should be called each render loop / OnRender call.
345 */
346 void RenderCircleFill(const Color clr, const i32 x, const i32 y, const i32 radius);
347
348 /**
349 * @brief Renders a simple shadow to the screen.
350 * @param x The X position to render the shadow.
351 * @param y The Y position to render the shadow.
352 * @param width The width of the shadow.
353 * @param height The height of the shadow.
354 * @param base_alpha The base alpha to use for the shadow. This is the starting alpha value at the top of the shadow.
355 * @param main_alpha The main alpha to use for the shadow. The shadow's alpha will be blended with this value.
356 * @note This function should be called each render loop / OnRender call.
357 */
358 void RenderShadowSimple(const i32 x, const i32 y, const i32 width, const i32 height, const i32 base_alpha, const u8 main_alpha = 0xFF);
359
360 /**
361 * @brief Sets the base render position for all rendering functions.
362 * @param x The X position to use as the base render position.
363 * @param y The Y position to use as the base render position.
364 * @note Every rendered shape/texture will be rendered with this base position added to their X and Y positions.
365 */
366 inline void SetBaseRenderPosition(const i32 x, const i32 y) {
367 this->base_x = x;
368 this->base_y = y;
369 }
370
371 /**
372 * @brief Resets the base render position to (0, 0).
373 */
376 }
377
378 /**
379 * @brief Sets the base render alpha for all rendering functions.
380 * @param alpha The alpha to use as the base render alpha.
381 * @note Every rendered shape/texture will be rendered blended with this base alpha value.
382 */
383 inline void SetBaseRenderAlpha(const u8 alpha) {
384 this->base_a = alpha;
385 }
386
387 /**
388 * @brief Resets the base render alpha(no alpha modifications).
389 */
390 inline void ResetBaseRenderAlpha() {
391 this->base_a = -1;
392 }
393
394 /**
395 * @brief Updates the input state.
396 * @note This function is internally called by the Application using this Renderer.
397 */
398 inline void UpdateInput() {
399 padUpdate(&this->input_pad);
400 }
401
402 /**
403 * @brief Gets the buttons that are currently pressed.
404 * @return The buttons that are currently pressed.
405 */
406 inline u64 GetButtonsDown() {
407 return padGetButtonsDown(&this->input_pad);
408 }
409
410 /**
411 * @brief Gets the buttons that are currently released.
412 * @return The buttons that are currently released.
413 */
414 inline u64 GetButtonsUp() {
415 return padGetButtonsUp(&this->input_pad);
416 }
417
418 /**
419 * @brief Gets the buttons that are currently held.
420 * @return The buttons that are currently held.
421 */
422 inline u64 GetButtonsHeld() {
423 return padGetButtons(&this->input_pad);
424 }
425 };
426
427 /**
428 * @brief Gets the underlying SDL2 renderer.
429 * @return The underlying SDL2 renderer.
430 */
432
433 /**
434 * @brief Gets the underlying SDL2 window.
435 * @return The underlying SDL2 window.
436 */
438
439 /**
440 * @brief Gets the underlying SDL2 surface.
441 * @return The underlying SDL2 surface.
442 */
444
445 /**
446 * @brief Gets the underlying SDL2 window width/height.
447 * @return The underlying SDL2 window width/height.
448 */
449 std::pair<u32, u32> GetDimensions();
450
451 /**
452 * @brief Creates a font to the internal font list.
453 * @param font_name The name to use for the font.
454 * @param font The font to add.
455 * @note For simple font management, consider using RendererInitOptions.
456 */
457 bool AddFont(const std::string &font_name, std::shared_ptr<ttf::Font> &font);
458
459 /**
460 * @brief Loads a system shared font (pl:) in a font object.
461 * @param font The font object to load the shared font in.
462 * @param type The shared font type to add.
463 * @note For simple font management, consider using RendererInitOptions.
464 * @note The pl: service must have been initialized for this function to work, either from RendererInitOptions or manually.
465 */
466 bool LoadSingleSharedFontInFont(std::shared_ptr<ttf::Font> &font, const PlSharedFontType type);
467
468 /**
469 * @brief Loads all system shared fonts (pl:) in a font object.
470 * @param font The font object to load the shared fonts in.
471 * @note For simple font management, consider using RendererInitOptions.
472 * @note The pl: service must have been initialized for this function to work, either from RendererInitOptions or manually.
473 */
474 bool LoadAllSharedFontsInFont(std::shared_ptr<ttf::Font> &font);
475
476 /**
477 * @brief Adds a font object as a default font to the internal font list.
478 * @param font The font object to add.
479 */
480 inline void AddDefaultFont(std::shared_ptr<ttf::Font> &font) {
481 AddFont(MakeDefaultFontName(font->GetFontSize()), font);
482 }
483
484 /**
485 * @brief Gets the resulting text size for rendering a text with the specified font.
486 * @param font_name The name of the font to use.
487 * @param text The text to render.
488 * @param out_width The resulting width of the text.
489 * @param out_height The resulting height of the text.
490 * @return Whether the specified font is available (was added) or not, and the text size was calculated.
491 */
492 bool GetTextDimensions(const std::string &font_name, const std::string &text, i32 &out_width, i32 &out_height);
493
494 /**
495 * @brief Gets the resulting text width for rendering a text with the specified font.
496 * @param font_name The name of the font to use.
497 * @param text The text to render.
498 * @return The resulting width of the text. If the font is not available, 0 will be returned.
499 */
500 i32 GetTextWidth(const std::string &font_name, const std::string &text);
501
502 /**
503 * @brief Gets the resulting text height for rendering a text with the specified font.
504 * @param font_name The name of the font to use.
505 * @param text The text to render.
506 * @return The resulting height of the text. If the font is not available, 0 will be returned.
507 */
508 i32 GetTextHeight(const std::string &font_name, const std::string &text);
509
510 /**
511 * @brief Renders a text to a texture.
512 * @param font_name The name of the font to use.
513 * @param text The text to render.
514 * @param clr The color to use for the text.
515 * @param max_width The maximum width of the text.
516 * @param max_height The maximum height of the text.
517 * @note If max_width or max_height are 0, they will be ignored. If the text exceeds the dimensions, it will be clamped and ended by appending "...".
518 * @return The rendered text texture. If the font is not available, nullptr will be returned.
519 */
520 sdl2::Texture RenderText(const std::string &font_name, const std::string &text, const Color clr, const u32 max_width = 0, const u32 max_height = 0);
521
522}
High-level wrapper for SDL2_ttf font rendering.
Definition ttf_Font.hpp:19
The main class dealing with rendering.
Definition render_Renderer.hpp:198
u64 GetButtonsUp()
Gets the buttons that are currently released.
Definition render_Renderer.hpp:414
void ResetBaseRenderAlpha()
Resets the base render alpha(no alpha modifications).
Definition render_Renderer.hpp:390
void RenderCircle(const Color clr, const i32 x, const i32 y, const i32 radius)
Renders a circle to the screen (only the border).
void RenderRectangleOutline(const Color clr, const i32 x, const i32 y, const i32 width, const i32 height, const i32 border_width)
Renders a rectangle outline to the screen.
Definition render_Renderer.hpp:300
void Finalize()
Finalizes the Renderer.
void RenderRectangle(const Color clr, const i32 x, const i32 y, const i32 width, const i32 height)
Renders a rectangle to the screen (only the border).
Renderer(const RendererInitOptions init_opts)
Creates a new Renderer with the specified initialization options.
Definition render_Renderer.hpp:221
void RenderShadowSimple(const i32 x, const i32 y, const i32 width, const i32 height, const i32 base_alpha, const u8 main_alpha=0xFF)
Renders a simple shadow to the screen.
void RenderRoundedRectangle(const Color clr, const i32 x, const i32 y, const i32 width, const i32 height, const i32 radius)
Renders a rounded rectangle to the screen (only the border).
Result Initialize()
Initializes the Renderer.
void SetBaseRenderAlpha(const u8 alpha)
Sets the base render alpha for all rendering functions.
Definition render_Renderer.hpp:383
void RenderRectangleFill(const Color clr, const i32 x, const i32 y, const i32 width, const i32 height)
Renders a filled rectangle to the screen.
void RenderRoundedRectangleFill(const Color clr, const i32 x, const i32 y, const i32 width, const i32 height, const i32 radius)
Renders a filled rounded rectangle to the screen.
u64 GetButtonsDown()
Gets the buttons that are currently pressed.
Definition render_Renderer.hpp:406
void RenderTexture(sdl2::Texture texture, const i32 x, const i32 y, const TextureRenderOptions opts=TextureRenderOptions())
Renders a texture to the screen.
void FinalizeRender()
Finalizes the rendering process.
u64 GetButtonsHeld()
Gets the buttons that are currently held.
Definition render_Renderer.hpp:422
void RenderCircleFill(const Color clr, const i32 x, const i32 y, const i32 radius)
Renders a filled circle to the screen.
void ResetBaseRenderPosition()
Resets the base render position to (0, 0).
Definition render_Renderer.hpp:374
void UpdateInput()
Updates the input state.
Definition render_Renderer.hpp:398
void SetBaseRenderPosition(const i32 x, const i32 y)
Sets the base render position for all rendering functions.
Definition render_Renderer.hpp:366
void InitializeRender(const Color clr)
Initializes the rendering process.
bool HasInitialized()
Checks if the Renderer has been initialized.
Definition render_Renderer.hpp:241
Definition sdl2_Types.hpp:17
Definition ttf_Font.hpp:14
Definition render_Renderer.hpp:15
bool LoadAllSharedFontsInFont(std::shared_ptr< ttf::Font > &font)
Loads all system shared fonts (pl:) in a font object.
constexpr u32 ImgAllFlags
Definition render_Renderer.hpp:156
sdl2::Window GetMainWindow()
Gets the underlying SDL2 window.
bool AddFont(const std::string &font_name, std::shared_ptr< ttf::Font > &font)
Creates a font to the internal font list.
bool LoadSingleSharedFontInFont(std::shared_ptr< ttf::Font > &font, const PlSharedFontType type)
Loads a system shared font (pl:) in a font object.
sdl2::Texture RenderText(const std::string &font_name, const std::string &text, const Color clr, const u32 max_width=0, const u32 max_height=0)
Renders a text to a texture.
bool GetTextDimensions(const std::string &font_name, const std::string &text, i32 &out_width, i32 &out_height)
Gets the resulting text size for rendering a text with the specified font.
constexpr u32 BaseScreenWidth
Definition render_Renderer.hpp:17
sdl2::Surface GetMainSurface()
Gets the underlying SDL2 surface.
constexpr u32 BaseScreenHeight
Definition render_Renderer.hpp:18
constexpr u32 RendererSoftwareFlags
Definition render_Renderer.hpp:157
i32 GetTextWidth(const std::string &font_name, const std::string &text)
Gets the resulting text width for rendering a text with the specified font.
std::pair< u32, u32 > GetDimensions()
Gets the underlying SDL2 window width/height.
sdl2::Renderer GetMainRenderer()
Gets the underlying SDL2 renderer.
i32 GetTextHeight(const std::string &font_name, const std::string &text)
Gets the resulting text height for rendering a text with the specified font.
void AddDefaultFont(std::shared_ptr< ttf::Font > &font)
Adds a font object as a default font to the internal font list.
Definition render_Renderer.hpp:480
constexpr double ScreenFactor
Definition render_Renderer.hpp:23
constexpr u32 ScreenWidth
Definition render_Renderer.hpp:20
constexpr u32 RendererHardwareFlags
Definition render_Renderer.hpp:158
constexpr u32 ScreenHeight
Definition render_Renderer.hpp:21
#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
Represents the options for initializing the Renderer.
Definition render_Renderer.hpp:28
u32 height
Definition render_Renderer.hpp:32
std::vector< u32 > extra_default_font_sizes
Definition render_Renderer.hpp:36
void SetPlServiceType(const PlServiceType type=PlServiceType_User)
Sets the pl: service type to use.
Definition render_Renderer.hpp:59
u32 pad_style_tag
Definition render_Renderer.hpp:42
void SetInputPlayerCount(const u32 count)
Sets the amount of players to use for input.
Definition render_Renderer.hpp:117
std::vector< std::string > default_font_paths
Definition render_Renderer.hpp:35
bool NeedsPlService()
Checks if the Renderer has initialized / will initialize the pl: service.
Definition render_Renderer.hpp:143
void AddExtraDefaultFontSize(const u32 font_size)
Adds an extra default font size to load.
Definition render_Renderer.hpp:92
u32 sdl_render_flags
Definition render_Renderer.hpp:30
u64 pad_id_mask
Definition render_Renderer.hpp:41
void AddDefaultFontPath(const std::string &font_path)
Adds a default font path to load.
Definition render_Renderer.hpp:84
u32 pad_player_count
Definition render_Renderer.hpp:40
i32 pl_srv_type
Definition render_Renderer.hpp:33
void UseImage(const i32 sdl_img_flags)
Enables the Renderer to use SDL2_image with the specified flags.
Definition render_Renderer.hpp:100
RendererInitOptions(const u32 sdl_flags, const u32 sdl_render_flags, const u32 w=ScreenWidth, const u32 h=ScreenHeight)
Creates a new RendererInitOptions with the specified parameters.
Definition render_Renderer.hpp:51
bool init_romfs
Definition render_Renderer.hpp:39
void AddInputNpadIdType(const u64 type)
Adds an input Npad ID type to use for input.
Definition render_Renderer.hpp:126
bool init_img
Definition render_Renderer.hpp:37
std::vector< PlSharedFontType > default_shared_fonts
Definition render_Renderer.hpp:34
i32 sdl_img_flags
Definition render_Renderer.hpp:38
u32 width
Definition render_Renderer.hpp:31
void UseRomfs()
Enables the Renderer to use RomFs.
Definition render_Renderer.hpp:109
void AddDefaultAllSharedFonts()
Adds all shared fonts to load.
Definition render_Renderer.hpp:74
void AddDefaultSharedFont(const PlSharedFontType type)
Adds a default shared font to load.
Definition render_Renderer.hpp:67
void AddInputNpadStyleTag(const u32 tag)
Adds an input Npad style tag to use for input.
Definition render_Renderer.hpp:135
bool NeedsTtf()
Checks if the Renderer has initialized / will initialize SDL2-TTF.
Definition render_Renderer.hpp:151
u32 sdl_flags
Definition render_Renderer.hpp:29
Represents the options for rendering a texture.
Definition render_Renderer.hpp:163
float rot_angle
Definition render_Renderer.hpp:167
static constexpr i32 NoWidth
Definition render_Renderer.hpp:172
i32 alpha_mod
Definition render_Renderer.hpp:164
static constexpr i32 NoAlpha
Definition render_Renderer.hpp:171
i32 src_x
Definition render_Renderer.hpp:168
static constexpr i32 NoSourceX
Definition render_Renderer.hpp:175
i32 width
Definition render_Renderer.hpp:165
i32 height
Definition render_Renderer.hpp:166
static constexpr i32 NoSourceY
Definition render_Renderer.hpp:176
static constexpr float NoRotation
Definition render_Renderer.hpp:174
constexpr TextureRenderOptions()
Creates a new TextureRenderOptions with default parameters (no alpha modifications,...
Definition render_Renderer.hpp:192
i32 src_y
Definition render_Renderer.hpp:169
static constexpr i32 NoHeight
Definition render_Renderer.hpp:173
constexpr TextureRenderOptions(std::optional< u8 > alpha, std::optional< i32 > width, std::optional< i32 > height, std::optional< float > rot_angle, std::optional< i32 > src_x, std::optional< i32 > src_y)
Creates a new TextureRenderOptions with the specified parameters.
Definition render_Renderer.hpp:187