1999-01-03 18:00:19 +01:00
|
|
|
/* Direct3D Light
|
2002-11-21 22:04:16 +01:00
|
|
|
* Copyright (c) 1998 / 2002 Lionel ULMER
|
2008-10-18 19:19:45 +02:00
|
|
|
* Copyright (c) 2006 Stefan DÖSINGER
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This file contains the implementation of Direct3DLight.
|
|
|
|
*
|
|
|
|
* 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-03-10 00:29:33 +01:00
|
|
|
*/
|
1999-01-03 18:00:19 +01:00
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "config.h"
|
2006-06-09 19:36:12 +02:00
|
|
|
#include "wine/port.h"
|
1999-01-03 18:00:19 +01:00
|
|
|
|
2006-06-09 19:36:12 +02:00
|
|
|
#include "ddraw_private.h"
|
1999-01-03 18:00:19 +01:00
|
|
|
|
2010-08-19 18:57:50 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(ddraw);
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2010-08-17 19:03:23 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* light_update
|
|
|
|
*
|
|
|
|
* Updates the Direct3DDevice7 lighting parameters
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
static void light_update(IDirect3DLightImpl *light)
|
|
|
|
{
|
|
|
|
IDirect3DDeviceImpl *device;
|
|
|
|
|
|
|
|
TRACE("light %p.\n", light);
|
|
|
|
|
|
|
|
if (!light->active_viewport || !light->active_viewport->active_device) return;
|
|
|
|
device = light->active_viewport->active_device;
|
|
|
|
|
|
|
|
IDirect3DDevice7_SetLight((IDirect3DDevice7 *)device, light->dwLightIndex, &light->light7);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* light_activate
|
|
|
|
*
|
|
|
|
* Uses the Direct3DDevice7::LightEnable method to active the light
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
void light_activate(IDirect3DLightImpl *light)
|
|
|
|
{
|
|
|
|
IDirect3DDeviceImpl *device;
|
|
|
|
|
|
|
|
TRACE("light %p.\n", light);
|
|
|
|
|
|
|
|
if (!light->active_viewport || !light->active_viewport->active_device) return;
|
|
|
|
device = light->active_viewport->active_device;
|
|
|
|
|
|
|
|
light_update(light);
|
|
|
|
if (!(light->light.dwFlags & D3DLIGHT_ACTIVE))
|
|
|
|
{
|
|
|
|
IDirect3DDevice7_LightEnable((IDirect3DDevice7 *)device, light->dwLightIndex, TRUE);
|
|
|
|
light->light.dwFlags |= D3DLIGHT_ACTIVE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* light_deactivate
|
|
|
|
*
|
|
|
|
* Uses the Direct3DDevice7::LightEnable method to deactivate the light
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
void light_deactivate(IDirect3DLightImpl *light)
|
|
|
|
{
|
|
|
|
IDirect3DDeviceImpl *device;
|
|
|
|
|
|
|
|
TRACE("light %p.\n", light);
|
|
|
|
|
|
|
|
if (!light->active_viewport || !light->active_viewport->active_device) return;
|
|
|
|
device = light->active_viewport->active_device;
|
|
|
|
|
|
|
|
/* If was not active, activate it */
|
|
|
|
if (light->light.dwFlags & D3DLIGHT_ACTIVE)
|
|
|
|
{
|
|
|
|
IDirect3DDevice7_LightEnable((IDirect3DDevice7 *)device, light->dwLightIndex, FALSE);
|
|
|
|
light->light.dwFlags &= ~D3DLIGHT_ACTIVE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-09 19:36:12 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* IUnknown Methods.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DLight::QueryInterface
|
|
|
|
*
|
|
|
|
* Queries the object for different interfaces. Unimplemented for this
|
|
|
|
* object at the moment
|
|
|
|
*
|
|
|
|
* Params:
|
|
|
|
* riid: Interface id asked for
|
|
|
|
* obj: Address to return the resulting pointer at.
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* E_NOINTERFACE, because it's a stub
|
|
|
|
*****************************************************************************/
|
2010-08-19 18:57:50 +02:00
|
|
|
static HRESULT WINAPI IDirect3DLightImpl_QueryInterface(IDirect3DLight *iface, REFIID riid, void **object)
|
2002-11-21 22:04:16 +01:00
|
|
|
{
|
2010-08-19 18:57:50 +02:00
|
|
|
FIXME("iface %p, riid %s, object %p stub!\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
|
|
|
*object = NULL;
|
2006-06-09 19:36:12 +02:00
|
|
|
return E_NOINTERFACE;
|
1999-01-03 18:00:19 +01:00
|
|
|
}
|
|
|
|
|
2006-06-09 19:36:12 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DLight::AddRef
|
|
|
|
*
|
|
|
|
* Increases the refcount by 1
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* The new refcount
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
static ULONG WINAPI
|
|
|
|
IDirect3DLightImpl_AddRef(IDirect3DLight *iface)
|
2002-11-21 22:04:16 +01:00
|
|
|
{
|
2009-01-22 10:33:36 +01:00
|
|
|
IDirect3DLightImpl *This = (IDirect3DLightImpl *)iface;
|
2005-01-09 18:29:21 +01:00
|
|
|
ULONG ref = InterlockedIncrement(&This->ref);
|
|
|
|
|
2010-08-19 18:57:50 +02:00
|
|
|
TRACE("%p increasing refcount to %u.\n", This, ref);
|
2005-01-09 18:29:21 +01:00
|
|
|
|
|
|
|
return ref;
|
1999-01-03 18:00:19 +01:00
|
|
|
}
|
|
|
|
|
2006-06-09 19:36:12 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DLight::Release
|
|
|
|
*
|
|
|
|
* Reduces the refcount by one. If the refcount falls to 0, the object
|
|
|
|
* is destroyed
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* The new refcount
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
static ULONG WINAPI
|
|
|
|
IDirect3DLightImpl_Release(IDirect3DLight *iface)
|
1999-01-03 18:00:19 +01:00
|
|
|
{
|
2009-01-22 10:33:36 +01:00
|
|
|
IDirect3DLightImpl *This = (IDirect3DLightImpl *)iface;
|
2005-01-09 18:29:21 +01:00
|
|
|
ULONG ref = InterlockedDecrement(&This->ref);
|
|
|
|
|
2010-08-19 18:57:50 +02:00
|
|
|
TRACE("%p decreasing refcount to %u.\n", This, ref);
|
2005-01-09 18:29:21 +01:00
|
|
|
|
|
|
|
if (!ref) {
|
2002-11-21 22:04:16 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
2010-09-08 11:24:49 +02:00
|
|
|
return 0;
|
2002-11-21 22:04:16 +01:00
|
|
|
}
|
2005-01-09 18:29:21 +01:00
|
|
|
return ref;
|
1999-01-03 18:00:19 +01:00
|
|
|
}
|
|
|
|
|
2006-06-09 19:36:12 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DLight Methods.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DLight::Initialize
|
|
|
|
*
|
|
|
|
* Initializes the interface. This implementation is a no-op, because
|
|
|
|
* initialization takes place at creation time
|
|
|
|
*
|
|
|
|
* Params:
|
|
|
|
* Direct3D: Pointer to an IDirect3D interface.
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* D3D_OK
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2010-08-19 18:57:50 +02:00
|
|
|
static HRESULT WINAPI IDirect3DLightImpl_Initialize(IDirect3DLight *iface, IDirect3D *d3d)
|
1999-01-03 18:00:19 +01:00
|
|
|
{
|
2010-08-19 18:57:50 +02:00
|
|
|
TRACE("iface %p, d3d %p.\n", iface, d3d);
|
|
|
|
|
2006-06-09 19:36:12 +02:00
|
|
|
return D3D_OK;
|
1999-01-03 18:00:19 +01:00
|
|
|
}
|
|
|
|
|
2006-06-09 19:36:12 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DLight::SetLight
|
|
|
|
*
|
|
|
|
* Assigns a lighting value to this object
|
|
|
|
*
|
|
|
|
* Params:
|
2008-04-02 21:26:42 +02:00
|
|
|
* Light: Lighting parameter to set
|
2006-06-09 19:36:12 +02:00
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* D3D_OK on success
|
|
|
|
* DDERR_INVALIDPARAMS if Light is NULL
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2007-04-21 23:16:34 +02:00
|
|
|
static void dump_light(const D3DLIGHT2 *light)
|
1999-01-03 18:00:19 +01:00
|
|
|
{
|
2007-12-04 23:27:33 +01:00
|
|
|
TRACE(" - dwSize : %d\n", light->dwSize);
|
1999-01-03 18:00:19 +01:00
|
|
|
}
|
|
|
|
|
2003-01-21 00:24:05 +01:00
|
|
|
static const float zero_value[] = {
|
|
|
|
0.0, 0.0, 0.0, 0.0
|
|
|
|
};
|
|
|
|
|
2006-06-09 19:36:12 +02:00
|
|
|
static HRESULT WINAPI
|
|
|
|
IDirect3DLightImpl_SetLight(IDirect3DLight *iface,
|
|
|
|
D3DLIGHT *lpLight)
|
1999-01-03 18:00:19 +01:00
|
|
|
{
|
2009-01-22 10:33:36 +01:00
|
|
|
IDirect3DLightImpl *This = (IDirect3DLightImpl *)iface;
|
2003-01-21 00:24:05 +01:00
|
|
|
LPD3DLIGHT7 light7 = &(This->light7);
|
2010-08-19 18:57:50 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, light %p.\n", iface, lpLight);
|
|
|
|
|
|
|
|
if (TRACE_ON(ddraw))
|
|
|
|
{
|
2005-11-10 13:14:56 +01:00
|
|
|
TRACE(" Light definition :\n");
|
2010-09-08 11:24:49 +02:00
|
|
|
dump_light((LPD3DLIGHT2) lpLight);
|
2002-11-21 22:04:16 +01:00
|
|
|
}
|
2003-01-21 00:24:05 +01:00
|
|
|
|
|
|
|
if ( (lpLight->dltType == 0) || (lpLight->dltType > D3DLIGHT_PARALLELPOINT) )
|
|
|
|
return DDERR_INVALIDPARAMS;
|
2009-09-01 09:09:37 +02:00
|
|
|
|
2003-01-21 00:24:05 +01:00
|
|
|
if ( lpLight->dltType == D3DLIGHT_PARALLELPOINT )
|
2009-09-01 09:09:37 +02:00
|
|
|
FIXME("D3DLIGHT_PARALLELPOINT no supported\n");
|
|
|
|
|
2003-01-21 00:24:05 +01:00
|
|
|
/* Translate D3DLIGH2 structure to D3DLIGHT7 */
|
|
|
|
light7->dltType = lpLight->dltType;
|
|
|
|
light7->dcvDiffuse = lpLight->dcvColor;
|
2009-09-01 09:09:37 +02:00
|
|
|
if ((((LPD3DLIGHT2)lpLight)->dwFlags & D3DLIGHT_NO_SPECULAR) != 0)
|
2003-01-21 00:24:05 +01:00
|
|
|
light7->dcvSpecular = lpLight->dcvColor;
|
|
|
|
else
|
2009-09-01 09:09:37 +02:00
|
|
|
light7->dcvSpecular = *(const D3DCOLORVALUE*)zero_value;
|
2003-01-21 00:24:05 +01:00
|
|
|
light7->dcvAmbient = lpLight->dcvColor;
|
|
|
|
light7->dvPosition = lpLight->dvPosition;
|
|
|
|
light7->dvDirection = lpLight->dvDirection;
|
|
|
|
light7->dvRange = lpLight->dvRange;
|
|
|
|
light7->dvFalloff = lpLight->dvFalloff;
|
|
|
|
light7->dvAttenuation0 = lpLight->dvAttenuation0;
|
|
|
|
light7->dvAttenuation1 = lpLight->dvAttenuation1;
|
|
|
|
light7->dvAttenuation2 = lpLight->dvAttenuation2;
|
|
|
|
light7->dvTheta = lpLight->dvTheta;
|
|
|
|
light7->dvPhi = lpLight->dvPhi;
|
|
|
|
|
2007-05-30 16:16:04 +02:00
|
|
|
EnterCriticalSection(&ddraw_cs);
|
2002-11-21 22:04:16 +01:00
|
|
|
memcpy(&This->light, lpLight, lpLight->dwSize);
|
2010-08-17 19:03:23 +02:00
|
|
|
if (This->light.dwFlags & D3DLIGHT_ACTIVE)
|
|
|
|
light_update(This);
|
2007-05-30 16:16:04 +02:00
|
|
|
LeaveCriticalSection(&ddraw_cs);
|
2006-06-09 19:36:12 +02:00
|
|
|
return D3D_OK;
|
1999-01-03 18:00:19 +01:00
|
|
|
}
|
|
|
|
|
2006-06-09 19:36:12 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* IDirect3DLight::GetLight
|
|
|
|
*
|
|
|
|
* Returns the parameters currently assigned to the IDirect3DLight object
|
|
|
|
*
|
|
|
|
* Params:
|
|
|
|
* Light: Pointer to an D3DLIGHT structure to store the parameters
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
* D3D_OK on success
|
|
|
|
* DDERR_INVALIDPARAMS if Light is NULL
|
|
|
|
*****************************************************************************/
|
|
|
|
static HRESULT WINAPI
|
|
|
|
IDirect3DLightImpl_GetLight(IDirect3DLight *iface,
|
|
|
|
D3DLIGHT *lpLight)
|
1999-01-03 18:00:19 +01:00
|
|
|
{
|
2009-01-22 10:33:36 +01:00
|
|
|
IDirect3DLightImpl *This = (IDirect3DLightImpl *)iface;
|
2010-08-19 18:57:50 +02:00
|
|
|
|
|
|
|
TRACE("iface %p, light %p.\n", iface, lpLight);
|
|
|
|
|
|
|
|
if (TRACE_ON(ddraw))
|
|
|
|
{
|
2005-11-10 13:14:56 +01:00
|
|
|
TRACE(" Returning light definition :\n");
|
2010-09-08 11:24:49 +02:00
|
|
|
dump_light(&This->light);
|
2002-11-21 22:04:16 +01:00
|
|
|
}
|
2007-05-30 16:16:04 +02:00
|
|
|
|
|
|
|
EnterCriticalSection(&ddraw_cs);
|
2002-11-21 22:04:16 +01:00
|
|
|
memcpy(lpLight, &This->light, lpLight->dwSize);
|
2007-05-30 16:16:04 +02:00
|
|
|
LeaveCriticalSection(&ddraw_cs);
|
|
|
|
|
2002-11-21 22:04:16 +01:00
|
|
|
return DD_OK;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2010-08-18 19:26:21 +02:00
|
|
|
static const struct IDirect3DLightVtbl d3d_light_vtbl =
|
1999-01-03 18:00:19 +01:00
|
|
|
{
|
2006-06-09 19:36:12 +02:00
|
|
|
/*** IUnknown Methods ***/
|
|
|
|
IDirect3DLightImpl_QueryInterface,
|
|
|
|
IDirect3DLightImpl_AddRef,
|
|
|
|
IDirect3DLightImpl_Release,
|
|
|
|
/*** IDirect3DLight Methods ***/
|
|
|
|
IDirect3DLightImpl_Initialize,
|
|
|
|
IDirect3DLightImpl_SetLight,
|
|
|
|
IDirect3DLightImpl_GetLight
|
2002-11-21 22:04:16 +01:00
|
|
|
};
|
2010-08-18 19:26:21 +02:00
|
|
|
|
|
|
|
void d3d_light_init(IDirect3DLightImpl *light, IDirectDrawImpl *ddraw)
|
|
|
|
{
|
|
|
|
light->lpVtbl = &d3d_light_vtbl;
|
|
|
|
light->ref = 1;
|
|
|
|
light->ddraw = ddraw;
|
|
|
|
}
|