Removed W->A from DEFWND_ImmIsUIMessageW.
[wine] / dlls / ddraw / direct3d / mesa.c
1 /*
2  * Copyright 2000 Marcus Meissner
3  * Copyright 2000 Peter Hunnisett
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include "config.h"
21
22 #include <assert.h>
23 #ifdef HAVE_UNISTD_H
24 # include <unistd.h>
25 #endif
26 #include <fcntl.h>
27 #include <string.h>
28 #include <stdarg.h>
29 #include <stdio.h>
30
31 #define NONAMELESSUNION
32 #define NONAMELESSSTRUCT
33 #include "windef.h"
34 #include "winbase.h"
35 #include "wingdi.h"
36 #include "d3d.h"
37 #include "ddraw.h"
38 #include "winerror.h"
39
40 #include "ddraw_private.h"
41 #include "d3d_private.h"
42 #include "mesa_private.h"
43 #include "main.h"
44
45 #include "wine/debug.h"
46
47 WINE_DEFAULT_DEBUG_CHANNEL(ddraw);
48
49 HRESULT WINAPI
50 GL_IDirect3DImpl_1_EnumDevices(LPDIRECT3D iface,
51                                LPD3DENUMDEVICESCALLBACK lpEnumDevicesCallback,
52                                LPVOID lpUserArg)
53 {
54     ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D, iface);
55     TRACE("(%p/%p)->(%p,%p)\n", This, iface, lpEnumDevicesCallback, lpUserArg);
56
57     /* Call functions defined in d3ddevices.c */
58     if (d3ddevice_enumerate(lpEnumDevicesCallback, lpUserArg, 1) != D3DENUMRET_OK)
59         return D3D_OK;
60
61     return D3D_OK;
62 }
63
64 HRESULT WINAPI
65 GL_IDirect3DImpl_3_2T_EnumDevices(LPDIRECT3D3 iface,
66                                   LPD3DENUMDEVICESCALLBACK lpEnumDevicesCallback,
67                                   LPVOID lpUserArg)
68 {
69     ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D3, iface);
70     TRACE("(%p/%p)->(%p,%p)\n", This, iface, lpEnumDevicesCallback, lpUserArg);
71
72     /* Call functions defined in d3ddevices.c */
73     if (d3ddevice_enumerate(lpEnumDevicesCallback, lpUserArg, 3) != D3DENUMRET_OK)
74         return D3D_OK;
75
76     return D3D_OK;
77 }
78
79 HRESULT WINAPI
80 GL_IDirect3DImpl_3_2T_1T_CreateLight(LPDIRECT3D3 iface,
81                                      LPDIRECT3DLIGHT* lplpDirect3DLight,
82                                      IUnknown* pUnkOuter)
83 {
84     ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D3, iface);
85     IDirect3DGLImpl *glThis = (IDirect3DGLImpl *) This->d3d_private;
86     int fl;
87     IDirect3DLightImpl *d3dlimpl;
88     HRESULT ret_value;
89     
90     TRACE("(%p/%p)->(%p,%p)\n", This, iface, lplpDirect3DLight, pUnkOuter);
91     for (fl = 0; fl < MAX_LIGHTS; fl++) {
92         if ((glThis->free_lights & (0x01 << fl)) != 0) {
93             glThis->free_lights &= ~(0x01 << fl);
94             break;
95         }
96     }
97     if (fl == MAX_LIGHTS) {
98         return DDERR_INVALIDPARAMS; /* No way to say 'max lights reached' ... */
99     }
100     ret_value = d3dlight_create(&d3dlimpl, This, GL_LIGHT0 + fl);
101     *lplpDirect3DLight = ICOM_INTERFACE(d3dlimpl, IDirect3DLight);
102
103     return ret_value;
104 }
105
106 HRESULT WINAPI
107 GL_IDirect3DImpl_3_2T_1T_CreateMaterial(LPDIRECT3D3 iface,
108                                         LPDIRECT3DMATERIAL3* lplpDirect3DMaterial3,
109                                         IUnknown* pUnkOuter)
110 {
111     IDirect3DMaterialImpl *D3Dmat_impl;
112     HRESULT ret_value;
113     ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D3, iface);
114     
115     TRACE("(%p/%p)->(%p,%p)\n", This, iface, lplpDirect3DMaterial3, pUnkOuter);
116     ret_value = d3dmaterial_create(&D3Dmat_impl, This);
117
118     *lplpDirect3DMaterial3 = ICOM_INTERFACE(D3Dmat_impl, IDirect3DMaterial3);
119
120     return ret_value;
121 }
122
123 HRESULT WINAPI
124 GL_IDirect3DImpl_3_2T_1T_CreateViewport(LPDIRECT3D3 iface,
125                                         LPDIRECT3DVIEWPORT3* lplpD3DViewport3,
126                                         IUnknown* pUnkOuter)
127 {
128     IDirect3DViewportImpl *D3Dvp_impl;
129     HRESULT ret_value;
130     ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D3, iface);
131     
132     TRACE("(%p/%p)->(%p,%p)\n", This, iface, lplpD3DViewport3, pUnkOuter);
133     ret_value = d3dviewport_create(&D3Dvp_impl, This);
134
135     *lplpD3DViewport3 = ICOM_INTERFACE(D3Dvp_impl, IDirect3DViewport3);
136
137     return ret_value;
138 }
139
140 static HRESULT
141 create_device_helper(IDirectDrawImpl *This,
142                      REFCLSID iid,
143                      IDirectDrawSurfaceImpl *lpDDS,
144                      void **obj,
145                      int version) {
146     IDirect3DDeviceImpl *lpd3ddev;
147     HRESULT ret_value;
148
149     ret_value = d3ddevice_create(&lpd3ddev, This, lpDDS, FALSE);
150     if (FAILED(ret_value)) return ret_value;
151     
152     if ((iid == NULL) ||
153         (IsEqualGUID(&IID_D3DDEVICE_OpenGL, iid)) ||
154         (IsEqualGUID(&IID_IDirect3DHALDevice, iid)) ||
155         (IsEqualGUID(&IID_IDirect3DTnLHalDevice, iid)) ||
156         (IsEqualGUID(&IID_IDirect3DRefDevice, iid))) {
157         switch (version) {
158             case 1:
159                 *obj = ICOM_INTERFACE(lpd3ddev, IDirect3DDevice);
160                 TRACE(" returning OpenGL D3DDevice %p.\n", *obj);
161                 return D3D_OK;
162
163             case 2:
164                 *obj = ICOM_INTERFACE(lpd3ddev, IDirect3DDevice2);
165                 TRACE(" returning OpenGL D3DDevice2 %p.\n", *obj);
166                 return D3D_OK;
167
168             case 3:
169                 *obj = ICOM_INTERFACE(lpd3ddev, IDirect3DDevice3);
170                 TRACE(" returning OpenGL D3DDevice3 %p.\n", *obj);
171                 return D3D_OK;
172
173             case 7:
174                 *obj = ICOM_INTERFACE(lpd3ddev, IDirect3DDevice7);
175                 TRACE(" returning OpenGL D3DDevice7 %p.\n", *obj);
176                 return D3D_OK;
177         }
178     }
179
180     *obj = NULL;
181     ERR(" Interface unknown when creating D3DDevice (%s)\n", debugstr_guid(iid));
182     IDirect3DDevice7_Release(ICOM_INTERFACE(lpd3ddev, IDirect3DDevice7));
183     return DDERR_INVALIDPARAMS;
184 }
185      
186
187 HRESULT WINAPI
188 GL_IDirect3DImpl_2_CreateDevice(LPDIRECT3D2 iface,
189                                 REFCLSID rclsid,
190                                 LPDIRECTDRAWSURFACE lpDDS,
191                                 LPDIRECT3DDEVICE2* lplpD3DDevice2)
192 {
193     ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D2, iface);
194     IDirectDrawSurfaceImpl *ddsurfaceimpl = ICOM_OBJECT(IDirectDrawSurfaceImpl, IDirectDrawSurface3, lpDDS);
195     TRACE("(%p/%p)->(%s,%p,%p)\n", This, iface, debugstr_guid(rclsid), lpDDS, lplpD3DDevice2);
196     return create_device_helper(This, rclsid, ddsurfaceimpl, (void **) lplpD3DDevice2, 2);
197 }
198
199 HRESULT WINAPI
200 GL_IDirect3DImpl_3_CreateDevice(LPDIRECT3D3 iface,
201                                 REFCLSID rclsid,
202                                 LPDIRECTDRAWSURFACE4 lpDDS,
203                                 LPDIRECT3DDEVICE3* lplpD3DDevice3,
204                                 LPUNKNOWN lpUnk)
205 {
206     ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D3, iface);
207     IDirectDrawSurfaceImpl *ddsurfaceimpl = ICOM_OBJECT(IDirectDrawSurfaceImpl, IDirectDrawSurface7, lpDDS);
208     TRACE("(%p/%p)->(%s,%p,%p)\n", This, iface, debugstr_guid(rclsid), lpDDS, lplpD3DDevice3);
209     return create_device_helper(This, rclsid, ddsurfaceimpl, (void **) lplpD3DDevice3, 3);
210 }
211
212 HRESULT WINAPI
213 GL_IDirect3DImpl_3_2T_1T_FindDevice(LPDIRECT3D3 iface,
214                                     LPD3DFINDDEVICESEARCH lpD3DDFS,
215                                     LPD3DFINDDEVICERESULT lpD3DFDR)
216 {
217     ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D3, iface);
218     TRACE("(%p/%p)->(%p,%p)\n", This, iface, lpD3DDFS, lpD3DFDR);
219     return d3ddevice_find(This, lpD3DDFS, lpD3DFDR);
220 }
221
222 HRESULT WINAPI
223 GL_IDirect3DImpl_7_3T_EnumZBufferFormats(LPDIRECT3D7 iface,
224                                          REFCLSID riidDevice,
225                                          LPD3DENUMPIXELFORMATSCALLBACK lpEnumCallback,
226                                          LPVOID lpContext)
227 {
228     ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D7, iface);
229     DDPIXELFORMAT pformat;
230     
231     TRACE("(%p/%p)->(%s,%p,%p)\n", This, iface, debugstr_guid(riidDevice), lpEnumCallback, lpContext);
232
233     memset(&pformat, 0, sizeof(pformat));
234     pformat.dwSize = sizeof(DDPIXELFORMAT);
235     pformat.dwFourCC = 0;   
236     TRACE("Enumerating dummy ZBuffer format (16 bits)\n");
237     pformat.dwFlags = DDPF_ZBUFFER;
238     pformat.u1.dwZBufferBitDepth = 16;
239     pformat.u3.dwZBitMask =    0x0000FFFF;
240     pformat.u5.dwRGBZBitMask = 0x0000FFFF;
241
242     /* Whatever the return value, stop here.. */
243     lpEnumCallback(&pformat, lpContext);
244     
245     return D3D_OK;
246 }
247
248 HRESULT WINAPI
249 GL_IDirect3DImpl_7_EnumDevices(LPDIRECT3D7 iface,
250                                LPD3DENUMDEVICESCALLBACK7 lpEnumDevicesCallback,
251                                LPVOID lpUserArg)
252 {
253     ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D7, iface);
254     TRACE("(%p/%p)->(%p,%p)\n", This, iface, lpEnumDevicesCallback, lpUserArg);
255
256     if (d3ddevice_enumerate7(lpEnumDevicesCallback, lpUserArg) != D3DENUMRET_OK)
257         return D3D_OK;
258     
259     return D3D_OK;
260 }
261
262 HRESULT WINAPI
263 GL_IDirect3DImpl_7_CreateDevice(LPDIRECT3D7 iface,
264                                 REFCLSID rclsid,
265                                 LPDIRECTDRAWSURFACE7 lpDDS,
266                                 LPDIRECT3DDEVICE7* lplpD3DDevice)
267 {
268     ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D7, iface);
269     IDirectDrawSurfaceImpl *ddsurfaceimpl = ICOM_OBJECT(IDirectDrawSurfaceImpl, IDirectDrawSurface7, lpDDS);
270     TRACE("(%p/%p)->(%s,%p,%p)\n", This, iface, debugstr_guid(rclsid), lpDDS, lplpD3DDevice);
271     return create_device_helper(This, rclsid, ddsurfaceimpl, (void **) lplpD3DDevice, 7);
272 }
273
274 HRESULT WINAPI
275 GL_IDirect3DImpl_7_3T_CreateVertexBuffer(LPDIRECT3D7 iface,
276                                          LPD3DVERTEXBUFFERDESC lpD3DVertBufDesc,
277                                          LPDIRECT3DVERTEXBUFFER7* lplpD3DVertBuf,
278                                          DWORD dwFlags)
279 {
280     ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D7, iface);
281     IDirect3DVertexBufferImpl *vbimpl;
282     HRESULT res;
283     
284     TRACE("(%p/%p)->(%p,%p,%08lx)\n", This, iface, lpD3DVertBufDesc, lplpD3DVertBuf, dwFlags);
285
286     res = d3dvertexbuffer_create(&vbimpl, This, lpD3DVertBufDesc, dwFlags);
287
288     *lplpD3DVertBuf = ICOM_INTERFACE(vbimpl, IDirect3DVertexBuffer7);
289     
290     return res;
291 }
292
293 static void light_released(IDirectDrawImpl *This, GLenum light_num)
294 {
295     IDirect3DGLImpl *glThis = (IDirect3DGLImpl *) This->d3d_private;
296     glThis->free_lights |= (light_num - GL_LIGHT0);
297 }
298
299 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
300 # define XCAST(fun)     (typeof(VTABLE_IDirect3D7.fun))
301 #else
302 # define XCAST(fun)     (void*)
303 #endif
304
305 IDirect3D7Vtbl VTABLE_IDirect3D7 =
306 {
307     XCAST(QueryInterface) Thunk_IDirect3DImpl_7_QueryInterface,
308     XCAST(AddRef) Thunk_IDirect3DImpl_7_AddRef,
309     XCAST(Release) Thunk_IDirect3DImpl_7_Release,
310     XCAST(EnumDevices) GL_IDirect3DImpl_7_EnumDevices,
311     XCAST(CreateDevice) GL_IDirect3DImpl_7_CreateDevice,
312     XCAST(CreateVertexBuffer) GL_IDirect3DImpl_7_3T_CreateVertexBuffer,
313     XCAST(EnumZBufferFormats) GL_IDirect3DImpl_7_3T_EnumZBufferFormats,
314     XCAST(EvictManagedTextures) Main_IDirect3DImpl_7_3T_EvictManagedTextures,
315 };
316
317 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
318 #undef XCAST
319 #endif
320
321
322 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
323 # define XCAST(fun)     (typeof(VTABLE_IDirect3D3.fun))
324 #else
325 # define XCAST(fun)     (void*)
326 #endif
327
328 IDirect3D3Vtbl VTABLE_IDirect3D3 =
329 {
330     XCAST(QueryInterface) Thunk_IDirect3DImpl_3_QueryInterface,
331     XCAST(AddRef) Thunk_IDirect3DImpl_3_AddRef,
332     XCAST(Release) Thunk_IDirect3DImpl_3_Release,
333     XCAST(EnumDevices) GL_IDirect3DImpl_3_2T_EnumDevices,
334     XCAST(CreateLight) GL_IDirect3DImpl_3_2T_1T_CreateLight,
335     XCAST(CreateMaterial) GL_IDirect3DImpl_3_2T_1T_CreateMaterial,
336     XCAST(CreateViewport) GL_IDirect3DImpl_3_2T_1T_CreateViewport,
337     XCAST(FindDevice) GL_IDirect3DImpl_3_2T_1T_FindDevice,
338     XCAST(CreateDevice) GL_IDirect3DImpl_3_CreateDevice,
339     XCAST(CreateVertexBuffer) Thunk_IDirect3DImpl_3_CreateVertexBuffer,
340     XCAST(EnumZBufferFormats) Thunk_IDirect3DImpl_3_EnumZBufferFormats,
341     XCAST(EvictManagedTextures) Thunk_IDirect3DImpl_3_EvictManagedTextures,
342 };
343
344 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
345 #undef XCAST
346 #endif
347
348
349 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
350 # define XCAST(fun)     (typeof(VTABLE_IDirect3D2.fun))
351 #else
352 # define XCAST(fun)     (void*)
353 #endif
354
355 IDirect3D2Vtbl VTABLE_IDirect3D2 =
356 {
357     XCAST(QueryInterface) Thunk_IDirect3DImpl_2_QueryInterface,
358     XCAST(AddRef) Thunk_IDirect3DImpl_2_AddRef,
359     XCAST(Release) Thunk_IDirect3DImpl_2_Release,
360     XCAST(EnumDevices) Thunk_IDirect3DImpl_2_EnumDevices,
361     XCAST(CreateLight) Thunk_IDirect3DImpl_2_CreateLight,
362     XCAST(CreateMaterial) Thunk_IDirect3DImpl_2_CreateMaterial,
363     XCAST(CreateViewport) Thunk_IDirect3DImpl_2_CreateViewport,
364     XCAST(FindDevice) Thunk_IDirect3DImpl_2_FindDevice,
365     XCAST(CreateDevice) GL_IDirect3DImpl_2_CreateDevice,
366 };
367
368 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
369 #undef XCAST
370 #endif
371
372
373 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
374 # define XCAST(fun)     (typeof(VTABLE_IDirect3D.fun))
375 #else
376 # define XCAST(fun)     (void*)
377 #endif
378
379 IDirect3DVtbl VTABLE_IDirect3D =
380 {
381     XCAST(QueryInterface) Thunk_IDirect3DImpl_1_QueryInterface,
382     XCAST(AddRef) Thunk_IDirect3DImpl_1_AddRef,
383     XCAST(Release) Thunk_IDirect3DImpl_1_Release,
384     XCAST(Initialize) Main_IDirect3DImpl_1_Initialize,
385     XCAST(EnumDevices) GL_IDirect3DImpl_1_EnumDevices,
386     XCAST(CreateLight) Thunk_IDirect3DImpl_1_CreateLight,
387     XCAST(CreateMaterial) Thunk_IDirect3DImpl_1_CreateMaterial,
388     XCAST(CreateViewport) Thunk_IDirect3DImpl_1_CreateViewport,
389     XCAST(FindDevice) Thunk_IDirect3DImpl_1_FindDevice,
390 };
391
392 #if !defined(__STRICT_ANSI__) && defined(__GNUC__)
393 #undef XCAST
394 #endif
395
396 static HRESULT d3d_add_device(IDirectDrawImpl *This, IDirect3DDeviceImpl *device)
397 {
398     if  (This->current_device == NULL) {
399         /* Create delayed textures now that we have an OpenGL context...
400            For that, go through all surface attached to our DDraw object and create
401            OpenGL textures for all textures.. */
402         IDirectDrawSurfaceImpl *surf = This->surfaces;
403
404         while (surf != NULL) {
405             if (surf->surface_desc.ddsCaps.dwCaps & DDSCAPS_TEXTURE) {
406                 /* Found a texture.. Now create the OpenGL part */
407                 d3dtexture_create(This, surf, FALSE, surf->mip_main);
408             }
409             surf = surf->next_ddraw;
410         }
411     }
412     /* For the moment, only one device 'supported'... */
413     This->current_device = device;
414
415     return DD_OK;
416 }
417
418 static HRESULT d3d_remove_device(IDirectDrawImpl *This, IDirect3DDeviceImpl *device)
419 {
420     This->current_device = NULL;
421     return DD_OK;
422 }
423
424 HRESULT direct3d_create(IDirectDrawImpl *This)
425 {
426     IDirect3DGLImpl *globject;
427     
428     globject = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3DGLImpl));
429     if (globject == NULL) return DDERR_OUTOFMEMORY;
430
431     This->d3d_create_texture = d3dtexture_create;
432     This->d3d_added_device = d3d_add_device;
433     This->d3d_removed_device = d3d_remove_device;
434
435     ICOM_INIT_INTERFACE(This, IDirect3D,  VTABLE_IDirect3D);
436     ICOM_INIT_INTERFACE(This, IDirect3D2, VTABLE_IDirect3D2);
437     ICOM_INIT_INTERFACE(This, IDirect3D3, VTABLE_IDirect3D3);
438     ICOM_INIT_INTERFACE(This, IDirect3D7, VTABLE_IDirect3D7);
439
440     globject->free_lights = (0x01 << MAX_LIGHTS) - 1; /* There are, in total, 8 lights in OpenGL */
441     globject->light_released = light_released;
442
443     This->d3d_private = globject;
444
445     TRACE(" creating OpenGL private storage at %p.\n", globject);
446     
447     return D3D_OK;
448 }