NasNas
An intuitive and beginner friendly 2D game framework for C++
Public Member Functions | List of all members
ns::DebugText< T > Class Template Reference

DebugText evaluates a variable or a method and display the value on the AppWindow. More...

#include <Debug.hpp>

Inheritance diagram for ns::DebugText< T >:
ns::DebugTextInterface

Public Member Functions

 DebugText (std::string label, const sf::Vector2f &position)
 
 DebugText (const std::string &label, T *var_address, const sf::Vector2f &position)
 Create a DebugText from variable address. More...
 
 DebugText (const std::string &label, std::function< T()> fn, const sf::Vector2f &position)
 Create a DebugText from a lambda function. More...
 
void update () override
 Updates DebugText value.
 

Additional Inherited Members

- Static Public Attributes inherited from ns::DebugTextInterface
static int font_size
 set DebugText font size
 
static sf::Color color
 set DebugText color
 
static sf::Color outline_color
 set DebugText outline color
 
static float outline_thickness
 set DebugText outline thickness
 

Detailed Description

template<typename T>
class ns::DebugText< T >

DebugText evaluates a variable or a method and display the value on the AppWindow.

It lets you see methods or variables values changing in real time.

Template Parameters
TType of the value to display on the AppWindow

Definition at line 53 of file Debug.hpp.

Constructor & Destructor Documentation

◆ DebugText() [1/2]

template<typename T >
ns::DebugText< T >::DebugText ( const std::string &  label,
T *  var_address,
const sf::Vector2f &  position 
)

Create a DebugText from variable address.

Parameters
var_addressAddress of the variable
labelLabel of the DebugText
positionPosition of the DebugText on the AppWindow

Definition at line 101 of file Debug.hpp.

◆ DebugText() [2/2]

template<typename T >
ns::DebugText< T >::DebugText ( const std::string &  label,
std::function< T()>  fn,
const sf::Vector2f &  position 
)

Create a DebugText from a lambda function.

Parameters
fnLambda function to be evaluated
labelLabel of the DebugText
positionPosition of the DebugText on the AppWindow

Definition at line 107 of file Debug.hpp.


The documentation for this class was generated from the following file: