http://bugs.winehq.org/show_bug.cgi?id=5657
--- Comment #14 from Anastasius Focht <focht(a)gmx.net> 2013-10-27 16:10:30 CDT ---
Created attachment 46423
--> http://bugs.winehq.org/attachment.cgi?id=46423
python snippet to query for process memory information
Hello folks,
attached is a small python snippet which queries for process memory information
- similar to EVE Online client.
I copied it from here:
http://stackoverflow.com/questions/11669335/how-to-get-privateusage-memory-…
Prerequisite: WINEPREFIX with Python 2.7 for win32
--- snip ---
$ wine "c:\\Python27\\python.exe" memory_info.py
...
{'PageFaultCount': 0L,
'PagefileUsage': 0L,
'PeakPagefileUsage': 0L,
'PeakWorkingSetSize': 0L,
'PrivateUsage': 0L,
'QuotaNonPagedPoolUsage': 0L,
'QuotaPagedPoolUsage': 0L,
'QuotaPeakNonPagedPoolUsage': 0L,
'QuotaPeakPagedPoolUsage': 0L,
'WorkingSetSize': 0L,
'cb': 40L}
...
--- snip ---
Regards
--
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=5657
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://community.eveonline.
| |com/support/download/
CC| |focht(a)gmx.net
Component|-unknown |ntdll
Version|unspecified |0.9.17.
Summary|EVE Online reports VM Size |EVE Online reports VM Size
|as 0 while on Windows it |as 0 while on Windows it
|reports the memory usage |reports the memory usage
| |(NtQueryInformationProcess
| |ProcessVmCounters info
| |class: actual value for
| |'PagefileUsage' required)
--- Comment #13 from Anastasius Focht <focht(a)gmx.net> 2013-10-27 16:02:50 CDT ---
Hello folks,
is seems the culprit is NtQueryInformationProcess -> ProcessVmCounters not
returning useful information.
There are some tools to reverse EVE Online client code (compiled stackless
python and encrypted).
You need:
http://python.org/ftp/python/2.7.5/python-2.7.5.msi (Python for win32)
https://github.com/wibiti/evedec (decrypts Eve Online python files and passes
them to uncompyle2 to decompile)
https://github.com/wibiti/uncompyle2 (Python 2.7 byte-code decompiler, written
in Python 2.7)
Unfortunately 'evedec' makes use of parallel processing lib, requiring pipe
message mode (bug 17195 and bug 17273) so you have to work around with
unofficial patchset(s) floating around or rewriting the tool to use single
processing mode (without Queue).
Decompiling eve-8.32.622857 client and looking for code that updates the memory
stat page gives a hit here:
carbon/client/script/util/monitor.py:
--- snip ---
...
def UpdateUI(self):
wnd = self.GetWnd()
if not wnd or wnd.destroyed:
return
hd, li = blue.pyos.ProbeStuff()
info = Row(list(hd), li)
virtualMem = info.pagefileUsage / 1024
if self.lastVM is None:
self.lastVM = virtualMem
delta = virtualMem - self.lastVM
self.totalVMDelta += delta
self.lastVM = virtualMem
delta = delta or self.lastVMDelta
self.lastVMDelta = delta
dc = ['<color=0xff00ff00>', '<color=0xffff0000>'][delta > 0]
tdc = ['<color=0xff00ff00>', '<color=0xffff0000>'][self.totalVMDelta >
0]
try:
dev = trinity.device
iml = ''
if blue.logInMemory.isActive:
iml = 'In-memory logging <color=0xff00ff00>active</color> (%s /
%s)' % (LOGTYPE_MAPPING.get(blue.logInMemory.threshold, ('Unknown', ''))[0],
blue.logInMemory.capacity)
fps = 'Fps: %.1f - %s' % (blue.os.fps, iml)
if wnd.sr.fpsText.text != fps:
wnd.sr.fpsText.text = fps
vm = 'VM Size/D/TD: %sK / %s%sK<color=0xffffffff> /
%s%sK<color=0xffb0b0b0> - totalVidMem: %sM' % (util.FmtAmt(virtualMem),
dc,
util.FmtAmt(delta),
tdc,
util.FmtAmt(self.totalVMDelta),
self.totalVidMem)
if wnd.sr.vmText.text != vm:
wnd.sr.vmText.text = vm
inUse = util.FmtAmt(blue.motherLode.memUsage / 1024)
total = util.FmtAmt(blue.motherLode.maxMemUsage / 1024)
num = blue.motherLode.size()
vm = 'Resource Cache Usage: %sK / %sK - %s objects' % (inUse,
total, num)
if wnd.sr.cacheText.text != vm:
wnd.sr.cacheText.text = vm
spaceMgr = sm.StartService('space')
mo = 'Lazy Queue: %s' % getattr(spaceMgr, 'lazyLoadQueueCount', 0)
if session.role & service.ROLEMASK_ELEVATEDPLAYER:
mo += ' - Preload Queue: %s' % getattr(spaceMgr,
'preloadQueueCount', 22)
if wnd.sr.queueText.text != mo:
wnd.sr.queueText.text = mo
except Exception as e:
print 'e', e
self.uitimer = None
sys.exc_clear()
...
--- snip ---
The value in question is 'info.pagefileUsage' (the others are just interval
deltas).
carbon/common/lib/win32.py:
--- snip ---
...
class PROCESS_MEMORY_COUNTERS_EX(Structure):
_fields_ = [('cb', DWORD),
('PageFaultCount', DWORD),
('PeakWorkingSetSize', SIZE_T),
('WorkingSetSize', SIZE_T),
('QuotaPeakPagedPoolUsage', SIZE_T),
('QuotaPagedPoolUsage', SIZE_T),
('QuotaPeakNonPagedPoolUsage', SIZE_T),
('QuotaNonPagedPoolUsage', SIZE_T),
('PagefileUsage', SIZE_T),
('PeakPagefileUsage', SIZE_T),
('PrivateUsage', SIZE_T)]
...
def GetProcessMemoryInfo():
f = windll.Kernel32.GetCurrentProcess
f.retval = HANDLE
h = f()
counters = PROCESS_MEMORY_COUNTERS_EX()
windll.Psapi.GetProcessMemoryInfo(HANDLE(h), byref(counters),
sizeof(counters))
return StructToKeyval(counters)
...
--- snip ---
Other code making use of that value:
carbon/common/script/net/ExceptionWrapperGPCS.py:
--- snip ---
ram = blue.win32.GetProcessMemoryInfo()['PagefileUsage'] / 1024 / 1024
cpuLoad = self.machoNet.GetCPULoad()
m = blue.win32.GlobalMemoryStatus()
memLeft = m['AvailPhys'] / 1024 / 1024
txt = 'System Information: '
txt += 'Total CPU load: %s%%' % int(cpuLoad)
txt += ' | Process memory in use: %s MB' % ram
txt += ' | Physical memory left: %s MB\n' % memLeft
--- snip ---
Psapi.GetProcessMemoryInfo -> kernel32.K32GetProcessMemoryInfo ->
NtQueryInformationProcess(process, ProcessVmCounters, ...)
I found the following articles useful how to estimate/substitute some values:
http://stackoverflow.com/questions/372484/how-do-i-programmatically-check-m…http://nadeausoftware.com/articles/2012/07/c_c_tip_how_get_process_resident…http://locklessinc.com/articles/memory_usage/
As already mentioned, only 'PagefileUsage' is actually required for EVE.
The best substitute for 'PagefileUsage' might be 'VmSize' from either
'/proc/<pid>/stat' (VmSize) or '/proc/<pid>/statm' (VmSize*page_size).
I added a small Linux implementation to ProcessVmCounters getter to fill
'pvmi.PagefileUsage' member with current VmSize and it was enough to have EVE
client display proper memory usage (current + deltas).
$ wine --version
wine-1.7.5-100-g3ab406d
Regards
--
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=29365
Bug #: 29365
Summary: Internet Explorer 8 fails to submit a URL to
VirusTotal for analysis
Product: Wine
Version: 1.3.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: msxml3
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RandomAccountName(a)mail.com
Classification: Unclassified
Created attachment 38003
--> http://bugs.winehq.org/attachment.cgi?id=38003
Terminal output
VirusTotal can automatically check a submitted URL with several safety checking
utilities, but it's not possible to submit one using IE8 with Wine. It gets
stuck at "please wait while submitting the URL provided." winetricks msxml3
works around it.
Steps to reproduce:
1. winetricks ie8
2. Navigate to http://www.virustotal.com
3. Click on the "submit a URL" tab
4. Type some valid URL in the text input field and click submit URL
--
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=7520
Sagawa <sagawa.aki+winebugs(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |sagawa.aki+winebugs(a)gmail.c
| |om
--- Comment #29 from Sagawa <sagawa.aki+winebugs(a)gmail.com> 2013-10-25 22:19:38 CDT ---
Thanks. Above my patch was committed for 1.7.5 release.
This bug is still open. Because we don't synthesize bold/italic bitmap font
yet.
--
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=13699
Summary: Wine doesnt show embedded web browser interface on
Clarion applications
Product: Wine
Version: 1.0-rc3
Platform: PC
URL: http://nakkel.pp.fi/clarionwine/plop.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jouni.karlsson(a)vektori.com
Created an attachment (id=13690)
--> (http://bugs.winehq.org/attachment.cgi?id=13690)
Console messages when running application
Embedded web browser OCX interfaces in applications built with Clarion wont
work under Wine. Shows only blank form instead.
--
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=17929
Summary: Crash when creating a DC
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: damian.dixon(a)gmail.com
Created an attachment (id=20262)
--> (http://bugs.winehq.org/attachment.cgi?id=20262)
backtrace.txt
Crash when creating a DC.
This occurs when using a console application and creating a DC.
This approach works on Windows XP and Vista (not tried other versions).
I use this approach for testing 2D graphic drawing in an automated fashion.
--
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=34502
Bug #: 34502
Summary: __unDName doesn't use flags
UNDNAME_NO_LEADING_UNDERSCORES and
UNDNAME_NO_MS_KEYWORDS for "__ptr64"
Product: Wine
Version: 1.7.1
Platform: x86
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: info(a)vmpsoft.com
Classification: Unclassified
Here is my sources:
static BOOL get_modified_type(struct datatype_t *ct, struct parsed_symbol* sym,
struct array *pmt_ref, char modif, BOOL in_args)
{
const char* modifier;
const char* str_modif;
const char* ptr_modif = "";
if (*sym->current == 'E')
{
sym->current++;
if (!(sym->flags & UNDNAME_NO_MS_KEYWORDS)) {
ptr_modif = "__ptr64";
if (sym->flags & UNDNAME_NO_LEADING_UNDERSCORES)
ptr_modif += 2;
ptr_modif = str_printf(sym, " %s", ptr_modif);
}
}
...
Please check it.
--
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=34503
Bug #: 34503
Summary: __unDName doesn't support flag UNDNAME_NO_THISTYPE
Product: Wine
Version: 1.7.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: info(a)vmpsoft.com
Classification: Unclassified
Here is my version:
static BOOL handle_method(struct parsed_symbol* sym, BOOL cast_op)
{
...
const char *ptr_modif;
/* Implicit 'this' pointer */
/* If there is an implicit this pointer, const modifier follows */
if (!get_modifier(sym, &modifier, &ptr_modif)) goto done;
if (sym->flags & UNDNAME_NO_THISTYPE) modifier = NULL;
else if (modifier || ptr_modif) modifier = str_printf(sym, "%s %s",
modifier, ptr_modif);
}
Please check it
--
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=34432
Bug #: 34432
Summary: installer of iTudou needs atl90
Product: Wine
Version: 1.7.0
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: atl
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: litimetal(a)gmail.com
Classification: Unclassified
Created attachment 45840
--> http://bugs.winehq.org/attachment.cgi?id=45840
terminal_output.txt
0. download it from
http://download.tudou.com/itudou/download/iTudou_Setup_3.7.0.8306_with_feis…
$ sha1sum iTudou_Setup_3.7.0.8306_with_feisu.exe
61c943e1bb45abd17937c69cf82ce97257ba3d7
1. install it
--snip--
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.VC90.ATL" (9.0.21022.8)
err:module:import_dll Library ATL90.DLL (which is needed by L"C:\\Program
Files\\Tudou\\iTudou\\itdAgent.dll") not found
--snip--
winetricks -q vcrun2008 is a workaround
--
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=29784
Bug #: 29784
Summary: Spotify collapse at starting
Product: Wine
Version: 1.3.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: forumcash(a)gmail.com
Classification: Unclassified
Created attachment 38685
--> http://bugs.winehq.org/attachment.cgi?id=38685
pic1
I don't know how to start fixing
--
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=26900
Summary: GetTabbedTextExtent() returns non-zero value when
nCount == 0
Product: Wine
Version: 1.3.18
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tim(a)hentenaar.com
Created an attachment (id=34298)
--> (http://bugs.winehq.org/attachment.cgi?id=34298)
Patch to fix the issue
GetTabbedTextExtent() in wine is returning a non-zero value when 0 is passed in
for nCount. Under Windows XP, logically zero is returned in this case.
--
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=22926
Summary: Main Steam window disappears when using Exposé
Product: Wine
Version: 1.2-rc2
Platform: x86-64
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: blender3dartist(a)gmail.com
When Steam is loaded, the main window disappears, or fades out when Exposé is
activated. However, other Steam windows (such as the friends window and the
chat windows) do animate properly when Exposé is activated.
This bug is triggered in MacOSX 10.6.3 with Steam in wine and Exposé.
--
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=34735
Bug #: 34735
Summary: Photoscape: page fault on read access to 0x00000004 in
32-bit code
Product: Wine
Version: 1.7.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: benpicco-wine(a)flauschlabor.de
Classification: Unclassified
Created attachment 46312
--> http://bugs.winehq.org/attachment.cgi?id=46312
backtrace produced by wine
I've installed Photoscape 3.6.5 to a new WINEPREFIX, install works flawlessly
and the program starts up.
Select Editor, chose a file.
Select a Filter, most Filters will crash.
e.g. Filter->Distorts->Perspective->Fisheye
(see attached backtrace)
--
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=34776
Bug #: 34776
Summary: explorer.exe does not start
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lrasinen(a)iki.fi
Classification: Unclassified
Created attachment 46371
--> http://bugs.winehq.org/attachment.cgi?id=46371
Debug output when explorer.exe does not start
The git master (29c6e10fd) no longer starts explorer.exe with this command
line:
DYLD_FALLBACK_LIBRARY_PATH=/opt/X11/lib/ ./wine explorer.exe
(DFLP for freetype libraries)
Nothing appears on the screen, and the default debug output is quite silent.
With earlier versions
I was able to use git bisect to track the problem down to this commit:
[7370a565436b404570b1b1c4ad58a320368fbd7a] user32: Delay registration of the
builtin classes until the first window is created.
Mac OS X 10.7.5.
--
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=24770
Summary: Bioshock not work
Product: Wine
Version: 1.3.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: darthsteel(a)gmail.com
Created an attachment (id=31302)
--> (http://bugs.winehq.org/attachment.cgi?id=31302)
backtrace error bioshock
This game crash on start and no more...not work.
Bioshock
On Ubuntu 10.10 x64 with ati catalyst and ATI Radeon HD 3200
--
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=34778
Bug #: 34778
Summary: IE7 can't install
Product: Wine
Version: 1.7.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: crypt32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: litimetal(a)gmail.com
Classification: Unclassified
0. delete ~/.wine
1. winetricks -q ie7
2. installer crashed
I've made a regression test, and found this:
9fb1e4d675043bd078552a7c0de8eec317473cd0 is the first bad commit
commit 9fb1e4d675043bd078552a7c0de8eec317473cd0
Author: Jacek Caban <jacek(a)codeweavers.com>
Date: Fri Oct 18 10:50:43 2013 +0200
crypt32: Keep reference to store in contexts.
:040000 040000 c8c51457bbd497c1d7f7e413eb3392c8858b3480
5bfaa4995995e3d0aa005e189ee8146d8b450a37 M dlls
--
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=28946
Bug #: 28946
Summary: Steam freezes again
Product: Wine
Version: 1.3.31
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: otaku(a)rambler.ru
Classification: Unclassified
Created attachment 37209
--> http://bugs.winehq.org/attachment.cgi?id=37209
konsole output (with my comments beginning with #)
Steam freezes after from few minutes to few hours from the moment of start.
When it is frozen it uses processor 100% (one core of my 2).
Steam 1705, Wine 1.3.31.
--
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=8354
Jay <jaynobyl(a)gmx.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|jaynobyl(a)gmx.de |
--
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=31691
Bug #: 31691
Summary: Raw mouse input is erratic and/or causes major
performance drops
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cephryx(a)gmx.net
Classification: Unclassified
This bug emerged from the implementation of #20395 "Mouse / keyboard input not
handled (RawInput)" (http://bugs.winehq.org/show_bug.cgi?id=20395).
Filing it as a separate bug, as suggested here:
http://bugs.winehq.org/show_bug.cgi?id=20395#c134
After compiling and testing a git version (>1.5.12) including the "official"
raw mouse input patch (not to be confused with the "raw3" input hack)
http://source.winehq.org/git/wine.git/commitdiff/faaf3d388eb6db8c2594cb11f7…
with Guild Wars 2 (in which the camera is rotated around the character by
holding down the left or right mouse button and then dragging), I made the
observations listed below. Please understand them as a feedback directed to
providing viable information for debugging.
- Basically, the camera can now be turned using the mouse.
- Doing so has a major impact on the game's performance. For me, it drops from
40-50 to ~3 FPS.
- Actually, trying to turn the view with the mouse is not even necessary to
cause the FPS drop: Simply moving the cursor e.g. in a constant circle, not
even pressing a mouse button, leads to the very same result.
- Moving the cursor was already possible before the patch was merged to the
git. Thus, it seems to me like the game only uses the raw input path when
click-dragging the mouse.
- Before the patch was merged, moving the pointer did not cause a performance
drop.
- The previous two points seem to contradict -- I suspect a conflict/bug
somewhere in there.
- Turning the view with the keyboard is perfectly smooth, but it cannot be
considered an option regarding gameplay.
- All in all, the camera angle kind of performs jumps instead of smooth
transitions. This makes the game unplayable.
I'm quite sure to speak for many gamers out there when I say: Thank you for
your efforts, Henri - we greatly appreciate your work! Ofc, this also goes to
anyone else who was involved. Anyway, we'd love to see further improvements on
this - it looks like raw mouse input is almost done except for performance
tweaks.
A very similar issue seems to occur with Anarchy Online, as described here
http://bugs.winehq.org/show_bug.cgi?id=20395#c133
, so this does not appear to be a Guild Wars 2 specific 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=30552
Bug #: 30552
Summary: Unable to open or start "Legend of Grimlock": "XAudio2
error in XAudio2Create" error
Product: Wine
Version: 1.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: msonders33(a)gmail.com
Classification: Unclassified
Created attachment 39962
--> http://bugs.winehq.org/attachment.cgi?id=39962
Screenshot demonstrating bug.
Unable to run Steam version of Legend of Grimlock. On "XAudio2 error in
XAudio2Create" error on startup. See attachment for screenshot of error.
- Steam has been installed via winetricks from the Ubuntu repo (version
20120308)
- xact, xact_jun2010, and directx9 have been intalled via winetricks
- audio has been set to "Emulate"
- Computer has powerful Nvidia graphics card running Nvidia proprietary drivers
--
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=29039
Bug #: 29039
Summary: League Of Legends game client crashes after champion
selection
Product: Wine
Version: 1.3.32
Platform: x86
URL: http://www.leagueoflegends.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spindler.matej(a)gmail.com
Classification: Unclassified
Created attachment 37401
--> http://bugs.winehq.org/attachment.cgi?id=37401
Eroor message
League Of Legends game client crashes shortly after champion selection, right
before game loading screen should pop up. In screenshot you can see the pop up
with the error message.
native msvcrt doesn't help.
TO reproduce:
use ACE client or the original clent.
ACE client needs a patch from Bug 25624 to start.
Original rads launcher has problems to Bug 26924, but at least for me it is
working sometimes.
Once you are in the PVP.net start any game even tutorial and game will crash.
For some debuging info look at next post!
--
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=34759
Bug #: 34759
Summary: wine 1.6-4 ppa version does not create new wineprefix
Product: Wine
Version: 1.6-rc4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: susancragin(a)earthlink.net
Classification: Unclassified
Created attachment 46352
--> http://bugs.winehq.org/attachment.cgi?id=46352
log running winecfg to set up new wineprefix
I have Ubuntu and installed wine 1.6-4 from the PPA.
I deleted my existing wineprefix to start new.
I ran winecfg.
The program crashed. See log.
--
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=34768
Bug #: 34768
Summary: Wine Error's only with Ubuntu 13.10
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Linuxhelper2881(a)yahoo.com
Classification: Unclassified
Ubuntu 13.10 and Wine don’t seem to get along for some Reason it keeps showing
"Program Error" on every thing i open on Ubuntu 13.10 and when you try to get
Details on it it just closes and don’t show any thing every thing keeps working
100% fine it just shows "Program Error" every time you turn around.
--
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=34712
Bug #: 34712
Summary: Winetricks interface window, where selected options
succinctly.
Product: Wine
Version: 1.7.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aadybal(a)gmail.com
Classification: Unclassified
Created attachment 46281
--> http://bugs.winehq.org/attachment.cgi?id=46281
Winetricks interface window, where selected options succinctly.
After update gtk2, gtk3 packets,Winetricks interface window, where selected
options succinctly.
--
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.