MangoHud/src/overlay.h

127 lines
4.0 KiB
C
Raw Permalink Normal View History

#pragma once
#ifndef MANGOHUD_OVERLAY_H
#define MANGOHUD_OVERLAY_H
2020-03-10 05:19:18 +00:00
#include <string>
#include <stdint.h>
#include <vector>
#include <deque>
#include <imgui.h>
#include "imgui_internal.h"
2020-03-10 05:19:18 +00:00
#include "overlay_params.h"
#include "hud_elements.h"
#include "engine_types.h"
2022-01-14 21:41:38 +00:00
#include "dbus_info.h"
2022-03-14 18:49:20 +00:00
#include "logging.h"
2020-03-10 05:19:18 +00:00
struct frame_stat {
2020-03-24 19:38:08 +00:00
uint64_t stats[OVERLAY_PLOTS_MAX];
2020-03-10 05:19:18 +00:00
};
static const int kMaxGraphEntries = 50;
2020-03-10 05:19:18 +00:00
struct swapchain_stats {
uint64_t n_frames;
2020-03-24 19:38:08 +00:00
enum overlay_plots stat_selector;
2020-03-10 05:19:18 +00:00
double time_dividor;
struct frame_stat stats_min, stats_max;
struct frame_stat frames_stats[200];
ImFont* font1 = nullptr;
ImFont* font_text = nullptr;
2020-11-16 13:51:37 +00:00
size_t font_params_hash = 0;
2020-03-10 05:19:18 +00:00
std::string time;
double fps;
uint64_t last_present_time;
unsigned n_frames_since_update;
uint64_t last_fps_update;
ImVec2 main_window_pos;
struct {
int32_t major;
int32_t minor;
bool is_gles;
} version_gl;
struct {
int32_t major;
int32_t minor;
int32_t patch;
} version_vk;
2020-03-23 14:35:21 +00:00
std::string engineName;
std::string engineVersion;
std::string deviceName;
std::string gpuName;
std::string driverName;
2021-06-27 13:30:23 +00:00
enum EngineTypes engine;
2020-03-10 05:19:18 +00:00
};
struct fps_limit {
2020-06-24 18:14:24 +00:00
Clock::time_point frameStart;
Clock::time_point frameEnd;
Clock::duration targetFrameTime;
Clock::duration frameOverhead;
Clock::duration sleepTime;
2023-03-16 01:57:10 +00:00
enum fps_limit_method method;
2020-03-10 05:19:18 +00:00
};
struct benchmark_stats {
float total;
std::vector<float> fps_data;
std::vector<std::pair<std::string, float>> percentile_data;
};
2020-10-22 05:17:14 +00:00
struct LOAD_DATA {
ImVec4 color_low;
ImVec4 color_med;
ImVec4 color_high;
2020-10-22 05:17:14 +00:00
unsigned med_load;
unsigned high_load;
2020-10-22 05:17:14 +00:00
};
2021-11-04 01:08:26 +00:00
extern struct fps_limit fps_limit_stats;
2022-03-15 17:48:36 +00:00
extern uint32_t deviceID;
extern struct benchmark_stats benchmark;
2020-09-23 10:23:29 +00:00
extern ImVec2 real_font_size;
extern std::string wineVersion;
extern std::deque<logData> graph_data;
2021-11-04 01:07:38 +00:00
extern overlay_params *_params;
2022-01-25 11:37:58 +00:00
extern double min_frametime, max_frametime;
extern bool steam_focused;
2022-04-04 05:07:31 +00:00
extern int fan_speed;
2023-07-07 04:23:12 +00:00
extern int current_preset;
extern std::vector<float> frametime_data;
2022-03-24 09:01:32 +00:00
void init_spdlog();
void overlay_new_frame(const struct overlay_params& params);
void overlay_end_frame();
void position_layer(struct swapchain_stats& data, const struct overlay_params& params, const ImVec2& window_size);
void render_imgui(swapchain_stats& data, struct overlay_params& params, ImVec2& window_size, bool is_vulkan);
void update_hud_info(struct swapchain_stats& sw_stats, const struct overlay_params& params, uint32_t vendorID);
void update_hud_info_with_frametime(struct swapchain_stats& sw_stats, const struct overlay_params& params, uint32_t vendorID, uint64_t frametime_ns);
void update_hw_info(const struct overlay_params& params, uint32_t vendorID);
void init_gpu_stats(uint32_t& vendorID, uint32_t reported_deviceID, overlay_params& params);
void init_cpu_stats(overlay_params& params);
2022-02-18 14:44:10 +00:00
void check_keybinds(overlay_params& params, uint32_t vendorID);
2020-03-10 05:19:18 +00:00
void init_system_info(void);
void FpsLimiter(struct fps_limit& stats);
void create_fonts(ImFontAtlas* font_atlas, const overlay_params& params, ImFont*& small_font, ImFont*& text_font);
void right_aligned_text(ImVec4& col, float off_x, const char *fmt, ...);
void center_text(const std::string& text);
ImVec4 change_on_load_temp(LOAD_DATA& data, unsigned current);
float get_time_stat(void *_data, int _idx);
void stop_hw_updater();
extern void control_client_check(int control, int& control_client, const std::string& deviceName);
extern void process_control_socket(int& control_client, overlay_params &params);
2022-07-28 00:48:35 +00:00
extern void control_send(int control_client, const char *cmd, unsigned cmdlen, const char *param, unsigned paramlen);
extern int global_control_client;
#ifdef HAVE_DBUS
void render_mpris_metadata(const overlay_params& params, mutexed_metadata& meta, uint64_t frame_timing);
2020-11-03 20:58:40 +00:00
#endif
2022-04-04 05:07:31 +00:00
void update_fan();
2022-12-12 15:23:47 +00:00
void next_hud_position(struct overlay_params& params);
2023-03-11 17:27:55 +00:00
void horizontal_separator(struct overlay_params& params);
void RenderOutlinedText(const char* text, ImU32 textColor);
2022-02-18 14:44:10 +00:00
#endif //MANGOHUD_OVERLAY_H