1999-01-03 17:00:19 +00:00
|
|
|
/* Direct3D Material
|
2002-11-21 21:04:16 +00:00
|
|
|
* Copyright (c) 2002 Lionel ULMER
|
2008-10-18 17:19:45 +00:00
|
|
|
* Copyright (c) 2006 Stefan DÖSINGER
|
2002-03-09 23:29:33 +00:00
|
|
|
*
|
2002-11-21 21:04:16 +00:00
|
|
|
* This file contains the implementation of Direct3DMaterial.
|
2002-03-09 23:29:33 +00:00
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-03-09 23:29:33 +00:00
|
|
|
*/
|
1999-01-03 17:00:19 +00:00
|
|
|
|
2003-09-05 23:08:26 +00:00
|
|
|
#include "config.h"
|
2006-06-09 17:36:12 +00:00
|
|
|
#include "wine/port.h"
|
2003-09-05 23:08:26 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
#include <assert.h>
|
2003-09-05 23:08:26 +00:00
|
|
|
#include <stdarg.h>
|
2006-06-09 17:36:12 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2003-09-05 23:08:26 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
#define COBJMACROS
|
2003-01-07 20:36:20 +00:00
|
|
|
#define NONAMELESSUNION
|
2005-05-27 20:17:35 +00:00
|
|
|
|
1999-03-14 16:35:05 +00:00
|
|
|
#include "windef.h"
|
2003-09-05 23:08:26 +00:00
|
|
|
#include "winbase.h"
|
1999-01-03 17:00:19 +00:00
|
|
|
#include "winerror.h"
|
2003-09-05 23:08:26 +00:00
|
|
|
#include "wingdi.h"
|
2006-06-09 17:36:12 +00:00
|
|
|
#include "wine/exception.h"
|
|
|
|
|
1999-01-03 17:00:19 +00:00
|
|
|
#include "ddraw.h"
|
|
|
|
#include "d3d.h"
|
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
#include "ddraw_private.h"
|
|
|
|
#include "wine/debug.h"
|
1999-01-03 17:00:19 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d7);
|
|
|
|
WINE_DECLARE_DEBUG_CHANNEL(ddraw_thunk);
|
1999-04-19 14:56:29 +00:00
|
|
|
|
2007-04-21 21:16:34 +00:00
|
|
|
static void dump_material(const D3DMATERIAL *mat)
|
2002-11-21 21:04:16 +00:00
|
|
|
{
|
2007-12-04 22:27:33 +00:00
|
|
|
TRACE(" dwSize : %d\n", mat->dwSize);
|
1999-01-03 17:00:19 +00:00
|
|
|
}
|
|
|
|
|
2009-01-22 09:33:36 +00:00
|
|
|
static inline IDirect3DMaterialImpl *material_from_material1(IDirect3DMaterial *iface)
|
|
|
|
{
|
|
|
|
return (IDirect3DMaterialImpl *)((char*)iface - FIELD_OFFSET(IDirect3DMaterialImpl, IDirect3DMaterial_vtbl));
|
|
|
|
}
|
|
|
|
|
2009-01-22 09:33:37 +00:00
|
|
|
static inline IDirect3DMaterialImpl *material_from_material2(IDirect3DMaterial2 *iface)
|
|
|
|
{
|
|
|
|
return (IDirect3DMaterialImpl *)((char*)iface - FIELD_OFFSET(IDirect3DMaterialImpl, IDirect3DMaterial2_vtbl));
|
|
|
|
}
|
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IUnknown Methods.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DMaterial3::QueryInterface
|
|
|
|
*
|
|
|
|
* QueryInterface for IDirect3DMaterial. Can query all IDirect3DMaterial
|
|
|
|
* versions.
|
|
|
|
*
|
|
|
|
* Params:
|
|
|
|
* riid: Interface id queried for
|
|
|
|
* obj: Address to pass the interface pointer back
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* S_OK on success
|
|
|
|
* E_NOINTERFACE if the requested interface wasn't found
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
static HRESULT WINAPI
|
|
|
|
IDirect3DMaterialImpl_QueryInterface(IDirect3DMaterial3 *iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID* obp)
|
1999-01-03 17:00:19 +00:00
|
|
|
{
|
2009-01-22 09:33:36 +00:00
|
|
|
IDirect3DMaterialImpl *This = (IDirect3DMaterialImpl *)iface;
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE("(%p)->(%s,%p)\n", This, debugstr_guid(riid), obp);
|
2002-11-21 21:04:16 +00:00
|
|
|
|
|
|
|
*obp = NULL;
|
|
|
|
|
|
|
|
if ( IsEqualGUID( &IID_IUnknown, riid ) ) {
|
2009-01-21 08:56:13 +00:00
|
|
|
IUnknown_AddRef(iface);
|
2002-11-21 21:04:16 +00:00
|
|
|
*obp = iface;
|
|
|
|
TRACE(" Creating IUnknown interface at %p.\n", *obp);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
if ( IsEqualGUID( &IID_IDirect3DMaterial, riid ) ) {
|
2009-01-21 08:56:13 +00:00
|
|
|
IDirect3DMaterial_AddRef((IDirect3DMaterial *)&This->IDirect3DMaterial_vtbl);
|
|
|
|
*obp = &This->IDirect3DMaterial_vtbl;
|
2002-11-21 21:04:16 +00:00
|
|
|
TRACE(" Creating IDirect3DMaterial interface %p\n", *obp);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
if ( IsEqualGUID( &IID_IDirect3DMaterial2, riid ) ) {
|
2009-01-21 08:56:13 +00:00
|
|
|
IDirect3DMaterial_AddRef((IDirect3DMaterial2 *)&This->IDirect3DMaterial2_vtbl);
|
|
|
|
*obp = &This->IDirect3DMaterial2_vtbl;
|
2002-11-21 21:04:16 +00:00
|
|
|
TRACE(" Creating IDirect3DMaterial2 interface %p\n", *obp);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
if ( IsEqualGUID( &IID_IDirect3DMaterial3, riid ) ) {
|
2009-01-22 11:24:01 +00:00
|
|
|
IDirect3DMaterial3_AddRef((IDirect3DMaterial3 *)This);
|
|
|
|
*obp = This;
|
2002-11-21 21:04:16 +00:00
|
|
|
TRACE(" Creating IDirect3DMaterial3 interface %p\n", *obp);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
FIXME("(%p): interface for IID %s NOT found!\n", This, debugstr_guid(riid));
|
2006-06-09 17:36:12 +00:00
|
|
|
return E_NOINTERFACE;
|
2002-11-21 21:04:16 +00:00
|
|
|
}
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DMaterial3::AddRef
|
|
|
|
*
|
|
|
|
* Increases the refcount.
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* The new refcount
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
static ULONG WINAPI
|
|
|
|
IDirect3DMaterialImpl_AddRef(IDirect3DMaterial3 *iface)
|
2002-11-21 21:04:16 +00:00
|
|
|
{
|
2009-01-22 09:33:36 +00:00
|
|
|
IDirect3DMaterialImpl *This = (IDirect3DMaterialImpl *)iface;
|
2005-01-09 17:29:21 +00:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2006-10-10 17:23:27 +00:00
|
|
|
TRACE("(%p)->() incrementing from %u.\n", This, ref - 1);
|
2005-01-09 17:29:21 +00:00
|
|
|
|
|
|
|
return ref;
|
1999-01-03 17:00:19 +00:00
|
|
|
}
|
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DMaterial3::Release
|
|
|
|
*
|
|
|
|
* Reduces the refcount by one. If the refcount falls to 0, the object
|
|
|
|
* is destroyed
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* The new refcount
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
static ULONG WINAPI
|
|
|
|
IDirect3DMaterialImpl_Release(IDirect3DMaterial3 *iface)
|
1999-01-03 17:00:19 +00:00
|
|
|
{
|
2009-01-22 09:33:36 +00:00
|
|
|
IDirect3DMaterialImpl *This = (IDirect3DMaterialImpl *)iface;
|
2005-01-09 17:29:21 +00:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
2006-10-10 17:23:27 +00:00
|
|
|
TRACE("(%p)->() decrementing from %u.\n", This, ref + 1);
|
2005-01-09 17:29:21 +00:00
|
|
|
|
2006-06-16 21:44:33 +00:00
|
|
|
if (!ref)
|
|
|
|
{
|
|
|
|
if(This->Handle)
|
|
|
|
{
|
2007-05-20 22:05:06 +00:00
|
|
|
EnterCriticalSection(&ddraw_cs);
|
2006-06-16 21:44:33 +00:00
|
|
|
This->ddraw->d3ddevice->Handles[This->Handle - 1].ptr = NULL;
|
|
|
|
This->ddraw->d3ddevice->Handles[This->Handle - 1].type = DDrawHandle_Unknown;
|
2007-05-20 22:05:06 +00:00
|
|
|
LeaveCriticalSection(&ddraw_cs);
|
2006-06-16 21:44:33 +00:00
|
|
|
}
|
|
|
|
|
2002-11-21 21:04:16 +00:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
2006-06-16 21:44:33 +00:00
|
|
|
return 0;
|
2002-11-21 21:04:16 +00:00
|
|
|
}
|
2005-01-09 17:29:21 +00:00
|
|
|
return ref;
|
2002-11-21 21:04:16 +00:00
|
|
|
}
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DMaterial Methods
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DMaterial::Initialize
|
|
|
|
*
|
|
|
|
* A no-op initialization
|
|
|
|
*
|
|
|
|
* Params:
|
|
|
|
* Direct3D: Pointer to a Direct3D interface
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* D3D_OK
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
static HRESULT WINAPI
|
|
|
|
IDirect3DMaterialImpl_Initialize(IDirect3DMaterial *iface,
|
|
|
|
IDirect3D *Direct3D)
|
2002-11-21 21:04:16 +00:00
|
|
|
{
|
2009-01-22 09:33:36 +00:00
|
|
|
IDirect3DMaterialImpl *This = material_from_material1(iface);
|
2006-06-09 17:36:12 +00:00
|
|
|
|
|
|
|
TRACE("(%p)->(%p) no-op...!\n", This, Direct3D);
|
|
|
|
|
|
|
|
return D3D_OK;
|
2002-11-21 21:04:16 +00:00
|
|
|
}
|
1999-01-03 17:00:19 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DMaterial::Reserve
|
|
|
|
*
|
|
|
|
* DirectX 5 sdk: "The IDirect3DMaterial2::Reserve method is not implemented"
|
|
|
|
* Odd. They seem to have mixed their interfaces.
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* DDERR_UNSUPPORTED
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
static HRESULT WINAPI
|
|
|
|
IDirect3DMaterialImpl_Reserve(IDirect3DMaterial *iface)
|
2002-11-21 21:04:16 +00:00
|
|
|
{
|
2009-01-22 09:33:36 +00:00
|
|
|
IDirect3DMaterialImpl *This = material_from_material1(iface);
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE("(%p)->() not implemented\n", This);
|
|
|
|
|
|
|
|
return DDERR_UNSUPPORTED;
|
2002-11-21 21:04:16 +00:00
|
|
|
}
|
1999-01-03 17:00:19 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DMaterial::Unreserve
|
|
|
|
*
|
|
|
|
* Not supported too
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* DDERR_UNSUPPORTED
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
static HRESULT WINAPI
|
|
|
|
IDirect3DMaterialImpl_Unreserve(IDirect3DMaterial *iface)
|
2002-11-21 21:04:16 +00:00
|
|
|
{
|
2009-01-22 09:33:36 +00:00
|
|
|
IDirect3DMaterialImpl *This = material_from_material1(iface);
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE("(%p)->() not implemented.\n", This);
|
|
|
|
|
|
|
|
return DDERR_UNSUPPORTED;
|
2002-11-21 21:04:16 +00:00
|
|
|
}
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DMaterial3::SetMaterial
|
|
|
|
*
|
|
|
|
* Sets the material description
|
|
|
|
*
|
|
|
|
* Params:
|
|
|
|
* Mat: Material to set
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* D3D_OK on success
|
|
|
|
* DDERR_INVALIDPARAMS if Mat is NULL
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
static HRESULT WINAPI
|
|
|
|
IDirect3DMaterialImpl_SetMaterial(IDirect3DMaterial3 *iface,
|
|
|
|
D3DMATERIAL *lpMat)
|
2002-11-21 21:04:16 +00:00
|
|
|
{
|
2009-01-22 09:33:36 +00:00
|
|
|
IDirect3DMaterialImpl *This = (IDirect3DMaterialImpl *)iface;
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE("(%p)->(%p)\n", This, lpMat);
|
|
|
|
if (TRACE_ON(d3d7))
|
2002-11-21 21:04:16 +00:00
|
|
|
dump_material(lpMat);
|
|
|
|
|
|
|
|
/* Stores the material */
|
2007-05-20 22:05:06 +00:00
|
|
|
EnterCriticalSection(&ddraw_cs);
|
2002-11-21 21:04:16 +00:00
|
|
|
memset(&This->mat, 0, sizeof(This->mat));
|
|
|
|
memcpy(&This->mat, lpMat, lpMat->dwSize);
|
2007-05-20 22:05:06 +00:00
|
|
|
LeaveCriticalSection(&ddraw_cs);
|
|
|
|
|
2002-11-21 21:04:16 +00:00
|
|
|
return DD_OK;
|
1999-01-03 17:00:19 +00:00
|
|
|
}
|
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DMaterial3::GetMaterial
|
|
|
|
*
|
|
|
|
* Returns the material assigned to this interface
|
|
|
|
*
|
|
|
|
* Params:
|
|
|
|
* Mat: Pointer to a D3DMATERIAL structure to store the material description
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* D3D_OK on success
|
|
|
|
* DDERR_INVALIDPARAMS if Mat is NULL
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
static HRESULT WINAPI
|
|
|
|
IDirect3DMaterialImpl_GetMaterial(IDirect3DMaterial3 *iface,
|
|
|
|
D3DMATERIAL *lpMat)
|
2002-11-21 21:04:16 +00:00
|
|
|
{
|
2009-01-22 09:33:36 +00:00
|
|
|
IDirect3DMaterialImpl *This = (IDirect3DMaterialImpl *)iface;
|
2002-11-21 21:04:16 +00:00
|
|
|
DWORD dwSize;
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE("(%p)->(%p)\n", This, lpMat);
|
|
|
|
if (TRACE_ON(d3d7)) {
|
2002-11-21 21:04:16 +00:00
|
|
|
TRACE(" Returning material : ");
|
|
|
|
dump_material(&This->mat);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Copies the material structure */
|
2007-05-20 22:05:06 +00:00
|
|
|
EnterCriticalSection(&ddraw_cs);
|
2002-11-21 21:04:16 +00:00
|
|
|
dwSize = lpMat->dwSize;
|
|
|
|
memcpy(lpMat, &This->mat, dwSize);
|
2007-05-20 22:05:06 +00:00
|
|
|
LeaveCriticalSection(&ddraw_cs);
|
2002-11-21 21:04:16 +00:00
|
|
|
|
|
|
|
return DD_OK;
|
|
|
|
}
|
1999-01-03 17:00:19 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DMaterial3::GetHandle
|
|
|
|
*
|
|
|
|
* Returns a handle for the material interface. The handle is simply a
|
|
|
|
* pointer to the material implementation
|
|
|
|
*
|
|
|
|
* Params:
|
|
|
|
* Direct3DDevice3: The device this handle is assigned to
|
|
|
|
* Handle: Address to write the handle to
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* D3D_OK on success
|
|
|
|
* DDERR_INVALIDPARAMS if Handle is NULL
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
static HRESULT WINAPI
|
|
|
|
IDirect3DMaterialImpl_GetHandle(IDirect3DMaterial3 *iface,
|
|
|
|
IDirect3DDevice3 *lpDirect3DDevice3,
|
|
|
|
D3DMATERIALHANDLE *lpHandle)
|
1999-01-03 17:00:19 +00:00
|
|
|
{
|
2009-01-22 09:33:36 +00:00
|
|
|
IDirect3DMaterialImpl *This = (IDirect3DMaterialImpl *)iface;
|
2009-01-22 09:33:37 +00:00
|
|
|
IDirect3DDeviceImpl *device = device_from_device3(lpDirect3DDevice3);
|
2006-06-16 21:44:33 +00:00
|
|
|
TRACE("(%p/%p)->(%p,%p)\n", This, iface, device, lpHandle);
|
|
|
|
|
2007-05-20 22:05:06 +00:00
|
|
|
EnterCriticalSection(&ddraw_cs);
|
2006-06-29 12:20:39 +00:00
|
|
|
This->active_device = device;
|
2006-06-16 21:44:33 +00:00
|
|
|
if(!This->Handle)
|
|
|
|
{
|
|
|
|
This->Handle = IDirect3DDeviceImpl_CreateHandle(device);
|
|
|
|
if(!This->Handle)
|
|
|
|
{
|
|
|
|
ERR("Error creating a handle\n");
|
2007-05-20 22:05:06 +00:00
|
|
|
LeaveCriticalSection(&ddraw_cs);
|
2006-06-16 21:44:33 +00:00
|
|
|
return DDERR_INVALIDPARAMS; /* Unchecked */
|
|
|
|
}
|
|
|
|
device->Handles[This->Handle - 1].ptr = This;
|
|
|
|
device->Handles[This->Handle - 1].type = DDrawHandle_Material;
|
|
|
|
}
|
|
|
|
*lpHandle = This->Handle;
|
2006-10-10 17:23:27 +00:00
|
|
|
TRACE(" returning handle %08x.\n", *lpHandle);
|
2007-05-20 22:05:06 +00:00
|
|
|
LeaveCriticalSection(&ddraw_cs);
|
2006-06-16 21:44:33 +00:00
|
|
|
|
|
|
|
return D3D_OK;
|
1999-01-03 17:00:19 +00:00
|
|
|
}
|
|
|
|
|
2006-06-15 15:14:37 +00:00
|
|
|
static HRESULT WINAPI
|
2002-11-21 21:04:16 +00:00
|
|
|
Thunk_IDirect3DMaterialImpl_2_GetHandle(LPDIRECT3DMATERIAL2 iface,
|
|
|
|
LPDIRECT3DDEVICE2 lpDirect3DDevice2,
|
|
|
|
LPD3DMATERIALHANDLE lpHandle)
|
1999-01-03 17:00:19 +00:00
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE_(ddraw_thunk)("(%p)->(%p,%p) thunking to IDirect3DMaterial3 interface.\n", iface, lpDirect3DDevice2, lpHandle);
|
2009-01-22 09:33:37 +00:00
|
|
|
return IDirect3DMaterial3_GetHandle((IDirect3DMaterial3 *)material_from_material2(iface), lpDirect3DDevice2 ?
|
|
|
|
(IDirect3DDevice3 *)&device_from_device2(lpDirect3DDevice2)->IDirect3DDevice3_vtbl : NULL, lpHandle);
|
1999-01-03 17:00:19 +00:00
|
|
|
}
|
|
|
|
|
2006-06-15 15:14:37 +00:00
|
|
|
static HRESULT WINAPI
|
2002-11-21 21:04:16 +00:00
|
|
|
Thunk_IDirect3DMaterialImpl_1_GetHandle(LPDIRECT3DMATERIAL iface,
|
|
|
|
LPDIRECT3DDEVICE lpDirect3DDevice,
|
|
|
|
LPD3DMATERIALHANDLE lpHandle)
|
1999-01-03 17:00:19 +00:00
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE_(ddraw_thunk)("(%p)->(%p,%p) thunking to IDirect3DMaterial3 interface.\n", iface, lpDirect3DDevice, lpHandle);
|
2009-01-22 09:33:37 +00:00
|
|
|
return IDirect3DMaterial3_GetHandle((IDirect3DMaterial3 *)material_from_material1(iface), lpDirect3DDevice ?
|
|
|
|
(IDirect3DDevice3 *)&device_from_device1(lpDirect3DDevice)->IDirect3DDevice3_vtbl : NULL, lpHandle);
|
2002-11-21 21:04:16 +00:00
|
|
|
}
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2006-06-15 15:14:37 +00:00
|
|
|
static HRESULT WINAPI
|
2002-11-21 21:04:16 +00:00
|
|
|
Thunk_IDirect3DMaterialImpl_2_QueryInterface(LPDIRECT3DMATERIAL2 iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID* obp)
|
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE_(ddraw_thunk)("(%p)->(%s,%p) thunking to IDirect3DMaterial3 interface.\n", iface, debugstr_guid(riid), obp);
|
2009-01-22 09:33:37 +00:00
|
|
|
return IDirect3DMaterial3_QueryInterface((IDirect3DMaterial3 *)material_from_material2(iface), riid, obp);
|
1999-01-03 17:00:19 +00:00
|
|
|
}
|
|
|
|
|
2006-06-15 15:14:37 +00:00
|
|
|
static HRESULT WINAPI
|
2002-11-21 21:04:16 +00:00
|
|
|
Thunk_IDirect3DMaterialImpl_1_QueryInterface(LPDIRECT3DMATERIAL iface,
|
|
|
|
REFIID riid,
|
|
|
|
LPVOID* obp)
|
1999-01-03 17:00:19 +00:00
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE_(ddraw_thunk)("(%p)->(%s,%p) thunking to IDirect3DMaterial3 interface.\n", iface, debugstr_guid(riid), obp);
|
2009-01-22 09:33:37 +00:00
|
|
|
return IDirect3DMaterial3_QueryInterface((IDirect3DMaterial3 *)material_from_material1(iface), riid, obp);
|
1999-01-03 17:00:19 +00:00
|
|
|
}
|
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
static ULONG WINAPI
|
2002-11-21 21:04:16 +00:00
|
|
|
Thunk_IDirect3DMaterialImpl_2_AddRef(LPDIRECT3DMATERIAL2 iface)
|
1999-01-03 17:00:19 +00:00
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE_(ddraw_thunk)("(%p)->() thunking to IDirect3DMaterial3 interface.\n", iface);
|
2009-01-22 09:33:37 +00:00
|
|
|
return IDirect3DMaterial3_AddRef((IDirect3DMaterial3 *)material_from_material2(iface));
|
2002-11-21 21:04:16 +00:00
|
|
|
}
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
static ULONG WINAPI
|
2002-11-21 21:04:16 +00:00
|
|
|
Thunk_IDirect3DMaterialImpl_1_AddRef(LPDIRECT3DMATERIAL iface)
|
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE_(ddraw_thunk)("(%p)->() thunking to IDirect3DMaterial3 interface.\n", iface);
|
2009-01-22 09:33:37 +00:00
|
|
|
return IDirect3DMaterial3_AddRef((IDirect3DMaterial3 *)material_from_material1(iface));
|
2002-11-21 21:04:16 +00:00
|
|
|
}
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
static ULONG WINAPI
|
2002-11-21 21:04:16 +00:00
|
|
|
Thunk_IDirect3DMaterialImpl_2_Release(LPDIRECT3DMATERIAL2 iface)
|
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE_(ddraw_thunk)("(%p)->() thunking to IDirect3DMaterial3 interface.\n", iface);
|
2009-01-22 09:33:37 +00:00
|
|
|
return IDirect3DMaterial3_Release((IDirect3DMaterial3 *)material_from_material2(iface));
|
1999-01-03 17:00:19 +00:00
|
|
|
}
|
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
static ULONG WINAPI
|
2002-11-21 21:04:16 +00:00
|
|
|
Thunk_IDirect3DMaterialImpl_1_Release(LPDIRECT3DMATERIAL iface)
|
1999-01-03 17:00:19 +00:00
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE_(ddraw_thunk)("(%p)->() thunking to IDirect3DMaterial3 interface.\n", iface);
|
2009-01-22 09:33:37 +00:00
|
|
|
return IDirect3DMaterial3_Release((IDirect3DMaterial3 *)material_from_material1(iface));
|
2002-11-21 21:04:16 +00:00
|
|
|
}
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
static HRESULT WINAPI
|
2002-11-21 21:04:16 +00:00
|
|
|
Thunk_IDirect3DMaterialImpl_2_SetMaterial(LPDIRECT3DMATERIAL2 iface,
|
|
|
|
LPD3DMATERIAL lpMat)
|
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE_(ddraw_thunk)("(%p)->(%p) thunking to IDirect3DMaterial3 interface.\n", iface, lpMat);
|
2009-01-22 09:33:37 +00:00
|
|
|
return IDirect3DMaterial3_SetMaterial((IDirect3DMaterial3 *)material_from_material2(iface), lpMat);
|
2002-11-21 21:04:16 +00:00
|
|
|
}
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
static HRESULT WINAPI
|
2002-11-21 21:04:16 +00:00
|
|
|
Thunk_IDirect3DMaterialImpl_1_SetMaterial(LPDIRECT3DMATERIAL iface,
|
|
|
|
LPD3DMATERIAL lpMat)
|
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE_(ddraw_thunk)("(%p)->(%p) thunking to IDirect3DMaterial3 interface.\n", iface, lpMat);
|
2009-01-22 09:33:37 +00:00
|
|
|
return IDirect3DMaterial3_SetMaterial((IDirect3DMaterial3 *)material_from_material1(iface), lpMat);
|
1999-01-03 17:00:19 +00:00
|
|
|
}
|
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
static HRESULT WINAPI
|
2002-11-21 21:04:16 +00:00
|
|
|
Thunk_IDirect3DMaterialImpl_2_GetMaterial(LPDIRECT3DMATERIAL2 iface,
|
|
|
|
LPD3DMATERIAL lpMat)
|
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE_(ddraw_thunk)("(%p)->(%p) thunking to IDirect3DMaterial3 interface.\n", iface, lpMat);
|
2009-01-22 09:33:37 +00:00
|
|
|
return IDirect3DMaterial3_GetMaterial((IDirect3DMaterial3 *)material_from_material2(iface), lpMat);
|
2002-11-21 21:04:16 +00:00
|
|
|
}
|
1999-01-03 17:00:19 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
static HRESULT WINAPI
|
2002-11-21 21:04:16 +00:00
|
|
|
Thunk_IDirect3DMaterialImpl_1_GetMaterial(LPDIRECT3DMATERIAL iface,
|
|
|
|
LPD3DMATERIAL lpMat)
|
1999-01-03 17:00:19 +00:00
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE_(ddraw_thunk)("(%p)->(%p) thunking to IDirect3DMaterial3 interface.\n", iface, lpMat);
|
2009-01-22 09:33:37 +00:00
|
|
|
return IDirect3DMaterial3_GetMaterial((IDirect3DMaterial3 *)material_from_material1(iface), lpMat);
|
2002-11-21 21:04:16 +00:00
|
|
|
}
|
1999-01-03 17:00:19 +00:00
|
|
|
|
2003-01-03 21:05:38 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* material_activate
|
|
|
|
*
|
|
|
|
* Uses IDirect3DDevice7::SetMaterial to activate the material
|
|
|
|
*
|
|
|
|
* Params:
|
|
|
|
* This: Pointer to the material implementation to activate
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
void material_activate(IDirect3DMaterialImpl* This)
|
1999-01-03 17:00:19 +00:00
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
D3DMATERIAL7 d3d7mat;
|
1999-01-03 17:00:19 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
TRACE("Activating material %p\n", This);
|
|
|
|
d3d7mat.u.diffuse = This->mat.u.diffuse;
|
|
|
|
d3d7mat.u1.ambient = This->mat.u1.ambient;
|
|
|
|
d3d7mat.u2.specular = This->mat.u2.specular;
|
|
|
|
d3d7mat.u3.emissive = This->mat.u3.emissive;
|
|
|
|
d3d7mat.u4.power = This->mat.u4.power;
|
|
|
|
|
2009-01-21 08:56:13 +00:00
|
|
|
IDirect3DDevice7_SetMaterial((IDirect3DDevice7 *)This->active_device, &d3d7mat);
|
2006-06-09 17:36:12 +00:00
|
|
|
}
|
2002-11-21 21:04:16 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
const IDirect3DMaterial3Vtbl IDirect3DMaterial3_Vtbl =
|
1999-01-03 17:00:19 +00:00
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
/*** IUnknown Methods ***/
|
|
|
|
IDirect3DMaterialImpl_QueryInterface,
|
|
|
|
IDirect3DMaterialImpl_AddRef,
|
|
|
|
IDirect3DMaterialImpl_Release,
|
|
|
|
/*** IDirect3DMaterial3 Methods ***/
|
|
|
|
IDirect3DMaterialImpl_SetMaterial,
|
|
|
|
IDirect3DMaterialImpl_GetMaterial,
|
|
|
|
IDirect3DMaterialImpl_GetHandle,
|
2002-11-21 21:04:16 +00:00
|
|
|
};
|
2002-05-31 23:06:46 +00:00
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
const IDirect3DMaterial2Vtbl IDirect3DMaterial2_Vtbl =
|
1999-05-22 11:41:38 +00:00
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
/*** IUnknown Methods ***/
|
|
|
|
Thunk_IDirect3DMaterialImpl_2_QueryInterface,
|
|
|
|
Thunk_IDirect3DMaterialImpl_2_AddRef,
|
|
|
|
Thunk_IDirect3DMaterialImpl_2_Release,
|
|
|
|
/*** IDirect3DMaterial2 Methods ***/
|
|
|
|
Thunk_IDirect3DMaterialImpl_2_SetMaterial,
|
|
|
|
Thunk_IDirect3DMaterialImpl_2_GetMaterial,
|
|
|
|
Thunk_IDirect3DMaterialImpl_2_GetHandle,
|
1999-01-03 17:00:19 +00:00
|
|
|
};
|
|
|
|
|
2006-06-09 17:36:12 +00:00
|
|
|
const IDirect3DMaterialVtbl IDirect3DMaterial_Vtbl =
|
1999-05-22 11:41:38 +00:00
|
|
|
{
|
2006-06-09 17:36:12 +00:00
|
|
|
/*** IUnknown Methods ***/
|
|
|
|
Thunk_IDirect3DMaterialImpl_1_QueryInterface,
|
|
|
|
Thunk_IDirect3DMaterialImpl_1_AddRef,
|
|
|
|
Thunk_IDirect3DMaterialImpl_1_Release,
|
|
|
|
/*** IDirect3DMaterial1 Methods ***/
|
|
|
|
IDirect3DMaterialImpl_Initialize,
|
|
|
|
Thunk_IDirect3DMaterialImpl_1_SetMaterial,
|
|
|
|
Thunk_IDirect3DMaterialImpl_1_GetMaterial,
|
|
|
|
Thunk_IDirect3DMaterialImpl_1_GetHandle,
|
|
|
|
IDirect3DMaterialImpl_Reserve,
|
|
|
|
IDirect3DMaterialImpl_Unreserve
|
|
|
|
};
|