NasNas
An intuitive and beginner friendly 2D game framework for C++
BitmapFont.hpp
1 // Created by Modar Nasser on 17/02/2022.
2 
3 #pragma once
4 
5 #include <map>
6 #include <string>
7 #include <unordered_map>
8 
9 #include <SFML/Graphics/Texture.hpp>
10 #include <SFML/System/Vector2.hpp>
11 
12 #include <NasNas/core/data/Rect.hpp>
13 
14 namespace ns {
15 
16  struct BitmapGlyph {
18  wchar_t character;
19  float advance;
20  };
21 
25  class BitmapFont {
26  static constexpr wchar_t default_characters[] = L" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~";
27  public:
28  BitmapFont() = default;
29 
36  void loadFromTexture(const sf::Texture& texture, const sf::Vector2u& glyph_size, unsigned advance);
37 
43  auto getTexture() const -> const sf::Texture*;
44 
50  auto getGlyphSize() const -> const sf::Vector2u&;
51 
52  void setCharacters(const std::wstring& characters);
53 
54  void setCharactersAdvance(const std::map<std::wstring, unsigned>& advances);
55 
63  auto getGlyph(wchar_t character) const -> const BitmapGlyph&;
64 
65  auto computeStringSize(const std::wstring& string) const -> sf::Vector2f;
66 
67  private:
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;
72  };
73 
74 }
A font that can be created from a texture.
Definition: BitmapFont.hpp:25
wchar_t character
Character represented by the BitmapGlyph.
Definition: BitmapFont.hpp:18
float advance
Space to add after the BitmapGlyph.
Definition: BitmapFont.hpp:19
ns::IntRect texture_rect
BitmapGlyph rectangle on the BitmapFont texture.
Definition: BitmapFont.hpp:17