我正在尝试通过使用winmm.dll
库来读取我的游戏杆功能。
这是我的做法...
from ctypes import windll, Structure, c_uint, c_ushort, c_char, c_ulong
WORD = c_ushort
UINT = c_uint
TCHAR = c_char
winmm = windll.LoadLibrary('winmm.dll')
class JOYCAPS(Structure):
_fields_ = [
('wMid', WORD),
('wPid', WORD),
('szPname', TCHAR * MAXPNAMELEN), # originally szPname[MAXPNAMELEN]
('wXmin', UINT),
('wXmax', UINT),
('wYmin', UINT),
('wYmax', UINT),
('wZmin', UINT),
('wZmax', UINT),
('wNumButtons', UINT),
('wPeriodMin', UINT),
('wPeriodMax', UINT),
('wRmin', UINT),
('wRmax', UINT),
('wUmin', UINT),
('wUmax', UINT),
('wVmin', UINT),
('wVmax', UINT),
('wCaps', UINT),
('wMaxAxes', UINT),
('wNumAxes', UINT),
('wMaxButtons', UINT),
('szRegKey', TCHAR * MAXPNAMELEN), # originally szRegKey[MAXPNAMELEN]
('szOEMVxD', TCHAR * MAX_JOYSTICKOEMVXDNAME) # originally szOEMVxD[MAX_JOYSTICKOEMVXDNAME]
]
joyinf = JOYCAPS()
err = winmm.joyGetDevCaps(0, pointer(joyinf), sizeof(joyinf))
if err == JOYERR_NOERROR:
for l in [s for s in dir(joyinf) if "_" not in s]:
print(l, getattr(joyinf, l))
当我尝试这样做时,我得到一个错误...
搜索源代码后,我发现
joyGetDevCapsW
是unicode的,而joyGetDevCapsA
不是unicode的。我都尝试了它们,并得到了相同的结果。尝试阅读它们时,我得到错误号165,该错误号未在原始函数MSDN site中列出,但它是
JOYERR_PARMS
的错误代码,这意味着...我正在使用Windows 10和python 3.6
使用
joyGetPos
和joyGetPosEx
时,该代码有效。谢谢
最佳答案
这个要点与您所做的事情类似,并且还可以做更多:https://gist.github.com/rdb/8883307
可能是TCHAR需要一个长度。