mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-05-07 15:19:56 +09:00
Fix window/game name for games such as 'the finals' that have weird names with utf8-bom and zero width space characters
This commit is contained in:
3
TODO
3
TODO
@@ -110,3 +110,6 @@ Re-enable hotkey disable option for flatpak.
|
|||||||
Make gsr-ui flatpak systemd work nicely with non-flatpak gsr-ui. Maybe change ExecStart to do flatpak run ... || gsr-ui, but make it run as a shell command first with /bin/sh -c "".
|
Make gsr-ui flatpak systemd work nicely with non-flatpak gsr-ui. Maybe change ExecStart to do flatpak run ... || gsr-ui, but make it run as a shell command first with /bin/sh -c "".
|
||||||
|
|
||||||
When enabling X11 global hotkey again only grab lalt, not ralt.
|
When enabling X11 global hotkey again only grab lalt, not ralt.
|
||||||
|
|
||||||
|
When adding window capture only add it to recording and streaming and do the window selection when recording starts, to make it more ergonomic with hotkeys.
|
||||||
|
If hotkey for recording/streaming start is pressed on the button for start is clicked then hide the ui if it's visible and show the window selection option (cursor).
|
||||||
@@ -4,11 +4,16 @@
|
|||||||
#include <X11/Xatom.h>
|
#include <X11/Xatom.h>
|
||||||
#include <X11/Xutil.h>
|
#include <X11/Xutil.h>
|
||||||
|
|
||||||
|
#include <mglpp/system/Utf8.hpp>
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
#include <stdint.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <poll.h>
|
#include <poll.h>
|
||||||
|
|
||||||
|
#include <optional>
|
||||||
|
|
||||||
#define MAX_PROPERTY_VALUE_LEN 4096
|
#define MAX_PROPERTY_VALUE_LEN 4096
|
||||||
|
|
||||||
namespace gsr {
|
namespace gsr {
|
||||||
@@ -134,7 +139,26 @@ namespace gsr {
|
|||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
static char* get_window_title(Display *dpy, Window window) {
|
static std::string utf8_sanitize(const uint8_t *str, int size) {
|
||||||
|
const uint32_t zero_width_space_codepoint = 0x200b; // Some games such as the finals has zero-width space characters
|
||||||
|
std::string result;
|
||||||
|
for(int i = 0; i < size;) {
|
||||||
|
// Some games such as the finals has utf8-bom between each character, wtf?
|
||||||
|
if(i + 3 < size && memcmp(str + i, "\xEF\xBB\xBF", 3) == 0) {
|
||||||
|
i += 3;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t codepoint = 0;
|
||||||
|
size_t codepoint_length = 1;
|
||||||
|
if(mgl::utf8_decode(str + i, size - i, &codepoint, &codepoint_length) && codepoint != zero_width_space_codepoint)
|
||||||
|
result.append((const char*)str + i, codepoint_length);
|
||||||
|
i += codepoint_length;
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
static std::optional<std::string> get_window_title(Display *dpy, Window window) {
|
||||||
const Atom net_wm_name_atom = XInternAtom(dpy, "_NET_WM_NAME", False);
|
const Atom net_wm_name_atom = XInternAtom(dpy, "_NET_WM_NAME", False);
|
||||||
const Atom wm_name_atom = XInternAtom(dpy, "WM_NAME", False);
|
const Atom wm_name_atom = XInternAtom(dpy, "WM_NAME", False);
|
||||||
const Atom utf8_string_atom = XInternAtom(dpy, "UTF8_STRING", False);
|
const Atom utf8_string_atom = XInternAtom(dpy, "UTF8_STRING", False);
|
||||||
@@ -147,7 +171,7 @@ namespace gsr {
|
|||||||
XGetWindowProperty(dpy, window, net_wm_name_atom, 0, 1024, False, utf8_string_atom, &type, &format, &num_items, &bytes_left, &data);
|
XGetWindowProperty(dpy, window, net_wm_name_atom, 0, 1024, False, utf8_string_atom, &type, &format, &num_items, &bytes_left, &data);
|
||||||
|
|
||||||
if(type == utf8_string_atom && format == 8 && data)
|
if(type == utf8_string_atom && format == 8 && data)
|
||||||
return (char*)data;
|
return utf8_sanitize(data, num_items);
|
||||||
|
|
||||||
type = None;
|
type = None;
|
||||||
format = 0;
|
format = 0;
|
||||||
@@ -157,16 +181,18 @@ namespace gsr {
|
|||||||
XGetWindowProperty(dpy, window, wm_name_atom, 0, 1024, False, 0, &type, &format, &num_items, &bytes_left, &data);
|
XGetWindowProperty(dpy, window, wm_name_atom, 0, 1024, False, 0, &type, &format, &num_items, &bytes_left, &data);
|
||||||
|
|
||||||
if((type == XA_STRING || type == utf8_string_atom) && data)
|
if((type == XA_STRING || type == utf8_string_atom) && data)
|
||||||
return (char*)data;
|
return utf8_sanitize(data, num_items);
|
||||||
|
|
||||||
return NULL;
|
return std::nullopt;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char* strip(const char *str, int *len) {
|
static std::string strip(const std::string &str) {
|
||||||
int str_len = strlen(str);
|
int start_index = 0;
|
||||||
|
int str_len = str.size();
|
||||||
|
|
||||||
for(int i = 0; i < str_len; ++i) {
|
for(int i = 0; i < str_len; ++i) {
|
||||||
if(str[i] != ' ') {
|
if(str[i] != ' ') {
|
||||||
str += i;
|
start_index += i;
|
||||||
str_len -= i;
|
str_len -= i;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -179,14 +205,7 @@ namespace gsr {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
*len = str_len;
|
return str.substr(start_index, str_len);
|
||||||
return str;
|
|
||||||
}
|
|
||||||
|
|
||||||
static std::string strip_strip(const char *str) {
|
|
||||||
int len = 0;
|
|
||||||
str = strip(str, &len);
|
|
||||||
return std::string(str, len);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string get_focused_window_name(Display *dpy, WindowCaptureType window_capture_type) {
|
std::string get_focused_window_name(Display *dpy, WindowCaptureType window_capture_type) {
|
||||||
@@ -196,17 +215,16 @@ namespace gsr {
|
|||||||
return result;
|
return result;
|
||||||
|
|
||||||
// Window title is not always ideal (for example for a browser), but for games its pretty much required
|
// Window title is not always ideal (for example for a browser), but for games its pretty much required
|
||||||
char *window_title = get_window_title(dpy, focused_window);
|
const std::optional<std::string> window_title = get_window_title(dpy, focused_window);
|
||||||
if(window_title) {
|
if(window_title) {
|
||||||
result = strip_strip(window_title);
|
result = strip(window_title.value());
|
||||||
XFree(window_title);
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
XClassHint class_hint = {nullptr, nullptr};
|
XClassHint class_hint = {nullptr, nullptr};
|
||||||
XGetClassHint(dpy, focused_window, &class_hint);
|
XGetClassHint(dpy, focused_window, &class_hint);
|
||||||
if(class_hint.res_class) {
|
if(class_hint.res_class) {
|
||||||
result = strip_strip(class_hint.res_class);
|
result = strip(class_hint.res_class);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -442,11 +460,9 @@ namespace gsr {
|
|||||||
if(!window)
|
if(!window)
|
||||||
return wm_name;
|
return wm_name;
|
||||||
|
|
||||||
char *window_title = get_window_title(display, window);
|
const std::optional<std::string> window_title = get_window_title(display, window);
|
||||||
if(window_title) {
|
if(window_title)
|
||||||
wm_name = strip_strip(window_title);
|
wm_name = strip(window_title.value());
|
||||||
XFree(window_title);
|
|
||||||
}
|
|
||||||
|
|
||||||
return wm_name;
|
return wm_name;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user