2
3
4
5
6
7
10#include <pu/ui/ui_Types.hpp>
11#include <pu/ui/render/render_SDL2.hpp>
12#include <pu/ttf/ttf_Font.hpp>
26
27
45
46
47
48
49
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) {}
54
55
56
57
58
64
65
66
68 this->default_shared_fonts.push_back(type);
72
73
75 for(u32 i = 0; i < PlSharedFontType_Total; i++) {
76 this->default_shared_fonts.push_back(
static_cast<PlSharedFontType>(i));
81
82
83
85 this->default_font_paths.push_back(font_path);
89
90
91
93 this->extra_default_font_sizes.push_back(font_size);
97
98
99
106
107
108
114
115
116
122
123
124
125
131
132
133
134
140
141
142
148
149
150
152 return !
this->default_shared_fonts.empty() || !
this->default_font_paths.empty();
156 constexpr u32
ImgAllFlags = IMG_INIT_PNG | IMG_INIT_JPG | IMG_INIT_WEBP;
161
162
179
180
181
182
183
184
185
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)) {}
190
191
196
197
207 inline u8 GetActualAlpha(
const u8 input_a) {
208 if(
this->base_a >= 0) {
209 return static_cast<u8>(
this->base_a);
218
219
220
225
226
227
228
232
233
234
238
239
240
242 return this->initialized;
246
247
248
249
253
254
255
259
260
261
262
263
264
265
269
270
271
272
273
274
275
276
280
281
282
283
284
285
286
287
291
292
293
294
295
296
297
298
299
305
306
307
308
309
310
311
312
313
317
318
319
320
321
322
323
324
325
329
330
331
332
333
334
335
339
340
341
342
343
344
345
349
350
351
352
353
354
355
356
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);
361
362
363
364
365
372
373
379
380
381
382
384 this->base_a = alpha;
388
389
395
396
397
399 padUpdate(&
this->input_pad);
403
404
405
407 return padGetButtonsDown(&
this->input_pad);
411
412
413
415 return padGetButtonsUp(&
this->input_pad);
419
420
421
423 return padGetButtons(&
this->input_pad);
428
429
430
434
435
436
440
441
442
446
447
448
452
453
454
455
456
460
461
462
463
464
465
469
470
471
472
473
477
478
479
481 AddFont(MakeDefaultFontName(font->GetFontSize()), font);
485
486
487
488
489
490
491
492 bool GetTextDimensions(
const std::string &font_name,
const std::string &text, i32 &out_width, i32 &out_height);
495
496
497
498
499
500 i32
GetTextWidth(
const std::string &font_name,
const std::string &text);
503
504
505
506
507
511
512
513
514
515
516
517
518
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);
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