ILightManager provides an interface for user applications to manipulate the list of lights in the scene. More...
#include <ILightManager.h>
Public Member Functions | |
virtual void | OnNodePostRender (ISceneNode *node)=0 |
Called after the the node specified in OnNodePreRender() has been rendered. More... | |
virtual void | OnNodePreRender (ISceneNode *node)=0 |
Called before the given scene node is rendered. More... | |
virtual void | OnPostRender (void)=0 |
Called after the last scene node is rendered. More... | |
virtual void | OnPreRender (core::array< ISceneNode *> &lightList)=0 |
Called after the scene's light list has been built, but before rendering has begun. More... | |
virtual void | OnRenderPassPostRender (E_SCENE_NODE_RENDER_PASS renderPass)=0 |
Called after the render pass specified in OnRenderPassPreRender() ends. More... | |
virtual void | OnRenderPassPreRender (E_SCENE_NODE_RENDER_PASS renderPass)=0 |
Called before a render pass begins. More... | |
![]() | |
IReferenceCounted () | |
Constructor. More... | |
virtual | ~IReferenceCounted () |
Destructor. More... | |
bool | drop () const |
Drops the object. Decrements the reference counter by one. More... | |
const c8 * | getDebugName () const |
Returns the debug name of the object. More... | |
s32 | getReferenceCount () const |
Get the reference count. More... | |
void | grab () const |
Grabs the object. Increments the reference counter by one. More... | |
Additional Inherited Members | |
![]() | |
void | setDebugName (const c8 *newName) |
Sets the debug name of the object. More... | |
ILightManager provides an interface for user applications to manipulate the list of lights in the scene.
The light list can be trimmed or re-ordered before device/ hardware lights are created, and/or individual lights can be switched on and off before or after each scene node is rendered. It is assumed that the ILightManager implementation will store any data that it wishes to retain, i.e. the ISceneManager to which it is assigned, the lightList, the current render pass, and the current scene node.
Definition at line 25 of file ILightManager.h.
|
pure virtual |
Called after the the node specified in OnNodePreRender() has been rendered.
[in] | node | the scene node that has just been rendered |
|
pure virtual |
Called before the given scene node is rendered.
[in] | node | the scene node that's about to be rendered |
|
pure virtual |
Called after the last scene node is rendered.
After this call returns, the lightList passed to OnPreRender() becomes invalid.
|
pure virtual |
Called after the scene's light list has been built, but before rendering has begun.
As actual device/hardware lights are not created until the ESNRP_LIGHT render pass, this provides an opportunity for the light manager to trim or re-order the light list, before any device/hardware lights have actually been created.
lightList | the Scene Manager's light list, which the light manager may modify. This reference will remain valid until OnPostRender(). |
|
pure virtual |
Called after the render pass specified in OnRenderPassPreRender() ends.
[in] | renderPass | the render pass that has finished |
|
pure virtual |
Called before a render pass begins.
renderPass | the render pass that's about to begin |