| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /*
- * 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 <Profiler/ProfilerImGuiBus.h>
- #include <ImGuiCpuProfiler.h>
- #include "ImGuiTreemapImpl.h"
- #include <AzCore/Component/Component.h>
- #if defined(IMGUI_ENABLED)
- #include <ImGuiBus.h>
- #include <imgui/imgui.h>
- #endif // defined(IMGUI_ENABLED)
- namespace Profiler
- {
- class ProfilerImGuiSystemComponent
- : public AZ::Component
- #if defined(IMGUI_ENABLED)
- , public ProfilerImGuiRequests
- , public ImGui::ImGuiUpdateListenerBus::Handler
- #endif // defined(IMGUI_ENABLED)
- {
- public:
- AZ_COMPONENT(ProfilerImGuiSystemComponent, "{E59A8A53-6784-4CCB-A8B5-9F91DA9BF1C5}");
- static void Reflect(AZ::ReflectContext* context);
- static void GetProvidedServices(AZ::ComponentDescriptor::DependencyArrayType& provided);
- static void GetIncompatibleServices(AZ::ComponentDescriptor::DependencyArrayType& incompatible);
- static void GetRequiredServices(AZ::ComponentDescriptor::DependencyArrayType& required);
- static void GetDependentServices(AZ::ComponentDescriptor::DependencyArrayType& dependent);
- ProfilerImGuiSystemComponent();
- ~ProfilerImGuiSystemComponent();
- protected:
- // AZ::Component interface implementation
- void Activate() override;
- void Deactivate() override;
- #if defined(IMGUI_ENABLED)
- // ProfilerImGuiRequests interface implementation
- void ShowCpuProfilerWindow(bool& keepDrawing) override;
- // ImGuiUpdateListenerBus overrides
- void OnImGuiUpdate() override;
- void OnImGuiMainMenuUpdate() override;
- #endif // defined(IMGUI_ENABLED)
- private:
- #if defined(IMGUI_ENABLED)
- ImGuiTreemapFactoryImpl m_imguiTreemapFactory;
- ImGuiCpuProfiler m_imguiCpuProfiler;
- bool m_showCpuProfiler{ false };
- #endif // defined(IMGUI_ENABLED)
- };
- } // namespace Profiler
|