2002-09-28 00:46:16 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DVolume8 implementation
|
|
|
|
*
|
2006-02-20 11:11:35 +01:00
|
|
|
* Copyright 2005 Oliver Stieber
|
2002-09-28 00:46:16 +02: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 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-09-28 00:46:16 +02:00
|
|
|
*/
|
|
|
|
|
2003-04-12 02:06:42 +02:00
|
|
|
#include "config.h"
|
2002-09-28 00:46:16 +02:00
|
|
|
#include "d3d8_private.h"
|
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d8);
|
2002-09-28 00:46:16 +02:00
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DVolume8 IUnknown parts follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DVolume8Impl_QueryInterface(LPDIRECT3DVOLUME8 iface, REFIID riid, LPVOID *ppobj) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2002-09-28 00:46:16 +02:00
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
2002-12-17 02:15:15 +01:00
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DVolume8)) {
|
2006-02-20 11:11:35 +01:00
|
|
|
IUnknown_AddRef(iface);
|
2002-09-28 00:46:16 +02:00
|
|
|
*ppobj = This;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
2006-06-07 15:13:29 +02:00
|
|
|
*ppobj = NULL;
|
2002-09-28 00:46:16 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static ULONG WINAPI IDirect3DVolume8Impl_AddRef(LPDIRECT3DVOLUME8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2006-03-06 19:28:20 +01:00
|
|
|
TRACE("(%p)\n", This);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2006-12-05 00:29:42 +01:00
|
|
|
if (This->forwardReference) {
|
2006-03-06 19:28:20 +01:00
|
|
|
/* Forward to the containerParent */
|
2006-12-05 00:29:42 +01:00
|
|
|
TRACE("(%p) : Forwarding to %p\n", This, This->forwardReference);
|
|
|
|
return IUnknown_AddRef(This->forwardReference);
|
2006-03-06 19:28:20 +01:00
|
|
|
} else {
|
|
|
|
/* No container, handle our own refcounting */
|
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : AddRef from %d\n", This, ref - 1);
|
2006-03-06 19:28:20 +01:00
|
|
|
return ref;
|
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static ULONG WINAPI IDirect3DVolume8Impl_Release(LPDIRECT3DVOLUME8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2006-03-06 19:28:20 +01:00
|
|
|
|
|
|
|
TRACE("(%p)\n", This);
|
|
|
|
|
2006-12-05 00:29:42 +01:00
|
|
|
if (This->forwardReference) {
|
2006-03-06 19:28:20 +01:00
|
|
|
/* Forward to the containerParent */
|
2006-12-05 00:29:42 +01:00
|
|
|
TRACE("(%p) : Forwarding to %p\n", This, This->forwardReference);
|
|
|
|
return IUnknown_Release(This->forwardReference);
|
2006-03-06 19:28:20 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* No container, handle our own refcounting */
|
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) : ReleaseRef to %d\n", This, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2006-03-06 19:28:20 +01:00
|
|
|
if (ref == 0) {
|
|
|
|
IWineD3DVolume_Release(This->wineD3DVolume);
|
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2006-03-06 19:28:20 +01:00
|
|
|
return ref;
|
2002-10-21 20:21:59 +02:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DVolume8 Interface follow: */
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DVolume8Impl_GetDevice(LPDIRECT3DVOLUME8 iface, IDirect3DDevice8 **ppDevice) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
IWineD3DDevice *myDevice = NULL;
|
2002-10-21 20:21:59 +02:00
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
IWineD3DVolume_GetDevice(This->wineD3DVolume, &myDevice);
|
|
|
|
IWineD3DDevice_GetParent(myDevice, (IUnknown **)ppDevice);
|
|
|
|
IWineD3DDevice_Release(myDevice);
|
2002-09-28 00:46:16 +02:00
|
|
|
return D3D_OK;
|
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DVolume8Impl_SetPrivateData(LPDIRECT3DVOLUME8 iface, REFGUID refguid, CONST void *pData, DWORD SizeOfData, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DVolume_SetPrivateData(This->wineD3DVolume, refguid, pData, SizeOfData, Flags);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DVolume8Impl_GetPrivateData(LPDIRECT3DVOLUME8 iface, REFGUID refguid, void *pData, DWORD* pSizeOfData) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DVolume_GetPrivateData(This->wineD3DVolume, refguid, pData, pSizeOfData);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DVolume8Impl_FreePrivateData(LPDIRECT3DVOLUME8 iface, REFGUID refguid) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
return IWineD3DVolume_FreePrivateData(This->wineD3DVolume, refguid);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2002-10-21 20:21:59 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DVolume8Impl_GetContainer(LPDIRECT3DVOLUME8 iface, REFIID riid, void **ppContainer) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
HRESULT res;
|
|
|
|
|
2006-11-09 02:38:41 +01:00
|
|
|
TRACE("(This %p, riid %s, ppContainer %p)\n", This, debugstr_guid(riid), ppContainer);
|
2006-02-20 11:11:35 +01:00
|
|
|
|
2006-12-18 00:17:45 +01:00
|
|
|
if (!This->container) return E_NOINTERFACE;
|
|
|
|
|
2006-11-09 02:38:41 +01:00
|
|
|
if (!ppContainer) {
|
|
|
|
ERR("Called without a valid ppContainer.\n");
|
2006-02-20 11:11:35 +01:00
|
|
|
}
|
|
|
|
|
2006-12-18 00:17:45 +01:00
|
|
|
res = IUnknown_QueryInterface(This->container, riid, ppContainer);
|
2006-11-09 02:38:41 +01:00
|
|
|
|
|
|
|
TRACE("Returning ppContainer %p, *ppContainer %p\n", ppContainer, *ppContainer);
|
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
return res;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DVolume8Impl_GetDesc(LPDIRECT3DVOLUME8 iface, D3DVOLUME_DESC *pDesc) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
WINED3DVOLUME_DESC wined3ddesc;
|
|
|
|
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
2006-05-19 14:17:56 +02:00
|
|
|
/* As d3d8 and d3d9 structures differ, pass in ptrs to where data needs to go */
|
2006-02-20 11:11:35 +01:00
|
|
|
wined3ddesc.Format = (WINED3DFORMAT *)&pDesc->Format;
|
2006-03-09 23:21:16 +01:00
|
|
|
wined3ddesc.Type = (WINED3DRESOURCETYPE *)&pDesc->Type;
|
2006-02-20 11:11:35 +01:00
|
|
|
wined3ddesc.Usage = &pDesc->Usage;
|
2006-03-28 14:20:47 +02:00
|
|
|
wined3ddesc.Pool = (WINED3DPOOL *) &pDesc->Pool;
|
2006-05-19 14:17:56 +02:00
|
|
|
wined3ddesc.Size = &pDesc->Size;
|
2006-02-20 11:11:35 +01:00
|
|
|
wined3ddesc.Width = &pDesc->Width;
|
|
|
|
wined3ddesc.Height = &pDesc->Height;
|
|
|
|
wined3ddesc.Depth = &pDesc->Depth;
|
|
|
|
|
|
|
|
return IWineD3DVolume_GetDesc(This->wineD3DVolume, &wined3ddesc);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DVolume8Impl_LockBox(LPDIRECT3DVOLUME8 iface, D3DLOCKED_BOX *pLockedVolume, CONST D3DBOX *pBox, DWORD Flags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2006-10-10 19:23:08 +02:00
|
|
|
TRACE("(%p) relay %p %p %p %d\n", This, This->wineD3DVolume, pLockedVolume, pBox, Flags);
|
2006-10-26 21:57:37 +02:00
|
|
|
return IWineD3DVolume_LockBox(This->wineD3DVolume, (WINED3DLOCKED_BOX *) pLockedVolume, (CONST WINED3DBOX *) pBox, Flags);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static HRESULT WINAPI IDirect3DVolume8Impl_UnlockBox(LPDIRECT3DVOLUME8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2006-02-20 11:11:35 +01:00
|
|
|
TRACE("(%p) relay %p\n", This, This->wineD3DVolume);
|
|
|
|
return IWineD3DVolume_UnlockBox(This->wineD3DVolume);
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:48:24 +02:00
|
|
|
static const IDirect3DVolume8Vtbl Direct3DVolume8_Vtbl =
|
2002-09-28 00:46:16 +02:00
|
|
|
{
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IUnknown */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DVolume8Impl_QueryInterface,
|
|
|
|
IDirect3DVolume8Impl_AddRef,
|
|
|
|
IDirect3DVolume8Impl_Release,
|
2006-02-20 11:11:35 +01:00
|
|
|
/* IDirect3DVolume8 */
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DVolume8Impl_GetDevice,
|
|
|
|
IDirect3DVolume8Impl_SetPrivateData,
|
|
|
|
IDirect3DVolume8Impl_GetPrivateData,
|
|
|
|
IDirect3DVolume8Impl_FreePrivateData,
|
|
|
|
IDirect3DVolume8Impl_GetContainer,
|
|
|
|
IDirect3DVolume8Impl_GetDesc,
|
|
|
|
IDirect3DVolume8Impl_LockBox,
|
|
|
|
IDirect3DVolume8Impl_UnlockBox
|
|
|
|
};
|
2003-06-05 01:05:46 +02:00
|
|
|
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
/* Internal function called back during the CreateVolumeTexture */
|
2006-12-03 21:52:03 +01:00
|
|
|
HRESULT WINAPI D3D8CB_CreateVolume(IUnknown *pDevice, IUnknown *pSuperior, UINT Width, UINT Height, UINT Depth,
|
2006-03-28 14:20:47 +02:00
|
|
|
WINED3DFORMAT Format, WINED3DPOOL Pool, DWORD Usage,
|
2006-02-20 11:11:35 +01:00
|
|
|
IWineD3DVolume **ppVolume,
|
|
|
|
HANDLE * pSharedHandle) {
|
|
|
|
IDirect3DVolume8Impl *object;
|
|
|
|
IDirect3DDevice8Impl *This = (IDirect3DDevice8Impl *)pDevice;
|
|
|
|
HRESULT hrc = D3D_OK;
|
|
|
|
|
|
|
|
/* Allocate the storage for the device */
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3DVolume8Impl));
|
|
|
|
if (NULL == object) {
|
|
|
|
FIXME("Allocation of memory failed\n");
|
|
|
|
*ppVolume = NULL;
|
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
2003-06-05 01:05:46 +02:00
|
|
|
|
2006-02-20 11:11:35 +01:00
|
|
|
object->lpVtbl = &Direct3DVolume8_Vtbl;
|
|
|
|
object->ref = 1;
|
|
|
|
hrc = IWineD3DDevice_CreateVolume(This->WineD3DDevice, Width, Height, Depth, Usage, Format,
|
|
|
|
Pool, &object->wineD3DVolume, pSharedHandle, (IUnknown *)object);
|
|
|
|
if (hrc != D3D_OK) {
|
|
|
|
/* free up object */
|
|
|
|
FIXME("(%p) call to IWineD3DDevice_CreateVolume failed\n", This);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
*ppVolume = NULL;
|
|
|
|
} else {
|
|
|
|
*ppVolume = (IWineD3DVolume *)object->wineD3DVolume;
|
2006-12-18 00:17:45 +01:00
|
|
|
object->container = pSuperior;
|
2006-12-05 00:29:42 +01:00
|
|
|
object->forwardReference = pSuperior;
|
2006-02-20 11:11:35 +01:00
|
|
|
}
|
|
|
|
TRACE("(%p) Created volume %p\n", This, *ppVolume);
|
|
|
|
return hrc;
|
2003-06-05 01:05:46 +02:00
|
|
|
}
|
2006-12-05 00:29:42 +01:00
|
|
|
|
|
|
|
ULONG WINAPI D3D8CB_DestroyVolume(IWineD3DVolume *pVolume) {
|
|
|
|
IDirect3DVolume8Impl* volumeParent;
|
|
|
|
|
|
|
|
IWineD3DVolume_GetParent(pVolume, (IUnknown **) &volumeParent);
|
|
|
|
/* GetParent's AddRef was forwarded to an object in destruction.
|
|
|
|
* Releasing it here again would cause an endless recursion. */
|
|
|
|
volumeParent->forwardReference = NULL;
|
|
|
|
return IDirect3DVolume8_Release((IDirect3DVolume8*) volumeParent);
|
|
|
|
}
|