query.c 6.08 KB
Newer Older
1 2 3 4
/*
 * IDirect3DQuery9 implementation
 *
 * Copyright 2002-2003 Raphael Junqueira
5 6
 * Copyright 2002-2003 Jason Edmeades
 * Copyright 2005 Oliver Stieber
7 8 9 10 11 12 13 14 15 16 17 18 19
 *
 * 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
20
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 22 23 24 25
 */

#include "config.h"
#include "d3d9_private.h"

26
WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
27 28

/* IDirect3DQuery9 IUnknown parts follow: */
29
static HRESULT WINAPI IDirect3DQuery9Impl_QueryInterface(LPDIRECT3DQUERY9 iface, REFIID riid, LPVOID* ppobj) {
30
    IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
31
    TRACE("(%p) Relay\n", This);
32 33 34

    if (IsEqualGUID(riid, &IID_IUnknown)
        || IsEqualGUID(riid, &IID_IDirect3DQuery9)) {
35
        IDirect3DQuery9_AddRef(iface);
36
        *ppobj = This;
H. Verbeet's avatar
H. Verbeet committed
37
        return S_OK;
38 39 40
    }

    WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
H. Verbeet's avatar
H. Verbeet committed
41
    *ppobj = NULL;
42 43 44
    return E_NOINTERFACE;
}

45
static ULONG WINAPI IDirect3DQuery9Impl_AddRef(LPDIRECT3DQUERY9 iface) {
46
    IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
47 48
    ULONG ref = InterlockedIncrement(&This->ref);

49
    TRACE("(%p) : AddRef from %d\n", This, ref - 1);
50
    return ref;
51 52
}

53
static ULONG WINAPI IDirect3DQuery9Impl_Release(LPDIRECT3DQUERY9 iface) {
54
    IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
55 56
    ULONG ref = InterlockedDecrement(&This->ref);

57
    TRACE("(%p) : ReleaseRef to %d\n", This, ref);
58

59
    if (ref == 0) {
60 61 62
        EnterCriticalSection(&d3d9_cs);
        IWineD3DQuery_Release(This->wineD3DQuery);
        LeaveCriticalSection(&d3d9_cs);
63
        IDirect3DDevice9Ex_Release(This->parentDevice);
64 65 66 67 68 69
        HeapFree(GetProcessHeap(), 0, This);
    }
    return ref;
}

/* IDirect3DQuery9 Interface follow: */
70
static HRESULT WINAPI IDirect3DQuery9Impl_GetDevice(LPDIRECT3DQUERY9 iface, IDirect3DDevice9** ppDevice) {
71
    IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
72 73 74 75 76
    IWineD3DDevice* pDevice;
    HRESULT hr;

    TRACE("(%p) Relay\n", This);

77
    EnterCriticalSection(&d3d9_cs);
78 79 80 81 82 83 84
    hr = IWineD3DQuery_GetDevice(This->wineD3DQuery, &pDevice);
    if(hr != D3D_OK){
        *ppDevice = NULL;
    }else{
        hr = IWineD3DDevice_GetParent(pDevice, (IUnknown **)ppDevice);
        IWineD3DDevice_Release(pDevice);
    }
85
    LeaveCriticalSection(&d3d9_cs);
86
    return hr;
87 88
}

89
static D3DQUERYTYPE WINAPI IDirect3DQuery9Impl_GetType(LPDIRECT3DQUERY9 iface) {
90
    IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
91
    HRESULT hr;
92
    TRACE("(%p) Relay\n", This);
93 94 95 96 97

    EnterCriticalSection(&d3d9_cs);
    hr = IWineD3DQuery_GetType(This->wineD3DQuery);
    LeaveCriticalSection(&d3d9_cs);
    return hr;
98 99
}

100
static DWORD WINAPI IDirect3DQuery9Impl_GetDataSize(LPDIRECT3DQUERY9 iface) {
101
    IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
102
    DWORD ret;
103
    TRACE("(%p) Relay\n", This);
104 105 106 107 108

    EnterCriticalSection(&d3d9_cs);
    ret = IWineD3DQuery_GetDataSize(This->wineD3DQuery);
    LeaveCriticalSection(&d3d9_cs);
    return ret;
109 110
}

111
static HRESULT WINAPI IDirect3DQuery9Impl_Issue(LPDIRECT3DQUERY9 iface, DWORD dwIssueFlags) {
112
    IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
113
    HRESULT hr;
114
    TRACE("(%p) Relay\n", This);
115 116 117 118 119

    EnterCriticalSection(&d3d9_cs);
    hr = IWineD3DQuery_Issue(This->wineD3DQuery, dwIssueFlags);
    LeaveCriticalSection(&d3d9_cs);
    return hr;
120 121
}

122
static HRESULT WINAPI IDirect3DQuery9Impl_GetData(LPDIRECT3DQUERY9 iface, void* pData, DWORD dwSize, DWORD dwGetDataFlags) {
123
    IDirect3DQuery9Impl *This = (IDirect3DQuery9Impl *)iface;
124
    HRESULT hr;
125
    TRACE("(%p) Relay\n", This);
126 127 128 129 130

    EnterCriticalSection(&d3d9_cs);
    hr = IWineD3DQuery_GetData(This->wineD3DQuery, pData, dwSize, dwGetDataFlags);
    LeaveCriticalSection(&d3d9_cs);
    return hr;
131 132 133
}


134
static const IDirect3DQuery9Vtbl Direct3DQuery9_Vtbl =
135 136 137 138 139 140 141 142 143 144 145 146 147
{
    IDirect3DQuery9Impl_QueryInterface,
    IDirect3DQuery9Impl_AddRef,
    IDirect3DQuery9Impl_Release,
    IDirect3DQuery9Impl_GetDevice,
    IDirect3DQuery9Impl_GetType,
    IDirect3DQuery9Impl_GetDataSize,
    IDirect3DQuery9Impl_Issue,
    IDirect3DQuery9Impl_GetData
};


/* IDirect3DDevice9 IDirect3DQuery9 Methods follow: */
148
HRESULT WINAPI IDirect3DDevice9Impl_CreateQuery(LPDIRECT3DDEVICE9EX iface, D3DQUERYTYPE Type, IDirect3DQuery9** ppQuery) {
149 150 151 152 153 154 155
    IDirect3DDevice9Impl *This = (IDirect3DDevice9Impl *)iface;
    IDirect3DQuery9Impl *object = NULL;
    HRESULT hr = D3D_OK;

    TRACE("(%p) Relay\n", This);

    if (!ppQuery)
156 157 158 159 160 161
    {
        EnterCriticalSection(&d3d9_cs);
        hr = IWineD3DDevice_CreateQuery(This->WineD3DDevice, Type, NULL, NULL);
        LeaveCriticalSection(&d3d9_cs);
        return hr;
    }
162 163 164 165

    /* Allocate the storage for the device */
    object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirect3DQuery9Impl));
    if (NULL == object) {
166
        ERR("Allocation of memory failed, returning D3DERR_OUTOFVIDEOMEMORY\n");
167 168 169 170 171
        return D3DERR_OUTOFVIDEOMEMORY;
    }

    object->lpVtbl = &Direct3DQuery9_Vtbl;
    object->ref = 1;
172
    EnterCriticalSection(&d3d9_cs);
173
    hr = IWineD3DDevice_CreateQuery(This->WineD3DDevice, Type, &object->wineD3DQuery, (IUnknown *)object);
174
    LeaveCriticalSection(&d3d9_cs);
175 176

    if (FAILED(hr)) {
177

178
        /* free up object */
179
        WARN("(%p) call to IWineD3DDevice_CreateQuery failed\n", This);
180 181
        HeapFree(GetProcessHeap(), 0, object);
    } else {
182
        IDirect3DDevice9Ex_AddRef(iface);
183
        object->parentDevice = iface;
184
        *ppQuery = (LPDIRECT3DQUERY9) object;
185
        TRACE("(%p) : Created query %p\n", This , object);
186
    }
187
    TRACE("(%p) : returning %x\n", This, hr);
188
    return hr;
189
}