7 IEffectMatrices
Chuck Walbourn редактировал(а) эту страницу 2022-04-26 16:56:25 -07:00
DirectXTK Effects

This abstract interface allows setting rendering matrices. This interface is implemented by all built-in effects, but is not required for all effects (i.e. a valid effect can implement IEffect and not implement IEffectMatrices).

Obtaining the interface

There are two methods used in DirectX Tool Kit. For simple cases, just maintain a reference directly to the desired effect class:

std::shared_ptr<BasicEffect> effect;

...

effect->SetWorld( world );
effect->SetView( view );
effect->SetProjection( projection );

If you are setting all three matrices at once, you can use:

effect->SetMatrices(world, view, projection);

For more general cases where a number of effect classes can be in use (such as Model which uses a mix of BasicEffect, DualTextureEffect, and/or SkinnedEffect), use Run-Time Type Information (RTTI) to obtain the interface.

std::shared_ptr<IEffect> effect;

...

auto imatrices = dynamic_cast<IEffectMatrices*>( effect.get() );
if ( imatrices )
{
    imatrices->SetMatrices( world, view, projection );
}

For the specific case of IEffectMatrices, you could try to make the assumption that all effects in use implement IEffectMatrices and make use of a reinterpret_cast<> or old-school C-style cast instead of dynamic_cast<>, however this will not work since IEffectMatrices is not derived from IEffect. You would have to assume a specific class of effect instead.

Setting matrices

The matrices used by effects can be left-handed or right-handed coordinates, but are always in row-major form.

As an optimization, most shaders actually consume matrices in column-major form, so effects implementations will transpose them as needed when setting them into the constant buffer.

The effects implementations will lazily update various computations (such as inverses and concatenations of matrices), so that changing only one of the three matrices can be less computationally expensive than changing all three.

Most BasicEffect shaders make no particular distinction between the view, and projection matrices. You can, for example, provide the combined view*projection matrix with SetProjection and leave the others identity with the same results.

The BasicEffect shaders require the world matrix to be distinct from the view and projection matrices for doing proper transforms of normals into world coordinates.