2002-03-10 00:29:33 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2000 Marcus Meissner
|
|
|
|
* Copyright 2000 Peter Hunnisett
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2000-04-09 16:30:50 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <assert.h>
|
2002-08-17 02:43:16 +02:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2000-04-09 16:30:50 +02:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <string.h>
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
2000-04-09 16:30:50 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2003-01-07 21:36:20 +01:00
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
2005-05-27 22:17:35 +02:00
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "wingdi.h"
|
2000-04-09 16:30:50 +02:00
|
|
|
#include "d3d.h"
|
2001-07-18 23:04:23 +02:00
|
|
|
#include "ddraw.h"
|
|
|
|
#include "winerror.h"
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2001-07-18 23:04:23 +02:00
|
|
|
#include "ddraw_private.h"
|
2002-11-21 22:04:16 +01:00
|
|
|
#include "d3d_private.h"
|
2005-06-06 17:51:50 +02:00
|
|
|
#include "opengl_private.h"
|
2001-07-18 23:04:23 +02:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(ddraw);
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
HRESULT WINAPI
|
2003-05-12 05:09:17 +02:00
|
|
|
GL_IDirect3DImpl_1_EnumDevices(LPDIRECT3D iface,
|
|
|
|
LPD3DENUMDEVICESCALLBACK lpEnumDevicesCallback,
|
|
|
|
LPVOID lpUserArg)
|
|
|
|
{
|
2003-06-05 01:31:39 +02:00
|
|
|
ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D, iface);
|
2003-05-12 05:09:17 +02:00
|
|
|
TRACE("(%p/%p)->(%p,%p)\n", This, iface, lpEnumDevicesCallback, lpUserArg);
|
|
|
|
|
|
|
|
/* Call functions defined in d3ddevices.c */
|
|
|
|
if (d3ddevice_enumerate(lpEnumDevicesCallback, lpUserArg, 1) != D3DENUMRET_OK)
|
|
|
|
return D3D_OK;
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI
|
2005-02-14 12:09:46 +01:00
|
|
|
GL_IDirect3DImpl_2_EnumDevices(LPDIRECT3D2 iface,
|
|
|
|
LPD3DENUMDEVICESCALLBACK lpEnumDevicesCallback,
|
|
|
|
LPVOID lpUserArg)
|
|
|
|
{
|
|
|
|
ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D2, iface);
|
|
|
|
TRACE("(%p/%p)->(%p,%p)\n", This, iface, lpEnumDevicesCallback, lpUserArg);
|
|
|
|
|
|
|
|
/* Call functions defined in d3ddevices.c */
|
|
|
|
if (d3ddevice_enumerate(lpEnumDevicesCallback, lpUserArg, 2) != D3DENUMRET_OK)
|
|
|
|
return D3D_OK;
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI
|
|
|
|
GL_IDirect3DImpl_3_EnumDevices(LPDIRECT3D3 iface,
|
2003-05-12 05:09:17 +02:00
|
|
|
LPD3DENUMDEVICESCALLBACK lpEnumDevicesCallback,
|
|
|
|
LPVOID lpUserArg)
|
2002-11-21 22:04:16 +01:00
|
|
|
{
|
2003-06-05 01:31:39 +02:00
|
|
|
ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D3, iface);
|
2002-11-21 22:04:16 +01:00
|
|
|
TRACE("(%p/%p)->(%p,%p)\n", This, iface, lpEnumDevicesCallback, lpUserArg);
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
/* Call functions defined in d3ddevices.c */
|
2003-05-12 05:09:17 +02:00
|
|
|
if (d3ddevice_enumerate(lpEnumDevicesCallback, lpUserArg, 3) != D3DENUMRET_OK)
|
2002-11-21 22:04:16 +01:00
|
|
|
return D3D_OK;
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2000-05-13 03:28:49 +02:00
|
|
|
return D3D_OK;
|
2000-04-09 16:30:50 +02:00
|
|
|
}
|
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
HRESULT WINAPI
|
|
|
|
GL_IDirect3DImpl_3_2T_1T_CreateLight(LPDIRECT3D3 iface,
|
|
|
|
LPDIRECT3DLIGHT* lplpDirect3DLight,
|
|
|
|
IUnknown* pUnkOuter)
|
2000-04-09 16:30:50 +02:00
|
|
|
{
|
2003-06-05 01:31:39 +02:00
|
|
|
ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D3, iface);
|
2004-03-24 00:02:37 +01:00
|
|
|
IDirect3DGLImpl *glThis = (IDirect3DGLImpl *) This->d3d_private;
|
2002-11-21 22:04:16 +01:00
|
|
|
int fl;
|
|
|
|
IDirect3DLightImpl *d3dlimpl;
|
|
|
|
HRESULT ret_value;
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p,%p)\n", This, iface, lplpDirect3DLight, pUnkOuter);
|
|
|
|
for (fl = 0; fl < MAX_LIGHTS; fl++) {
|
|
|
|
if ((glThis->free_lights & (0x01 << fl)) != 0) {
|
|
|
|
glThis->free_lights &= ~(0x01 << fl);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (fl == MAX_LIGHTS) {
|
|
|
|
return DDERR_INVALIDPARAMS; /* No way to say 'max lights reached' ... */
|
|
|
|
}
|
|
|
|
ret_value = d3dlight_create(&d3dlimpl, This, GL_LIGHT0 + fl);
|
|
|
|
*lplpDirect3DLight = ICOM_INTERFACE(d3dlimpl, IDirect3DLight);
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
return ret_value;
|
2000-04-09 16:30:50 +02:00
|
|
|
}
|
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
HRESULT WINAPI
|
|
|
|
GL_IDirect3DImpl_3_2T_1T_CreateMaterial(LPDIRECT3D3 iface,
|
|
|
|
LPDIRECT3DMATERIAL3* lplpDirect3DMaterial3,
|
|
|
|
IUnknown* pUnkOuter)
|
2000-04-09 16:30:50 +02:00
|
|
|
{
|
2002-11-21 22:04:16 +01:00
|
|
|
IDirect3DMaterialImpl *D3Dmat_impl;
|
|
|
|
HRESULT ret_value;
|
2003-06-05 01:31:39 +02:00
|
|
|
ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D3, iface);
|
2002-11-21 22:04:16 +01:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p,%p)\n", This, iface, lplpDirect3DMaterial3, pUnkOuter);
|
|
|
|
ret_value = d3dmaterial_create(&D3Dmat_impl, This);
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
*lplpDirect3DMaterial3 = ICOM_INTERFACE(D3Dmat_impl, IDirect3DMaterial3);
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
return ret_value;
|
|
|
|
}
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
HRESULT WINAPI
|
|
|
|
GL_IDirect3DImpl_3_2T_1T_CreateViewport(LPDIRECT3D3 iface,
|
|
|
|
LPDIRECT3DVIEWPORT3* lplpD3DViewport3,
|
|
|
|
IUnknown* pUnkOuter)
|
|
|
|
{
|
|
|
|
IDirect3DViewportImpl *D3Dvp_impl;
|
|
|
|
HRESULT ret_value;
|
2003-06-05 01:31:39 +02:00
|
|
|
ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D3, iface);
|
2002-11-21 22:04:16 +01:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p,%p)\n", This, iface, lplpD3DViewport3, pUnkOuter);
|
|
|
|
ret_value = d3dviewport_create(&D3Dvp_impl, This);
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
*lplpD3DViewport3 = ICOM_INTERFACE(D3Dvp_impl, IDirect3DViewport3);
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
return ret_value;
|
|
|
|
}
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
static HRESULT
|
2003-06-05 01:31:39 +02:00
|
|
|
create_device_helper(IDirectDrawImpl *This,
|
2002-11-21 22:04:16 +01:00
|
|
|
REFCLSID iid,
|
|
|
|
IDirectDrawSurfaceImpl *lpDDS,
|
|
|
|
void **obj,
|
2003-04-10 02:19:24 +02:00
|
|
|
int version) {
|
2002-11-21 22:04:16 +01:00
|
|
|
IDirect3DDeviceImpl *lpd3ddev;
|
|
|
|
HRESULT ret_value;
|
|
|
|
|
2005-02-14 12:09:46 +01:00
|
|
|
ret_value = d3ddevice_create(&lpd3ddev, This, lpDDS, version);
|
2002-11-21 22:04:16 +01:00
|
|
|
if (FAILED(ret_value)) return ret_value;
|
|
|
|
|
|
|
|
if ((iid == NULL) ||
|
2002-12-05 20:07:59 +01:00
|
|
|
(IsEqualGUID(&IID_D3DDEVICE_OpenGL, iid)) ||
|
2002-11-30 20:21:42 +01:00
|
|
|
(IsEqualGUID(&IID_IDirect3DHALDevice, iid)) ||
|
2003-01-02 21:13:47 +01:00
|
|
|
(IsEqualGUID(&IID_IDirect3DTnLHalDevice, iid)) ||
|
2004-12-20 18:08:41 +01:00
|
|
|
(IsEqualGUID(&IID_IDirect3DRGBDevice, iid)) ||
|
2003-01-02 21:13:47 +01:00
|
|
|
(IsEqualGUID(&IID_IDirect3DRefDevice, iid))) {
|
2003-04-10 02:19:24 +02:00
|
|
|
switch (version) {
|
2002-11-21 22:04:16 +01:00
|
|
|
case 1:
|
|
|
|
*obj = ICOM_INTERFACE(lpd3ddev, IDirect3DDevice);
|
2002-12-05 20:07:59 +01:00
|
|
|
TRACE(" returning OpenGL D3DDevice %p.\n", *obj);
|
2002-11-21 22:04:16 +01:00
|
|
|
return D3D_OK;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
*obj = ICOM_INTERFACE(lpd3ddev, IDirect3DDevice2);
|
2002-12-05 20:07:59 +01:00
|
|
|
TRACE(" returning OpenGL D3DDevice2 %p.\n", *obj);
|
2002-11-21 22:04:16 +01:00
|
|
|
return D3D_OK;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
*obj = ICOM_INTERFACE(lpd3ddev, IDirect3DDevice3);
|
2002-12-05 20:07:59 +01:00
|
|
|
TRACE(" returning OpenGL D3DDevice3 %p.\n", *obj);
|
2002-11-21 22:04:16 +01:00
|
|
|
return D3D_OK;
|
|
|
|
|
|
|
|
case 7:
|
|
|
|
*obj = ICOM_INTERFACE(lpd3ddev, IDirect3DDevice7);
|
2002-12-05 20:07:59 +01:00
|
|
|
TRACE(" returning OpenGL D3DDevice7 %p.\n", *obj);
|
2002-11-21 22:04:16 +01:00
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
}
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
*obj = NULL;
|
|
|
|
ERR(" Interface unknown when creating D3DDevice (%s)\n", debugstr_guid(iid));
|
|
|
|
IDirect3DDevice7_Release(ICOM_INTERFACE(lpd3ddev, IDirect3DDevice7));
|
|
|
|
return DDERR_INVALIDPARAMS;
|
2000-04-09 16:30:50 +02:00
|
|
|
}
|
2002-11-21 22:04:16 +01:00
|
|
|
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
HRESULT WINAPI
|
|
|
|
GL_IDirect3DImpl_2_CreateDevice(LPDIRECT3D2 iface,
|
|
|
|
REFCLSID rclsid,
|
|
|
|
LPDIRECTDRAWSURFACE lpDDS,
|
|
|
|
LPDIRECT3DDEVICE2* lplpD3DDevice2)
|
|
|
|
{
|
2003-06-05 01:31:39 +02:00
|
|
|
ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D2, iface);
|
2002-11-21 22:04:16 +01:00
|
|
|
IDirectDrawSurfaceImpl *ddsurfaceimpl = ICOM_OBJECT(IDirectDrawSurfaceImpl, IDirectDrawSurface3, lpDDS);
|
|
|
|
TRACE("(%p/%p)->(%s,%p,%p)\n", This, iface, debugstr_guid(rclsid), lpDDS, lplpD3DDevice2);
|
|
|
|
return create_device_helper(This, rclsid, ddsurfaceimpl, (void **) lplpD3DDevice2, 2);
|
2000-04-09 16:30:50 +02:00
|
|
|
}
|
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
HRESULT WINAPI
|
|
|
|
GL_IDirect3DImpl_3_CreateDevice(LPDIRECT3D3 iface,
|
|
|
|
REFCLSID rclsid,
|
|
|
|
LPDIRECTDRAWSURFACE4 lpDDS,
|
|
|
|
LPDIRECT3DDEVICE3* lplpD3DDevice3,
|
|
|
|
LPUNKNOWN lpUnk)
|
2000-04-09 16:30:50 +02:00
|
|
|
{
|
2003-06-05 01:31:39 +02:00
|
|
|
ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D3, iface);
|
2002-11-21 22:04:16 +01:00
|
|
|
IDirectDrawSurfaceImpl *ddsurfaceimpl = ICOM_OBJECT(IDirectDrawSurfaceImpl, IDirectDrawSurface7, lpDDS);
|
|
|
|
TRACE("(%p/%p)->(%s,%p,%p)\n", This, iface, debugstr_guid(rclsid), lpDDS, lplpD3DDevice3);
|
|
|
|
return create_device_helper(This, rclsid, ddsurfaceimpl, (void **) lplpD3DDevice3, 3);
|
2000-04-09 16:30:50 +02:00
|
|
|
}
|
|
|
|
|
2002-11-24 23:33:41 +01:00
|
|
|
HRESULT WINAPI
|
2002-12-05 20:07:59 +01:00
|
|
|
GL_IDirect3DImpl_3_2T_1T_FindDevice(LPDIRECT3D3 iface,
|
|
|
|
LPD3DFINDDEVICESEARCH lpD3DDFS,
|
|
|
|
LPD3DFINDDEVICERESULT lpD3DFDR)
|
2002-11-24 23:33:41 +01:00
|
|
|
{
|
2003-06-05 01:31:39 +02:00
|
|
|
ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D3, iface);
|
2002-11-24 23:33:41 +01:00
|
|
|
TRACE("(%p/%p)->(%p,%p)\n", This, iface, lpD3DDFS, lpD3DFDR);
|
2002-12-05 20:07:59 +01:00
|
|
|
return d3ddevice_find(This, lpD3DDFS, lpD3DFDR);
|
2002-11-24 23:33:41 +01:00
|
|
|
}
|
|
|
|
|
2002-11-30 03:20:11 +01:00
|
|
|
HRESULT WINAPI
|
|
|
|
GL_IDirect3DImpl_7_3T_EnumZBufferFormats(LPDIRECT3D7 iface,
|
|
|
|
REFCLSID riidDevice,
|
|
|
|
LPD3DENUMPIXELFORMATSCALLBACK lpEnumCallback,
|
|
|
|
LPVOID lpContext)
|
|
|
|
{
|
2003-06-05 01:31:39 +02:00
|
|
|
ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D7, iface);
|
2002-11-30 03:20:11 +01:00
|
|
|
DDPIXELFORMAT pformat;
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s,%p,%p)\n", This, iface, debugstr_guid(riidDevice), lpEnumCallback, lpContext);
|
|
|
|
|
|
|
|
memset(&pformat, 0, sizeof(pformat));
|
|
|
|
pformat.dwSize = sizeof(DDPIXELFORMAT);
|
|
|
|
pformat.dwFourCC = 0;
|
|
|
|
TRACE("Enumerating dummy ZBuffer format (16 bits)\n");
|
|
|
|
pformat.dwFlags = DDPF_ZBUFFER;
|
|
|
|
pformat.u1.dwZBufferBitDepth = 16;
|
|
|
|
pformat.u3.dwZBitMask = 0x0000FFFF;
|
|
|
|
pformat.u5.dwRGBZBitMask = 0x0000FFFF;
|
|
|
|
|
|
|
|
/* Whatever the return value, stop here.. */
|
|
|
|
lpEnumCallback(&pformat, lpContext);
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
2002-11-30 20:21:42 +01:00
|
|
|
HRESULT WINAPI
|
|
|
|
GL_IDirect3DImpl_7_EnumDevices(LPDIRECT3D7 iface,
|
|
|
|
LPD3DENUMDEVICESCALLBACK7 lpEnumDevicesCallback,
|
|
|
|
LPVOID lpUserArg)
|
|
|
|
{
|
2003-06-05 01:31:39 +02:00
|
|
|
ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D7, iface);
|
2002-11-30 20:21:42 +01:00
|
|
|
TRACE("(%p/%p)->(%p,%p)\n", This, iface, lpEnumDevicesCallback, lpUserArg);
|
|
|
|
|
|
|
|
if (d3ddevice_enumerate7(lpEnumDevicesCallback, lpUserArg) != D3DENUMRET_OK)
|
|
|
|
return D3D_OK;
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI
|
|
|
|
GL_IDirect3DImpl_7_CreateDevice(LPDIRECT3D7 iface,
|
|
|
|
REFCLSID rclsid,
|
|
|
|
LPDIRECTDRAWSURFACE7 lpDDS,
|
|
|
|
LPDIRECT3DDEVICE7* lplpD3DDevice)
|
|
|
|
{
|
2003-06-05 01:31:39 +02:00
|
|
|
ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D7, iface);
|
2002-11-30 20:21:42 +01:00
|
|
|
IDirectDrawSurfaceImpl *ddsurfaceimpl = ICOM_OBJECT(IDirectDrawSurfaceImpl, IDirectDrawSurface7, lpDDS);
|
|
|
|
TRACE("(%p/%p)->(%s,%p,%p)\n", This, iface, debugstr_guid(rclsid), lpDDS, lplpD3DDevice);
|
|
|
|
return create_device_helper(This, rclsid, ddsurfaceimpl, (void **) lplpD3DDevice, 7);
|
|
|
|
}
|
|
|
|
|
2002-11-30 20:27:19 +01:00
|
|
|
HRESULT WINAPI
|
|
|
|
GL_IDirect3DImpl_7_3T_CreateVertexBuffer(LPDIRECT3D7 iface,
|
|
|
|
LPD3DVERTEXBUFFERDESC lpD3DVertBufDesc,
|
|
|
|
LPDIRECT3DVERTEXBUFFER7* lplpD3DVertBuf,
|
|
|
|
DWORD dwFlags)
|
|
|
|
{
|
2003-06-05 01:31:39 +02:00
|
|
|
ICOM_THIS_FROM(IDirectDrawImpl, IDirect3D7, iface);
|
2002-11-30 20:27:19 +01:00
|
|
|
IDirect3DVertexBufferImpl *vbimpl;
|
|
|
|
HRESULT res;
|
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p,%p,%08lx)\n", This, iface, lpD3DVertBufDesc, lplpD3DVertBuf, dwFlags);
|
|
|
|
|
|
|
|
res = d3dvertexbuffer_create(&vbimpl, This, lpD3DVertBufDesc, dwFlags);
|
|
|
|
|
|
|
|
*lplpD3DVertBuf = ICOM_INTERFACE(vbimpl, IDirect3DVertexBuffer7);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2003-06-05 01:31:39 +02:00
|
|
|
static void light_released(IDirectDrawImpl *This, GLenum light_num)
|
2000-04-09 16:30:50 +02:00
|
|
|
{
|
2004-03-24 00:02:37 +01:00
|
|
|
IDirect3DGLImpl *glThis = (IDirect3DGLImpl *) This->d3d_private;
|
2002-11-21 22:04:16 +01:00
|
|
|
glThis->free_lights |= (light_num - GL_LIGHT0);
|
2000-04-09 16:30:50 +02:00
|
|
|
}
|
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
#if !defined(__STRICT_ANSI__) && defined(__GNUC__)
|
|
|
|
# define XCAST(fun) (typeof(VTABLE_IDirect3D7.fun))
|
|
|
|
#else
|
|
|
|
# define XCAST(fun) (void*)
|
|
|
|
#endif
|
|
|
|
|
2005-05-27 22:17:35 +02:00
|
|
|
static const IDirect3D7Vtbl VTABLE_IDirect3D7 =
|
2000-04-09 16:30:50 +02:00
|
|
|
{
|
2003-06-05 01:31:39 +02:00
|
|
|
XCAST(QueryInterface) Thunk_IDirect3DImpl_7_QueryInterface,
|
|
|
|
XCAST(AddRef) Thunk_IDirect3DImpl_7_AddRef,
|
|
|
|
XCAST(Release) Thunk_IDirect3DImpl_7_Release,
|
2002-11-30 20:21:42 +01:00
|
|
|
XCAST(EnumDevices) GL_IDirect3DImpl_7_EnumDevices,
|
|
|
|
XCAST(CreateDevice) GL_IDirect3DImpl_7_CreateDevice,
|
2002-11-30 20:27:19 +01:00
|
|
|
XCAST(CreateVertexBuffer) GL_IDirect3DImpl_7_3T_CreateVertexBuffer,
|
2002-11-30 03:20:11 +01:00
|
|
|
XCAST(EnumZBufferFormats) GL_IDirect3DImpl_7_3T_EnumZBufferFormats,
|
2002-11-21 22:04:16 +01:00
|
|
|
XCAST(EvictManagedTextures) Main_IDirect3DImpl_7_3T_EvictManagedTextures,
|
2000-04-09 16:30:50 +02:00
|
|
|
};
|
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
#if !defined(__STRICT_ANSI__) && defined(__GNUC__)
|
|
|
|
#undef XCAST
|
|
|
|
#endif
|
2000-05-13 03:28:49 +02:00
|
|
|
|
|
|
|
|
2000-07-16 16:40:35 +02:00
|
|
|
#if !defined(__STRICT_ANSI__) && defined(__GNUC__)
|
2002-11-21 22:04:16 +01:00
|
|
|
# define XCAST(fun) (typeof(VTABLE_IDirect3D3.fun))
|
2000-07-16 16:40:35 +02:00
|
|
|
#else
|
2002-11-21 22:04:16 +01:00
|
|
|
# define XCAST(fun) (void*)
|
2000-07-16 16:40:35 +02:00
|
|
|
#endif
|
|
|
|
|
2005-05-27 22:17:35 +02:00
|
|
|
static const IDirect3D3Vtbl VTABLE_IDirect3D3 =
|
2000-05-13 03:28:49 +02:00
|
|
|
{
|
2002-11-21 22:04:16 +01:00
|
|
|
XCAST(QueryInterface) Thunk_IDirect3DImpl_3_QueryInterface,
|
|
|
|
XCAST(AddRef) Thunk_IDirect3DImpl_3_AddRef,
|
|
|
|
XCAST(Release) Thunk_IDirect3DImpl_3_Release,
|
2005-02-14 12:09:46 +01:00
|
|
|
XCAST(EnumDevices) GL_IDirect3DImpl_3_EnumDevices,
|
2002-11-24 23:14:40 +01:00
|
|
|
XCAST(CreateLight) GL_IDirect3DImpl_3_2T_1T_CreateLight,
|
2002-11-21 22:04:16 +01:00
|
|
|
XCAST(CreateMaterial) GL_IDirect3DImpl_3_2T_1T_CreateMaterial,
|
|
|
|
XCAST(CreateViewport) GL_IDirect3DImpl_3_2T_1T_CreateViewport,
|
2002-12-05 20:07:59 +01:00
|
|
|
XCAST(FindDevice) GL_IDirect3DImpl_3_2T_1T_FindDevice,
|
2002-11-21 22:04:16 +01:00
|
|
|
XCAST(CreateDevice) GL_IDirect3DImpl_3_CreateDevice,
|
|
|
|
XCAST(CreateVertexBuffer) Thunk_IDirect3DImpl_3_CreateVertexBuffer,
|
|
|
|
XCAST(EnumZBufferFormats) Thunk_IDirect3DImpl_3_EnumZBufferFormats,
|
|
|
|
XCAST(EvictManagedTextures) Thunk_IDirect3DImpl_3_EvictManagedTextures,
|
2000-05-13 03:28:49 +02:00
|
|
|
};
|
|
|
|
|
2000-07-16 16:40:35 +02:00
|
|
|
#if !defined(__STRICT_ANSI__) && defined(__GNUC__)
|
|
|
|
#undef XCAST
|
|
|
|
#endif
|
2000-05-13 03:28:49 +02:00
|
|
|
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
#if !defined(__STRICT_ANSI__) && defined(__GNUC__)
|
|
|
|
# define XCAST(fun) (typeof(VTABLE_IDirect3D2.fun))
|
|
|
|
#else
|
|
|
|
# define XCAST(fun) (void*)
|
|
|
|
#endif
|
2000-04-09 16:30:50 +02:00
|
|
|
|
2005-05-27 22:17:35 +02:00
|
|
|
static const IDirect3D2Vtbl VTABLE_IDirect3D2 =
|
2002-11-21 22:04:16 +01:00
|
|
|
{
|
|
|
|
XCAST(QueryInterface) Thunk_IDirect3DImpl_2_QueryInterface,
|
|
|
|
XCAST(AddRef) Thunk_IDirect3DImpl_2_AddRef,
|
|
|
|
XCAST(Release) Thunk_IDirect3DImpl_2_Release,
|
2005-02-14 12:09:46 +01:00
|
|
|
XCAST(EnumDevices) GL_IDirect3DImpl_2_EnumDevices,
|
2002-11-21 22:04:16 +01:00
|
|
|
XCAST(CreateLight) Thunk_IDirect3DImpl_2_CreateLight,
|
|
|
|
XCAST(CreateMaterial) Thunk_IDirect3DImpl_2_CreateMaterial,
|
|
|
|
XCAST(CreateViewport) Thunk_IDirect3DImpl_2_CreateViewport,
|
2002-12-05 20:07:59 +01:00
|
|
|
XCAST(FindDevice) Thunk_IDirect3DImpl_2_FindDevice,
|
2002-11-21 22:04:16 +01:00
|
|
|
XCAST(CreateDevice) GL_IDirect3DImpl_2_CreateDevice,
|
|
|
|
};
|
2000-07-16 16:40:35 +02:00
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
#if !defined(__STRICT_ANSI__) && defined(__GNUC__)
|
|
|
|
#undef XCAST
|
|
|
|
#endif
|
2000-05-13 03:28:49 +02:00
|
|
|
|
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
#if !defined(__STRICT_ANSI__) && defined(__GNUC__)
|
|
|
|
# define XCAST(fun) (typeof(VTABLE_IDirect3D.fun))
|
|
|
|
#else
|
|
|
|
# define XCAST(fun) (void*)
|
|
|
|
#endif
|
2000-05-13 03:28:49 +02:00
|
|
|
|
2005-05-27 22:17:35 +02:00
|
|
|
static const IDirect3DVtbl VTABLE_IDirect3D =
|
2002-11-21 22:04:16 +01:00
|
|
|
{
|
|
|
|
XCAST(QueryInterface) Thunk_IDirect3DImpl_1_QueryInterface,
|
|
|
|
XCAST(AddRef) Thunk_IDirect3DImpl_1_AddRef,
|
|
|
|
XCAST(Release) Thunk_IDirect3DImpl_1_Release,
|
|
|
|
XCAST(Initialize) Main_IDirect3DImpl_1_Initialize,
|
2003-05-12 05:09:17 +02:00
|
|
|
XCAST(EnumDevices) GL_IDirect3DImpl_1_EnumDevices,
|
2002-11-21 22:04:16 +01:00
|
|
|
XCAST(CreateLight) Thunk_IDirect3DImpl_1_CreateLight,
|
|
|
|
XCAST(CreateMaterial) Thunk_IDirect3DImpl_1_CreateMaterial,
|
|
|
|
XCAST(CreateViewport) Thunk_IDirect3DImpl_1_CreateViewport,
|
2002-12-05 20:07:59 +01:00
|
|
|
XCAST(FindDevice) Thunk_IDirect3DImpl_1_FindDevice,
|
2002-11-21 22:04:16 +01:00
|
|
|
};
|
2000-05-13 03:28:49 +02:00
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
#if !defined(__STRICT_ANSI__) && defined(__GNUC__)
|
|
|
|
#undef XCAST
|
|
|
|
#endif
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2003-06-05 01:31:39 +02:00
|
|
|
static HRESULT d3d_add_device(IDirectDrawImpl *This, IDirect3DDeviceImpl *device)
|
2003-01-02 20:39:57 +01:00
|
|
|
{
|
2003-01-02 20:58:21 +01:00
|
|
|
if (This->current_device == NULL) {
|
2003-01-02 20:39:57 +01:00
|
|
|
/* Create delayed textures now that we have an OpenGL context...
|
|
|
|
For that, go through all surface attached to our DDraw object and create
|
|
|
|
OpenGL textures for all textures.. */
|
2003-06-05 01:31:39 +02:00
|
|
|
IDirectDrawSurfaceImpl *surf = This->surfaces;
|
2003-01-02 20:39:57 +01:00
|
|
|
|
|
|
|
while (surf != NULL) {
|
|
|
|
if (surf->surface_desc.ddsCaps.dwCaps & DDSCAPS_TEXTURE) {
|
|
|
|
/* Found a texture.. Now create the OpenGL part */
|
|
|
|
d3dtexture_create(This, surf, FALSE, surf->mip_main);
|
|
|
|
}
|
|
|
|
surf = surf->next_ddraw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* For the moment, only one device 'supported'... */
|
2003-01-02 20:58:21 +01:00
|
|
|
This->current_device = device;
|
2003-01-02 20:39:57 +01:00
|
|
|
|
|
|
|
return DD_OK;
|
|
|
|
}
|
|
|
|
|
2003-06-05 01:31:39 +02:00
|
|
|
static HRESULT d3d_remove_device(IDirectDrawImpl *This, IDirect3DDeviceImpl *device)
|
2003-01-02 20:39:57 +01:00
|
|
|
{
|
2003-01-02 20:58:21 +01:00
|
|
|
This->current_device = NULL;
|
2003-01-02 20:39:57 +01:00
|
|
|
return DD_OK;
|
|
|
|
}
|
|
|
|
|
2003-06-05 01:31:39 +02:00
|
|
|
HRESULT direct3d_create(IDirectDrawImpl *This)
|
2002-11-21 22:04:16 +01:00
|
|
|
{
|
|
|
|
IDirect3DGLImpl *globject;
|
|
|
|
|
2003-06-05 01:31:39 +02:00
|
|
|
globject = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3DGLImpl));
|
|
|
|
if (globject == NULL) return DDERR_OUTOFMEMORY;
|
2002-11-21 22:04:16 +01:00
|
|
|
|
2003-06-05 01:31:39 +02:00
|
|
|
This->d3d_create_texture = d3dtexture_create;
|
|
|
|
This->d3d_added_device = d3d_add_device;
|
|
|
|
This->d3d_removed_device = d3d_remove_device;
|
2003-01-02 20:39:57 +01:00
|
|
|
|
2003-06-05 01:31:39 +02:00
|
|
|
ICOM_INIT_INTERFACE(This, IDirect3D, VTABLE_IDirect3D);
|
|
|
|
ICOM_INIT_INTERFACE(This, IDirect3D2, VTABLE_IDirect3D2);
|
|
|
|
ICOM_INIT_INTERFACE(This, IDirect3D3, VTABLE_IDirect3D3);
|
|
|
|
ICOM_INIT_INTERFACE(This, IDirect3D7, VTABLE_IDirect3D7);
|
2002-11-21 22:04:16 +01:00
|
|
|
|
|
|
|
globject->free_lights = (0x01 << MAX_LIGHTS) - 1; /* There are, in total, 8 lights in OpenGL */
|
|
|
|
globject->light_released = light_released;
|
|
|
|
|
2003-06-05 01:31:39 +02:00
|
|
|
This->d3d_private = globject;
|
2002-11-21 22:04:16 +01:00
|
|
|
|
2003-11-19 00:20:25 +01:00
|
|
|
TRACE(" creating OpenGL private storage at %p.\n", globject);
|
2002-11-21 22:04:16 +01:00
|
|
|
|
|
|
|
return D3D_OK;
|
2000-05-13 03:28:49 +02:00
|
|
|
}
|