mirror of
https://github.com/Thracky/GlosSI.git
synced 2024-11-07 03:20:40 +00:00
60 lines
1.7 KiB
C++
60 lines
1.7 KiB
C++
/*
|
|
Copyright 2021 Peter Repukat - FlatspotSoftware
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
#pragma once
|
|
#include <functional>
|
|
#include <string>
|
|
#include <SFML/Graphics.hpp>
|
|
|
|
#include <spdlog/spdlog.h>
|
|
|
|
#define IMGUI_USER_CONFIG "imconfig.h"
|
|
#include "imgui-SFML.h"
|
|
#include "imgui.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 AddLog(const spdlog::details::log_msg& msg);
|
|
|
|
static void AddOverlayElem(const std::function<void()>& elem_fn);
|
|
|
|
private:
|
|
sf::RenderWindow& window_;
|
|
sf::Clock update_clock_;
|
|
bool enabled_ = true;
|
|
std::function<void()> on_close_;
|
|
void showLogs() const;
|
|
[[nodiscard]] 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;
|
|
|
|
static inline std::vector<std::function<void()>> OVERLAY_ELEMS_;
|
|
|
|
};
|