NasNas
An intuitive and beginner friendly 2D game framework for C++
Logger.hpp
1 
6 #pragma once
7 
8 #include <iostream>
9 #include <string>
10 
11 #ifdef __ANDROID__
12 #include <android/log.h>
13 #endif
14 
15 #include <SFML/Graphics/Color.hpp>
16 #include <SFML/Graphics/Rect.hpp>
17 #include <SFML/System/Vector2.hpp>
18 #include <SFML/System/Vector3.hpp>
19 
20 #include <NasNas/core/data/Utils.hpp>
21 
28 #define ns_LOG(...) ns::Logger::log(__FILE__, __LINE__, __VA_ARGS__)
29 
30 namespace sf {
31  auto operator<<(std::ostream& os, const sf::Vector2f& vect) -> std::ostream&;
32  auto operator<<(std::ostream& os, const sf::Vector2i& vect) -> std::ostream&;
33  auto operator<<(std::ostream& os, const sf::Vector2u& vect) -> std::ostream&;
34  auto operator<<(std::ostream& os, const sf::Vector3f& vect) -> std::ostream&;
35  auto operator<<(std::ostream& os, const sf::Vector3i& vect) -> std::ostream&;
36  auto operator<<(std::ostream& os, const sf::FloatRect& rect) -> std::ostream&;
37  auto operator<<(std::ostream& os, const sf::IntRect& rect) -> std::ostream&;
38  auto operator<<(std::ostream& os, const sf::Color& color) -> std::ostream&;
39 }
40 
41 namespace ns {
42  namespace detail {
43 #ifdef __ANDROID__
44  class AndroidStreamBuffer : public std::streambuf {
45  public:
46  AndroidStreamBuffer();
47  auto overflow (std::streambuf::int_type c) -> std::streambuf::int_type override;
48  private:
49  std::string m_buffer;
50  };
51 
52  static AndroidStreamBuffer logger_buffer;
53  static std::ostream LoggerStream(&logger_buffer);
54 #else
55  static auto& LoggerStream = std::cout;
56 #endif
57  }
58 
66  class Logger {
67  public:
68  template <typename... Types>
69  static void log(const std::string& file, int line_nb, Types... args);
70 
71  private:
72  Logger() = default;
73 
74  template <typename T, typename... Types>
75  static void logr(T arg, Types... args);
76  };
77 
78  template<typename... Types>
79  void Logger::log(const std::string& file, int line_nb, Types... args) {
80  detail::LoggerStream << std::boolalpha << "["<<line_nb<<"|"<<ns::utils::path::getFilename(file)<<"] ";
81  logr(args...);
82  }
83 
84  template <typename T, typename... Types>
85  void Logger::logr(T arg, Types... args) {
86  detail::LoggerStream << arg << " ";
87  if constexpr(sizeof...(args) == 0) {
88  detail::LoggerStream << std::endl;
89  } else {
90  logr(args...);
91  }
92  }
93 
94 }
Definition: Logger.hpp:30
Console Logger can log a variable number of variables to the console.
Definition: Logger.hpp:66