NasNas
An intuitive and beginner friendly 2D game framework for C++
Debug.hpp
1 
6 #pragma once
7 
8 #include <functional>
9 #include <sstream>
10 #include <string>
11 
12 #include <SFML/Graphics/Text.hpp>
13 
14 #include <NasNas/core/data/Arial.hpp>
15 
16 namespace ns {
17 
32  class DebugTextInterface : public sf::Text {
33  public:
34  static int font_size;
35  static sf::Color color;
36  static sf::Color outline_color;
37  static float outline_thickness;
38 
42  virtual void update() = 0;
43  };
44 
52  template<typename T>
53  class DebugText : public DebugTextInterface {
54  public:
55  /*
56  * \brief Create a DebugText with only a label, and no value
57  */
58  DebugText(std::string label, const sf::Vector2f& position);
59 
67  DebugText(const std::string& label, T* var_address, const sf::Vector2f& position);
68 
76  DebugText(const std::string& label, std::function<T()> fn, const sf::Vector2f& position);
77 
81  void update() override;
82 
83  private:
84  std::string m_label;
85  T* m_variable_address = nullptr;
86  std::function<T()> m_lambda = nullptr;
87  };
88 
89  template <typename T>
90  DebugText<T>::DebugText(std::string label, const sf::Vector2f& position) :
91  m_label(std::move(label)) {
92  setFont(Arial::getFont());
93  setCharacterSize(DebugTextInterface::font_size);
94  setFillColor(DebugTextInterface::color);
95  setOutlineColor(DebugTextInterface::outline_color);
96  setOutlineThickness(DebugTextInterface::outline_thickness);
97  setPosition(position);
98  }
99 
100  template <typename T>
101  DebugText<T>::DebugText(const std::string& label, T* var_address, const sf::Vector2f& position) :
102  DebugText(label, position) {
103  m_variable_address = var_address;
104  }
105 
106  template <typename T>
107  DebugText<T>::DebugText(const std::string& label, std::function<T()> fn, const sf::Vector2f& position) :
108  DebugText(label, position) {
109  m_lambda = fn;
110  }
111 
112  template<typename T>
114  std::ostringstream stream;
115  stream << m_label << " ";
116  if (m_variable_address != nullptr)
117  stream << *m_variable_address;
118  else if (m_lambda != nullptr)
119  stream << m_lambda();
120  setString(stream.str());
121  }
122 
123 }
DebugText evaluates a variable or a method and display the value on the AppWindow.
Definition: Debug.hpp:53
static sf::Color color
set DebugText color
Definition: Debug.hpp:35
static float outline_thickness
set DebugText outline thickness
Definition: Debug.hpp:37
void update() override
Updates DebugText value.
Definition: Debug.hpp:113
virtual void update()=0
Updates DebugText values.
static sf::Color outline_color
set DebugText outline color
Definition: Debug.hpp:36
Base class of all DebugText classes.
Definition: Debug.hpp:32
static int font_size
set DebugText font size
Definition: Debug.hpp:34