2002-09-28 00:46:16 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DVolume8 implementation
|
|
|
|
*
|
2003-07-08 23:01:48 +02:00
|
|
|
* Copyright 2002-2003 Jason Edmeades
|
|
|
|
* Raphael Junqueira
|
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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2003-04-12 02:06:42 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2004-10-07 05:06:48 +02:00
|
|
|
#define COBJMACROS
|
2003-07-08 23:01:48 +02:00
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
2004-10-07 05:06:48 +02:00
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "wingdi.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
#include "d3d8_private.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d);
|
|
|
|
|
|
|
|
/* IDirect3DVolume IUnknown parts follow: */
|
2003-07-08 23:01:48 +02:00
|
|
|
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)) {
|
2002-09-28 00:46:16 +02:00
|
|
|
IDirect3DVolume8Impl_AddRef(iface);
|
|
|
|
*ppobj = This;
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
2003-07-08 23:01:48 +02:00
|
|
|
WARN("(%p)->(%s,%p) not found\n", This, debugstr_guid(riid), ppobj);
|
2002-09-28 00:46:16 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) : AddRef from %ld\n", This, ref - 1);
|
|
|
|
|
|
|
|
return ref;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI IDirect3DVolume8Impl_Release(LPDIRECT3DVOLUME8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p) : ReleaseRef to %ld\n", This, ref);
|
|
|
|
|
2002-10-21 20:21:59 +02:00
|
|
|
if (ref == 0) {
|
|
|
|
HeapFree(GetProcessHeap(), 0, This->allocatedMemory);
|
2002-09-28 00:46:16 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
2002-10-21 20:21:59 +02:00
|
|
|
}
|
2002-09-28 00:46:16 +02:00
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DVolume8: */
|
|
|
|
HRESULT WINAPI IDirect3DVolume8Impl_GetDevice(LPDIRECT3DVOLUME8 iface, IDirect3DDevice8** ppDevice) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2002-09-28 00:46:16 +02:00
|
|
|
TRACE("(%p) : returning %p\n", This, This->Device);
|
|
|
|
*ppDevice = (LPDIRECT3DDEVICE8) This->Device;
|
2002-10-21 20:21:59 +02:00
|
|
|
|
|
|
|
/* Note Calling this method will increase the internal reference count
|
|
|
|
on the IDirect3DDevice8 interface. */
|
|
|
|
IDirect3DDevice8Impl_AddRef(*ppDevice);
|
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
return D3D_OK;
|
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
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;
|
2003-05-12 05:10:27 +02:00
|
|
|
FIXME("(%p) : stub\n", This);
|
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
HRESULT WINAPI IDirect3DVolume8Impl_GetPrivateData(LPDIRECT3DVOLUME8 iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2003-05-12 05:10:27 +02:00
|
|
|
FIXME("(%p) : stub\n", This);
|
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
HRESULT WINAPI IDirect3DVolume8Impl_FreePrivateData(LPDIRECT3DVOLUME8 iface, REFGUID refguid) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2003-05-12 05:10:27 +02:00
|
|
|
FIXME("(%p) : stub\n", This);
|
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2002-10-21 20:21:59 +02:00
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
HRESULT WINAPI IDirect3DVolume8Impl_GetContainer(LPDIRECT3DVOLUME8 iface, REFIID riid, void** ppContainer) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2002-09-28 00:46:16 +02:00
|
|
|
TRACE("(%p) : returning %p\n", This, This->Container);
|
|
|
|
*ppContainer = This->Container;
|
2003-05-11 05:35:27 +02:00
|
|
|
IUnknown_AddRef(This->Container);
|
2002-09-28 00:46:16 +02:00
|
|
|
return D3D_OK;
|
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
HRESULT WINAPI IDirect3DVolume8Impl_GetDesc(LPDIRECT3DVOLUME8 iface, D3DVOLUME_DESC* pDesc) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2002-10-21 20:21:59 +02:00
|
|
|
TRACE("(%p) : copying into %p\n", This, pDesc);
|
|
|
|
memcpy(pDesc, &This->myDesc, sizeof(D3DVOLUME_DESC));
|
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2003-05-12 05:10:27 +02:00
|
|
|
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;
|
2002-10-21 20:21:59 +02:00
|
|
|
FIXME("(%p) : pBox=%p stub\n", This, pBox);
|
|
|
|
|
|
|
|
/* fixme: should we really lock as such? */
|
|
|
|
TRACE("(%p) : box=%p, output pbox=%p, allMem=%p\n", This, pBox, pLockedVolume, This->allocatedMemory);
|
|
|
|
|
|
|
|
pLockedVolume->RowPitch = This->bytesPerPixel * This->myDesc.Width; /* Bytes / row */
|
|
|
|
pLockedVolume->SlicePitch = This->bytesPerPixel * This->myDesc.Width * This->myDesc.Height; /* Bytes / slice */
|
|
|
|
if (!pBox) {
|
|
|
|
TRACE("No box supplied - all is ok\n");
|
|
|
|
pLockedVolume->pBits = This->allocatedMemory;
|
2003-06-05 01:05:46 +02:00
|
|
|
This->lockedBox.Left = 0;
|
|
|
|
This->lockedBox.Top = 0;
|
|
|
|
This->lockedBox.Front = 0;
|
|
|
|
This->lockedBox.Right = This->myDesc.Width;
|
|
|
|
This->lockedBox.Bottom = This->myDesc.Height;
|
|
|
|
This->lockedBox.Back = This->myDesc.Depth;
|
2002-10-21 20:21:59 +02:00
|
|
|
} else {
|
2003-05-11 05:35:27 +02:00
|
|
|
TRACE("Lock Box (%p) = l %d, t %d, r %d, b %d, fr %d, ba %d\n", pBox, pBox->Left, pBox->Top, pBox->Right, pBox->Bottom, pBox->Front, pBox->Back);
|
2002-10-21 20:21:59 +02:00
|
|
|
pLockedVolume->pBits = This->allocatedMemory +
|
2003-06-05 01:05:46 +02:00
|
|
|
(pLockedVolume->SlicePitch * pBox->Front) + /* FIXME: is front < back or vica versa? */
|
|
|
|
(pLockedVolume->RowPitch * pBox->Top) +
|
|
|
|
(pBox->Left * This->bytesPerPixel);
|
|
|
|
This->lockedBox.Left = pBox->Left;
|
|
|
|
This->lockedBox.Top = pBox->Top;
|
|
|
|
This->lockedBox.Front = pBox->Front;
|
|
|
|
This->lockedBox.Right = pBox->Right;
|
|
|
|
This->lockedBox.Bottom = pBox->Bottom;
|
|
|
|
This->lockedBox.Back = pBox->Back;
|
2002-10-21 20:21:59 +02:00
|
|
|
}
|
2003-05-12 05:10:27 +02:00
|
|
|
|
|
|
|
if (Flags & (D3DLOCK_NO_DIRTY_UPDATE | D3DLOCK_READONLY)) {
|
2004-01-06 23:08:33 +01:00
|
|
|
/* Don't dirtify */
|
2003-05-12 05:10:27 +02:00
|
|
|
} else {
|
|
|
|
/**
|
|
|
|
* Dirtify on lock
|
|
|
|
* as seen in msdn docs
|
|
|
|
*/
|
2003-06-05 01:05:46 +02:00
|
|
|
IDirect3DVolume8Impl_AddDirtyBox(iface, &This->lockedBox);
|
|
|
|
|
2003-05-12 05:10:27 +02:00
|
|
|
/** Dirtify Container if needed */
|
|
|
|
if (NULL != This->Container) {
|
|
|
|
IDirect3DVolumeTexture8* cont = (IDirect3DVolumeTexture8*) This->Container;
|
|
|
|
D3DRESOURCETYPE containerType = IDirect3DBaseTexture8Impl_GetType((LPDIRECT3DBASETEXTURE8) cont);
|
|
|
|
if (containerType == D3DRTYPE_VOLUMETEXTURE) {
|
|
|
|
IDirect3DBaseTexture8Impl* pTexture = (IDirect3DBaseTexture8Impl*) cont;
|
|
|
|
pTexture->Dirty = TRUE;
|
|
|
|
} else {
|
|
|
|
FIXME("Set dirty on container type %d\n", containerType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-06-05 01:05:46 +02:00
|
|
|
This->locked = TRUE;
|
2003-05-12 05:10:27 +02:00
|
|
|
TRACE("returning memory@%p rpitch(%d) spitch(%d)\n", pLockedVolume->pBits, pLockedVolume->RowPitch, pLockedVolume->SlicePitch);
|
2002-10-21 20:21:59 +02:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
2003-07-08 23:01:48 +02:00
|
|
|
|
2002-09-28 00:46:16 +02:00
|
|
|
HRESULT WINAPI IDirect3DVolume8Impl_UnlockBox(LPDIRECT3DVOLUME8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2003-06-05 01:05:46 +02:00
|
|
|
if (FALSE == This->locked) {
|
|
|
|
ERR("trying to lock unlocked volume@%p\n", This);
|
|
|
|
return D3DERR_INVALIDCALL;
|
2002-10-21 20:21:59 +02:00
|
|
|
}
|
2003-06-05 01:05:46 +02:00
|
|
|
TRACE("(%p) : unlocking volume\n", This);
|
|
|
|
This->locked = FALSE;
|
|
|
|
memset(&This->lockedBox, 0, sizeof(RECT));
|
2002-10-21 20:21:59 +02:00
|
|
|
return D3D_OK;
|
2002-09-28 00:46:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-05-27 22:17:35 +02:00
|
|
|
const IDirect3DVolume8Vtbl Direct3DVolume8_Vtbl =
|
2002-09-28 00:46:16 +02:00
|
|
|
{
|
|
|
|
IDirect3DVolume8Impl_QueryInterface,
|
|
|
|
IDirect3DVolume8Impl_AddRef,
|
|
|
|
IDirect3DVolume8Impl_Release,
|
|
|
|
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
|
|
|
|
2003-06-05 01:05:46 +02:00
|
|
|
HRESULT WINAPI IDirect3DVolume8Impl_CleanDirtyBox(LPDIRECT3DVOLUME8 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2003-06-05 01:05:46 +02:00
|
|
|
This->Dirty = FALSE;
|
|
|
|
This->lockedBox.Left = This->myDesc.Width;
|
|
|
|
This->lockedBox.Top = This->myDesc.Height;
|
|
|
|
This->lockedBox.Front = This->myDesc.Depth;
|
|
|
|
This->lockedBox.Right = 0;
|
|
|
|
This->lockedBox.Bottom = 0;
|
|
|
|
This->lockedBox.Back = 0;
|
|
|
|
return D3D_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Raphael:
|
|
|
|
* very stupid way to handle multiple dirty box but it works :)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI IDirect3DVolume8Impl_AddDirtyBox(LPDIRECT3DVOLUME8 iface, CONST D3DBOX* pDirtyBox) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DVolume8Impl *This = (IDirect3DVolume8Impl *)iface;
|
2003-06-05 01:05:46 +02:00
|
|
|
This->Dirty = TRUE;
|
2003-07-08 23:01:48 +02:00
|
|
|
if (NULL != pDirtyBox) {
|
|
|
|
This->lockedBox.Left = min(This->lockedBox.Left, pDirtyBox->Left);
|
|
|
|
This->lockedBox.Top = min(This->lockedBox.Top, pDirtyBox->Top);
|
|
|
|
This->lockedBox.Front = min(This->lockedBox.Front, pDirtyBox->Front);
|
|
|
|
This->lockedBox.Right = max(This->lockedBox.Right, pDirtyBox->Right);
|
|
|
|
This->lockedBox.Bottom = max(This->lockedBox.Bottom, pDirtyBox->Bottom);
|
|
|
|
This->lockedBox.Back = max(This->lockedBox.Back, pDirtyBox->Back);
|
|
|
|
} else {
|
|
|
|
This->lockedBox.Left = 0;
|
|
|
|
This->lockedBox.Top = 0;
|
|
|
|
This->lockedBox.Front = 0;
|
|
|
|
This->lockedBox.Right = This->myDesc.Width;
|
|
|
|
This->lockedBox.Bottom = This->myDesc.Height;
|
|
|
|
This->lockedBox.Back = This->myDesc.Depth;
|
|
|
|
}
|
2003-06-05 01:05:46 +02:00
|
|
|
return D3D_OK;
|
|
|
|
}
|