From 11d96a4ab452c6bdd064b4a6bfb5bb02d90deb3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C4=81rti=C5=86=C5=A1=20Mo=C5=BEeiko?= Date: Sun, 3 Feb 2019 13:50:25 -0800 Subject: [PATCH] Win32: Do the event processing during window resize/move --- docs/intro.md | 32 ++++++++++++++------ include/GLFW/glfw3.h | 13 ++++++++ src/init.c | 7 +++++ src/internal.h | 3 ++ src/win32_init.c | 71 ++++++++++++++++++++++++++++++++++++++++--- src/win32_platform.h | 9 ++++++ src/win32_window.c | 72 ++++++++++++++++++++++++++++++-------------- 7 files changed, 172 insertions(+), 35 deletions(-) diff --git a/docs/intro.md b/docs/intro.md index 7aa75e31..bf973186 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -153,17 +153,31 @@ the `VK_KHR_xlib_surface` extension. Possible values are `GLFW_TRUE` and `GLFW_FALSE`. This is ignored on other platforms. +#### Windows specific init hints {#init_hints_windows} + +@anchor GLFW_WIN32_MESSAGES_IN_FIBER_hint +__GLFW_WIN32_MESSAGES_IN_FIBER__ specifies whether to use separate fiber for +processing Windows message, and not the main thread. This allows to unblock +window move and resize operations, and application can do updates and rendering +in its main loop. __Warning__ - setting this hint is not safe for environments +or frameworks where stack inspection is required (for example, moving garbage +collected languages such as Java or C#). Set this with @ref glfwInitHint. + + #### Supported and default values {#init_hints_values} -Initialization hint | Default value | Supported values --------------------------------- | ------------------------------- | ---------------- -@ref GLFW_PLATFORM | `GLFW_ANY_PLATFORM` | `GLFW_ANY_PLATFORM`, `GLFW_PLATFORM_WIN32`, `GLFW_PLATFORM_COCOA`, `GLFW_PLATFORM_WAYLAND`, `GLFW_PLATFORM_X11` or `GLFW_PLATFORM_NULL` -@ref GLFW_JOYSTICK_HAT_BUTTONS | `GLFW_TRUE` | `GLFW_TRUE` or `GLFW_FALSE` -@ref GLFW_ANGLE_PLATFORM_TYPE | `GLFW_ANGLE_PLATFORM_TYPE_NONE` | `GLFW_ANGLE_PLATFORM_TYPE_NONE`, `GLFW_ANGLE_PLATFORM_TYPE_OPENGL`, `GLFW_ANGLE_PLATFORM_TYPE_OPENGLES`, `GLFW_ANGLE_PLATFORM_TYPE_D3D9`, `GLFW_ANGLE_PLATFORM_TYPE_D3D11`, `GLFW_ANGLE_PLATFORM_TYPE_VULKAN` or `GLFW_ANGLE_PLATFORM_TYPE_METAL` -@ref GLFW_COCOA_CHDIR_RESOURCES | `GLFW_TRUE` | `GLFW_TRUE` or `GLFW_FALSE` -@ref GLFW_COCOA_MENUBAR | `GLFW_TRUE` | `GLFW_TRUE` or `GLFW_FALSE` -@ref GLFW_WAYLAND_LIBDECOR | `GLFW_WAYLAND_PREFER_LIBDECOR` | `GLFW_WAYLAND_PREFER_LIBDECOR` or `GLFW_WAYLAND_DISABLE_LIBDECOR` -@ref GLFW_X11_XCB_VULKAN_SURFACE | `GLFW_TRUE` | `GLFW_TRUE` or `GLFW_FALSE` +Initialization hint | Default value | Supported values +--------------------------------- | ------------------------------- | ---------------- + +--------------------------------- | ------------------------------- | ---------------- +@ref GLFW_PLATFORM | `GLFW_ANY_PLATFORM` | `GLFW_ANY_PLATFORM`, `GLFW_PLATFORM_WIN32`, `GLFW_PLATFORM_COCOA`, `GLFW_PLATFORM_WAYLAND`, `GLFW_PLATFORM_X11` or `GLFW_PLATFORM_NULL` +@ref GLFW_JOYSTICK_HAT_BUTTONS | `GLFW_TRUE` | `GLFW_TRUE` or `GLFW_FALSE` +@ref GLFW_ANGLE_PLATFORM_TYPE | `GLFW_ANGLE_PLATFORM_TYPE_NONE` | `GLFW_ANGLE_PLATFORM_TYPE_NONE`, `GLFW_ANGLE_PLATFORM_TYPE_OPENGL`, `GLFW_ANGLE_PLATFORM_TYPE_OPENGLES`, `GLFW_ANGLE_PLATFORM_TYPE_D3D9`, `GLFW_ANGLE_PLATFORM_TYPE_D3D11`, `GLFW_ANGLE_PLATFORM_TYPE_VULKAN` or `GLFW_ANGLE_PLATFORM_TYPE_METAL` +@ref GLFW_COCOA_CHDIR_RESOURCES | `GLFW_TRUE` | `GLFW_TRUE` or `GLFW_FALSE` +@ref GLFW_COCOA_MENUBAR | `GLFW_TRUE` | `GLFW_TRUE` or `GLFW_FALSE` +@ref GLFW_WAYLAND_LIBDECOR | `GLFW_WAYLAND_PREFER_LIBDECOR` | `GLFW_WAYLAND_PREFER_LIBDECOR` or `GLFW_WAYLAND_DISABLE_LIBDECOR` +@ref GLFW_X11_XCB_VULKAN_SURFACE | `GLFW_TRUE` | `GLFW_TRUE` or `GLFW_FALSE` +@ref GLFW_WIN32_MESSAGES_IN_FIBER | `GLFW_FALSE` | `GLFW_TRUE` or `GLFW_FALSE` ### Runtime platform selection {#platform} diff --git a/include/GLFW/glfw3.h b/include/GLFW/glfw3.h index 79b06288..42eddd30 100644 --- a/include/GLFW/glfw3.h +++ b/include/GLFW/glfw3.h @@ -1328,6 +1328,11 @@ extern "C" { * Wayland specific [init hint](@ref GLFW_WAYLAND_LIBDECOR_hint). */ #define GLFW_WAYLAND_LIBDECOR 0x00053001 +/*! @brief Windows specific init hint. + * + * Windows specific [init hint](@ref GLFW_WIN32_MESSAGES_IN_FIBER_hint). + */ +#define GLFW_WIN32_MESSAGES_IN_FIBER 0x00054001 /*! @} */ /*! @addtogroup init @@ -1604,6 +1609,10 @@ typedef void (* GLFWerrorfun)(int error_code, const char* description); * @param[in] ypos The new y-coordinate, in screen coordinates, of the * upper-left corner of the content area of the window. * + * @remark @win32 On Windows moving or resizing of window will block event + * processing. Workaround for this is @ref GLFW_WIN32_MESSAGES_IN_FIBER init + * hint. + * * @sa @ref window_pos * @sa @ref glfwSetWindowPosCallback * @@ -1625,6 +1634,10 @@ typedef void (* GLFWwindowposfun)(GLFWwindow* window, int xpos, int ypos); * @param[in] width The new width, in screen coordinates, of the window. * @param[in] height The new height, in screen coordinates, of the window. * + * @remark @win32 On Windows moving or resizing of window will block event + * processing. Workaround for this is @ref GLFW_WIN32_MESSAGES_IN_FIBER init + * hint. + * * @sa @ref window_size * @sa @ref glfwSetWindowSizeCallback * diff --git a/src/init.c b/src/init.c index dbd5a900..15badad4 100644 --- a/src/init.c +++ b/src/init.c @@ -66,6 +66,10 @@ static _GLFWinitconfig _glfwInitHints = { .libdecorMode = GLFW_WAYLAND_PREFER_LIBDECOR }, + .win32 = + { + .msgInFiber = GLFW_FALSE, + } }; // The allocation function used when no custom allocator is set @@ -462,6 +466,9 @@ GLFWAPI void glfwInitHint(int hint, int value) case GLFW_WAYLAND_LIBDECOR: _glfwInitHints.wl.libdecorMode = value; return; + case GLFW_WIN32_MESSAGES_IN_FIBER: + _glfwInitHints.win32.msgInFiber = value; + return; } _glfwInputError(GLFW_INVALID_ENUM, diff --git a/src/internal.h b/src/internal.h index 4f097aa8..c0576fcd 100644 --- a/src/internal.h +++ b/src/internal.h @@ -388,6 +388,9 @@ struct _GLFWinitconfig struct { int libdecorMode; } wl; + struct { + GLFWbool msgInFiber; + } win32; }; // Window configuration diff --git a/src/win32_init.c b/src/win32_init.c index 77ab56ba..d13b3ae6 100644 --- a/src/win32_init.c +++ b/src/win32_init.c @@ -370,7 +370,6 @@ static LRESULT CALLBACK helperWindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LP // static GLFWbool createHelperWindow(void) { - MSG msg; WNDCLASSEXW wc = { sizeof(wc) }; wc.style = CS_OWNDC; @@ -421,10 +420,18 @@ static GLFWbool createHelperWindow(void) DEVICE_NOTIFY_WINDOW_HANDLE); } - while (PeekMessageW(&msg, _glfw.win32.helperWindowHandle, 0, 0, PM_REMOVE)) + if (_glfw.hints.init.win32.msgInFiber) { - TranslateMessage(&msg); - DispatchMessageW(&msg); + SwitchToFiber(_glfw.win32.messageFiber); + } + else + { + MSG msg; + while (PeekMessageW(&msg, _glfw.win32.helperWindowHandle, 0, 0, PM_REMOVE)) + { + TranslateMessage(&msg); + DispatchMessageW(&msg); + } } return GLFW_TRUE; @@ -598,6 +605,45 @@ BOOL _glfwIsWindows10BuildOrGreaterWin32(WORD build) return RtlVerifyVersionInfo(&osvi, mask, cond) == 0; } +void _glfwPollMessageLoopWin32(void) +{ + _GLFWwindow* window; + MSG msg; + while (PeekMessageW(&msg, NULL, 0, 0, PM_REMOVE)) + { + if (msg.message == WM_QUIT) + { + // NOTE: While GLFW does not itself post WM_QUIT, other processes + // may post it to this one, for example Task Manager + // HACK: Treat WM_QUIT as a close on all windows + + window = _glfw.windowListHead; + while (window) + { + _glfwInputWindowCloseRequest(window); + window = window->next; + } + } + else + { + TranslateMessage(&msg); + DispatchMessageW(&msg); + } + } +} + +// Windows message dispatch fiber +void CALLBACK messageFiberProc(LPVOID lpFiberParameter) +{ + (void)lpFiberParameter; + + for (;;) + { + _glfwPollMessageLoopWin32(); + SwitchToFiber(_glfw.win32.mainFiber); + } +} + GLFWbool _glfwConnectWin32(int platformID, _GLFWplatform* platform) { const _GLFWplatform win32 = @@ -695,6 +741,17 @@ int _glfwInitWin32(void) else if (IsWindowsVistaOrGreater()) SetProcessDPIAware(); + if (_glfw.hints.init.win32.msgInFiber) + { + _glfw.win32.mainFiber = ConvertThreadToFiber(NULL); + if (!_glfw.win32.mainFiber) + return GLFW_FALSE; + + _glfw.win32.messageFiber = CreateFiber(0, &messageFiberProc, NULL); + if (!_glfw.win32.messageFiber) + return GLFW_FALSE; + } + if (!createHelperWindow()) return GLFW_FALSE; @@ -717,6 +774,12 @@ void _glfwTerminateWin32(void) if (_glfw.win32.mainWindowClass) UnregisterClassW(MAKEINTATOM(_glfw.win32.mainWindowClass), _glfw.win32.instance); + if (_glfw.hints.init.win32.msgInFiber) + { + DeleteFiber(_glfw.win32.messageFiber); + ConvertFiberToThread(); + } + _glfw_free(_glfw.win32.clipboardString); _glfw_free(_glfw.win32.rawInput); diff --git a/src/win32_platform.h b/src/win32_platform.h index a2f86852..5c1e0584 100644 --- a/src/win32_platform.h +++ b/src/win32_platform.h @@ -433,6 +433,11 @@ typedef struct _GLFWwindowWin32 int lastCursorPosX, lastCursorPosY; // The last received high surrogate when decoding pairs of UTF-16 messages WCHAR highSurrogate; + + // If user pressed mouse button on window title bar + UINT ncMouseButton; + LPARAM ncMousePos; + } _GLFWwindowWin32; // Win32-specific global data @@ -461,6 +466,9 @@ typedef struct _GLFWlibraryWin32 // The cursor handle to use to hide the cursor (NULL or a transparent cursor) HCURSOR blankCursor; + LPVOID messageFiber; + LPVOID mainFiber; + struct { HINSTANCE instance; PFN_DirectInput8Create Create; @@ -579,6 +587,7 @@ void _glfwSetWindowOpacityWin32(_GLFWwindow* window, float opacity); void _glfwSetRawMouseMotionWin32(_GLFWwindow *window, GLFWbool enabled); GLFWbool _glfwRawMouseMotionSupportedWin32(void); +void _glfwPollMessageLoopWin32(void); void _glfwPollEventsWin32(void); void _glfwWaitEventsWin32(void); void _glfwWaitEventsTimeoutWin32(double timeout); diff --git a/src/win32_window.c b/src/win32_window.c index d014944b..e0da21a7 100644 --- a/src/win32_window.c +++ b/src/win32_window.c @@ -856,11 +856,46 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM l return 0; } + case WM_NCLBUTTONDOWN: + { + if (wParam == HTCAPTION) + { + window->win32.ncMouseButton = uMsg; + window->win32.ncMousePos = lParam; + return 0; + } + break; + } + + case WM_NCMOUSEMOVE: + { + if (window->win32.ncMouseButton) + { + if (GET_X_LPARAM(window->win32.ncMousePos) != GET_X_LPARAM(lParam) || + GET_Y_LPARAM(window->win32.ncMousePos) != GET_Y_LPARAM(lParam)) + { + DefWindowProcW(hWnd, window->win32.ncMouseButton, HTCAPTION, window->win32.ncMousePos); + window->win32.ncMouseButton = 0; + } + } + break; + } + case WM_MOUSEMOVE: { const int x = GET_X_LPARAM(lParam); const int y = GET_Y_LPARAM(lParam); + if (window->win32.ncMouseButton) + { + if (GET_X_LPARAM(window->win32.ncMousePos) != x || + GET_Y_LPARAM(window->win32.ncMousePos) != y) + { + DefWindowProcW(hWnd, window->win32.ncMouseButton, HTCAPTION, window->win32.ncMousePos); + window->win32.ncMouseButton = 0; + } + } + if (!window->win32.cursorTracked) { TRACKMOUSEEVENT tme; @@ -1002,6 +1037,8 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM l else if (window->cursorMode == GLFW_CURSOR_CAPTURED) releaseCursor(); + if (_glfw.hints.init.win32.msgInFiber) + SetTimer(hWnd, 1, 1, NULL); break; } @@ -1018,6 +1055,15 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM l else if (window->cursorMode == GLFW_CURSOR_CAPTURED) captureCursor(window); + if (_glfw.hints.init.win32.msgInFiber) + KillTimer(hWnd, 1); + break; + } + + case WM_TIMER: + { + if (_glfw.hints.init.win32.msgInFiber && wParam == 1) + SwitchToFiber(_glfw.win32.mainFiber); break; } @@ -2101,31 +2147,13 @@ GLFWbool _glfwRawMouseMotionSupportedWin32(void) void _glfwPollEventsWin32(void) { - MSG msg; HWND handle; _GLFWwindow* window; - while (PeekMessageW(&msg, NULL, 0, 0, PM_REMOVE)) - { - if (msg.message == WM_QUIT) - { - // NOTE: While GLFW does not itself post WM_QUIT, other processes - // may post it to this one, for example Task Manager - // HACK: Treat WM_QUIT as a close on all windows - - window = _glfw.windowListHead; - while (window) - { - _glfwInputWindowCloseRequest(window); - window = window->next; - } - } - else - { - TranslateMessage(&msg); - DispatchMessageW(&msg); - } - } + if (_glfw.hints.init.win32.msgInFiber) + SwitchToFiber(_glfw.win32.messageFiber); + else + _glfwPollMessageLoopWin32(); // HACK: Release modifier keys that the system did not emit KEYUP for // NOTE: Shift keys on Windows tend to "stick" when both are pressed as