http://bugs.winehq.org/show_bug.cgi?id=26803
Summary: file open dialog: slow when selecting many files
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pa78(a)gmx.net
The bug:
The more files I select in the file open diaolg the longer it takes until the
files are actually selected and I can click the open button.
This bug is not about the load time of the program but the time the files get
selected in the file open dialog.
Hints to reproduce:
Selecting one file in the dialog window happen instantly.
Pressing shift and selecting 3 files also is very fast.
Pressing shift and selecting 10 files takes up to 1 second.
Pressing shift and selecting 30 files already takes 10 seconds.
Pressing shift and selecting 50 files already takes 40 seconds.
Pressing shift and selecting 100 files already takes 270 seconds (equals 4:30
min).
As you can see times are raising nearly exponential.
In Windows/Gnome/Kde/... it doesn't matter how many files are
selected/deselected. It takes always the same time.
Additional notes:
My cpu is a 3 year old dualcore 1.86 ghz. If you can't reproduce this times
because your machine is much faster just select more files because time is
raising nearly exponential.
This is an old bug (probably pre wine 1.0) and still (wine 1.3.17) very
annoying to me because sometimes I have to open a few hundret files. I think
this was never implemented well. Just so far that it is possible to open one or
a few files.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=36873
Bug ID: 36873
Summary: Chronology (.NET 4.0 game) based on 'OpenTK': mouse
input non-functional, mouse cursor invisible
Product: Wine
Version: 1.7.21
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
the GOG.com version installs .NET Framework 4.0 client profile on its own in
clean 32-bit WINEPREFIX (without Mono).
If the mouse is moved (either in fullscreen or virtual desktop mode), the
console is spammed with:
--- snip ---
fixme:win:GetMouseMovePointsEx (16 0x33ea10 0x33e5cc 64 1) stub
fixme:win:GetMouseMovePointsEx (16 0x33ea10 0x33e5cc 64 1) stub
fixme:win:GetMouseMovePointsEx (16 0x33ea10 0x33e5cc 64 1) stub
--- snip ---
Source:
http://source.winehq.org/git/wine.git/blob/bdc9b147b948b3476815c52f7fc53f4c…
--- snip ---
1427 int WINAPI GetMouseMovePointsEx(UINT size, LPMOUSEMOVEPOINT ptin,
LPMOUSEMOVEPOINT ptout, int count, DWORD res) {
1428
1429 if((size != sizeof(MOUSEMOVEPOINT)) || (count < 0) || (count > 64)) {
1430 SetLastError(ERROR_INVALID_PARAMETER);
1431 return -1;
1432 }
1433
1434 if(!ptin || (!ptout && count)) {
1435 SetLastError(ERROR_NOACCESS);
1436 return -1;
1437 }
1438
1439 FIXME("(%d %p %p %d %d) stub\n", size, ptin, ptout, count, res);
1440
1441 SetLastError(ERROR_POINT_NOT_FOUND);
1442 return -1;
1443 }
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms646259%28v=vs.85%…
That noisy stub (although annoying) doesn't seem to be the problem here.
See here for discussion and how it's implemented in 'OpenTK':
https://github.com/opentk/opentk/issues/76https://github.com/opentk/opentk/blob/develop/Source/OpenTK/Platform/Window…
--- snip ---
void HandleMouseMove(IntPtr handle, WindowMessage message, IntPtr
wParam, IntPtr lParam)
{
unsafe
{
Point point = new Point(
(short)((uint)lParam.ToInt32() & 0x0000FFFF),
(short)(((uint)lParam.ToInt32() & 0xFFFF0000) >> 16));
// GetMouseMovePointsEx works with screen coordinates
Point screenPoint = point;
Functions.ClientToScreen(handle, ref screenPoint);
int timestamp = Functions.GetMessageTime();
// & 0xFFFF to handle multiple monitors
http://support.microsoft.com/kb/269743
MouseMovePoint movePoint = new MouseMovePoint()
{
X = screenPoint.X & 0xFFFF,
Y = screenPoint.Y & 0xFFFF,
Time = timestamp,
};
// Max points GetMouseMovePointsEx can return is 64.
const int numPoints = 64;
MouseMovePoint* movePoints = stackalloc
MouseMovePoint[numPoints];
// GetMouseMovePointsEx fills in movePoints so that the most
// recent events are at low indices in the array.
int points = Functions.GetMouseMovePointsEx(
(uint)MouseMovePoint.SizeInBytes,
&movePoint, movePoints, numPoints,
Constants.GMMP_USE_DISPLAY_POINTS);
int lastError = Marshal.GetLastWin32Error();
// No points returned or search point not found
if (points == 0 || (points == -1 && lastError ==
Constants.ERROR_POINT_NOT_FOUND))
{
// Just use the mouse move position
OnMouseMove(point.X, point.Y);
}
else if (points == -1)
{
throw new System.ComponentModel.Win32Exception(lastError);
}
else
{
...
--- snip ---
That information might be still useful for 'GetMouseMovePointsEx'
implementation though.
$ wine --version
wine-1.7.21-75-g0a4c786
Regards
--
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=47906
Bug ID: 47906
Summary: Regression at commit
0116660dd80b38da8201e2156adade67fc2ae823 cause game
crash.
Product: Wine
Version: 4.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: l12436(a)yahoo.com.tw
Distribution: ---
Created attachment 65401
--> https://bugs.winehq.org/attachment.cgi?id=65401
Stdout of Alice Madness Return.
there are some regression at commit 0116660dd80b38da8201e2156adade67fc2ae823
causing Alice Madness Return crash at startup.
Game is completely normal before this commit.
The moving code commit is too huge, so I did not has any solution for this. I
just using old code for playing that game.
--
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=30364
Bug #: 30364
Summary: X3 Reunion hangs at start
Product: Wine
Version: 1.5.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: amstream
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pavel.ondracka(a)gmail.com
Classification: Unclassified
Regression SHA1: 27c4ad3bec1229020ab38ab5b45f0969204192ef
Created attachment 39694
--> http://bugs.winehq.org/attachment.cgi?id=39694
terminal output with wine-1.5.1-169-g1c62c9f
This is with X3 Reunion, game of the year edition patched to 2.5 to get rid of
CD protection. The game used to start fine, but there were some other troubles
with IAMMultiMediaStreamImpl_SetState being stub later on (bug 14398), now it
just hangs with black screen after start with terminal being flooded with
fixmes and errors until killed. (full log attached)
27c4ad3bec1229020ab38ab5b45f0969204192ef is the first bad commit
commit 27c4ad3bec1229020ab38ab5b45f0969204192ef
Author: Christian Costa <titan.costa(a)gmail.com>
Date: Tue Apr 3 07:53:50 2012 +0200
amstream: Implement IAMMultiMediaStreamImpl_SetState.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=48336
Bug ID: 48336
Summary: Can't connect to server with HTTP 503
Product: Wine
Version: 5.0-rc2
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: rmkk(a)atlas.cz
Created attachment 66071
--> https://bugs.winehq.org/attachment.cgi?id=66071
Debug log from macos
I'm using "Sparx Enterprise Architect" on Wine@MacOS, comparing to stable Wine
4.0.3 version, new 5.0-rc2 failed to connect to cloud server with HTTP status
503. Both - stable and rc2 prefixes - are installed in parallel side by side
and set in the same way. I tried to copy log records that hopefully can relate
to the cause, but I'm not sure. Thanks for assessment.
--
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=34558
Bug #: 34558
Summary: Alawar launcher fails to start after game has been
registered
Product: Wine
Version: 1.7.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thesource(a)mail.ru
Classification: Unclassified
Created attachment 46008
--> http://bugs.winehq.org/attachment.cgi?id=46008
Alawar launcher wine log
Alawar game launcher starts properly when the game is in trial mode, but after
it has been registered, launcher exits showing message box "Error: 198".
According to log wine complains it can not create some ole objects. Judging by
uuids it's something related to msxml, but winetricking msxml (3, 4, 6) does
not help. Attaching log with WINEDEBUG=ole
--
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.
https://bugs.winehq.org/show_bug.cgi?id=46950
Bug ID: 46950
Summary: UFOHD2 crashes when trying to open camera preview
Product: Wine
Version: 4.5
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alfredo.dalava(a)gmail.com
Distribution: ---
Created attachment 64073
--> https://bugs.winehq.org/attachment.cgi?id=64073
backtrace of crash
UFOHD2 crashes when trying to access camera preview using a Fushicai USBTV007
capture card. The same behavior is seen on Wine 4.0 and wine-4.5-83-g33c35baa67
Download: http://sonotaco.com/soft/download/UFOHD2_4272.zip
Backtrace is attached
--
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=47771
Bug ID: 47771
Summary: Alan Wake mouse movement is broken
Product: Wine
Version: 4.15
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
CC: rbernon(a)codeweavers.com
Regression SHA1: 74efb3e872aebf57a42d62b52e149ae26f320c9a
Distribution: ---
Movement response feels very lagging.
--
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.