dinput8/tests: Tests for EnumDevicesBySemantics with different enumeration flags.
[wine] / dlls / dinput8 / tests / device.c
1 /*
2  * Copyright (c) 2011 Lucas Fialho Zawacki
3  * Copyright (c) 2006 Vitaliy Margolen
4  *
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.
9  *
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.
14  *
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
18  */
19
20 #define DIRECTINPUT_VERSION 0x0800
21
22 #define COBJMACROS
23 #include <windows.h>
24
25 #include "wine/test.h"
26 #include "windef.h"
27 #include "dinput.h"
28
29 struct enum_data {
30     LPDIRECTINPUT8 pDI;
31     LPDIACTIONFORMAT lpdiaf;
32     LPDIRECTINPUTDEVICE8 keyboard;
33     LPDIRECTINPUTDEVICE8 mouse;
34     int ndevices;
35 };
36
37 /* Dummy GUID */
38 static const GUID ACTION_MAPPING_GUID = { 0x1, 0x2, 0x3, { 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xa, 0xb } };
39
40 enum {
41     DITEST_AXIS,
42     DITEST_BUTTON,
43     DITEST_KEYBOARDSPACE,
44     DITEST_MOUSEBUTTON0,
45     DITEST_YAXIS
46 };
47
48 static DIACTION actionMapping[]=
49 {
50   /* axis */
51   { 0, 0x01008A01 /* DIAXIS_DRIVINGR_STEER */ , 0, { "Steer" } },
52   /* button */
53   { 1, 0x01000C01 /* DIBUTTON_DRIVINGR_SHIFTUP */ , 0, { "Upshift" } },
54   /* keyboard key */
55   { 2, DIKEYBOARD_SPACE , 0, { "Missile" } },
56   /* mouse button */
57   { 3, DIMOUSE_BUTTON0, 0, { "Select" } },
58   /* mouse axis */
59   { 4, DIMOUSE_YAXIS, 0, { "Y Axis" } }
60 };
61
62 static void test_device_input(
63     LPDIRECTINPUTDEVICE8 lpdid,
64     DWORD event_type,
65     DWORD event,
66     DWORD expected
67 )
68 {
69     HRESULT hr;
70     DIDEVICEOBJECTDATA obj_data;
71     DWORD data_size = 1;
72
73     hr = IDirectInputDevice8_Acquire(lpdid);
74     ok (SUCCEEDED(hr), "Failed to acquire device hr=%08x\n", hr);
75
76     if (event_type == INPUT_KEYBOARD)
77         keybd_event( event, 0, 0, 0);
78
79     if (event_type == INPUT_MOUSE)
80         mouse_event( event, 0, 0, 0, 0);
81
82     IDirectInputDevice8_Poll(lpdid);
83     hr = IDirectInputDevice8_GetDeviceData(lpdid, sizeof(obj_data), &obj_data, &data_size, 0);
84
85     if (data_size != 1)
86     {
87         win_skip("We're not able to inject input into Windows dinput8 with events\n");
88         return;
89     }
90
91     ok (obj_data.uAppData == expected, "Retrieval of action failed uAppData=%lu expected=%d\n", obj_data.uAppData, expected);
92 }
93
94 static void test_build_action_map(
95     LPDIRECTINPUTDEVICE8 lpdid,
96     LPDIACTIONFORMAT lpdiaf,
97     int action_index,
98     DWORD expected_type,
99     DWORD expected_inst
100 )
101 {
102     HRESULT hr;
103     DIACTION *actions;
104     DWORD instance, type, how;
105     GUID assigned_to;
106     DIDEVICEINSTANCEA ddi;
107
108     ddi.dwSize = sizeof(ddi);
109     IDirectInputDevice_GetDeviceInfo(lpdid, &ddi);
110
111     hr = IDirectInputDevice8_BuildActionMap(lpdid, lpdiaf, NULL, DIDBAM_INITIALIZE);
112     ok (SUCCEEDED(hr), "BuildActionMap failed hr=%08x\n", hr);
113
114     actions = lpdiaf->rgoAction;
115     instance = DIDFT_GETINSTANCE(actions[action_index].dwObjID);
116     type = DIDFT_GETTYPE(actions[action_index].dwObjID);
117     how = actions[action_index].dwHow;
118     assigned_to = actions[action_index].guidInstance;
119
120     ok (how == DIAH_USERCONFIG || how == DIAH_DEFAULT, "Action was not set dwHow=%08x\n", how);
121     ok (instance == expected_inst, "Action not mapped correctly instance=%08x expected=%08x\n", instance, expected_inst);
122     ok (type == expected_type, "Action type not mapped correctly type=%08x expected=%08x\n", type, expected_type);
123     ok (IsEqualGUID(&assigned_to, &ddi.guidInstance), "Action and device GUID do not match action=%d\n", action_index);
124 }
125
126 static BOOL CALLBACK enumeration_callback(
127     LPCDIDEVICEINSTANCE lpddi,
128     LPDIRECTINPUTDEVICE8 lpdid,
129     DWORD dwFlags,
130     DWORD dwRemaining,
131     LPVOID pvRef)
132 {
133     HRESULT hr;
134     DIPROPDWORD dp;
135     struct enum_data *data = pvRef;
136     if (!data) return DIENUM_CONTINUE;
137
138     data->ndevices++;
139
140     /* collect the mouse and keyboard */
141     if (IsEqualGUID(&lpddi->guidInstance, &GUID_SysKeyboard))
142     {
143         IDirectInputDevice_AddRef(lpdid);
144         data->keyboard = lpdid;
145
146         ok (dwFlags & DIEDBS_MAPPEDPRI1, "Keyboard should be mapped as pri1 dwFlags=%08x\n", dwFlags);
147     }
148
149     if (IsEqualGUID(&lpddi->guidInstance, &GUID_SysMouse))
150     {
151         IDirectInputDevice_AddRef(lpdid);
152         data->mouse = lpdid;
153
154         ok (dwFlags & DIEDBS_MAPPEDPRI1, "Mouse should be mapped as pri1 dwFlags=%08x\n", dwFlags);
155     }
156
157     /* Building and setting an action map */
158     /* It should not use any pre-stored mappings so we use DIDBAM_INITIALIZE */
159     hr = IDirectInputDevice8_BuildActionMap(lpdid, data->lpdiaf, NULL, DIDBAM_INITIALIZE);
160     ok (SUCCEEDED(hr), "BuildActionMap failed hr=%08x\n", hr);
161
162     /* Device has no data format and thus can't be acquired */
163     hr = IDirectInputDevice8_Acquire(lpdid);
164     ok (hr == DIERR_INVALIDPARAM, "Device was acquired before SetActionMap hr=%08x\n", hr);
165
166     hr = IDirectInputDevice8_SetActionMap(lpdid, data->lpdiaf, NULL, 0);
167     ok (SUCCEEDED(hr), "SetActionMap failed hr=%08x\n", hr);
168
169     /* Test buffer size */
170     memset(&dp, 0, sizeof(dp));
171     dp.diph.dwSize = sizeof(dp);
172     dp.diph.dwHeaderSize = sizeof(DIPROPHEADER);
173     dp.diph.dwHow  = DIPH_DEVICE;
174
175     hr = IDirectInputDevice_GetProperty(lpdid, DIPROP_BUFFERSIZE, &dp.diph);
176     ok (SUCCEEDED(hr), "GetProperty failed hr=%08x\n", hr);
177     ok (dp.dwData == data->lpdiaf->dwBufferSize, "SetActionMap must set the buffer, buffersize=%d\n", dp.dwData);
178
179     /* SetActionMap has set the data format so now it should work */
180     hr = IDirectInputDevice8_Acquire(lpdid);
181     ok (SUCCEEDED(hr), "Acquire failed hr=%08x\n", hr);
182
183     /* SetActionMap should not work on an acquired device */
184     hr = IDirectInputDevice8_SetActionMap(lpdid, data->lpdiaf, NULL, 0);
185     ok (hr == DIERR_ACQUIRED, "SetActionMap succeeded with an acquired device hr=%08x\n", hr);
186
187     return DIENUM_CONTINUE;
188 }
189
190 /*  A simpler callback function used to count and check
191     the enumeration of devices.
192 */
193 static BOOL CALLBACK counting_callback(
194     LPCDIDEVICEINSTANCE lpddi,
195     LPDIRECTINPUTDEVICE8 lpdid,
196     DWORD dwFlags,
197     DWORD dwRemaining,
198     LPVOID pvRef)
199 {
200     struct enum_data *data = pvRef;
201     if (!data) return DIENUM_CONTINUE;
202
203     data->ndevices++;
204     if (IsEqualGUID(&lpddi->guidInstance, &GUID_SysKeyboard))
205         data->keyboard = lpdid;
206
207     if (IsEqualGUID(&lpddi->guidInstance, &GUID_SysMouse))
208         data->mouse = lpdid;
209
210     return DIENUM_CONTINUE;
211 }
212
213 static void test_action_mapping(void)
214 {
215     HRESULT hr;
216     HINSTANCE hinst = GetModuleHandle(NULL);
217     LPDIRECTINPUT8 pDI = NULL;
218     DIACTIONFORMAT af;
219     struct enum_data data =  {pDI, &af, NULL, NULL, 0};
220     struct enum_data count = {pDI, &af, NULL, NULL, 0};
221
222     hr = CoCreateInstance(&CLSID_DirectInput8, 0, 1, &IID_IDirectInput8A, (LPVOID*)&pDI);
223     if (hr == DIERR_OLDDIRECTINPUTVERSION ||
224         hr == DIERR_BETADIRECTINPUTVERSION ||
225         hr == REGDB_E_CLASSNOTREG)
226     {
227         win_skip("ActionMapping requires dinput8\n");
228         return;
229     }
230     ok(SUCCEEDED(hr), "DirectInput8 Create failed: hr=%08x\n", hr);
231     if (FAILED(hr)) return;
232
233     hr = IDirectInput8_Initialize(pDI,hinst, DIRECTINPUT_VERSION);
234     if (hr == DIERR_OLDDIRECTINPUTVERSION || hr == DIERR_BETADIRECTINPUTVERSION)
235     {
236         win_skip("ActionMapping requires dinput8\n");
237         return;
238     }
239     ok(SUCCEEDED(hr), "DirectInput8 Initialize failed: hr=%08x\n", hr);
240     if (FAILED(hr)) return;
241
242     memset (&af, 0, sizeof(af));
243     af.dwSize = sizeof(af);
244     af.dwActionSize = sizeof(DIACTION);
245     af.dwDataSize = 4 * sizeof(actionMapping) / sizeof(actionMapping[0]);
246     af.dwNumActions = sizeof(actionMapping) / sizeof(actionMapping[0]);
247     af.rgoAction = actionMapping;
248     af.guidActionMap = ACTION_MAPPING_GUID;
249     af.dwGenre = 0x01000000; /* DIVIRTUAL_DRIVING_RACE */
250     af.dwBufferSize = 32;
251
252     /* Test enumerating all attached and installed devices */
253     count.keyboard = NULL;
254     count.mouse = NULL;
255     count.ndevices = 0;
256     hr = IDirectInput8_EnumDevicesBySemantics(pDI, 0, &af, counting_callback, &count, DIEDBSFL_ATTACHEDONLY);
257     ok (count.ndevices > 0, "EnumDevicesBySemantics did not call the callback hr=%08x\n", hr);
258     ok (count.keyboard != NULL, "EnumDevicesBySemantics should enumerate the keyboard\n");
259     ok (count.mouse != NULL, "EnumDevicesBySemantics should enumerate the mouse\n");
260
261     /* Enumerate Force feedback devices. We should get no mouse nor keyboard */
262     count.keyboard = NULL;
263     count.mouse = NULL;
264     hr = IDirectInput8_EnumDevicesBySemantics(pDI, 0, &af, counting_callback, &count, DIEDBSFL_FORCEFEEDBACK);
265     ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed hr=%08x\n", hr);
266     todo_wine ok (count.keyboard == NULL, "Keyboard should not be enumerated when asking for forcefeedback\n");
267     todo_wine ok (count.mouse == NULL, "Mouse should not be enumerated when asking for forcefeedback\n");
268
269     /* Enumerate available devices. That is devices with not owned by any user.
270        Before setting the action map for all devices we still have them available.
271     */
272     count.ndevices = 0;
273     hr = IDirectInput8_EnumDevicesBySemantics(pDI, 0, &af, counting_callback, &count, DIEDBSFL_AVAILABLEDEVICES);
274     ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed hr=%08x\n", hr);
275     ok (count.ndevices > 0, "There should be devices available before action mapping available=%d\n", count.ndevices);
276
277     /* This enumeration builds and sets the action map for all devices */
278     hr = IDirectInput8_EnumDevicesBySemantics(pDI, 0, &af, enumeration_callback, &data, DIEDBSFL_ATTACHEDONLY);
279     ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed: hr=%08x\n", hr);
280
281     /* After a succesfull action mapping we should have no devices available */
282     count.ndevices = 0;
283     hr = IDirectInput8_EnumDevicesBySemantics(pDI, 0, &af, counting_callback, &count, DIEDBSFL_AVAILABLEDEVICES);
284     ok (SUCCEEDED(hr), "EnumDevicesBySemantics failed hr=%08x\n", hr);
285     todo_wine ok (count.ndevices == 0, "No device should be available after action mapping available=%d\n", count.ndevices);
286
287     /* Use the devices we collect for some tests */
288     if (data.keyboard != NULL)
289     {
290         /* Test keyboard BuildActionMap */
291         test_build_action_map(data.keyboard, data.lpdiaf, DITEST_KEYBOARDSPACE, DIDFT_PSHBUTTON, DIK_SPACE);
292         /* Test keyboard input */
293         test_device_input(data.keyboard, INPUT_KEYBOARD, VK_SPACE, 2);
294
295         /* Test BuildActionMap with no suitable actions for a device */
296         IDirectInputDevice_Unacquire(data.keyboard);
297         af.dwDataSize = 4 * DITEST_KEYBOARDSPACE;
298         af.dwNumActions = DITEST_KEYBOARDSPACE;
299
300         hr = IDirectInputDevice8_BuildActionMap(data.keyboard, data.lpdiaf, NULL, DIDBAM_INITIALIZE);
301         ok (hr == DI_NOEFFECT, "BuildActionMap should have no effect with no actions hr=%08x\n", hr);
302
303         hr = IDirectInputDevice8_SetActionMap(data.keyboard, data.lpdiaf, NULL, 0);
304         ok (hr == DI_NOEFFECT, "SetActionMap should have no effect with no actions to map hr=%08x\n", hr);
305
306         af.dwDataSize = 4 * sizeof(actionMapping) / sizeof(actionMapping[0]);
307         af.dwNumActions = sizeof(actionMapping) / sizeof(actionMapping[0]);
308     }
309
310     if (data.mouse != NULL)
311     {
312         /* Test mouse BuildActionMap */
313         test_build_action_map(data.mouse, data.lpdiaf, DITEST_MOUSEBUTTON0, DIDFT_PSHBUTTON, 0x03);
314         test_build_action_map(data.mouse, data.lpdiaf, DITEST_YAXIS, DIDFT_RELAXIS, 0x01);
315
316         test_device_input(data.mouse, INPUT_MOUSE, MOUSEEVENTF_LEFTDOWN, 3);
317     }
318
319     /* The call fails with a zeroed GUID */
320     memset(&af.guidActionMap, 0, sizeof(GUID));
321     hr = IDirectInput8_EnumDevicesBySemantics(pDI, 0, &af, enumeration_callback, 0, 0);
322     todo_wine ok(FAILED(hr), "EnumDevicesBySemantics succeeded with invalid GUID hr=%08x\n", hr);
323 }
324
325 START_TEST(device)
326 {
327     CoInitialize(NULL);
328
329     test_action_mapping();
330
331     CoUninitialize();
332 }