NasNas
An intuitive and beginner friendly 2D game framework for C++
BitmapText.hpp
1 // Created by Modar Nasser on 25/06/2020.
2 
3 #pragma once
4 
5 #include <map>
6 #include <memory>
7 #include <string>
8 #include <unordered_map>
9 
10 #include <SFML/Graphics/Drawable.hpp>
11 #include <SFML/Graphics/RenderStates.hpp>
12 #include <SFML/Graphics/RenderTarget.hpp>
13 #include <SFML/Graphics/Texture.hpp>
14 #include <SFML/Graphics/Transformable.hpp>
15 #include <SFML/Graphics/VertexArray.hpp>
16 
17 #include <SFML/System/String.hpp>
18 
19 #include <NasNas/core/data/Rect.hpp>
20 
21 namespace ns {
22 
23  class BitmapFont;
24 
28  class BitmapText : public sf::Drawable, public sf::Transformable {
29  public:
30  BitmapText();
31 
38  BitmapText(const sf::String& string, const ns::BitmapFont& font);
39 
45  void setString(const sf::String& string);
46 
47  auto getString() -> const sf::String&;
48 
54  void setFont(const BitmapFont& font);
55 
56  auto getFont() const -> const BitmapFont*;
57 
63  void setColor(const sf::Color& color);
64 
65  auto getColor() const -> const sf::Color&;
66 
67  void setLetterSpacing(float factor);
68 
69  auto getLetterSpacing() const -> float;
70 
71  void setLineSpacing(float factor);
72 
73  auto getLineSpacing() const -> float;
74 
75  auto getCharacterIndexAt(float position) const -> std::size_t;
76 
81  auto getPosition() const -> sf::Vector2f;
82 
87  auto getLocalBounds() const -> ns::FloatRect;
88 
93  auto getGlobalBounds() const -> ns::FloatRect;
94 
95  private:
96  void updateVertices() const;
97  void draw(sf::RenderTarget& target, sf::RenderStates states) const override;
98 
99  sf::String m_string;
100  const BitmapFont* m_font = nullptr;
101  sf::Color m_color = sf::Color::White;
102 
103  float m_letter_spacing = 1.f;
104  float m_line_spacing = 1.f;
105 
106  mutable sf::Vector2f m_size;
107  mutable sf::VertexArray m_vertices;
108  mutable bool m_need_update;
109  };
110 
111 }
A BitmapText is a Drawable that uses a BitmapFont to display text.
Definition: BitmapText.hpp:28
A font that can be created from a texture.
Definition: BitmapFont.hpp:25
void setFont(const BitmapFont &font)
Set the text&#39;s BitmapFont.
auto getLocalBounds() const -> ns::FloatRect
Get BitmapText local bounds.
auto getPosition() const -> sf::Vector2f
Get BitmapText position.
auto getGlobalBounds() const -> ns::FloatRect
Get BitmapText global bounds.
void setColor(const sf::Color &color)
Set the font color.
void setString(const sf::String &string)
Set the text&#39;s string.