#pragma once #include #include #include #include "../../util/util_time.h" #include "dxvk_hud_renderer.h" namespace dxvk::hud { /** * \brief HUD item * * A single named item in the HUD that * can be enabled by the user. */ class HudItem : public RcObject { public: virtual ~HudItem(); /** * \brief Updates the HUD item * \param [in] time Current time */ virtual void update( dxvk::high_resolution_clock::time_point time); /** * \brief Renders the HUD * * \param [in] renderer HUD renderer * \param [in] position Base offset * \returns Base offset for next item */ virtual HudPos render( HudRenderer& renderer, HudPos position) = 0; }; /** * \brief HUD item set * * Manages HUD items. */ class HudItemSet { public: HudItemSet(); ~HudItemSet(); /** * \brief Updates the HUD * Updates all enabled HUD items. */ void update(); /** * \brief Renders the HUD * * \param [in] renderer HUD renderer * \returns Base offset for next item */ void render( HudRenderer& renderer); /** * \brief Creates a HUD item if enabled * * \tparam T The HUD item type * \param [in] name HUD item name * \param [in] args Constructor arguments */ template void add(const char* name, Args... args) { bool enable = m_enableFull; if (!enable) { auto entry = m_enabled.find(name); enable = entry != m_enabled.end(); } if (enable) m_items.push_back(new T(std::forward(args)...)); } private: bool m_enableFull = false; std::unordered_set m_enabled; std::vector> m_items; }; /** * \brief HUD item to display DXVK version */ class HudVersionItem : public HudItem { public: HudPos render( HudRenderer& renderer, HudPos position); }; /** * \brief HUD item to display the client API */ class HudClientApiItem : public HudItem { public: HudClientApiItem(const Rc& device); ~HudClientApiItem(); HudPos render( HudRenderer& renderer, HudPos position); private: Rc m_device; }; /** * \brief HUD item to display device info */ class HudDeviceInfoItem : public HudItem { public: HudDeviceInfoItem(const Rc& device); ~HudDeviceInfoItem(); HudPos render( HudRenderer& renderer, HudPos position); private: std::string m_deviceName; std::string m_driverVer; std::string m_vulkanVer; }; /** * \brief HUD item to display the frame rate */ class HudFpsItem : public HudItem { constexpr static int64_t UpdateInterval = 500'000; public: HudFpsItem(); ~HudFpsItem(); void update(dxvk::high_resolution_clock::time_point time); HudPos render( HudRenderer& renderer, HudPos position); private: uint32_t m_frameCount = 0; dxvk::high_resolution_clock::time_point m_lastUpdate = dxvk::high_resolution_clock::now(); std::string m_frameRate; }; /** * \brief HUD item to display the frame rate */ class HudFrameTimeItem : public HudItem { constexpr static size_t NumDataPoints = 300; public: HudFrameTimeItem(); ~HudFrameTimeItem(); void update(dxvk::high_resolution_clock::time_point time); HudPos render( HudRenderer& renderer, HudPos position); private: dxvk::high_resolution_clock::time_point m_lastUpdate = dxvk::high_resolution_clock::now(); std::array m_dataPoints = {}; uint32_t m_dataPointId = 0; }; /** * \brief HUD item to display queue submissions */ class HudSubmissionStatsItem : public HudItem { public: HudSubmissionStatsItem(const Rc& device); ~HudSubmissionStatsItem(); void update(dxvk::high_resolution_clock::time_point time); HudPos render( HudRenderer& renderer, HudPos position); private: Rc m_device; uint64_t m_prevCounter = 0; uint64_t m_diffCounter = 0; }; /** * \brief HUD item to display draw call counts */ class HudDrawCallStatsItem : public HudItem { public: HudDrawCallStatsItem(const Rc& device); ~HudDrawCallStatsItem(); void update(dxvk::high_resolution_clock::time_point time); HudPos render( HudRenderer& renderer, HudPos position); private: Rc m_device; DxvkStatCounters m_prevCounters; DxvkStatCounters m_diffCounters; }; /** * \brief HUD item to display pipeline counts */ class HudPipelineStatsItem : public HudItem { public: HudPipelineStatsItem(const Rc& device); ~HudPipelineStatsItem(); void update(dxvk::high_resolution_clock::time_point time); HudPos render( HudRenderer& renderer, HudPos position); private: Rc m_device; uint64_t m_graphicsPipelines = 0; uint64_t m_computePipelines = 0; }; /** * \brief HUD item to display memory usage */ class HudMemoryStatsItem : public HudItem { public: HudMemoryStatsItem(const Rc& device); ~HudMemoryStatsItem(); void update(dxvk::high_resolution_clock::time_point time); HudPos render( HudRenderer& renderer, HudPos position); private: Rc m_device; VkPhysicalDeviceMemoryProperties m_memory; DxvkMemoryStats m_heaps[VK_MAX_MEMORY_HEAPS]; }; /** * \brief HUD item to display GPU load */ class HudGpuLoadItem : public HudItem { constexpr static int64_t UpdateInterval = 500'000; public: HudGpuLoadItem(const Rc& device); ~HudGpuLoadItem(); void update(dxvk::high_resolution_clock::time_point time); HudPos render( HudRenderer& renderer, HudPos position); private: Rc m_device; uint64_t m_prevGpuIdleTicks = 0; uint64_t m_diffGpuIdleTicks = 0; std::string m_gpuLoadString = "GPU: "; dxvk::high_resolution_clock::time_point m_lastUpdate = dxvk::high_resolution_clock::now(); }; }