2003-07-01 03:09:17 +02:00
|
|
|
/*
|
|
|
|
* IDirect3DQuery9 implementation
|
|
|
|
*
|
|
|
|
* Copyright 2002-2003 Raphael Junqueira
|
2005-03-03 14:57:15 +01:00
|
|
|
* Copyright 2002-2003 Jason Edmeades
|
|
|
|
* Copyright 2005 Oliver Stieber
|
2003-07-01 03:09:17 +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
|
2003-07-01 03:09:17 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "d3d9_private.h"
|
|
|
|
|
2005-03-03 14:57:15 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
|
2003-07-01 03:09:17 +02:00
|
|
|
|
|
|
|
/* IDirect3DQuery9 IUnknown parts follow: */
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DQuery9Impl_QueryInterface(LPDIRECT3DQUERY9 iface, REFIID riid, LPVOID* ppobj) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
|
2005-03-03 14:57:15 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2003-07-01 03:09:17 +02:00
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirect3DQuery9)) {
|
2005-03-03 14:57:15 +01:00
|
|
|
IUnknown_AddRef(iface);
|
2003-07-01 03:09:17 +02:00
|
|
|
*ppobj = This;
|
2006-06-07 15:13:29 +02:00
|
|
|
return S_OK;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
2006-06-07 15:13:29 +02:00
|
|
|
*ppobj = NULL;
|
2003-07-01 03:09:17 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static ULONG WINAPI IDirect3DQuery9Impl_AddRef(LPDIRECT3DQUERY9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2006-10-10 19:23:22 +02:00
|
|
|
TRACE("(%p) : AddRef from %d\n", This, ref - 1);
|
2005-01-24 12:31:45 +01:00
|
|
|
return ref;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static ULONG WINAPI IDirect3DQuery9Impl_Release(LPDIRECT3DQUERY9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
|
2005-01-24 12:31:45 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
2006-10-10 19:23:22 +02:00
|
|
|
TRACE("(%p) : ReleaseRef to %d\n", This, ref);
|
2005-01-24 12:31:45 +01:00
|
|
|
|
2003-07-01 03:09:17 +02:00
|
|
|
if (ref == 0) {
|
2007-06-12 10:17:20 +02:00
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
IWineD3DQuery_Release(This->wineD3DQuery);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
2006-05-20 18:36:33 +02:00
|
|
|
IUnknown_Release(This->parentDevice);
|
2003-07-01 03:09:17 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* IDirect3DQuery9 Interface follow: */
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DQuery9Impl_GetDevice(LPDIRECT3DQUERY9 iface, IDirect3DDevice9** ppDevice) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
|
2005-03-03 14:57:15 +01:00
|
|
|
IWineD3DDevice* pDevice;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
2007-06-12 10:16:23 +02:00
|
|
|
EnterCriticalSection(&d3d9_cs);
|
2005-03-03 14:57:15 +01:00
|
|
|
hr = IWineD3DQuery_GetDevice(This->wineD3DQuery, &pDevice);
|
|
|
|
if(hr != D3D_OK){
|
|
|
|
*ppDevice = NULL;
|
|
|
|
}else{
|
|
|
|
hr = IWineD3DDevice_GetParent(pDevice, (IUnknown **)ppDevice);
|
|
|
|
IWineD3DDevice_Release(pDevice);
|
|
|
|
}
|
2007-06-12 10:16:23 +02:00
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
2005-03-03 14:57:15 +01:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static D3DQUERYTYPE WINAPI IDirect3DQuery9Impl_GetType(LPDIRECT3DQUERY9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
|
2007-06-12 10:16:23 +02:00
|
|
|
HRESULT hr;
|
2005-03-03 14:57:15 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-12 10:16:23 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
hr = IWineD3DQuery_GetType(This->wineD3DQuery);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static DWORD WINAPI IDirect3DQuery9Impl_GetDataSize(LPDIRECT3DQUERY9 iface) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
|
2007-06-12 10:16:23 +02:00
|
|
|
DWORD ret;
|
2005-03-03 14:57:15 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-12 10:16:23 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
ret = IWineD3DQuery_GetDataSize(This->wineD3DQuery);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
return ret;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DQuery9Impl_Issue(LPDIRECT3DQUERY9 iface, DWORD dwIssueFlags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
|
2007-06-12 10:16:23 +02:00
|
|
|
HRESULT hr;
|
2005-03-03 14:57:15 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-12 10:16:23 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
hr = IWineD3DQuery_Issue(This->wineD3DQuery, dwIssueFlags);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static HRESULT WINAPI IDirect3DQuery9Impl_GetData(LPDIRECT3DQUERY9 iface, void* pData, DWORD dwSize, DWORD dwGetDataFlags) {
|
2004-09-08 03:50:37 +02:00
|
|
|
IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
|
2007-06-12 10:16:23 +02:00
|
|
|
HRESULT hr;
|
2005-03-03 14:57:15 +01:00
|
|
|
TRACE("(%p) Relay\n", This);
|
2007-06-12 10:16:23 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
hr = IWineD3DQuery_GetData(This->wineD3DQuery, pData, dwSize, dwGetDataFlags);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-10 11:51:05 +02:00
|
|
|
static const IDirect3DQuery9Vtbl Direct3DQuery9_Vtbl =
|
2003-07-01 03:09:17 +02:00
|
|
|
{
|
|
|
|
IDirect3DQuery9Impl_QueryInterface,
|
|
|
|
IDirect3DQuery9Impl_AddRef,
|
|
|
|
IDirect3DQuery9Impl_Release,
|
|
|
|
IDirect3DQuery9Impl_GetDevice,
|
|
|
|
IDirect3DQuery9Impl_GetType,
|
|
|
|
IDirect3DQuery9Impl_GetDataSize,
|
|
|
|
IDirect3DQuery9Impl_Issue,
|
|
|
|
IDirect3DQuery9Impl_GetData
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* IDirect3DDevice9 IDirect3DQuery9 Methods follow: */
|
|
|
|
HRESULT WINAPI IDirect3DDevice9Impl_CreateQuery(LPDIRECT3DDEVICE9 iface, D3DQUERYTYPE Type, IDirect3DQuery9** ppQuery) {
|
2005-11-08 13:46:21 +01:00
|
|
|
IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
|
|
|
|
IDirect3DQuery9Impl *object = NULL;
|
|
|
|
HRESULT hr = D3D_OK;
|
|
|
|
|
|
|
|
TRACE("(%p) Relay\n", This);
|
|
|
|
|
|
|
|
if (!ppQuery)
|
2007-06-12 10:16:23 +02:00
|
|
|
{
|
|
|
|
EnterCriticalSection(&d3d9_cs);
|
|
|
|
hr = IWineD3DDevice_CreateQuery(This->WineD3DDevice, Type, NULL, NULL);
|
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
|
|
|
return hr;
|
|
|
|
}
|
2005-11-08 13:46:21 +01:00
|
|
|
|
|
|
|
/* Allocate the storage for the device */
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3DQuery9Impl));
|
|
|
|
if (NULL == object) {
|
2005-11-14 12:21:46 +01:00
|
|
|
FIXME("Allocation of memory failed, returning D3DERR_OUTOFVIDEOMEMORY\n");
|
2005-11-08 13:46:21 +01:00
|
|
|
return D3DERR_OUTOFVIDEOMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
object->lpVtbl = &Direct3DQuery9_Vtbl;
|
|
|
|
object->ref = 1;
|
2007-06-12 10:16:23 +02:00
|
|
|
EnterCriticalSection(&d3d9_cs);
|
2005-11-08 13:46:21 +01:00
|
|
|
hr = IWineD3DDevice_CreateQuery(This->WineD3DDevice, Type, &object->wineD3DQuery, (IUnknown *)object);
|
2007-06-12 10:16:23 +02:00
|
|
|
LeaveCriticalSection(&d3d9_cs);
|
2005-11-08 13:46:21 +01:00
|
|
|
|
|
|
|
if (FAILED(hr)) {
|
2005-11-14 12:21:46 +01:00
|
|
|
|
2005-11-08 13:46:21 +01:00
|
|
|
/* free up object */
|
|
|
|
FIXME("(%p) call to IWineD3DDevice_CreateQuery failed\n", This);
|
|
|
|
HeapFree(GetProcessHeap(), 0, object);
|
|
|
|
} else {
|
2006-05-20 18:36:33 +02:00
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
object->parentDevice = iface;
|
2005-11-08 13:46:21 +01:00
|
|
|
*ppQuery = (LPDIRECT3DQUERY9) object;
|
2005-11-14 12:21:46 +01:00
|
|
|
TRACE("(%p) : Created query %p\n", This , object);
|
2005-11-08 13:46:21 +01:00
|
|
|
}
|
2006-10-10 19:23:22 +02:00
|
|
|
TRACE("(%p) : returning %x\n", This, hr);
|
2005-11-08 13:46:21 +01:00
|
|
|
return hr;
|
2003-07-01 03:09:17 +02:00
|
|
|
}
|