You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GlosSI/GlosSITarget/Overlay.h

37 lines
894 B
C++

#pragma once
#include <functional>
#include <string>
#include <SFML/Graphics.hpp>
#include <spdlog/spdlog.h>
class Overlay {
public:
Overlay(sf::RenderWindow& window, std::function<void()> on_close);
void setEnabled(bool enabled);
bool isEnabled() const;
bool toggle();
void update();
static void ProcessEvent(sf::Event evnt);
static void Shutdown();
static void ShowNotification(const spdlog::details::log_msg& msg);
private:
sf::RenderWindow& window_;
sf::Clock update_clock_;
bool enabled_ = true;
std::function<void()> on_close_;
void showLogs() const;
bool closeButton() const;
struct Log {
std::chrono::system_clock::time_point time;
spdlog::level::level_enum level;
std::string payload;
};
static inline std::vector<Log> LOG_MSGS_;
static constexpr int LOG_RETENTION_TIME_ = 5;
};