7 #include <unordered_map> 9 #include <SFML/Graphics/Texture.hpp> 10 #include <SFML/System/Vector2.hpp> 12 #include <NasNas/core/data/Rect.hpp> 26 static constexpr
wchar_t default_characters[] = L
" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~";
36 void loadFromTexture(
const sf::Texture& texture,
const sf::Vector2u& glyph_size,
unsigned advance);
43 auto getTexture()
const ->
const sf::Texture*;
50 auto getGlyphSize()
const ->
const sf::Vector2u&;
52 void setCharacters(
const std::wstring& characters);
54 void setCharactersAdvance(
const std::map<std::wstring, unsigned>& advances);
65 auto computeStringSize(
const std::wstring&
string)
const -> sf::Vector2f;
68 const sf::Texture* m_texture =
nullptr;
69 sf::Vector2u m_glyph_size;
70 float m_default_advance = 0.f;
71 std::unordered_map<wchar_t, BitmapGlyph> m_glyphs;
A font that can be created from a texture.
wchar_t character
Character represented by the BitmapGlyph.
float advance
Space to add after the BitmapGlyph.
ns::IntRect texture_rect
BitmapGlyph rectangle on the BitmapFont texture.