diff options
author | uniboi <64006268+uniboi@users.noreply.github.com> | 2023-01-21 10:36:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-21 10:36:55 +0000 |
commit | 9b6731de9a0980515d1d8954f46935a1445dcf02 (patch) | |
tree | 7dca50d57b17518e0e4cd1ebbb421e9c92b602c0 /NorthstarDLL/scripts/client | |
parent | 3a6162627155ec48244c5870729c67fd201e6d6f (diff) | |
download | NorthstarLauncher-9b6731de9a0980515d1d8954f46935a1445dcf02.tar.gz NorthstarLauncher-9b6731de9a0980515d1d8954f46935a1445dcf02.zip |
Expose Cursor Position to UI vm (#387)
* add NSGetCursorPosition
* fix vs filters
* fix clang formatting
* Create wininfo.h
* Create wininfo.cpp
* add wininfo to compiler options
* add wininfo to filters
* move wininfo
* clamp position to screen size
Diffstat (limited to 'NorthstarDLL/scripts/client')
-rw-r--r-- | NorthstarDLL/scripts/client/cursorposition.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/NorthstarDLL/scripts/client/cursorposition.cpp b/NorthstarDLL/scripts/client/cursorposition.cpp new file mode 100644 index 00000000..c80a0930 --- /dev/null +++ b/NorthstarDLL/scripts/client/cursorposition.cpp @@ -0,0 +1,24 @@ +#include "pch.h" +#include "squirrel/squirrel.h" +#include "util/wininfo.h" + +ADD_SQFUNC("vector ornull", NSGetCursorPosition, "", "", ScriptContext::UI) +{ + RECT rcClient; + POINT p; + if (GetCursorPos(&p) && ScreenToClient(*g_gameHWND, &p) && GetClientRect(*g_gameHWND, &rcClient)) + { + std::cout << rcClient.right << " : " << rcClient.bottom << "\n"; + if (GetAncestor(GetForegroundWindow(), GA_ROOTOWNER) != *g_gameHWND) + return SQRESULT_NULL; + + g_pSquirrel<context>->pushvector( + sqvm, + {p.x > 0 ? p.x > rcClient.right ? rcClient.right : (float)p.x : 0, + p.y > 0 ? p.y > rcClient.bottom ? rcClient.bottom : (float)p.y : 0, + 0}); + return SQRESULT_NOTNULL; + } + g_pSquirrel<context>->raiseerror(sqvm, "Failed retrieving cursor position of game window"); + return SQRESULT_ERROR; +} |