123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * SPDX-License-Identifier: Apache-2.0 OR MIT
- *
- */
- #pragma once
- #include <CommonSampleComponentBase.h>
- #include <AzCore/Component/EntityBus.h>
- #include <AzCore/Component/TickBus.h>
- #include <Utils/Utils.h>
- #include <Utils/ImGuiSidebar.h>
- #include <Utils/ImGuiAssetBrowser.h>
- #include <Atom/Bootstrap/DefaultWindowBus.h>
- #include <Atom/Feature/ImGui/ImGuiUtils.h>
- #include <Atom/Feature/SkyBox/SkyBoxFeatureProcessorInterface.h>
- #include <Atom/Utils/ImGuiMaterialDetails.h>
- namespace AtomSampleViewer
- {
- class MeshExampleComponent final
- : public CommonSampleComponentBase
- , public AZ::Render::Bootstrap::DefaultWindowNotificationBus::Handler
- , public AZ::TickBus::Handler
- {
- public:
- AZ_COMPONENT(MeshExampleComponent, "{A2402165-5DF1-4981-BF7F-665209640BBD}", CommonSampleComponentBase);
- static void Reflect(AZ::ReflectContext* context);
- MeshExampleComponent();
- ~MeshExampleComponent() override = default;
- // AZ::Component
- void Activate() override;
- void Deactivate() override;
- private:
- // AZ::TickBus::Handler
- void OnTick(float deltaTime, AZ::ScriptTimePoint time) override;
- // AZ::EntityBus::MultiHandler
- void OnEntityDestruction(const AZ::EntityId& entityId) override;
- void ModelChange();
- void CreateGroundPlane();
- void UpdateGroundPlane();
- void RemoveGroundPlane();
- void UseArcBallCameraController();
- void UseNoClipCameraController();
- void RemoveController();
- void SetArcBallControllerParams();
- void ResetCameraController();
- void DefaultWindowCreated() override;
- void CreateLowEndPipeline();
- void DestroyLowEndPipeline();
- void CreateDeferredPipeline();
- void DestroyDeferredPipeline();
- void CreateMultiViewXRPipeline();
- void DestroyMultiViewXRPipeline();
- void ActivateLowEndPipeline();
- void ActivateMultiViewXRPipeline();
- void ActivateDeferredPipeline();
- void ActivateOriginalPipeline();
- enum class Pipeline
- {
- Original,
- LowEnd,
- Deferred
- };
- Pipeline m_currentPipeline = Pipeline::Original;
- AZ::RPI::RenderPipelinePtr m_lowEndPipeline = nullptr;
- AZ::RPI::RenderPipelinePtr m_deferredPipeline = nullptr;
- AZ::RPI::RenderPipelinePtr m_multiViewXRPipeline = nullptr;
- AZ::RPI::RenderPipelinePtr m_originalPipeline = nullptr;
- AZStd::shared_ptr<AZ::RPI::WindowContext> m_windowContext;
- AZ::Render::ImGuiActiveContextScope m_imguiScope;
- enum class CameraControllerType : int32_t
- {
- ArcBall = 0,
- NoClip,
- Count
- };
- static const uint32_t CameraControllerCount = static_cast<uint32_t>(CameraControllerType::Count);
- static const char* CameraControllerNameTable[CameraControllerCount];
- CameraControllerType m_currentCameraControllerType = CameraControllerType::ArcBall;
-
- static constexpr float ArcballRadiusMinModifier = 0.01f;
- static constexpr float ArcballRadiusMaxModifier = 4.0f;
- static constexpr float ArcballRadiusDefaultModifier = 2.0f;
-
- AZ::RPI::Cullable::LodConfiguration m_lodConfig;
- bool m_enableMaterialOverride = true;
- // If false, only azmaterials generated from ".material" files will be listed.
- // Otherwise, all azmaterials, regardless of its source (e.g ".fbx"), will
- // be shown in the material list.
- bool m_showModelMaterials = false;
- bool m_showGroundPlane = false;
- bool m_cameraControllerDisabled = false;
- bool m_useLowEndPipeline = false;
- bool m_useDeferredPipeline = false;
- bool m_useMultiViewXRPipeline = false;
- bool m_switchPipeline = false;
- AZ::Data::Instance<AZ::RPI::Material> m_customMaterialInstance; //< Holds a copy of the material instance being used when m_enableMaterialOverride is true.
- AZ::Render::MeshFeatureProcessorInterface::MeshHandle m_meshHandle;
- AZ::Data::Asset<AZ::RPI::ModelAsset> m_modelAsset;
- AZ::Data::Asset<AZ::RPI::ModelAsset> m_groundPlaneModelAsset;
- AZ::Render::MeshFeatureProcessorInterface::MeshHandle m_groundPlandMeshHandle;
- AZ::Data::Instance<AZ::RPI::Material> m_groundPlaneMaterial;
- ImGuiSidebar m_imguiSidebar;
- AZ::Render::ImGuiMaterialDetails m_imguiMaterialDetails;
- ImGuiAssetBrowser m_materialBrowser;
- ImGuiAssetBrowser m_modelBrowser;
- };
- } // namespace AtomSampleViewer
|