123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- //-----------------------------------------------------------------------------
- // Copyright (c) 2012 GarageGames, LLC
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to
- // deal in the Software without restriction, including without limitation the
- // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- // sell copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- // IN THE SOFTWARE.
- //-----------------------------------------------------------------------------
- #ifndef _DEFERRED_MGR_H_
- #define _DEFERRED_MGR_H_
- #include "renderInstance/renderTexTargetBinManager.h"
- #include "materials/matInstance.h"
- #include "materials/processedShaderMaterial.h"
- #include "shaderGen/conditionerFeature.h"
- #include "core/util/autoPtr.h"
- // Forward declare
- class DeferredMatInstance;
- // This render manager renders opaque objects to the z-buffer as a z-fill pass.
- // It can optionally accumulate data from this opaque render pass into a render
- // target for later use.
- class RenderDeferredMgr : public RenderTexTargetBinManager
- {
- typedef RenderTexTargetBinManager Parent;
- public:
- // registered buffer name
- static const String BufferName;
- // andremwac: Deferred Rendering
- static const String ColorBufferName;
- static const String MatInfoBufferName;
- // Generic Deferred Render Instance Type
- static const RenderInstType RIT_Deferred;
- RenderDeferredMgr( bool gatherDepth = true,
- GFXFormat format = GFXFormatR16G16B16A16 );
- virtual ~RenderDeferredMgr();
- virtual void setDeferredMaterial( DeferredMatInstance *mat );
- // RenderBinManager interface
- virtual void render(SceneRenderState * state);
- virtual void sort();
- virtual void clear();
- virtual void addElement( RenderInst *inst );
- // ConsoleObject
- DECLARE_CONOBJECT(RenderDeferredMgr);
- typedef Signal<void(const SceneRenderState*, RenderDeferredMgr*, bool)> RenderSignal;
- static RenderSignal& getRenderSignal();
- static const U32 OpaqueStaticLitMask = BIT(1); ///< Stencil mask for opaque, lightmapped pixels
- static const U32 OpaqueDynamicLitMask = BIT(0); ///< Stencil mask for opaque, dynamic lit pixels
- static const GFXStateBlockDesc &getOpaqueStencilTestDesc();
- static const GFXStateBlockDesc &getOpaqueStenciWriteDesc(bool lightmappedGeometry = true);
- virtual bool setTargetSize(const Point2I &newTargetSize);
- inline BaseMatInstance* getDeferredMaterial( BaseMatInstance *mat );
- protected:
- /// The terrain render instance elements.
- Vector< MainSortElem > mTerrainElementList;
- /// The object render instance elements.
- Vector< MainSortElem > mObjectElementList;
- DeferredMatInstance *mDeferredMatInstance;
- ///
- Vector< MainSortElem > mProbeElementList;
- virtual void _registerFeatures();
- virtual void _unregisterFeatures();
- virtual bool _updateTargets();
- virtual void _createDeferredMaterial();
- bool _lightManagerActivate(bool active);
- // Deferred Shading
- NamedTexTarget mColorTarget;
- NamedTexTarget mMatInfoTarget;
- GFXTexHandle mColorTex;
- GFXTexHandle mMatInfoTex;
- GFXTexHandle mDiffuseLightTex;
- GFXTexHandle mSpecularLightTex;
- GFXShaderConstBufferRef mShaderConsts;
- };
- //------------------------------------------------------------------------------
- class ProcessedDeferredMaterial : public ProcessedShaderMaterial
- {
- typedef ProcessedShaderMaterial Parent;
-
- public:
- ProcessedDeferredMaterial(Material& mat, const RenderDeferredMgr *deferredMgr);
- virtual U32 getNumStages();
- virtual void addStateBlockDesc(const GFXStateBlockDesc& desc);
- protected:
- virtual void _determineFeatures( U32 stageNum, MaterialFeatureData &fd, const FeatureSet &features );
- const RenderDeferredMgr *mDeferredMgr;
- bool mIsLightmappedGeometry;
- };
- //------------------------------------------------------------------------------
- class DeferredMatInstance : public MatInstance
- {
- typedef MatInstance Parent;
- public:
- DeferredMatInstance(MatInstance* root, const RenderDeferredMgr *deferredMgr);
- virtual ~DeferredMatInstance();
- bool init()
- {
- return init( mFeatureList, mVertexFormat );
- }
- // MatInstance
- virtual bool init( const FeatureSet &features,
- const GFXVertexFormat *vertexFormat );
- protected:
- virtual ProcessedMaterial* getShaderMaterial();
- const RenderDeferredMgr *mDeferredMgr;
- };
- //------------------------------------------------------------------------------
- class DeferredMatInstanceHook : public MatInstanceHook
- {
- public:
- DeferredMatInstanceHook(MatInstance *baseMatInst, const RenderDeferredMgr *deferredMgr);
- virtual ~DeferredMatInstanceHook();
- virtual DeferredMatInstance *getDeferredMatInstance() { return mHookedDeferredMatInst; }
- virtual const MatInstanceHookType& getType() const { return Type; }
- /// The type for deferred material hooks.
- static const MatInstanceHookType Type;
- protected:
- DeferredMatInstance *mHookedDeferredMatInst;
- const RenderDeferredMgr *mDeferredManager;
- };
- //------------------------------------------------------------------------------
- // A very simple, default depth conditioner feature
- class LinearEyeDepthConditioner : public ConditionerFeature
- {
- typedef ConditionerFeature Parent;
- public:
- LinearEyeDepthConditioner(const GFXFormat bufferFormat)
- : Parent(bufferFormat)
- {
- }
- virtual String getName()
- {
- return "Linear Eye-Space Depth Conditioner";
- }
- virtual void processPix( Vector<ShaderComponent*> &componentList, const MaterialFeatureData &fd );
- protected:
- virtual Var *_conditionOutput( Var *unconditionedOutput, MultiLine *meta );
- virtual Var *_unconditionInput( Var *conditionedInput, MultiLine *meta );
- virtual Var *printMethodHeader( MethodType methodType, const String &methodName, Stream &stream, MultiLine *meta );
- };
- inline BaseMatInstance* RenderDeferredMgr::getDeferredMaterial( BaseMatInstance *mat )
- {
- DeferredMatInstanceHook *hook = static_cast<DeferredMatInstanceHook*>( mat->getHook( DeferredMatInstanceHook::Type ) );
- if ( !hook )
- {
- hook = new DeferredMatInstanceHook( static_cast<MatInstance*>( mat ), this );
- mat->addHook( hook );
- }
- return hook->getDeferredMatInstance();
- }
- #endif // _DEFERRED_MGR_H_
|