天行健 君子当自强而不息

深入理解光照计算模型(3)

Specular Lighting (Direct3D 9)

Modeling specular reflection requires that the system not only know in what direction light is traveling, but also the direction to the viewer's eye. The system uses a simplified version of the Phong specular-reflection model, which employs a halfway vector to approximate the intensity of specular reflection.

The default lighting state does not calculate specular highlights. To enable specular lighting, be sure to set D3DRS_SPECULARENABLE to TRUE.

 

Specular Lighting Equation

Specular Lighting is described by the following equation.

Specular Lighting = Cs * sum[Ls * (N • H)P * Atten * Spot]

The following table identifies the variables, their types, and their ranges.

Parameter Default value Type Description
Cs (0,0,0,0) D3DCOLORVALUE Specular color.
sum N/A N/A Summation of each light's specular component.
N N/A D3DVECTOR Vertex normal.
H N/A D3DVECTOR Half way vector. See the section on the halfway vector.
P 0.0 FLOAT Specular reflection power. Range is 0 to +infinity
Ls (0,0,0,0) D3DCOLORVALUE Light specular color.
Atten N/A FLOAT Light attenuation value. See Attenuation and Spotlight Factor (Direct3D 9).
Spot N/A FLOAT Spotlight factor. See Attenuation and Spotlight Factor (Direct3D 9).

The value for Cs is either:

if(SPECULARMATERIALSOURCE == D3DMCS_COLOR1)
C = color1;
  • vertex color1, if the specular material source is D3DMCS_COLOR1, and the first vertex color is supplied in the vertex declaration.
  • vertex color2, if specular material source is D3DMCS_COLOR2, and the second vertex color is supplied in the vertex declaration.
  • material specular color

Note    If either specular material source option is used and the vertex color is not provided, then the material specular color is used.

Specular components are clamped to be from 0 to 255, after all lights are processed and interpolated separately.

 

The Halfway Vector

The halfway vector (H) exists midway between two vectors: the vector from an object vertex to the light source, and the vector from an object vertex to the camera position. Direct3D provides two ways to compute the halfway vector. When D3DRS_LOCALVIEWER is set to TRUE, the system calculates the halfway vector using the position of the camera and the position of the vertex, along with the light's direction vector. The following formula illustrates this.

H = norm(norm(Cp - Vp) + Ldir)

 

Parameter Default value Type Description
Cp N/A D3DVECTOR Camera position.
Vp N/A D3DVECTOR Vertex position.
Ldir N/A D3DVECTOR Direction vector from vertex position to the light position.

Determining the halfway vector in this manner can be computationally intensive. As an alternative, setting D3DRS_LOCALVIEWER = FALSE instructs the system to act as though the viewpoint is infinitely distant on the z-axis. This is reflected in the following formula.

H = norm((0,0,1) + Ldir)

This setting is less computationally intensive, but much less accurate, so it is best used by applications that use orthogonal projection.


Example

In this example, the object is colored using the scene specular light color and a material specular color. The code is shown below.

D3DLIGHT9 light;
ZeroMemory( &light, sizeof(light) );
light.Type = D3DLIGHT_DIRECTIONAL;

D3DXVECTOR3 vecDir;
vecDir = D3DXVECTOR3(0.5f, 0.0f, -0.5f);
D3DXVec3Normalize( (D3DXVECTOR3*)&light.Direction, &vecDir );

light.Specular.r = 1.0f;
light.Specular.g = 1.0f;
light.Specular.b = 1.0f;
light.Specular.a = 1.0f;

light.Range = 1000;
light.Falloff = 0;
light.Attenuation0 = 1;
light.Attenuation1 = 0;
light.Attenuation2 = 0;
m_pd3dDevice->SetLight( 0, &light );
m_pd3dDevice->LightEnable( 0, TRUE );
m_pd3dDevice->SetRenderState( D3DRS_SPECULARENABLE, TRUE );
D3DMATERIAL9 mtrl;
ZeroMemory( &mtrl, sizeof(mtrl) );

mtrl.Specular.r = 0.5f;
mtrl.Specular.g = 0.5f;
mtrl.Specular.b = 0.5f;
mtrl.Specular.a = 0.5f;
mtrl.Power = 20;
m_pd3dDevice->SetMaterial( &mtrl );
m_pd3dDevice->SetRenderState(D3DRS_SPECULARMATERIALSOURCE, D3DMCS_MATERIAL);

According to the equation, the resulting color for the object vertices is a combination of the material color and the light color.

These two images show the specular material color, which is gray, and the specular light color, which is white.


posted on 2008-05-05 11:10 lovedday 阅读(910) 评论(0)  编辑 收藏 引用


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理


公告

导航

统计

常用链接

随笔分类(178)

3D游戏编程相关链接

搜索

最新评论