mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
23 lines
No EOL
828 B
C++
23 lines
No EOL
828 B
C++
#include "value_plot.h"
|
|
#include "core/style.h"
|
|
#include "themed_widgets.h"
|
|
#include <array>
|
|
#include <cstring>
|
|
|
|
namespace satdump
|
|
{
|
|
namespace widgets
|
|
{
|
|
void ValuePlotViewer::draw(float value, float max, float min, std::string name)
|
|
{
|
|
ImGui::Text("%s", name.c_str());
|
|
ImGui::SameLine();
|
|
ImGui::TextColored(value > -1 ? value < 5 ? style::theme.green : style::theme.orange : style::theme.red, "%s", std::to_string(value).c_str());
|
|
|
|
std::memmove(&history[0], &history[1], (200 - 1) * sizeof(float));
|
|
history[200 - 1] = value;
|
|
|
|
widgets::ThemedPlotLines(style::theme.plot_bg.Value, "##", history, IM_ARRAYSIZE(history), 0, "", min, max, ImVec2(200 * ui_scale, 50 * ui_scale));
|
|
}
|
|
} // namespace widgets
|
|
} // namespace satdump
|