12 #include <android/log.h> 15 #include <SFML/Graphics/Color.hpp> 16 #include <SFML/Graphics/Rect.hpp> 17 #include <SFML/System/Vector2.hpp> 18 #include <SFML/System/Vector3.hpp> 20 #include <NasNas/core/data/Utils.hpp> 28 #define ns_LOG(...) ns::Logger::log(__FILE__, __LINE__, __VA_ARGS__) 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&;
44 class AndroidStreamBuffer :
public std::streambuf {
46 AndroidStreamBuffer();
47 auto overflow (std::streambuf::int_type c) -> std::streambuf::int_type
override;
52 static AndroidStreamBuffer logger_buffer;
53 static std::ostream LoggerStream(&logger_buffer);
55 static auto& LoggerStream = std::cout;
68 template <
typename... Types>
69 static void log(
const std::string& file,
int line_nb, Types... args);
74 template <
typename T,
typename... Types>
75 static void logr(T arg, Types... args);
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)<<
"] ";
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;
Console Logger can log a variable number of variables to the console.