mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-12-02 22:28:14 +00:00
Some checks failed
build / client (Debug, map[cc:clang cxx:clang++], libdecor) (push) Has been cancelled
build / client (Debug, map[cc:clang cxx:clang++], xdg-shell) (push) Has been cancelled
build / client (Debug, map[cc:gcc cxx:g++], libdecor) (push) Has been cancelled
build / client (Debug, map[cc:gcc cxx:g++], xdg-shell) (push) Has been cancelled
build / client (Release, map[cc:clang cxx:clang++], libdecor) (push) Has been cancelled
build / client (Release, map[cc:clang cxx:clang++], xdg-shell) (push) Has been cancelled
build / client (Release, map[cc:gcc cxx:g++], libdecor) (push) Has been cancelled
build / client (Release, map[cc:gcc cxx:g++], xdg-shell) (push) Has been cancelled
build / module (push) Has been cancelled
build / host-linux (push) Has been cancelled
build / host-windows-cross (push) Has been cancelled
build / host-windows-native (push) Has been cancelled
build / idd (push) Has been cancelled
build / obs (clang) (push) Has been cancelled
build / obs (gcc) (push) Has been cancelled
build / docs (push) Has been cancelled
202 lines
4.6 KiB
C++
202 lines
4.6 KiB
C++
#include "CSettings.h"
|
|
#include "CDebug.h"
|
|
#include "DefaultDisplayModes.h"
|
|
|
|
#include <wdf.h>
|
|
|
|
CSettings g_settings;
|
|
|
|
#define LGIDD_REGKEY L"SOFTWARE\\LookingGlass\\IDD"
|
|
|
|
CSettings::CSettings()
|
|
{
|
|
}
|
|
|
|
void CSettings::LoadModes()
|
|
{
|
|
m_displayModes.clear();
|
|
|
|
bool hasPreferred = false;
|
|
DisplayMode m;
|
|
if (GetExtraMode(m))
|
|
{
|
|
DEBUG_INFO("ExtraMode: %ux%u@%u%s", m.width, m.height, m.refresh, m.preferred ? "*" : "");
|
|
m_displayModes.push_back(m);
|
|
hasPreferred = m.preferred;
|
|
}
|
|
|
|
std::vector<std::wstring> entries;
|
|
if (!ReadModesValue(entries))
|
|
{
|
|
m_displayModes.reserve(m_displayModes.size() +
|
|
ARRAYSIZE(DefaultDisplayModes));
|
|
|
|
for (int i = 0; i < ARRAYSIZE(DefaultDisplayModes); ++i)
|
|
{
|
|
m.width = DefaultDisplayModes[i][0];
|
|
m.height = DefaultDisplayModes[i][1];
|
|
m.refresh = DefaultDisplayModes[i][2];
|
|
m.preferred = !hasPreferred && (i == DefaultPreferredDisplayMode);
|
|
m_displayModes.push_back(m);
|
|
}
|
|
return;
|
|
}
|
|
|
|
DEBUG_INFO("Parsed Modes:");
|
|
for (const auto& line : entries)
|
|
if (ParseModeString(line, m))
|
|
{
|
|
DEBUG_INFO(" %ux%u@%u%s", m.width, m.height, m.refresh, m.preferred ? "*" : "");
|
|
|
|
if (hasPreferred)
|
|
m.preferred = false;
|
|
m_displayModes.push_back(m);
|
|
}
|
|
}
|
|
|
|
void CSettings::SetExtraMode(const DisplayMode& mode)
|
|
{
|
|
WCHAR buf[64];
|
|
_snwprintf_s(buf, _countof(buf), _TRUNCATE, L"%ux%u@%u%s",
|
|
mode.width, mode.height, mode.refresh,
|
|
mode.preferred ? L"*" : L"");
|
|
|
|
HKEY hKey = NULL;
|
|
DWORD disp = 0;
|
|
LONG ec = RegCreateKeyExW(
|
|
HKEY_LOCAL_MACHINE,
|
|
LGIDD_REGKEY,
|
|
0, NULL, REG_OPTION_NON_VOLATILE,
|
|
KEY_SET_VALUE,
|
|
NULL, &hKey, &disp);
|
|
|
|
if (ec != ERROR_SUCCESS)
|
|
{
|
|
DEBUG_INFO("Failed to write key");
|
|
return;
|
|
}
|
|
|
|
const WCHAR* valueName = L"ExtraMode";
|
|
const DWORD cb = (DWORD)((wcslen(buf) + 1) * sizeof(WCHAR));
|
|
|
|
RegSetValueExW(hKey, valueName, 0, REG_SZ, (const BYTE*)buf, cb);
|
|
RegCloseKey(hKey);
|
|
}
|
|
|
|
bool CSettings::GetExtraMode(DisplayMode& mode)
|
|
{
|
|
HKEY hKey = nullptr;
|
|
LONG ec = RegOpenKeyExW(
|
|
HKEY_LOCAL_MACHINE,
|
|
LGIDD_REGKEY,
|
|
0,
|
|
KEY_QUERY_VALUE,
|
|
&hKey
|
|
);
|
|
|
|
if (ec != ERROR_SUCCESS)
|
|
return false;
|
|
|
|
DWORD type = 0;
|
|
DWORD cb = 0;
|
|
|
|
ec = RegQueryValueExW(hKey, L"ExtraMode", nullptr, &type, nullptr, &cb);
|
|
if (ec != ERROR_SUCCESS || (type != REG_SZ && type != REG_EXPAND_SZ) || cb == 0)
|
|
{
|
|
RegCloseKey(hKey);
|
|
return false;
|
|
}
|
|
|
|
std::vector<wchar_t> buf(cb / sizeof(wchar_t) + 1);
|
|
ec = RegQueryValueExW(hKey, L"ExtraMode", nullptr, &type,
|
|
reinterpret_cast<LPBYTE>(buf.data()), &cb);
|
|
RegCloseKey(hKey);
|
|
if (ec != ERROR_SUCCESS)
|
|
return false;
|
|
|
|
buf.back() = L'\0';
|
|
|
|
std::wstring s(buf.data());
|
|
return ParseModeString(s, mode);
|
|
}
|
|
|
|
bool CSettings::ReadModesValue(std::vector<std::wstring> &out) const
|
|
{
|
|
HKEY hKey = nullptr;
|
|
LONG st = RegOpenKeyExW(HKEY_LOCAL_MACHINE, LGIDD_REGKEY, 0, KEY_QUERY_VALUE, &hKey);
|
|
if (st != ERROR_SUCCESS)
|
|
return false;
|
|
|
|
DWORD type = 0, cb = 0;
|
|
st = RegGetValueW(hKey, nullptr, L"Modes", RRF_RT_REG_MULTI_SZ, &type, nullptr, &cb);
|
|
if (st != ERROR_SUCCESS || cb == 0)
|
|
{
|
|
RegCloseKey(hKey);
|
|
return false;
|
|
}
|
|
|
|
std::vector<wchar_t> buf(cb / sizeof(wchar_t));
|
|
st = RegGetValueW(hKey, nullptr, L"Modes", RRF_RT_REG_MULTI_SZ, &type, buf.data(), &cb);
|
|
RegCloseKey(hKey);
|
|
if (st != ERROR_SUCCESS)
|
|
return false;
|
|
|
|
const wchar_t* p = buf.data();
|
|
while (*p)
|
|
{
|
|
out.emplace_back(p);
|
|
p += (wcslen(p) + 1);
|
|
}
|
|
|
|
return !out.empty();
|
|
}
|
|
|
|
static std::wstring trim(const std::wstring &s)
|
|
{
|
|
size_t b = 0, e = s.size();
|
|
while (b < e && iswspace(s[b]))
|
|
++b;
|
|
while (e > b && iswspace(s[e - 1]))
|
|
--e;
|
|
return s.substr(b, e - b);
|
|
}
|
|
|
|
static bool toUnsigned(const std::wstring &t, unsigned &v)
|
|
{
|
|
if (t.empty())
|
|
return false;
|
|
|
|
wchar_t* end = nullptr;
|
|
unsigned long tmp = wcstoul(t.c_str(), &end, 10);
|
|
|
|
if (!end || *end != L'\0')
|
|
return false;
|
|
|
|
v = (unsigned)tmp;
|
|
return true;
|
|
}
|
|
|
|
bool CSettings::ParseModeString(const std::wstring& in, DisplayMode& out)
|
|
{
|
|
std::wstring s = trim(in);
|
|
if (s.empty())
|
|
return false;
|
|
|
|
out.preferred = s[s.size() - 1] == L'*';
|
|
if (out.preferred)
|
|
s = trim(s.substr(0, s.size() - 1));
|
|
|
|
size_t xPos = s.find(L'x');
|
|
size_t atPos = s.find(L'@', (xPos == std::wstring::npos ? 0 : xPos + 1));
|
|
if (xPos == std::wstring::npos || atPos == std::wstring::npos ||
|
|
xPos == 0 || atPos <= xPos + 1 || atPos + 1 >= s.size())
|
|
return false;
|
|
|
|
if (!toUnsigned(s.substr(0, xPos), out.width) ||
|
|
!toUnsigned(s.substr(xPos + 1, atPos - (xPos + 1)), out.height) ||
|
|
!toUnsigned(s.substr(atPos + 1), out.refresh))
|
|
return false;
|
|
|
|
return true;
|
|
}
|