2017-01-19 16:23:59 -05:00
|
|
|
#include "STDInclude.hpp"
|
|
|
|
|
|
|
|
namespace Components
|
|
|
|
{
|
|
|
|
Dvar::Var Window::NoBorder;
|
|
|
|
Dvar::Var Window::NativeCursor;
|
|
|
|
|
2017-01-20 16:41:03 -05:00
|
|
|
HWND Window::MainWindow = nullptr;
|
2017-01-19 16:23:59 -05:00
|
|
|
BOOL Window::CursorVisible = TRUE;
|
|
|
|
|
|
|
|
int Window::Width()
|
|
|
|
{
|
|
|
|
return Window::Width(Window::MainWindow);
|
|
|
|
}
|
|
|
|
|
|
|
|
int Window::Height()
|
|
|
|
{
|
|
|
|
return Window::Height(Window::MainWindow);
|
|
|
|
}
|
|
|
|
|
|
|
|
int Window::Width(HWND window)
|
|
|
|
{
|
|
|
|
RECT rect;
|
|
|
|
Window::Dimension(window, &rect);
|
|
|
|
return (rect.right - rect.left);
|
|
|
|
}
|
|
|
|
|
|
|
|
int Window::Height(HWND window)
|
|
|
|
{
|
|
|
|
RECT rect;
|
|
|
|
Window::Dimension(window, &rect);
|
|
|
|
return (rect.bottom - rect.top);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Window::Dimension(RECT* rect)
|
|
|
|
{
|
|
|
|
Window::Dimension(Window::MainWindow, rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Window::Dimension(HWND window, RECT* rect)
|
|
|
|
{
|
|
|
|
if (rect)
|
|
|
|
{
|
|
|
|
ZeroMemory(rect, sizeof(RECT));
|
|
|
|
|
|
|
|
if (window && IsWindow(window))
|
|
|
|
{
|
|
|
|
GetWindowRect(window, rect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Window::IsCursorWithin(HWND window)
|
|
|
|
{
|
|
|
|
RECT rect;
|
|
|
|
POINT point;
|
|
|
|
Window::Dimension(window, &rect);
|
|
|
|
|
|
|
|
GetCursorPos(&point);
|
|
|
|
|
|
|
|
return ((point.x - rect.left) > 0 && (point.y - rect.top) > 0 && (rect.right - point.x) > 0 && (rect.bottom - point.y) > 0);
|
|
|
|
}
|
|
|
|
|
2017-02-10 03:50:08 -05:00
|
|
|
HWND Window::GetWindow()
|
|
|
|
{
|
|
|
|
return Window::MainWindow;
|
|
|
|
}
|
|
|
|
|
2017-01-19 16:23:59 -05:00
|
|
|
int Window::IsNoBorder()
|
|
|
|
{
|
|
|
|
return Window::NoBorder.get<bool>();
|
|
|
|
}
|
|
|
|
|
|
|
|
__declspec(naked) void Window::StyleHookStub()
|
|
|
|
{
|
|
|
|
__asm
|
|
|
|
{
|
|
|
|
call Window::IsNoBorder
|
|
|
|
test al, al
|
|
|
|
jz setBorder
|
|
|
|
|
|
|
|
mov ebp, WS_VISIBLE | WS_POPUP
|
|
|
|
retn
|
|
|
|
|
|
|
|
setBorder:
|
|
|
|
mov ebp, WS_VISIBLE | WS_SYSMENU | WS_CAPTION | WS_MINIMIZEBOX
|
|
|
|
retn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Window::DrawCursorStub(void *scrPlace, float x, float y, float w, float h, int horzAlign, int vertAlign, const float *color, Game::Material *material)
|
|
|
|
{
|
|
|
|
if (Window::NativeCursor.get<bool>())
|
|
|
|
{
|
|
|
|
Window::CursorVisible = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Game::UI_DrawHandlePic(scrPlace, x, y, w, h, horzAlign, vertAlign, color, material);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int WINAPI Window::ShowCursorHook(BOOL show)
|
|
|
|
{
|
|
|
|
if (Window::NativeCursor.get<bool>() && IsWindow(Window::MainWindow) && GetForegroundWindow() == Window::MainWindow && Window::IsCursorWithin(Window::MainWindow))
|
|
|
|
{
|
|
|
|
static int count = 0;
|
|
|
|
(show ? ++count : --count);
|
|
|
|
|
|
|
|
if (count >= 0)
|
|
|
|
{
|
|
|
|
Window::CursorVisible = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ShowCursor(show);
|
|
|
|
}
|
|
|
|
|
|
|
|
HWND WINAPI Window::CreateMainWindow(DWORD dwExStyle, LPCSTR lpClassName, LPCSTR lpWindowName, DWORD dwStyle, int X, int Y, int nWidth, int nHeight, HWND hWndParent, HMENU hMenu, HINSTANCE hInstance, LPVOID lpParam)
|
|
|
|
{
|
|
|
|
Window::MainWindow = CreateWindowExA(dwExStyle, lpClassName, lpWindowName, dwStyle, X, Y, nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam);
|
|
|
|
return Window::MainWindow;
|
|
|
|
}
|
|
|
|
|
2017-06-06 16:13:08 -04:00
|
|
|
void Window::ApplyCursor()
|
|
|
|
{
|
|
|
|
bool isLoading = !FastFiles::Ready();
|
2017-06-11 15:25:18 -04:00
|
|
|
SetCursor(LoadCursor(nullptr, isLoading ? IDC_APPSTARTING : IDC_ARROW));
|
2017-06-06 16:13:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI Window::MessageHandler(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
2017-06-14 06:06:04 -04:00
|
|
|
if (Msg == WM_SETCURSOR)
|
2017-06-06 16:13:08 -04:00
|
|
|
{
|
|
|
|
Window::ApplyCursor();
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Utils::Hook::Call<BOOL(__stdcall)(HWND, UINT, WPARAM, LPARAM)>(0x4731F0)(hWnd, Msg, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
2017-01-19 16:23:59 -05:00
|
|
|
Window::Window()
|
|
|
|
{
|
|
|
|
// Borderless window
|
|
|
|
Window::NoBorder = Dvar::Register<bool>("r_noborder", true, Game::dvar_flag::DVAR_FLAG_SAVED, "Do not use a border in windowed mode");
|
|
|
|
Window::NativeCursor = Dvar::Register<bool>("ui_nativeCursor", false, Game::dvar_flag::DVAR_FLAG_SAVED, "Display native cursor");
|
|
|
|
|
|
|
|
Utils::Hook(0x507643, Window::StyleHookStub, HOOK_CALL).install()->quick();
|
|
|
|
|
|
|
|
// Main window creation
|
|
|
|
Utils::Hook::Nop(0x5076AA, 1);
|
|
|
|
Utils::Hook(0x5076AB, Window::CreateMainWindow, HOOK_CALL).install()->quick();
|
|
|
|
|
|
|
|
// Mark the cursor as visible
|
|
|
|
Utils::Hook(0x48E5D3, Window::DrawCursorStub, HOOK_CALL).install()->quick();
|
|
|
|
|
|
|
|
// Draw the cursor if necessary
|
2017-06-14 06:06:04 -04:00
|
|
|
Scheduler::OnFrame([]()
|
2017-01-19 16:23:59 -05:00
|
|
|
{
|
|
|
|
if (Window::NativeCursor.get<bool>() && IsWindow(Window::MainWindow) && GetForegroundWindow() == Window::MainWindow && Window::IsCursorWithin(Window::MainWindow))
|
|
|
|
{
|
|
|
|
int value = 0;
|
2017-06-06 16:13:08 -04:00
|
|
|
Window::ApplyCursor();
|
2017-01-19 16:23:59 -05:00
|
|
|
|
|
|
|
if (Window::CursorVisible)
|
|
|
|
{
|
2017-01-20 16:41:03 -05:00
|
|
|
while ((value = ShowCursor(TRUE)) < 0) {};
|
2017-01-19 16:23:59 -05:00
|
|
|
while (value > 0) { value = ShowCursor(FALSE); } // Set display counter to 0
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-20 16:41:03 -05:00
|
|
|
while ((value = ShowCursor(FALSE)) >= 0) {};
|
2017-01-19 16:23:59 -05:00
|
|
|
while (value < -1) { value = ShowCursor(TRUE); } // Set display counter to -1
|
|
|
|
}
|
|
|
|
|
|
|
|
Window::CursorVisible = FALSE;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Don't let the game interact with the native cursor
|
|
|
|
Utils::Hook::Set(0x6D7348, Window::ShowCursorHook);
|
2017-06-06 16:13:08 -04:00
|
|
|
|
|
|
|
// Use custom message handler
|
|
|
|
Utils::Hook::Set(0x64D298, Window::MessageHandler);
|
2017-01-19 16:23:59 -05:00
|
|
|
}
|
|
|
|
}
|