You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.9 KiB
C++
66 lines
1.9 KiB
C++
/*
|
|
* 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 <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)
|
|
ImGuiCpuProfiler m_imguiCpuProfiler;
|
|
bool m_showCpuProfiler{ false };
|
|
#endif // defined(IMGUI_ENABLED)
|
|
};
|
|
|
|
} // namespace Profiler
|