[Bug 47834] New: Borderlands 1 (version 1.5.0) doesn't capture mouse
https://bugs.winehq.org/show_bug.cgi?id=47834 Bug ID: 47834 Summary: Borderlands 1 (version 1.5.0) doesn't capture mouse Product: Wine-staging Version: 4.17 Hardware: x86 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs(a)winehq.org Reporter: dron2065(a)rambler.ru CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com Distribution: --- Borderlands 1 (version 1.5.0) doesn't capture mouse - full 360 degree view with mouse is not possible. There is no this problem at previous version of Wine Staging (4.16) and Wine Devel of last version (4.17) -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 --- Comment #1 from Shlykov Andrey (Шлыков Андрей) <dron2065(a)rambler.ru> --- The problem is present in many games. Only one game does not have this problem - Unreal Tournament (1999) with Software Rendering -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 --- Comment #2 from Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> --- I've just updated the raw-input patchset in staging. Does this help? -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 Nikolay Borodin <monsterovich(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |monsterovich(a)gmail.com --- Comment #3 from Nikolay Borodin <monsterovich(a)gmail.com> --- (In reply to Shlykov Andrey (Шлыков Андрей) from comment #0)
Borderlands 1 (version 1.5.0) doesn't capture mouse - full 360 degree view with mouse is not possible.
I have same issue in Warframe (wine 4.17) which is not present in wine 4.16. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 2155X <syenergyy(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |syenergyy(a)gmail.com --- Comment #4 from 2155X <syenergyy(a)gmail.com> --- Same issue in several Unity games. The camera does not capture the mouse and can only move with arrow keys. Worked fine on Wine-Staging (4.16), but does not work on latest Wine-Staging (4.17). The games in question: コイカツ (Koikatsu), AI*少女 (AI-Shoujo) *Both games are NSFW, care when googling. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 kolAflash <kolAflash(a)kolahilft.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kolAflash(a)kolahilft.de --- Comment #5 from kolAflash <kolAflash(a)kolahilft.de> --- (In reply to Alistair Leslie-Hughes from comment #2)
I've just updated the raw-input patchset in staging. Does this help?
No, at least not in StarCraft II :-/ https://github.com/wine-staging/wine-staging/commit/0c7512f5f53deb168d3508bd... Everything was fine wine-staging-4.16. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dereklesho52(a)Gmail.com --- Comment #6 from Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> --- (In reply to kolAflash from comment #5)
(In reply to Alistair Leslie-Hughes from comment #2)
I've just updated the raw-input patchset in staging. Does this help?
No, at least not in StarCraft II :-/
https://github.com/wine-staging/wine-staging/commit/ 0c7512f5f53deb168d3508bdd1f1107ecee774c6
Everything was fine wine-staging-4.16.
We know its the user32-rawinput patchset. Are you able to track down which of these patches is causing the issue? -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 --- Comment #7 from kolAflash <kolAflash(a)kolahilft.de> --- Some additional information: My OS: openSUSE-15.1 And I don't got the xf86-input-libinput package installed. Also I got "Automatically capture the mouse in full-screen windows" enabled in winecfg. Some (In reply to Alistair Leslie-Hughes from comment #6)
[...] We know its the user32-rawinput patchset. Are you able to track down which of these patches is causing the issue?
Sure, it's 0007-winex11.drv-Implement-native-mouse-movement-raw-inpu.patch But you can't compile it because of a syntax bug. There's a ")" missing before "return". +++ b/dlls/winex11.drv/mouse.c [...] @@ -1801,16 +1828,20 @@ static BOOL X11DRV_RawMotion( XGenericEventCookie *xev ) [...] + if ((thread_data->x_rel_valuator.number < 0 || thread_data->y_rel_valuator.number < 0) && + (thread_data->x_abs_valuator.number < 0 || thread_data->y_abs_valuator.number < 0) return FALSE; The syntax bug is fixed by the succeeding 0008-winex11.drv-Implement-native-mouse-button-raw-input-.patch But if you add the ")" and compile, the bug already appears with triple-o-seven. These lines also look odd, because they now have XI_DeviceChanged twice. +++ b/dlls/winex11.drv/mouse.c [...] @@ -324,8 +336,8 @@ static void enable_xinput2(void) mask.mask_len = sizeof(mask_bits); mask.deviceid = XIAllMasterDevices; memset( mask_bits, 0, sizeof(mask_bits) ); + XISetMask( mask_bits, XI_DeviceChanged ); XISetMask( mask_bits, XI_RawMotion ); - XISetMask( mask_bits, XI_ButtonPress ); XISetMask( mask_bits, XI_DeviceChanged ); -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 Olivier F. R. Dierick <o.dierick(a)piezo-forte.be> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |venemo(a)msn.com --- Comment #8 from Olivier F. R. Dierick <o.dierick(a)piezo-forte.be> --- *** Bug 47863 has been marked as a duplicate of this bug. *** -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 TOM <l12436(a)yahoo.com.tw> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |l12436(a)yahoo.com.tw --- Comment #9 from TOM <l12436(a)yahoo.com.tw> --- Skyrim also effect, Mouse is not working in 4.17 -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 Olivier F. R. Dierick <o.dierick(a)piezo-forte.be> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |o.dierick(a)piezo-forte.be Keywords| |regression Summary|Borderlands 1 (version |wine-staging 4.17 |1.5.0) doesn't capture |regression: Not capturing |mouse |mouse in multiple apps | |(borderland 1, warframe, | |starcraft 2, TES Skyrim, | |unity games, etc.) -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 amednyy <swexru(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |swexru(a)gmail.com -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 --- Comment #10 from Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> --- I've disabled the patchset in staging. Thanks everyone for reporting the issue involved with this patchset. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 hexchain <i+winehq(a)hexchain.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |i+winehq(a)hexchain.org -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 Witold Baryluk <witold.baryluk+winehq(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |witold.baryluk+winehq(a)gmail | |.com -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 Shlykov Andrey (Шлыков Андрей) <dron2065(a)rambler.ru> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution|--- |FIXED --- Comment #11 from Shlykov Andrey (Шлыков Андрей) <dron2065(a)rambler.ru> --- There is no this bug at current versions of Wine. Good job. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47834 Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #12 from Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> --- Closing Fixed wine-staging. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.
participants (1)
-
WineHQ Bugzilla