mirror of
https://github.com/hyprwm/hyprland-plugins.git
synced 2024-11-22 02:35:57 +01:00
csgo-vk-fix: chase hyprland
This commit is contained in:
parent
c28d1011f4
commit
22e1e1e5b4
1 changed files with 18 additions and 10 deletions
|
@ -5,6 +5,7 @@
|
||||||
#include <hyprland/src/Compositor.hpp>
|
#include <hyprland/src/Compositor.hpp>
|
||||||
#include <hyprland/src/desktop/Window.hpp>
|
#include <hyprland/src/desktop/Window.hpp>
|
||||||
#include <hyprland/src/config/ConfigManager.hpp>
|
#include <hyprland/src/config/ConfigManager.hpp>
|
||||||
|
#include <hyprland/src/xwayland/XSurface.hpp>
|
||||||
|
|
||||||
#include "globals.hpp"
|
#include "globals.hpp"
|
||||||
|
|
||||||
|
@ -14,7 +15,7 @@ inline CFunctionHook* g_pSurfaceSizeHook = nullptr;
|
||||||
inline CFunctionHook* g_pSurfaceDamageHook = nullptr;
|
inline CFunctionHook* g_pSurfaceDamageHook = nullptr;
|
||||||
inline CFunctionHook* g_pWLSurfaceDamageHook = nullptr;
|
inline CFunctionHook* g_pWLSurfaceDamageHook = nullptr;
|
||||||
typedef void (*origMotion)(wlr_seat*, uint32_t, double, double);
|
typedef void (*origMotion)(wlr_seat*, uint32_t, double, double);
|
||||||
typedef void (*origSurfaceSize)(wlr_xwayland_surface*, int16_t, int16_t, uint16_t, uint16_t);
|
typedef void (*origSurfaceSize)(CXWaylandSurface*, const CBox&);
|
||||||
typedef void (*origSurfaceDamage)(wlr_surface*, pixman_region32_t*);
|
typedef void (*origSurfaceDamage)(wlr_surface*, pixman_region32_t*);
|
||||||
typedef CRegion (*origWLSurfaceDamage)(CWLSurface*);
|
typedef CRegion (*origWLSurfaceDamage)(CWLSurface*);
|
||||||
|
|
||||||
|
@ -37,27 +38,29 @@ void hkNotifyMotion(wlr_seat* wlr_seat, uint32_t time_msec, double sx, double sy
|
||||||
(*(origMotion)g_pMouseMotionHook->m_pOriginal)(wlr_seat, time_msec, sx, sy);
|
(*(origMotion)g_pMouseMotionHook->m_pOriginal)(wlr_seat, time_msec, sx, sy);
|
||||||
}
|
}
|
||||||
|
|
||||||
void hkSetWindowSize(wlr_xwayland_surface* surface, int16_t x, int16_t y, uint16_t width, uint16_t height) {
|
void hkSetWindowSize(CXWaylandSurface* surface, const CBox& box) {
|
||||||
static auto* const RESX = (Hyprlang::INT* const*)HyprlandAPI::getConfigValue(PHANDLE, "plugin:csgo-vulkan-fix:res_w")->getDataStaticPtr();
|
static auto* const RESX = (Hyprlang::INT* const*)HyprlandAPI::getConfigValue(PHANDLE, "plugin:csgo-vulkan-fix:res_w")->getDataStaticPtr();
|
||||||
static auto* const RESY = (Hyprlang::INT* const*)HyprlandAPI::getConfigValue(PHANDLE, "plugin:csgo-vulkan-fix:res_h")->getDataStaticPtr();
|
static auto* const RESY = (Hyprlang::INT* const*)HyprlandAPI::getConfigValue(PHANDLE, "plugin:csgo-vulkan-fix:res_h")->getDataStaticPtr();
|
||||||
static auto* const PCLASS = (Hyprlang::STRING const*)HyprlandAPI::getConfigValue(PHANDLE, "plugin:csgo-vulkan-fix:class")->getDataStaticPtr();
|
static auto* const PCLASS = (Hyprlang::STRING const*)HyprlandAPI::getConfigValue(PHANDLE, "plugin:csgo-vulkan-fix:class")->getDataStaticPtr();
|
||||||
|
|
||||||
if (!surface) {
|
if (!surface) {
|
||||||
(*(origSurfaceSize)g_pSurfaceSizeHook->m_pOriginal)(surface, x, y, width, height);
|
(*(origSurfaceSize)g_pSurfaceSizeHook->m_pOriginal)(surface, box);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto SURF = surface->surface;
|
const auto SURF = surface->surface;
|
||||||
const auto PWINDOW = g_pCompositor->getWindowFromSurface(SURF);
|
const auto PWINDOW = g_pCompositor->getWindowFromSurface(SURF);
|
||||||
|
|
||||||
|
CBox newBox = box;
|
||||||
|
|
||||||
if (PWINDOW && PWINDOW->m_szInitialClass == *PCLASS) {
|
if (PWINDOW && PWINDOW->m_szInitialClass == *PCLASS) {
|
||||||
width = **RESX;
|
newBox.w = **RESX;
|
||||||
height = **RESY;
|
newBox.h = **RESY;
|
||||||
|
|
||||||
CWLSurface::surfaceFromWlr(SURF)->m_bFillIgnoreSmall = true;
|
CWLSurface::surfaceFromWlr(SURF)->m_bFillIgnoreSmall = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
(*(origSurfaceSize)g_pSurfaceSizeHook->m_pOriginal)(surface, x, y, width, height);
|
(*(origSurfaceSize)g_pSurfaceSizeHook->m_pOriginal)(surface, newBox);
|
||||||
}
|
}
|
||||||
|
|
||||||
void hkSurfaceDamage(wlr_surface* surface, pixman_region32_t* damage) {
|
void hkSurfaceDamage(wlr_surface* surface, pixman_region32_t* damage) {
|
||||||
|
@ -111,10 +114,15 @@ APICALL EXPORT PLUGIN_DESCRIPTION_INFO PLUGIN_INIT(HANDLE handle) {
|
||||||
bool success = !FNS.empty();
|
bool success = !FNS.empty();
|
||||||
if (success)
|
if (success)
|
||||||
g_pMouseMotionHook = HyprlandAPI::createFunctionHook(PHANDLE, FNS[0].address, (void*)::hkNotifyMotion);
|
g_pMouseMotionHook = HyprlandAPI::createFunctionHook(PHANDLE, FNS[0].address, (void*)::hkNotifyMotion);
|
||||||
FNS = HyprlandAPI::findFunctionsByName(PHANDLE, "wlr_xwayland_surface_configure");
|
FNS = HyprlandAPI::findFunctionsByName(PHANDLE, "configure");
|
||||||
success = success && !FNS.empty();
|
for (auto& fn : FNS) {
|
||||||
if (success)
|
if (!fn.signature.contains("XWaylandSurface"))
|
||||||
g_pSurfaceSizeHook = HyprlandAPI::createFunctionHook(PHANDLE, FNS[0].address, (void*)::hkSetWindowSize);
|
continue;
|
||||||
|
|
||||||
|
g_pSurfaceSizeHook = HyprlandAPI::createFunctionHook(PHANDLE, fn.address, (void*)::hkSetWindowSize);
|
||||||
|
}
|
||||||
|
success = success && g_pSurfaceSizeHook;
|
||||||
|
|
||||||
FNS = HyprlandAPI::findFunctionsByName(PHANDLE, "wlr_surface_get_effective_damage");
|
FNS = HyprlandAPI::findFunctionsByName(PHANDLE, "wlr_surface_get_effective_damage");
|
||||||
success = success && !FNS.empty();
|
success = success && !FNS.empty();
|
||||||
if (success)
|
if (success)
|
||||||
|
|
Loading…
Reference in a new issue