2 * Copyright (c) 2005 Robert Reif
3 * Copyright (c) 2006 Vitaliy Margolen
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #define DIRECTINPUT_VERSION 0x0700
28 #include "wine/test.h"
33 static const HRESULT SetCoop_null_window
[16] = {
34 E_INVALIDARG
, E_INVALIDARG
, E_INVALIDARG
, E_INVALIDARG
,
35 E_INVALIDARG
, E_HANDLE
, E_HANDLE
, E_INVALIDARG
,
36 E_INVALIDARG
, E_HANDLE
, S_OK
, E_INVALIDARG
,
37 E_INVALIDARG
, E_INVALIDARG
, E_INVALIDARG
, E_INVALIDARG
};
39 static const HRESULT SetCoop_real_window
[16] = {
40 E_INVALIDARG
, E_INVALIDARG
, E_INVALIDARG
, E_INVALIDARG
,
41 E_INVALIDARG
, S_OK
, S_OK
, E_INVALIDARG
,
42 E_INVALIDARG
, E_NOTIMPL
, S_OK
, E_INVALIDARG
,
43 E_INVALIDARG
, E_INVALIDARG
, E_INVALIDARG
, E_INVALIDARG
};
45 static void test_set_coop(LPDIRECTINPUT pDI
, HWND hwnd
)
48 LPDIRECTINPUTDEVICE pMouse
= NULL
;
51 hr
= IDirectInput_CreateDevice(pDI
, &GUID_SysMouse
, &pMouse
, NULL
);
52 ok(SUCCEEDED(hr
), "IDirectInput_CreateDevice() failed: %08x\n", hr
);
53 if (FAILED(hr
)) return;
57 hr
= IDirectInputDevice_SetCooperativeLevel(pMouse
, NULL
, i
);
58 ok(hr
== SetCoop_null_window
[i
], "SetCooperativeLevel(NULL, %d): %08x\n", i
, hr
);
62 hr
= IDirectInputDevice_SetCooperativeLevel(pMouse
, hwnd
, i
);
63 ok(hr
== SetCoop_real_window
[i
], "SetCooperativeLevel(hwnd, %d): %08x\n", i
, hr
);
66 if (pMouse
) IUnknown_Release(pMouse
);
69 static void test_acquire(LPDIRECTINPUT pDI
, HWND hwnd
)
72 LPDIRECTINPUTDEVICE pMouse
= NULL
;
76 hr
= IDirectInput_CreateDevice(pDI
, &GUID_SysMouse
, &pMouse
, NULL
);
77 ok(SUCCEEDED(hr
), "IDirectInput_CreateDevice() failed: %08x\n", hr
);
78 if (FAILED(hr
)) return;
80 hr
= IDirectInputDevice_SetCooperativeLevel(pMouse
, hwnd
, DISCL_NONEXCLUSIVE
| DISCL_FOREGROUND
);
81 ok(hr
== S_OK
, "SetCooperativeLevel: %08x\n", hr
);
83 hr
= IDirectInputDevice_SetDataFormat(pMouse
, &c_dfDIMouse
);
84 ok(SUCCEEDED(hr
), "IDirectInputDevice_SetDataFormat() failed: %08x\n", hr
);
85 hr
= IDirectInputDevice_Unacquire(pMouse
);
86 ok(hr
== S_FALSE
, "IDirectInputDevice_Unacquire() should have failed: %08x\n", hr
);
87 hr
= IDirectInputDevice_Acquire(pMouse
);
88 ok(SUCCEEDED(hr
), "IDirectInputDevice_Acquire() failed: %08x\n", hr
);
89 hr
= IDirectInputDevice_Acquire(pMouse
);
90 ok(hr
== S_FALSE
, "IDirectInputDevice_Acquire() should have failed: %08x\n", hr
);
92 /* Foreground coop level requires window to have focus */
93 /* Create a temporary window, this should make dinput
94 * loose mouse input */
95 hwnd2
= CreateWindow("static", "Temporary", WS_VISIBLE
,
96 10, 210, 200, 200, NULL
, NULL
, NULL
, NULL
);
98 hr
= IDirectInputDevice_GetDeviceState(pMouse
, sizeof(m_state
), &m_state
);
99 ok(hr
== DIERR_NOTACQUIRED
, "GetDeviceState() should have failed: %08x\n", hr
);
100 /* Workaround so we can test other things. Remove when Wine is fixed */
101 IDirectInputDevice_Unacquire(pMouse
);
103 hr
= IDirectInputDevice_Acquire(pMouse
);
104 ok(hr
== DIERR_OTHERAPPHASPRIO
, "Acquire() should have failed: %08x\n", hr
);
106 SetActiveWindow( hwnd
);
107 hr
= IDirectInputDevice_Acquire(pMouse
);
108 ok(hr
== S_OK
, "Acquire() failed: %08x\n", hr
);
110 if (pMouse
) IUnknown_Release(pMouse
);
112 DestroyWindow( hwnd2
);
115 static void mouse_tests(void)
118 LPDIRECTINPUT pDI
= NULL
;
119 HINSTANCE hInstance
= GetModuleHandle(NULL
);
123 hr
= DirectInputCreate(hInstance
, DIRECTINPUT_VERSION
, &pDI
, NULL
);
124 if (hr
== DIERR_OLDDIRECTINPUTVERSION
)
126 skip("Tests require a newer dinput version\n");
129 ok(SUCCEEDED(hr
), "DirectInputCreate() failed: %08x\n", hr
);
130 if (FAILED(hr
)) return;
132 hwnd
= CreateWindow("static", "Title", WS_OVERLAPPEDWINDOW
,
133 10, 10, 200, 200, NULL
, NULL
, NULL
, NULL
);
134 ok(hwnd
!= NULL
, "err: %d\n", GetLastError());
137 ShowWindow(hwnd
, SW_SHOW
);
139 test_set_coop(pDI
, hwnd
);
140 test_acquire(pDI
, hwnd
);
144 if (pDI
) ref
= IUnknown_Release(pDI
);
145 ok(!ref
, "IDirectInput_Release() reference count = %d\n", ref
);