[Bug 11536] New: Worms World Party doesn't respond after match
http://bugs.winehq.org/show_bug.cgi?id=11536 Summary: Worms World Party doesn't respond after match Product: Wine Version: 0.9.52. Platform: PC-x86-64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P3 Component: -unknown AssignedTo: wine-bugs(a)winehq.org ReportedBy: rpgraca(a)gmail.com After most matches, like missions and deathmatch and in multiplayer games in the 3rd game, the game doesn't respond to mouse input and I only get beeps when I click on the window. This does't happen in multiplayer games whenever the final result 2-0 or 1-0. I get no stange message in the terminal. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 --- Comment #1 from Austin English <austinenglish(a)gmail.com> 2008-06-05 10:55:40 --- Is this still an issue in 1.0-rc3 or newer wine? -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 Mathias Brodala <info(a)noctus.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |info(a)noctus.net --- Comment #2 from Mathias Brodala <info(a)noctus.net> 2008-09-03 16:44:43 ---
Is this still an issue in 1.0-rc3 or newer wine?
Confirmed to persist in the latest stable release (1.0.0). -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 Andre Wisplinghoff <andre.wisplinghoff(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andre.wisplinghoff(a)gmail.com --- Comment #3 from Andre Wisplinghoff <andre.wisplinghoff(a)gmail.com> 2008-12-21 21:11:08 --- If you just want to play then i've got an ultra-ugly hack working for me in windowed mode (i use wine 0.9.44 for wwp though): Edit Function SetWindowPos in dlls/user32/winpos.c so that it's first lines look like this: BOOL WINAPI SetWindowPos( HWND hwnd, HWND hwndInsertAfter, INT x, INT y, INT cx, INT cy, UINT flags ) { if(hwnd != GetFocus() && hwnd > 0x40000 && (int) hwnd % 0x10000==0x2c) return TRUE; happy wormin'! don't use a wine version changed like that for something other than worms ;) Still one note: I didn't have problems after multiplayer games, only after Single Player games (mission / deathmatch) where a message box pops up after the game that's likely to be the cause of trouble. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 Johan Palmqvist <johan.palmqvist(a)home.se> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 --- Comment #4 from Johan Palmqvist <johan.palmqvist(a)home.se> 2009-01-11 14:44:06 --- *** This bug has been confirmed by popular vote. *** -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 Zdeněk Kopřivík <zdenek.koprivik(a)post.cz> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |zdenek.koprivik(a)post.cz --- Comment #5 from Zdeněk Kopřivík <zdenek.koprivik(a)post.cz> 2009-07-05 14:54:42 --- (In reply to comment #3) I've just tried with the newest Wine 1.1.25. The bug now appears to affect the whole gameplay and not only after match screen. I'm not sure if it is caused by the same bug, but the symptoms are the same. New Wine does not suffer from the "low fps bug", and the "black screen bug" can be patched, but this is now the showstopper. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 --- Comment #6 from Zdeněk Kopřivík <zdenek.koprivik(a)post.cz> 2009-07-05 17:40:29 --- I've tried the suggested change in winpos.c, but that doesn't solve this. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 --- Comment #7 from Matteo <kendatsuba(a)gmail.com> 2010-02-23 13:24:41 --- Created an attachment (id=26432) --> (http://bugs.winehq.org/attachment.cgi?id=26432) Focus loss patch for Worms World Party I think I have found a workaround for this bug. The attached patch for wine-1.1.2 (dlls/user32/dialog.c) seems to fix it. The patch applies to the latest version of wine (1.1.39) without modification and appears to be working there as well. I've tested It with Worms World Party and no focus loss occurred, even after single player missions. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 Matteo <kendatsuba(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #26432|0 |1 is obsolete| | --- Comment #8 from Matteo <kendatsuba(a)gmail.com> 2010-02-24 11:40:41 --- Created an attachment (id=26458) --> (http://bugs.winehq.org/attachment.cgi?id=26458) Focus loss patch for Worms World Party UPDATED Unfortunately the focus loss after "Quick game against PC" still persisted even after applying the patch I posted. This is an updated version which solves the problem. Please note that there is no thinking behind this patch, I proceeded by trial and error. This is not to be considered a real solution to the bug, it is a useful workaround which improves game playability. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 Matteo <bugs.kendatsuba(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bugs.kendatsuba(a)gmail.com --- Comment #9 from Matteo <bugs.kendatsuba(a)gmail.com> 2010-02-26 17:58:17 --- The previous patch will only work (at least for me) if the flag "Allow the window manager to control the windows" is NOT set in winecfg. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 --- Comment #10 from Austin English <austinenglish(a)gmail.com> 2011-03-29 18:47:35 CDT --- Is this still an issue in 1.3.16 (or newer) wine? Does the demo (http://wormsworldparty.team17.com/main.html?page=comm&area=_down_file&file=2...) have the same problem? -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 deckoff(a)gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |deckoff(a)gmail.com --- Comment #11 from deckoff(a)gmail.com 2011-08-30 08:02:43 CDT --- (In reply to comment #10)
Is this still an issue in 1.3.16 (or newer) wine? Does the demo (http://wormsworldparty.team17.com/main.html?page=comm&area=_down_file&file=2...) have the same problem?
Yes, I still got the same problem with WINE 1.3.26 -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 --- Comment #12 from deckoff(a)gmail.com 2011-08-30 10:31:08 CDT --- Did anyone managed to use the patch provided for 1.1.2 WINE. I fail to patch it to this or other version:( -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 --- Comment #13 from deckoff(a)gmail.com 2011-08-30 16:12:08 CDT --- Created an attachment (id=36168) --> (http://bugs.winehq.org/attachment.cgi?id=36168) user32.dll compiled with wine 1.1.41 to be used for Worms WP - fixes 'mouse loses focus' bug U should copy this file to your WWP main directory. It works with Wine 1.1.41 and 1.2.2. Most probablu OK with all 1.1 and 1.2 version, never checked. After single player games, mouse looses focus and cannot press anything - this file fixes this bug -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 Frédéric Delanoy <frederic.delanoy(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |frederic.delanoy(a)gmail.com Depends on| |14543 -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 Jarkko K <jarkko_korpi(a)hotmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jarkko_korpi(a)hotmail.com --- Comment #14 from Jarkko K <jarkko_korpi(a)hotmail.com> --- I will try the demo later today. But seriously. Last report is 2011-08-30. -- 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 --- Comment #15 from Jarkko K <jarkko_korpi(a)hotmail.com> --- (In reply to Jarkko K from comment #14)
I will try the demo later today. But seriously. Last report is 2011-08-30.
Ok I tried. I hear some beeping sound. I can see the main picture and clouds are floating, but the movement isn't smooth. I can't get forward in the game... Debug is spammed with lots of quartz lines. 1.7.15 -- 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=11536 --- Comment #16 from Austin English <austinenglish(a)gmail.com> --- This is your friendly reminder that there has been no bug activity for over a year. Is this still an issue in current (1.7.51 or newer) wine? -- 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=11536 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |ABANDONED Status|NEW |RESOLVED --- Comment #17 from Austin English <austinenglish(a)gmail.com> --- Over 2 years with no reply, marking abandoned. -- 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=11536 André H. <nerv(a)dawncrow.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nerv(a)dawncrow.de Status|RESOLVED |CLOSED --- Comment #18 from André H. <nerv(a)dawncrow.de> --- closing abandoned -- 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.
http://bugs.winehq.org/show_bug.cgi?id=11536 --- Comment #19 from Zdeněk Kopřivík <zdenek.koprivik(a)post.cz> --- Well, it took sometime before the WWP can be played in Wine again (roughly 15 year or so), but I've tested this again today in Wine 10.0 stable and the bug is still there. Mouse is moving and focus is changing, but the dialog seems to be displayed below the menu, so you have no way to click Ok. Please re-open the 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.
participants (2)
-
wine-bugs@winehq.org -
WineHQ Bugzilla