dinput: Return the correct error when CreateEffect is not supported.

Signed-off-by: Bruno Jesus <00cpxxx@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Bruno Jesus 2016-08-19 17:59:10 -03:00 committed by Alexandre Julliard
parent 2f7a2fdea3
commit f051de0d37
4 changed files with 81 additions and 62 deletions

View File

@ -1551,7 +1551,10 @@ HRESULT WINAPI IDirectInputDevice2WImpl_CreateEffect(LPDIRECTINPUTDEVICE8W iface
LPDIRECTINPUTEFFECT *ppdef, LPUNKNOWN pUnkOuter) LPDIRECTINPUTEFFECT *ppdef, LPUNKNOWN pUnkOuter)
{ {
FIXME("(this=%p,%s,%p,%p,%p): stub!\n", iface, debugstr_guid(rguid), lpeff, ppdef, pUnkOuter); FIXME("(this=%p,%s,%p,%p,%p): stub!\n", iface, debugstr_guid(rguid), lpeff, ppdef, pUnkOuter);
return DI_OK;
FIXME("not available in the generic implementation\n");
*ppdef = NULL;
return DIERR_UNSUPPORTED;
} }
HRESULT WINAPI IDirectInputDevice2AImpl_CreateEffect(LPDIRECTINPUTDEVICE8A iface, REFGUID rguid, LPCDIEFFECT lpeff, HRESULT WINAPI IDirectInputDevice2AImpl_CreateEffect(LPDIRECTINPUTDEVICE8A iface, REFGUID rguid, LPCDIEFFECT lpeff,

View File

@ -1049,10 +1049,16 @@ static HRESULT WINAPI JoystickWImpl_CreateEffect(LPDIRECTINPUTDEVICE8W iface, RE
JoystickImpl* This = impl_from_IDirectInputDevice8W(iface); JoystickImpl* This = impl_from_IDirectInputDevice8W(iface);
TRACE("(this=%p,%p,%p,%p,%p)\n", This, rguid, lpeff, ppdef, pUnkOuter); TRACE("(this=%p,%p,%p,%p,%p)\n", This, rguid, lpeff, ppdef, pUnkOuter);
#ifndef HAVE_STRUCT_FF_EFFECT_DIRECTION
TRACE("not available (compiled w/o ff support)\n");
*ppdef = NULL; *ppdef = NULL;
return DI_OK; if (!This->joydev->has_ff)
{
TRACE("No force feedback support\n");
return DIERR_UNSUPPORTED;
}
#ifndef HAVE_STRUCT_FF_EFFECT_DIRECTION
TRACE("not available (compiled w/o force feedback support)\n");
return DIERR_UNSUPPORTED;
#else #else
if (!(new_effect = HeapAlloc(GetProcessHeap(), 0, sizeof(*new_effect)))) if (!(new_effect = HeapAlloc(GetProcessHeap(), 0, sizeof(*new_effect))))

View File

@ -1398,7 +1398,7 @@ static HRESULT WINAPI JoystickWImpl_CreateEffect(IDirectInputDevice8W *iface,
if(!This->ff){ if(!This->ff){
TRACE("No force feedback support\n"); TRACE("No force feedback support\n");
*out = NULL; *out = NULL;
return S_OK; return DIERR_UNSUPPORTED;
} }
if(outer) if(outer)

View File

@ -186,6 +186,15 @@ static BOOL CALLBACK EnumJoysticks(const DIDEVICEINSTANCEA *lpddi, void *pvRef)
WCHAR nameBuffer[MAX_PATH]; WCHAR nameBuffer[MAX_PATH];
HWND hWnd = get_hwnd(); HWND hWnd = get_hwnd();
char oldstate[248], curstate[248]; char oldstate[248], curstate[248];
DWORD axes[2] = {DIJOFS_X, DIJOFS_Y};
LONG direction[2] = {0, 0};
DICONSTANTFORCE force = {0};
DIEFFECT eff;
LPDIRECTINPUTEFFECT effect = NULL;
LONG cnt1, cnt2;
HWND real_hWnd;
HINSTANCE hInstance = GetModuleHandleW(NULL);
DIPROPDWORD dip_gain_set, dip_gain_get;
ok(data->version > 0x0300, "Joysticks not supported in version 0x%04x\n", data->version); ok(data->version > 0x0300, "Joysticks not supported in version 0x%04x\n", data->version);
@ -384,19 +393,7 @@ static BOOL CALLBACK EnumJoysticks(const DIDEVICEINSTANCEA *lpddi, void *pvRef)
ok(js.rgdwPOV[3] == -1, "Default for unassigned POV should be -1 not: %d\n", js.rgdwPOV[3]); ok(js.rgdwPOV[3] == -1, "Default for unassigned POV should be -1 not: %d\n", js.rgdwPOV[3]);
} }
if (caps.dwFlags & DIDC_FORCEFEEDBACK) trace("Testing force feedback\n");
{
DWORD axes[2] = {DIJOFS_X, DIJOFS_Y};
LONG direction[2] = {0, 0};
DICONSTANTFORCE force = {0};
DIEFFECT eff;
LPDIRECTINPUTEFFECT effect = NULL;
LONG cnt1, cnt2;
HWND real_hWnd;
HINSTANCE hInstance = GetModuleHandleW(NULL);
DIPROPDWORD dip_gain_set, dip_gain_get;
trace("Testing force-feedback\n");
memset(&eff, 0, sizeof(eff)); memset(&eff, 0, sizeof(eff));
eff.dwSize = sizeof(eff); eff.dwSize = sizeof(eff);
eff.dwFlags = DIEFF_CARTESIAN | DIEFF_OBJECTOFFSETS; eff.dwFlags = DIEFF_CARTESIAN | DIEFF_OBJECTOFFSETS;
@ -430,8 +427,12 @@ static BOOL CALLBACK EnumJoysticks(const DIDEVICEINSTANCEA *lpddi, void *pvRef)
cnt1 = get_refcount((IUnknown*)pJoystick); cnt1 = get_refcount((IUnknown*)pJoystick);
effect = (void *)0xdeadbeef;
hr = IDirectInputDevice2_CreateEffect((IDirectInputDevice2A*)pJoystick, &GUID_ConstantForce, hr = IDirectInputDevice2_CreateEffect((IDirectInputDevice2A*)pJoystick, &GUID_ConstantForce,
&eff, &effect, NULL); &eff, &effect, NULL);
if (caps.dwFlags & DIDC_FORCEFEEDBACK)
{
trace("force feedback supported\n");
ok(hr == DI_OK, "IDirectInputDevice_CreateEffect() failed: %08x\n", hr); ok(hr == DI_OK, "IDirectInputDevice_CreateEffect() failed: %08x\n", hr);
cnt2 = get_refcount((IUnknown*)pJoystick); cnt2 = get_refcount((IUnknown*)pJoystick);
ok(cnt1 == cnt2, "Ref count is wrong %d != %d\n", cnt1, cnt2); ok(cnt1 == cnt2, "Ref count is wrong %d != %d\n", cnt1, cnt2);
@ -622,6 +623,16 @@ static BOOL CALLBACK EnumJoysticks(const DIDEVICEINSTANCEA *lpddi, void *pvRef)
} }
cnt1 = get_refcount((IUnknown*)pJoystick); cnt1 = get_refcount((IUnknown*)pJoystick);
ok(cnt1 == cnt2, "Ref count is wrong %d != %d\n", cnt1, cnt2); ok(cnt1 == cnt2, "Ref count is wrong %d != %d\n", cnt1, cnt2);
}
/* No force feedback support, CreateEffect is supposed to fail. Fairy Bloom Freesia
* calls CreateEffect without checking the DIDC_FORCEFEEDBACK. It expects the correct
* error return to determine if force feedback is unsupported. */
else
{
trace("No force feedback support\n");
ok(hr==DIERR_UNSUPPORTED, "IDirectInputDevice_CreateEffect() must fail with DIERR_UNSUPPORTED, got: %08x\n", hr);
ok(effect == NULL, "effect must be NULL, got %p\n", effect);
}
/* Before destroying the window, release joystick to revert to /* Before destroying the window, release joystick to revert to
* non-exclusive, background cooperative level. */ * non-exclusive, background cooperative level. */
@ -633,7 +644,6 @@ static BOOL CALLBACK EnumJoysticks(const DIDEVICEINSTANCEA *lpddi, void *pvRef)
DestroyWindow (real_hWnd); DestroyWindow (real_hWnd);
hr = IDirectInputDevice_Acquire(pJoystick); hr = IDirectInputDevice_Acquire(pJoystick);
ok(hr==DI_OK,"IDirectInputDevice_Acquire() failed: %08x\n", hr); ok(hr==DI_OK,"IDirectInputDevice_Acquire() failed: %08x\n", hr);
}
if (winetest_interactive) { if (winetest_interactive) {
trace("You have 30 seconds to test all axes, sliders, POVs and buttons\n"); trace("You have 30 seconds to test all axes, sliders, POVs and buttons\n");