| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include "BsCorePrerequisites.h"
- #include "BsModule.h"
- #include "BsBlendState.h"
- #include "BsRasterizerState.h"
- #include "BsDepthStencilState.h"
- #include "BsSamplerState.h"
- namespace BansheeEngine
- {
- /** @addtogroup RenderAPI-Internal
- * @{
- */
- /** Handles creation of various render states. */
- class BS_CORE_EXPORT RenderStateManager : public Module <RenderStateManager>
- {
- public:
- /** Creates and initializes a new SamplerState. */
- SamplerStatePtr createSamplerState(const SAMPLER_STATE_DESC& desc) const;
- /** Creates and initializes a new DepthStencilState. */
- DepthStencilStatePtr createDepthStencilState(const DEPTH_STENCIL_STATE_DESC& desc) const;
- /** Creates and initializes a new RasterizerState. */
- RasterizerStatePtr createRasterizerState(const RASTERIZER_STATE_DESC& desc) const;
- /** Creates and initializes a new BlendState. */
- BlendStatePtr createBlendState(const BLEND_STATE_DESC& desc) const;
- /**
- * Creates an uninitialized sampler state. Requires manual initialization after creation.
- *
- * @note Internal method.
- */
- SamplerStatePtr _createSamplerStatePtr(const SAMPLER_STATE_DESC& desc) const;
- /**
- * Creates an uninitialized depth-stencil state. Requires manual initialization after creation.
- *
- * @note Internal method.
- */
- DepthStencilStatePtr _createDepthStencilStatePtr(const DEPTH_STENCIL_STATE_DESC& desc) const;
- /**
- * Creates an uninitialized rasterizer state. Requires manual initialization after creation.
- *
- * @note Internal method.
- */
- RasterizerStatePtr _createRasterizerStatePtr(const RASTERIZER_STATE_DESC& desc) const;
- /**
- * Creates an uninitialized blend state. Requires manual initialization after creation.
- *
- * @note Internal method.
- */
- BlendStatePtr _createBlendStatePtr(const BLEND_STATE_DESC& desc) const;
- /** Gets a sampler state initialized with default options. */
- const SamplerStatePtr& getDefaultSamplerState() const;
- /** Gets a blend state initialized with default options. */
- const BlendStatePtr& getDefaultBlendState() const;
- /** Gets a rasterizer state initialized with default options. */
- const RasterizerStatePtr& getDefaultRasterizerState() const;
- /** Gets a depth stencil state initialized with default options. */
- const DepthStencilStatePtr& getDefaultDepthStencilState() const;
- private:
- friend class SamplerState;
- friend class BlendState;
- friend class RasterizerState;
- friend class DepthStencilState;
- mutable SamplerStatePtr mDefaultSamplerState;
- mutable BlendStatePtr mDefaultBlendState;
- mutable RasterizerStatePtr mDefaultRasterizerState;
- mutable DepthStencilStatePtr mDefaultDepthStencilState;
- };
- /** Handles creation of various render states. */
- class BS_CORE_EXPORT RenderStateCoreManager : public Module<RenderStateCoreManager>
- {
- private:
- /** Contains data about a cached blend state. */
- struct CachedBlendState
- {
- CachedBlendState()
- :id(0)
- { }
- CachedBlendState(UINT32 id)
- :id(id)
- { }
- std::weak_ptr<BlendStateCore> state;
- UINT32 id;
- };
- /** Contains data about a cached rasterizer state. */
- struct CachedRasterizerState
- {
- CachedRasterizerState()
- :id(0)
- { }
- CachedRasterizerState(UINT32 id)
- :id(id)
- { }
- std::weak_ptr<RasterizerStateCore> state;
- UINT32 id;
- };
- /** Contains data about a cached depth stencil state. */
- struct CachedDepthStencilState
- {
- CachedDepthStencilState()
- :id(0)
- { }
- CachedDepthStencilState(UINT32 id)
- :id(id)
- { }
- std::weak_ptr<DepthStencilStateCore> state;
- UINT32 id;
- };
- public:
- RenderStateCoreManager();
- /** @copydoc RenderStateManager::createSamplerState */
- SPtr<SamplerStateCore> createSamplerState(const SAMPLER_STATE_DESC& desc) const;
- /** @copydoc RenderStateManager::createDepthStencilState */
- SPtr<DepthStencilStateCore> createDepthStencilState(const DEPTH_STENCIL_STATE_DESC& desc) const;
- /** @copydoc RenderStateManager::createRasterizerState */
- SPtr<RasterizerStateCore> createRasterizerState(const RASTERIZER_STATE_DESC& desc) const;
- /** @copydoc RenderStateManager::createBlendState */
- SPtr<BlendStateCore> createBlendState(const BLEND_STATE_DESC& desc) const;
- /** Creates an uninitialized sampler state. Requires manual initialization after creation. */
- SPtr<SamplerStateCore> _createSamplerState(const SAMPLER_STATE_DESC& desc) const;
- /** Creates an uninitialized depth-stencil state. Requires manual initialization after creation. */
- SPtr<DepthStencilStateCore> _createDepthStencilState(const DEPTH_STENCIL_STATE_DESC& desc) const;
- /** Creates an uninitialized rasterizer state. Requires manual initialization after creation. */
- SPtr<RasterizerStateCore> _createRasterizerState(const RASTERIZER_STATE_DESC& desc) const;
- /** Creates an uninitialized blend state. Requires manual initialization after creation. */
- SPtr<BlendStateCore> _createBlendState(const BLEND_STATE_DESC& desc) const;
- /** Gets a sampler state initialized with default options. */
- const SPtr<SamplerStateCore>& getDefaultSamplerState() const;
- /** Gets a blend state initialized with default options. */
- const SPtr<BlendStateCore>& getDefaultBlendState() const;
- /** Gets a rasterizer state initialized with default options. */
- const SPtr<RasterizerStateCore>& getDefaultRasterizerState() const;
- /** Gets a depth stencil state initialized with default options. */
- const SPtr<DepthStencilStateCore>& getDefaultDepthStencilState() const;
- protected:
- friend class SamplerState;
- friend class BlendState;
- friend class RasterizerState;
- friend class DepthStencilState;
- friend class SamplerStateCore;
- friend class BlendStateCore;
- friend class RasterizerStateCore;
- friend class DepthStencilStateCore;
- /** @copydoc Module::onShutDown */
- void onShutDown() override;
- /** @copydoc createSamplerState */
- virtual SPtr<SamplerStateCore> createSamplerStateInternal(const SAMPLER_STATE_DESC& desc) const;
- /** @copydoc createBlendState */
- virtual SPtr<BlendStateCore> createBlendStateInternal(const BLEND_STATE_DESC& desc, UINT32 id) const;
- /** @copydoc createRasterizerState */
- virtual SPtr<RasterizerStateCore> createRasterizerStateInternal(const RASTERIZER_STATE_DESC& desc, UINT32 id) const;
- /** @copydoc createDepthStencilState */
- virtual SPtr<DepthStencilStateCore> createDepthStencilStateInternal(const DEPTH_STENCIL_STATE_DESC& desc, UINT32 id) const;
- private:
- /** Triggered when a new sampler state is created. */
- void notifySamplerStateCreated(const SAMPLER_STATE_DESC& desc, const SPtr<SamplerStateCore>& state) const;
- /** Triggered when a new sampler state is created. */
- void notifyBlendStateCreated(const BLEND_STATE_DESC& desc, const CachedBlendState& state) const;
- /** Triggered when a new sampler state is created. */
- void notifyRasterizerStateCreated(const RASTERIZER_STATE_DESC& desc, const CachedRasterizerState& state) const;
- /** Triggered when a new sampler state is created. */
- void notifyDepthStencilStateCreated(const DEPTH_STENCIL_STATE_DESC& desc, const CachedDepthStencilState& state) const;
- /**
- * Triggered when the last reference to a specific sampler state is destroyed, which means we must clear our cached
- * version as well.
- */
- void notifySamplerStateDestroyed(const SAMPLER_STATE_DESC& desc) const;
- /**
- * Attempts to find a cached sampler state corresponding to the provided descriptor. Returns null if one doesn't
- * exist.
- */
- SPtr<SamplerStateCore> findCachedState(const SAMPLER_STATE_DESC& desc) const;
- /**
- * Attempts to find a cached blend state corresponding to the provided descriptor. Returns null if one doesn't exist.
- */
- SPtr<BlendStateCore> findCachedState(const BLEND_STATE_DESC& desc, UINT32& id) const;
- /**
- * Attempts to find a cached rasterizer state corresponding to the provided descriptor. Returns null if one doesn't
- * exist.
- */
- SPtr<RasterizerStateCore> findCachedState(const RASTERIZER_STATE_DESC& desc, UINT32& id) const;
- /**
- * Attempts to find a cached depth-stencil state corresponding to the provided descriptor. Returns null if one
- * doesn't exist.
- */
- SPtr<DepthStencilStateCore> findCachedState(const DEPTH_STENCIL_STATE_DESC& desc, UINT32& id) const;
- mutable SPtr<SamplerStateCore> mDefaultSamplerState;
- mutable SPtr<BlendStateCore> mDefaultBlendState;
- mutable SPtr<RasterizerStateCore> mDefaultRasterizerState;
- mutable SPtr<DepthStencilStateCore> mDefaultDepthStencilState;
- mutable UnorderedMap<SAMPLER_STATE_DESC, std::weak_ptr<SamplerStateCore>> mCachedSamplerStates;
- mutable UnorderedMap<BLEND_STATE_DESC, CachedBlendState> mCachedBlendStates;
- mutable UnorderedMap<RASTERIZER_STATE_DESC, CachedRasterizerState> mCachedRasterizerStates;
- mutable UnorderedMap<DEPTH_STENCIL_STATE_DESC, CachedDepthStencilState> mCachedDepthStencilStates;
- mutable UINT32 mNextBlendStateId;
- mutable UINT32 mNextRasterizerStateId;
- mutable UINT32 mNextDepthStencilStateId;
- BS_MUTEX(mMutex);
- };
- /** @} */
- }
|