Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
ttf_Font.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file ttf_Font.hpp
4 * @brief Font rendering support, high-level wrapper for SDL2_ttf
5 * @author XorTroll
6 * @copyright XorTroll
7 */
8
9#pragma once
10#include <pu/sdl2/sdl2_Types.hpp>
11#include <pu/ui/ui_Types.hpp>
12#include <vector>
13
14namespace pu::ttf {
15
16 /**
17 * @brief High-level wrapper for SDL2_ttf font rendering.
18 */
19 class Font {
20 private:
21 using FontFaceDisposingFunction = void(*)(void*);
22
23 struct FontFace {
24 sdl2::Font font;
25 void *ptr;
26 size_t ptr_sz;
27 FontFaceDisposingFunction dispose_fn;
28
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) {
30 this->font = TTF_OpenFontRW(SDL_RWFromMem(this->ptr, this->ptr_sz), 1, font_sz);
31 if(this->font != nullptr) {
32 TTF_CppWrap_SetCppPtrRef(this->font, font_class_ptr);
33 }
34 }
35
36 FontFace() : font(nullptr), ptr(nullptr), ptr_sz(0), dispose_fn(EmptyFontFaceDisposingFunction) {}
37
38 inline bool IsSourceValid() {
39 // AKA - is the base ptr and size valid?
40 return (this->ptr != nullptr) && (this->ptr_sz > 0);
41 }
42
43 void DisposeFont() {
44 if(this->font != nullptr) {
45 TTF_CloseFont(this->font);
46 this->font = nullptr;
47 }
48 }
49
50 void Dispose() {
51 this->DisposeFont();
52 if(this->IsSourceValid()) {
53 (this->dispose_fn)(this->ptr);
54 this->ptr = nullptr;
55 this->ptr_sz = 0;
56 }
57 }
58
59 };
60
61 std::vector<std::pair<i32, std::unique_ptr<FontFace>>> font_faces;
62 u32 font_size;
63
64 inline sdl2::Font TryGetFirstFont() {
65 if(!this->font_faces.empty()) {
66 return this->font_faces.begin()->second->font;
67 }
68 return nullptr;
69 }
70
71 public:
72 /**
73 * @brief Constant representing an invalid font face index.
74 */
75 static constexpr i32 InvalidFontFaceIndex = -1;
76
77 /**
78 * @brief Default font size to use when creating a new font.
79 */
80 static constexpr u32 DefaultFontSize = 25;
81
82 /**
83 * @brief Function to use when disposing a font face that does not need to be disposed.
84 */
85 static void EmptyFontFaceDisposingFunction(void*) {}
86
87 /**
88 * @brief Checks if a font face index is valid.
89 * @param index Index to check.
90 * @return Whether the index is valid.
91 */
92 static inline constexpr bool IsValidFontFaceIndex(const i32 index) {
93 return index != InvalidFontFaceIndex;
94 }
95
96 /**
97 * @brief Creates a new Font instance with the specified font size.
98 * @param font_sz Font size to use.
99 */
100 Font(const u32 font_sz) : font_size(font_sz) {}
102
103 /**
104 * @brief Loads a font from memory data.
105 * @param ptr Pointer to the font data.
106 * @param size Size of the font data.
107 * @param disp_fn Function to call when the font is no longer needed and needs disposing.
108 * @return Index of the loaded font face.
109 */
110 i32 LoadFromMemory(void *ptr, const size_t size, FontFaceDisposingFunction disp_fn);
111
112 /**
113 * @brief Loads a font from a file.
114 * @param path Path to the font file.
115 * @return Index of the loaded font face.
116 */
117 i32 LoadFromFile(const std::string &path);
118
119 /**
120 * @brief Unloads a font face.
121 * @param font_idx Index of the font face to unload.
122 */
123 void Unload(const i32 font_idx);
124
125 /**
126 * @brief Sets the font size used by the Font instance.
127 * @param font_sz Font size used.
128 */
129 inline u32 GetFontSize() {
130 return this->font_size;
131 }
132
133 /**
134 * @brief Finds the first available font face that can render the specified character.
135 * @param ch Character to find a font face for.
136 */
137 sdl2::Font FindValidFontFor(const Uint16 ch);
138
139 /**
140 * @brief Gets the dimensions of a text string rendered with the Font instance.
141 * @param str Text string to get the dimensions of.
142 * @return Dimension value pair with the width and height of the text string.
143 */
144 std::pair<u32, u32> GetTextDimensions(const std::string &str);
145
146 /**
147 * @brief Renders a text string with the Font instance.
148 * @param str Text string to render.
149 * @param clr Color to render the text with.
150 * @return Raw SDL2 texture containing the rendered text.
151 */
152 sdl2::Texture RenderText(const std::string &str, const ui::Color clr);
153 };
154
155}
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