| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include "BsCorePrerequisites.h"
- #include "Reflection/BsIReflectable.h"
- #include "CoreThread/BsCoreObject.h"
- #include "Math/BsVector3.h"
- #include "Math/BsQuaternion.h"
- #include "Math/BsSphere.h"
- #include "Scene/BsSceneActor.h"
- namespace bs
- {
- /** @addtogroup Renderer-Internal
- * @{
- */
- /** Light type that determines how is light information parsed by the renderer and other systems. */
- enum BS_SCRIPT_EXPORT(m:Rendering) class ReflectionProbeType
- {
- /**
- * Reflection probe cubemap is generated, and box extents are used for calculating influence ranges and box
- * geometry.
- */
- Box,
- /**
- * Reflection probe cubemap is generated, but sphere is used for calculating the influence radius and
- * proxy geometry.
- */
- Sphere
- };
- /** @} */
- /** @addtogroup Implementation
- * @{
- */
- /** Base class for both core and sim thread implementations of a reflection probe. */
- class BS_CORE_EXPORT ReflectionProbeBase : public SceneActor
- {
- public:
- ReflectionProbeBase();
- ReflectionProbeBase(ReflectionProbeType type, float radius, const Vector3& extents);
- virtual ~ReflectionProbeBase() { }
- /** Returns the type of the probe. */
- ReflectionProbeType getType() const { return mType; }
- /** Changes the type of the probe. */
- void setType(ReflectionProbeType type) { mType = type; _markCoreDirty(); updateBounds(); }
- /** Returns the radius of a sphere reflection probe. Determines range of influence. */
- float getRadius() const;
- /** Sets the radius of a sphere reflection probe. */
- void setRadius(float radius) { mRadius = radius; _markCoreDirty(); updateBounds(); }
- /** Returns the extents of a box reflection probe. */
- Vector3 getExtents() const { return mExtents * mTransform.getScale(); }
- /** Sets the extents of a box reflection probe. Determines range of influence. */
- void setExtents(const Vector3& extents) { mExtents = extents; _markCoreDirty(); updateBounds(); }
- /** Returns world space bounds that completely encompass the probe's area of influence. */
- Sphere getBounds() const { return mBounds; }
-
- /**
- * Sets a distance that will be used for fading out the box reflection probe with distance. By default it
- * is equal to one, and can never be less than one. Only relevant for box probes.
- */
- void setTransitionDistance(float distance) { mTransitionDistance = std::max(1.0f, distance); }
- /** Retrieves transition distance set by setTransitionDistance(). */
- float getTransitionDistance() const { return mTransitionDistance; }
- protected:
- /** Updates the internal bounds for the probe. Call this whenever a property affecting the bounds changes. */
- void updateBounds();
- ReflectionProbeType mType; /**< Type of probe that determines how are the rest of the parameters interpreted. */
- float mRadius; /**< Radius used for sphere reflection probes. */
- Vector3 mExtents; /**< Extents used by box reflection probe. */
- float mTransitionDistance; /**< Extra distance to used for fading out box probes. */
- Sphere mBounds; /**< Sphere that bounds the light area of influence. */
- };
- /** @} */
- /** @addtogroup Renderer-Internal
- * @{
- */
- namespace ct
- {
- class RendererTask;
- class ReflectionProbe;
- }
- /**
- * Specifies a location at which a pre-computed texture containing scene radiance will be generated. This texture will
- * then be used by the renderer to provide specular reflections.
- */
- class BS_CORE_EXPORT ReflectionProbe : public IReflectable, public CoreObject, public ReflectionProbeBase
- {
- public:
- ~ReflectionProbe();
- /**
- * Allows you assign a custom texture to use as a reflection map. This will disable automatic generation of
- * reflections. To re-enable auto-generation call this with a null parameter.
- */
- void setCustomTexture(const HTexture& texture) { mCustomTexture = texture; filter(); }
- /** Gets the custom texture assigned through setCustomTexture(). */
- HTexture getCustomTexture() const { return mCustomTexture; }
- /**
- * Returns a pre-filtered texture that is generated either from the provided custom texture, or from scene capture.
- */
- SPtr<Texture> getFilteredTexture() const { return mFilteredTexture; }
- /**
- * Captures the scene at the current location and generates a filtered reflection cubemap. No action is taken
- * if a custom texture is set.
- */
- void capture();
- /**
- * Filters the custom texture, making it usable for rendering. Called automatically when custom texture changes. If
- * no custom texture is set, no action is taken.
- */
- void filter();
- /** Retrieves an implementation of the reflection probe usable only from the core thread. */
- SPtr<ct::ReflectionProbe> getCore() const;
- /**
- * Creates a new sphere reflection probe.
- *
- * @param[in] radius Radius in which the reflection probe will be rendered within.
- * @returns New reflection probe.
- */
- static SPtr<ReflectionProbe> createSphere(float radius);
- /**
- * Creates a new box reflection probe.
- *
- * @param[in] extents Extents of the box in which the reflection probe will be rendered within.
- * @returns New reflection probe.
- */
- static SPtr<ReflectionProbe> createBox(const Vector3& extents);
- protected:
- ReflectionProbe(ReflectionProbeType type, float radius, const Vector3& extents);
- /** @copydoc CoreObject::createCore */
- SPtr<ct::CoreObject> createCore() const override;
- /** @copydoc ReflectionProbeBase::_markCoreDirty */
- void _markCoreDirty(ActorDirtyFlag flags = ActorDirtyFlag::Everything) override;
- /** @copydoc CoreObject::syncToCore */
- CoreSyncData syncToCore(FrameAlloc* allocator) override;
- /**
- * Captures the scene color at current probe location and generates a filtered map. If a custom texture is set then
- * it will be filtered, instead of capturing scene color.
- */
- void captureAndFilter();
- /** Creates a light with without initializing it. Used for serialization. */
- static SPtr<ReflectionProbe> createEmpty();
- HTexture mCustomTexture;
- SPtr<ct::RendererTask> mRendererTask;
- SPtr<Texture> mFilteredTexture;
- /************************************************************************/
- /* RTTI */
- /************************************************************************/
- public:
- friend class ReflectionProbeRTTI;
- static RTTITypeBase* getRTTIStatic();
- RTTITypeBase* getRTTI() const override;
- protected:
- ReflectionProbe(); // Serialization only
- };
- namespace ct
- {
- /** Core thread usable version of a bs::ReflectionProbe */
- class BS_CORE_EXPORT ReflectionProbe : public CoreObject, public ReflectionProbeBase
- {
- public:
- ~ReflectionProbe();
- /** Sets an ID that can be used for uniquely identifying this object by the renderer. */
- void setRendererId(UINT32 id) { mRendererId = id; }
- /** Retrieves an ID that can be used for uniquely identifying this object by the renderer. */
- UINT32 getRendererId() const { return mRendererId; }
- /**
- * Returns a pre-filtered texture that is generated either from the provided custom texture, or from scene capture.
- */
- SPtr<Texture> getFilteredTexture() const { return mFilteredTexture; }
- protected:
- friend class bs::ReflectionProbe;
- ReflectionProbe(ReflectionProbeType type, float radius, const Vector3& extents,
- const SPtr<Texture>& filteredTexture);
- /** @copydoc CoreObject::initialize */
- void initialize() override;
- /** @copydoc CoreObject::syncToCore */
- void syncToCore(const CoreSyncData& data) override;
- UINT32 mRendererId;
- SPtr<Texture> mFilteredTexture;
- };
- }
- /** @} */
- }
|