mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-11-14 19:13:01 +01:00
73 lines
1.8 KiB
C++
73 lines
1.8 KiB
C++
#include "imgui_plot_var.hpp"
|
|
|
|
#include <map>
|
|
#include <algorithm>
|
|
|
|
struct PlotVarData {
|
|
ImGuiID ID;
|
|
ImVector<float> Data;
|
|
int DataInsertIdx;
|
|
int LastFrame;
|
|
|
|
PlotVarData() : ID(0), DataInsertIdx(0), LastFrame(-1) {}
|
|
};
|
|
|
|
typedef std::map<ImGuiID, PlotVarData> PlotVarsMap;
|
|
static PlotVarsMap g_PlotVarsMap;
|
|
|
|
// Plot value over time
|
|
// Call with 'value == FLT_MAX' to draw without adding new value to the buffer
|
|
void ImGui::PlotVar(const char* label, float value, float scale_min, float scale_max, int buffer_size)
|
|
{
|
|
IM_ASSERT(label);
|
|
if (buffer_size == 0)
|
|
buffer_size = 120;
|
|
|
|
ImGui::PushID(label);
|
|
ImGuiID id = ImGui::GetID("");
|
|
|
|
// Lookup O(log N)
|
|
PlotVarData& pvd = g_PlotVarsMap[id];
|
|
|
|
// Setup
|
|
if (pvd.Data.capacity() != buffer_size)
|
|
{
|
|
pvd.Data.resize(buffer_size);
|
|
memset(&pvd.Data[0], 0, sizeof(float) * buffer_size);
|
|
pvd.DataInsertIdx = 0;
|
|
pvd.LastFrame = -1;
|
|
}
|
|
|
|
// Insert (avoid unnecessary modulo operator)
|
|
if (pvd.DataInsertIdx == buffer_size)
|
|
pvd.DataInsertIdx = 0;
|
|
int display_idx = pvd.DataInsertIdx;
|
|
if (value != FLT_MAX)
|
|
pvd.Data[pvd.DataInsertIdx++] = value;
|
|
|
|
// Draw
|
|
int current_frame = ImGui::GetFrameCount();
|
|
if (pvd.LastFrame != current_frame)
|
|
{
|
|
ImGui::PlotLines("##plot", &pvd.Data[0], buffer_size, pvd.DataInsertIdx, NULL, scale_min, scale_max, ImVec2(0, 40));
|
|
ImGui::SameLine();
|
|
ImGui::Text("%s\n%-3.4f", label, pvd.Data[display_idx]); // Display last value in buffer
|
|
pvd.LastFrame = current_frame;
|
|
}
|
|
|
|
ImGui::PopID();
|
|
}
|
|
|
|
void ImGui::PlotVarFlushOldEntries()
|
|
{
|
|
int current_frame = ImGui::GetFrameCount();
|
|
for (PlotVarsMap::iterator it = g_PlotVarsMap.begin(); it != g_PlotVarsMap.end(); )
|
|
{
|
|
PlotVarData& pvd = it->second;
|
|
if (pvd.LastFrame < current_frame - std::max(400,(int)pvd.Data.size()))
|
|
it = g_PlotVarsMap.erase(it);
|
|
else
|
|
++it;
|
|
}
|
|
}
|