2
3
4
5
6
7
10#include <pu/sdl2/sdl2_Types.hpp>
11#include <pu/ui/ui_Types.hpp>
17
18
21 using FontFaceDisposingFunction =
void(*)(
void*);
27 FontFaceDisposingFunction dispose_fn;
29 FontFace(
void *buf,
const size_t buf_size, FontFaceDisposingFunction disp_fn,
const u32 font_sz,
void *font_class_ptr) : font(
nullptr), ptr(buf), ptr_sz(buf_size), dispose_fn(disp_fn) {
31 if(
this->font !=
nullptr) {
38 inline bool IsSourceValid() {
40 return (
this->ptr !=
nullptr) && (
this->ptr_sz > 0);
44 if(
this->font !=
nullptr) {
52 if(
this->IsSourceValid()) {
53 (
this->dispose_fn)(
this->ptr);
61 std::vector<std::pair<i32, std::unique_ptr<FontFace>>> font_faces;
64 inline sdl2::Font TryGetFirstFont() {
65 if(!
this->font_faces.empty()) {
66 return this->font_faces.begin()->second->font;
73
74
78
79
83
84
88
89
90
91
97
98
99
100 Font(
const u32 font_sz) : font_size(font_sz) {}
104
105
106
107
108
109
110 i32
LoadFromMemory(
void *ptr,
const size_t size, FontFaceDisposingFunction disp_fn);
113
114
115
116
120
121
122
126
127
128
130 return this->font_size;
134
135
136
140
141
142
143
147
148
149
150
151
High-level wrapper for SDL2_ttf font rendering.
Definition ttf_Font.hpp:19
static void EmptyFontFaceDisposingFunction(void *)
Function to use when disposing a font face that does not need to be disposed.
Definition ttf_Font.hpp:85
sdl2::Texture RenderText(std::string &str, ui::Color clr)
Renders a text string with the Font instance.
static constexpr bool IsValidFontFaceIndex(i32 index)
Checks if a font face index is valid.
Definition ttf_Font.hpp:92
Font(u32 font_sz)
Creates a new Font instance with the specified font size.
Definition ttf_Font.hpp:100
i32 LoadFromMemory(void *ptr, size_t size, FontFaceDisposingFunction disp_fn)
Loads a font from memory data.
u32 GetFontSize()
Sets the font size used by the Font instance.
Definition ttf_Font.hpp:129
sdl2::Font FindValidFontFor(Uint16 ch)
Finds the first available font face that can render the specified character.
void Unload(i32 font_idx)
Unloads a font face.
static constexpr i32 InvalidFontFaceIndex
Constant representing an invalid font face index.
Definition ttf_Font.hpp:75
static constexpr u32 DefaultFontSize
Default font size to use when creating a new font.
Definition ttf_Font.hpp:80
std::pair< u32, u32 > GetTextDimensions(std::string &str)
Gets the dimensions of a text string rendered with the Font instance.
i32 LoadFromFile(std::string &path)
Loads a font from a file.
Definition sdl2_Types.hpp:17
Definition ttf_Font.hpp:14
TTF_Font * TTF_OpenFontRW(SDL_RWops *src, int freesrc, int ptsize)
void TTF_CloseFont(TTF_Font *font)
void TTF_CppWrap_SetCppPtrRef(TTF_Font *font, void *cpp_ptr_ref)
Type encoding a RGBA-8888 color.
Definition ui_Types.hpp:61