/* * 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 #include #include #if defined(IMGUI_ENABLED) #include #include #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) ImGuiCpuProfiler m_imguiCpuProfiler; bool m_showCpuProfiler{ false }; #endif // defined(IMGUI_ENABLED) }; } // namespace Profiler