2010-04-02 08:54:42 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2010 Christian Costa
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "d3dx9_36_private.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3dx);
|
|
|
|
|
|
|
|
static const struct ID3DXLineVtbl ID3DXLine_Vtbl;
|
|
|
|
|
|
|
|
typedef struct ID3DXLineImpl {
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLine ID3DXLine_iface;
|
2010-04-02 08:54:42 +02:00
|
|
|
LONG ref;
|
2011-06-16 22:19:49 +02:00
|
|
|
|
|
|
|
IDirect3DDevice9 *device;
|
2011-06-30 00:08:20 +02:00
|
|
|
IDirect3DStateBlock9 *state;
|
2010-04-02 08:54:42 +02:00
|
|
|
} ID3DXLineImpl;
|
|
|
|
|
2010-12-20 11:35:15 +01:00
|
|
|
static inline ID3DXLineImpl *impl_from_ID3DXLine(ID3DXLine *iface)
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, ID3DXLineImpl, ID3DXLine_iface);
|
|
|
|
}
|
|
|
|
|
2010-04-02 08:54:42 +02:00
|
|
|
/*** IUnknown methods ***/
|
|
|
|
static HRESULT WINAPI ID3DXLineImpl_QueryInterface(ID3DXLine* iface, REFIID riid, LPVOID* object)
|
|
|
|
{
|
2012-04-09 20:43:42 +02:00
|
|
|
TRACE("(%p)->(%s, %p)\n", iface, debugstr_guid(riid), object);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown) ||
|
|
|
|
IsEqualGUID(riid, &IID_ID3DXLine))
|
|
|
|
{
|
|
|
|
ID3DXLine_AddRef(iface);
|
2012-04-09 20:43:42 +02:00
|
|
|
*object = iface;
|
2010-04-02 08:54:42 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
ERR("Interface %s not found\n", debugstr_guid(riid));
|
|
|
|
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ID3DXLineImpl_AddRef(ID3DXLine* iface)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
TRACE("(%p)->(): AddRef from %u\n", This, This->ref);
|
|
|
|
|
|
|
|
return InterlockedIncrement(&This->ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI ID3DXLineImpl_Release(ID3DXLine* iface)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
|
|
|
TRACE("(%p)->(): Release from %u\n", This, ref + 1);
|
|
|
|
|
|
|
|
if (!ref)
|
2011-06-16 22:19:49 +02:00
|
|
|
{
|
|
|
|
IDirect3DDevice9_Release(This->device);
|
2010-04-02 08:54:42 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
2011-06-16 22:19:49 +02:00
|
|
|
}
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** ID3DXLine methods ***/
|
2012-10-28 20:54:52 +01:00
|
|
|
static HRESULT WINAPI ID3DXLineImpl_GetDevice(struct ID3DXLine *iface, struct IDirect3DDevice9 **device)
|
2010-04-02 08:54:42 +02:00
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
2011-06-16 22:19:49 +02:00
|
|
|
TRACE ("(%p)->(%p): relay\n", This, device);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
2011-06-16 22:19:49 +02:00
|
|
|
if (device == NULL) return D3DERR_INVALIDCALL;
|
|
|
|
|
|
|
|
*device = This->device;
|
|
|
|
IDirect3DDevice9_AddRef(This->device);
|
|
|
|
|
|
|
|
return D3D_OK;
|
2010-04-02 08:54:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ID3DXLineImpl_Begin(ID3DXLine* iface)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
2011-06-30 00:08:20 +02:00
|
|
|
HRESULT hr;
|
|
|
|
D3DXMATRIX identity, projection;
|
|
|
|
D3DVIEWPORT9 vp;
|
2010-04-02 08:54:42 +02:00
|
|
|
|
2011-06-30 00:08:20 +02:00
|
|
|
TRACE ("(%p)->()\n", This);
|
|
|
|
|
|
|
|
if (This->state != NULL) /* We already began. Return error. */
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
|
|
|
|
hr = IDirect3DDevice9_CreateStateBlock(This->device, D3DSBT_ALL, &This->state);
|
|
|
|
if (FAILED(hr)) return D3DXERR_INVALIDDATA;
|
|
|
|
|
|
|
|
hr = IDirect3DDevice9_GetViewport(This->device, &vp);
|
|
|
|
if (FAILED(hr)) goto failed;
|
|
|
|
|
|
|
|
D3DXMatrixIdentity(&identity);
|
|
|
|
D3DXMatrixOrthoOffCenterLH(&projection,
|
|
|
|
0.0, vp.Width, /* Min and max x */
|
|
|
|
vp.Height, 0.0, /* Min and max y. Screen y is on top so this is inverted */
|
|
|
|
0.0, 1.0); /* Min and max z */
|
|
|
|
|
|
|
|
hr = IDirect3DDevice9_SetTransform(This->device, D3DTS_WORLD, &identity);
|
|
|
|
if (FAILED(hr)) goto failed;
|
|
|
|
|
|
|
|
hr = IDirect3DDevice9_SetTransform(This->device, D3DTS_VIEW, &identity);
|
|
|
|
if (FAILED(hr)) goto failed;
|
|
|
|
|
|
|
|
hr = IDirect3DDevice9_SetTransform(This->device, D3DTS_PROJECTION, &projection);
|
|
|
|
if (FAILED(hr)) goto failed;
|
|
|
|
|
|
|
|
/* Windows sets similar states so we do the same */
|
|
|
|
|
|
|
|
hr = IDirect3DDevice9_SetRenderState(This->device, D3DRS_LIGHTING, FALSE);
|
|
|
|
if (FAILED(hr)) goto failed;
|
|
|
|
|
|
|
|
hr = IDirect3DDevice9_SetRenderState(This->device, D3DRS_FOGENABLE, FALSE);
|
|
|
|
if (FAILED(hr)) goto failed;
|
|
|
|
|
|
|
|
hr = IDirect3DDevice9_SetRenderState(This->device, D3DRS_SHADEMODE, D3DSHADE_FLAT);
|
|
|
|
if (FAILED(hr)) goto failed;
|
|
|
|
|
|
|
|
hr = IDirect3DDevice9_SetRenderState(This->device, D3DRS_ALPHABLENDENABLE, TRUE);
|
|
|
|
if (FAILED(hr)) goto failed;
|
|
|
|
|
|
|
|
hr = IDirect3DDevice9_SetRenderState(This->device, D3DRS_SRCBLEND, D3DBLEND_SRCALPHA);
|
|
|
|
if (FAILED(hr)) goto failed;
|
|
|
|
|
|
|
|
hr = IDirect3DDevice9_SetRenderState(This->device, D3DRS_DESTBLEND, D3DBLEND_INVSRCALPHA);
|
|
|
|
if (FAILED(hr)) goto failed;
|
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
failed:
|
|
|
|
IDirect3DStateBlock9_Apply(This->state);
|
|
|
|
IDirect3DStateBlock9_Release(This->state);
|
|
|
|
This->state = NULL;
|
|
|
|
return D3DXERR_INVALIDDATA;
|
2010-04-02 08:54:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ID3DXLineImpl_Draw(ID3DXLine* iface, CONST D3DXVECTOR2* vertexlist, DWORD vertexlistcount, D3DCOLOR color)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
FIXME("(%p)->(%p, %u, %#x): stub\n", This, vertexlist, vertexlistcount, color);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ID3DXLineImpl_DrawTransform(ID3DXLine* iface, CONST D3DXVECTOR3* vertexlist, DWORD vertexlistcount,
|
|
|
|
CONST D3DXMATRIX* transform, D3DCOLOR color)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
FIXME("(%p)->(%p, %u, %p, %#x): stub\n", This, vertexlist, vertexlistcount, transform, color);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ID3DXLineImpl_SetPattern(ID3DXLine* iface, DWORD pattern)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
FIXME("(%p)->(%#x): stub\n", This, pattern);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DWORD WINAPI ID3DXLineImpl_GetPattern(ID3DXLine* iface)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
FIXME("(%p)->(): stub\n", This);
|
|
|
|
|
|
|
|
return 0xFFFFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ID3DXLineImpl_SetPatternScale(ID3DXLine* iface, FLOAT scale)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
FIXME("(%p)->(%f): stub\n", This, scale);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static FLOAT WINAPI ID3DXLineImpl_GetPatternScale(ID3DXLine* iface)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
FIXME("(%p)->(): stub\n", This);
|
|
|
|
|
|
|
|
return 1.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ID3DXLineImpl_SetWidth(ID3DXLine* iface, FLOAT width)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
FIXME("(%p)->(%f): stub\n", This, width);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static FLOAT WINAPI ID3DXLineImpl_GetWidth(ID3DXLine* iface)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
FIXME("(%p)->(): stub\n", This);
|
|
|
|
|
|
|
|
return 1.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ID3DXLineImpl_SetAntialias(ID3DXLine* iface, BOOL antialias)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
FIXME("(%p)->(%u): stub\n", This, antialias);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL WINAPI ID3DXLineImpl_GetAntialias(ID3DXLine* iface)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
FIXME("(%p)->(): stub\n", This);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ID3DXLineImpl_SetGLLines(ID3DXLine* iface, BOOL gl_lines)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
FIXME("(%p)->(%u): stub\n", This, gl_lines);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BOOL WINAPI ID3DXLineImpl_GetGLLines(ID3DXLine* iface)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
FIXME("(%p)->(): stub\n", This);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ID3DXLineImpl_End(ID3DXLine* iface)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
2011-06-30 00:08:20 +02:00
|
|
|
HRESULT hr;
|
2010-04-02 08:54:42 +02:00
|
|
|
|
2011-06-30 00:08:20 +02:00
|
|
|
TRACE ("(%p)->()\n", This);
|
|
|
|
|
|
|
|
if (This->state == NULL) /* We haven't begun yet. */
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
|
|
|
|
hr = IDirect3DStateBlock9_Apply(This->state);
|
|
|
|
IDirect3DStateBlock9_Release(This->state);
|
|
|
|
This->state = NULL;
|
|
|
|
|
|
|
|
if (FAILED(hr)) return D3DXERR_INVALIDDATA;
|
|
|
|
else return D3D_OK;
|
2010-04-02 08:54:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI ID3DXLineImpl_OnLostDevice(ID3DXLine* iface)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
FIXME("(%p)->(): stub\n", This);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
static HRESULT WINAPI ID3DXLineImpl_OnResetDevice(ID3DXLine* iface)
|
|
|
|
{
|
2010-12-20 11:35:15 +01:00
|
|
|
ID3DXLineImpl *This = impl_from_ID3DXLine(iface);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
FIXME("(%p)->(): stub\n", This);
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ID3DXLineVtbl ID3DXLine_Vtbl =
|
|
|
|
{
|
|
|
|
/*** IUnknown methods ***/
|
|
|
|
ID3DXLineImpl_QueryInterface,
|
|
|
|
ID3DXLineImpl_AddRef,
|
|
|
|
ID3DXLineImpl_Release,
|
|
|
|
/*** ID3DXLine methods ***/
|
|
|
|
ID3DXLineImpl_GetDevice,
|
|
|
|
ID3DXLineImpl_Begin,
|
|
|
|
ID3DXLineImpl_Draw,
|
|
|
|
ID3DXLineImpl_DrawTransform,
|
|
|
|
ID3DXLineImpl_SetPattern,
|
|
|
|
ID3DXLineImpl_GetPattern,
|
|
|
|
ID3DXLineImpl_SetPatternScale,
|
|
|
|
ID3DXLineImpl_GetPatternScale,
|
|
|
|
ID3DXLineImpl_SetWidth,
|
|
|
|
ID3DXLineImpl_GetWidth,
|
|
|
|
ID3DXLineImpl_SetAntialias,
|
|
|
|
ID3DXLineImpl_GetAntialias,
|
|
|
|
ID3DXLineImpl_SetGLLines,
|
|
|
|
ID3DXLineImpl_GetGLLines,
|
|
|
|
ID3DXLineImpl_End,
|
|
|
|
ID3DXLineImpl_OnLostDevice,
|
|
|
|
ID3DXLineImpl_OnResetDevice
|
|
|
|
};
|
|
|
|
|
2012-10-28 20:54:52 +01:00
|
|
|
HRESULT WINAPI D3DXCreateLine(struct IDirect3DDevice9 *device, struct ID3DXLine **line)
|
2010-04-02 08:54:42 +02:00
|
|
|
{
|
|
|
|
ID3DXLineImpl* object;
|
|
|
|
|
|
|
|
TRACE("(%p, %p)\n", device, line);
|
|
|
|
|
|
|
|
if (!device || !line)
|
|
|
|
return D3DERR_INVALIDCALL;
|
|
|
|
|
|
|
|
object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(ID3DXLineImpl));
|
|
|
|
if (!object)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2010-12-20 11:35:15 +01:00
|
|
|
object->ID3DXLine_iface.lpVtbl = &ID3DXLine_Vtbl;
|
2010-04-02 08:54:42 +02:00
|
|
|
object->ref = 1;
|
2011-06-16 22:19:49 +02:00
|
|
|
object->device = device;
|
2011-06-30 00:08:20 +02:00
|
|
|
object->state = NULL; /* We only initialize it on Begin */
|
2011-06-16 22:19:49 +02:00
|
|
|
IDirect3DDevice9_AddRef(device);
|
2010-04-02 08:54:42 +02:00
|
|
|
|
2010-12-20 11:35:15 +01:00
|
|
|
*line = &object->ID3DXLine_iface;
|
2010-04-02 08:54:42 +02:00
|
|
|
|
|
|
|
return D3D_OK;
|
|
|
|
}
|