Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
pu::ttf::Font Class Reference

High-level wrapper for SDL2_ttf font rendering. More...

#include <ttf_Font.hpp>

Public Member Functions

 Font (u32 font_sz)
 Creates a new Font instance with the specified font size.
 
 ~Font ()
 
i32 LoadFromMemory (void *ptr, size_t size, FontFaceDisposingFunction disp_fn)
 Loads a font from memory data.
 
i32 LoadFromFile (std::string &path)
 Loads a font from a file.
 
void Unload (i32 font_idx)
 Unloads a font face.
 
u32 GetFontSize ()
 Sets the font size used by the Font instance.
 
sdl2::Font FindValidFontFor (Uint16 ch)
 Finds the first available font face that can render the specified character.
 
std::pair< u32, u32 > GetTextDimensions (std::string &str)
 Gets the dimensions of a text string rendered with the Font instance.
 
sdl2::Texture RenderText (std::string &str, ui::Color clr)
 Renders a text string with the Font instance.
 

Static Public Member Functions

static void EmptyFontFaceDisposingFunction (void *)
 Function to use when disposing a font face that does not need to be disposed.
 
static constexpr bool IsValidFontFaceIndex (i32 index)
 Checks if a font face index is valid.
 

Static Public Attributes

static constexpr i32 InvalidFontFaceIndex = -1
 Constant representing an invalid font face index.
 
static constexpr u32 DefaultFontSize = 25
 Default font size to use when creating a new font.
 

Detailed Description

High-level wrapper for SDL2_ttf font rendering.

Constructor & Destructor Documentation

◆ Font()

pu::ttf::Font::Font ( u32 font_sz)
inline

Creates a new Font instance with the specified font size.

Parameters
font_szFont size to use.

◆ ~Font()

pu::ttf::Font::~Font ( )

Member Function Documentation

◆ EmptyFontFaceDisposingFunction()

static void pu::ttf::Font::EmptyFontFaceDisposingFunction ( void * )
inlinestatic

Function to use when disposing a font face that does not need to be disposed.

◆ FindValidFontFor()

sdl2::Font pu::ttf::Font::FindValidFontFor ( Uint16 ch)

Finds the first available font face that can render the specified character.

Parameters
chCharacter to find a font face for.

◆ GetFontSize()

u32 pu::ttf::Font::GetFontSize ( )
inline

Sets the font size used by the Font instance.

Parameters
font_szFont size used.

◆ GetTextDimensions()

std::pair< u32, u32 > pu::ttf::Font::GetTextDimensions ( std::string & str)

Gets the dimensions of a text string rendered with the Font instance.

Parameters
strText string to get the dimensions of.
Returns
Dimension value pair with the width and height of the text string.

◆ IsValidFontFaceIndex()

static constexpr bool pu::ttf::Font::IsValidFontFaceIndex ( i32 index)
inlinestaticconstexpr

Checks if a font face index is valid.

Parameters
indexIndex to check.
Returns
Whether the index is valid.

◆ LoadFromFile()

i32 pu::ttf::Font::LoadFromFile ( std::string & path)

Loads a font from a file.

Parameters
pathPath to the font file.
Returns
Index of the loaded font face.

◆ LoadFromMemory()

i32 pu::ttf::Font::LoadFromMemory ( void * ptr,
size_t size,
FontFaceDisposingFunction disp_fn )

Loads a font from memory data.

Parameters
ptrPointer to the font data.
sizeSize of the font data.
disp_fnFunction to call when the font is no longer needed and needs disposing.
Returns
Index of the loaded font face.

◆ RenderText()

sdl2::Texture pu::ttf::Font::RenderText ( std::string & str,
ui::Color clr )

Renders a text string with the Font instance.

Parameters
strText string to render.
clrColor to render the text with.
Returns
Raw SDL2 texture containing the rendered text.

◆ Unload()

void pu::ttf::Font::Unload ( i32 font_idx)

Unloads a font face.

Parameters
font_idxIndex of the font face to unload.

Member Data Documentation

◆ DefaultFontSize

u32 pu::ttf::Font::DefaultFontSize = 25
staticconstexpr

Default font size to use when creating a new font.

◆ InvalidFontFaceIndex

i32 pu::ttf::Font::InvalidFontFaceIndex = -1
staticconstexpr

Constant representing an invalid font face index.


The documentation for this class was generated from the following file: