1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
#pragma once
#include "../Base/TimeStamp.h"
#include <Asserts.h>
#include <Containers/StringView.h>
using namespace Death::Containers;
namespace nCine
{
/// Interface for debug overlays
class IDebugOverlay
{
public:
/// Settings for the debug overlay
struct DisplaySettings
{
DisplaySettings() : showProfilerGraphs(true), showInfoText(true), showInterface(false) {}
/// Whether to show the profiler graphs
bool showProfilerGraphs;
/// Whether to show the information text
bool showInfoText;
/// Whether to show the debug interface
bool showInterface;
};
explicit IDebugOverlay(float profileTextUpdateTime);
virtual ~IDebugOverlay();
IDebugOverlay(const IDebugOverlay&) = delete;
IDebugOverlay& operator=(const IDebugOverlay&) = delete;
inline DisplaySettings& GetSettings() {
return settings_;
}
virtual void Update() = 0;
virtual void UpdateFrameTimings() = 0;
#if defined(DEATH_TRACE)
virtual void Log(TraceLevel level, StringView time, StringView threadId, StringView functionName, StringView message) = 0;
#endif
protected:
DisplaySettings settings_;
TimeStamp lastUpdateTime_;
float updateTime_;
};
inline IDebugOverlay::IDebugOverlay(float profileTextUpdateTime)
: updateTime_(profileTextUpdateTime) {}
inline IDebugOverlay::~IDebugOverlay() {}
}
|