1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
/*
This workaround fixes the windows slow mouse movement problem
(happens on full-screen mode + pressing keys).
The code hacks around the mouse input from DirectInput,
which SDL uses in full-screen mode.
Instead it installs a window message proc and reads input from WM_MOUSEMOVE.
On non-windows, the normal SDL events are used for mouse input
new:
It also workarounds a issue with SDL+windows and hardware cursors
(->it has to block WM_SETCURSOR),
so it is used now always even in window mode!
newer:
SDL_Event struct is used for new input handling.
Several people confirmed its working.
*/
#include "MouseInput.h"
#include "InputHandler.h"
#include "Game/UI/MouseHandler.h"
#include "Rendering/GlobalRendering.h"
#include "System/MainDefines.h"
#include "System/SafeUtil.h"
#include <functional>
#include <SDL_events.h>
#include <SDL_hints.h>
#include <SDL_syswm.h>
IMouseInput* mouseInput = nullptr;
IMouseInput::IMouseInput(bool relModeWarp)
{
inputCon = input.AddHandler(std::bind(&IMouseInput::HandleSDLMouseEvent, this, std::placeholders::_1));
#ifndef HEADLESS
// Windows 10 FCU (Fall Creators Update) causes spurious SDL_MOUSEMOTION
// events to be generated with SDL_HINT_MOUSE_RELATIVE_MODE_WARP enabled
//
// while Spring did not previously set this hint and SDL defaults to raw
// input, the update also affects MMB scrolling via SDL_WarpMouseInWindow
// (our ancient manually implemented method of achieving relative motion)
//
// win32 SDL hides these events in 2.0.8 only if mouse->relative_mode_warp
// (which configures relative mouse mode to *internally* use mouse warping
// instead of raw input and gets toggled by SDL_SetRelativeMouseMode based
// on the hint given here); the alternative to RMW would be to *duplicate*
// the SDL patch in WarpPos
SDL_SetHint(SDL_HINT_MOUSE_RELATIVE_MODE_WARP, relModeWarp? "1": "0");
#endif
}
IMouseInput::~IMouseInput()
{
#ifndef HEADLESS
SDL_SetHint(SDL_HINT_MOUSE_RELATIVE_MODE_WARP, "0");
#endif
inputCon.disconnect();
}
bool IMouseInput::HandleSDLMouseEvent(const SDL_Event& event)
{
switch (event.type) {
case SDL_MOUSEMOTION: {
mousepos = int2(event.motion.x, event.motion.y);
if (mouse != nullptr)
mouse->MouseMove(mousepos.x, mousepos.y, event.motion.xrel, event.motion.yrel);
} break;
case SDL_MOUSEBUTTONDOWN: {
mousepos = int2(event.button.x, event.button.y);
if (mouse != nullptr)
mouse->MousePress(mousepos.x, mousepos.y, event.button.button);
} break;
case SDL_MOUSEBUTTONUP: {
mousepos = int2(event.button.x, event.button.y);
if (mouse != nullptr)
mouse->MouseRelease(mousepos.x, mousepos.y, event.button.button);
} break;
case SDL_MOUSEWHEEL: {
if (mouse != nullptr)
mouse->MouseWheel(event.wheel.y);
} break;
case SDL_WINDOWEVENT: {
if (event.window.event == SDL_WINDOWEVENT_LEAVE) {
// mouse left window; set pos internally to center-pixel to prevent endless scrolling
mousepos = globalRendering->GetScreenCenter();
if (mouse != nullptr)
mouse->MouseMove(-mousepos.x, -mousepos.y, 0, 0);
} break;
}
}
return false;
}
//////////////////////////////////////////////////////////////////////
#if defined(_WIN32) && !defined(HEADLESS)
class CWin32MouseInput : public IMouseInput
{
public:
static CWin32MouseInput* inst;
LONG_PTR sdl_wndproc;
HWND wnd;
HCURSOR hCursor;
static LRESULT CALLBACK SpringWndProc(HWND wnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg) {
case WM_SETCURSOR: {
if (inst->hCursor != nullptr) {
const Uint16 hittest = LOWORD(lParam);
if (hittest == HTCLIENT) {
SetCursor(inst->hCursor);
return TRUE;
}
}
} break;
}
return CallWindowProc((WNDPROC)inst->sdl_wndproc, wnd, msg, wParam, lParam);
}
void SetWMMouseCursor(void* wmcursor)
{
hCursor = (HCURSOR)wmcursor;
}
void InstallWndCallback()
{
SDL_SysWMinfo info;
SDL_VERSION(&info.version);
if (!SDL_GetWindowWMInfo(globalRendering->GetWindow(0), &info))
return;
wnd = info.info.win.window;
LONG_PTR cur_wndproc = GetWindowLongPtr(wnd, GWLP_WNDPROC);
if (cur_wndproc != (LONG_PTR)SpringWndProc) {
sdl_wndproc = GetWindowLongPtr(wnd, GWLP_WNDPROC);
SetWindowLongPtr(wnd, GWLP_WNDPROC, (LONG_PTR)SpringWndProc);
}
}
CWin32MouseInput(bool relModeWarp): IMouseInput(relModeWarp)
{
inst = this;
hCursor = nullptr;
sdl_wndproc = 0;
wnd = 0;
InstallWndCallback();
}
~CWin32MouseInput()
{
// reinstall the SDL window proc
SetWindowLongPtr(wnd, GWLP_WNDPROC, sdl_wndproc);
}
};
CWin32MouseInput* CWin32MouseInput::inst = nullptr;
static uint8_t mouseInputMem[sizeof(CWin32MouseInput)];
#else
static uint8_t mouseInputMem[sizeof(IMouseInput)];
#endif
#if 1
static SDL_Event events[100];
#endif
bool IMouseInput::SetPos(int2 pos)
{
if (!globalRendering->active)
return false;
// calling SDL_WarpMouse at 300fps eats ~5% cpu usage, so only update when needed
if (pos.x == mousepos.x && pos.y == mousepos.y)
return false;
return (mousepos = pos, true);
}
bool IMouseInput::WarpPos(int2 pos)
{
SDL_WarpMouseInWindow(globalRendering->GetWindow(0), pos.x, pos.y);
// SDL_WarpMouse generates SDL_MOUSEMOTION events
// in `middle click scrolling` those SDL generated ones would point into
// the opposite direction the user moved the mouse, and so events would
// cancel each other -> camera wouldn't move at all or jitter
// need to catch the SDL generated events and delete them from its queue
//
// NOTE [2018]:
// the above comment dates back to 2010, but also describes the recent
// Windows 10 FCU bug with relative mode warping which similarly relies
// on WMIW
#if 1
SDL_PumpEvents();
SDL_PeepEvents(&events[0], sizeof(events) / sizeof(events[0]), SDL_GETEVENT, SDL_MOUSEMOTION, SDL_MOUSEMOTION);
#else
// should be equivalent, but for some reason is not
SDL_FlushEvent(SDL_MOUSEMOTION);
#endif
return true;
}
IMouseInput* IMouseInput::GetInstance(bool relModeWarp)
{
if (mouseInput == nullptr) {
#if defined(_WIN32) && !defined(HEADLESS)
mouseInput = new (mouseInputMem) CWin32MouseInput(relModeWarp);
#else
mouseInput = new (mouseInputMem) IMouseInput(relModeWarp);
#endif
}
return mouseInput;
}
void IMouseInput::FreeInstance(IMouseInput* mouseInp) {
assert(mouseInp == mouseInput);
spring::SafeDestruct(mouseInp);
memset(mouseInputMem, 0, sizeof(mouseInputMem));
mouseInput = nullptr;
}
|