1
0
mirror of https://github.com/EduApps-CDG/OpenDX synced 2024-12-30 09:45:37 +01:00
OpenDX/src/dxvk/hud/dxvk_hud_config.cpp

49 lines
1.3 KiB
C++
Raw Normal View History

#include "dxvk_hud_config.h"
2018-04-03 14:49:13 +02:00
namespace dxvk::hud {
const std::unordered_map<std::string, HudElement> g_hudElements = {{
2018-04-03 14:49:13 +02:00
{ "devinfo", HudElement::DeviceInfo },
{ "fps", HudElement::Framerate },
{ "drawcalls", HudElement::StatDrawCalls },
{ "submissions", HudElement::StatSubmissions },
{ "pipelines", HudElement::StatPipelines },
{ "memory", HudElement::StatMemory },
}};
HudConfig::HudConfig() {
}
HudConfig::HudConfig(const std::string& configStr) {
if (configStr == "1") {
this->elements.set(
HudElement::DeviceInfo,
HudElement::Framerate);
} else {
std::string::size_type pos = 0;
std::string::size_type end = 0;
while (pos < configStr.size()) {
end = configStr.find(',', pos);
if (end == std::string::npos)
end = configStr.size();
std::string configPart = configStr.substr(pos, end - pos);
auto element = g_hudElements.find(configPart);
if (element != g_hudElements.cend()) {
this->elements.set(element->second);
Logger::debug(str::format("Hud: Enabled ", configPart));
}
pos = end + 1;
}
}
}
}