satdump/src-core/handlers/dataset/flowgraph/flowgraph.cpp

302 lines
10 KiB
C++
Raw Permalink Normal View History

2025-01-22 20:08:00 +01:00
#include "flowgraph.h"
#include <limits>
#include "core/exception.h"
#include "imgui/imnodes/imnodes.h"
2025-01-26 16:00:07 +01:00
#include "imgui/imnodes/imnodes_internal.h"
2025-01-22 20:08:00 +01:00
#include "logger.h"
namespace satdump
{
Flowgraph::Flowgraph()
{
}
Flowgraph::~Flowgraph()
{
}
int Flowgraph::getNewNodeID()
{
for (int i = 0; i < std::numeric_limits<int>::max(); i++)
{
bool already_contained = false;
for (auto &n : nodes)
if (n->id == i)
already_contained = true;
if (already_contained)
continue;
return i;
}
throw satdump_exception("No valid ID found for new node ID!");
}
int Flowgraph::getNewNodeIOID(std::vector<Node::InOut> *ptr)
{
for (int i = 0; i < std::numeric_limits<int>::max(); i++)
{
bool already_contained = false;
for (auto &n : nodes)
for (auto &io : n->node_io)
if (io.id == i)
already_contained = true;
if (ptr != nullptr)
for (auto &io : *ptr)
if (io.id == i)
already_contained = true;
if (already_contained)
continue;
return i;
}
throw satdump_exception("No valid ID found for new node IO ID!");
}
int Flowgraph::getNewLinkID()
{
for (int i = 0; i < std::numeric_limits<int>::max(); i++)
{
bool already_contained = false;
for (auto &l : links)
if (l.id == i)
already_contained = true;
if (already_contained)
continue;
return i;
}
throw satdump_exception("No valid ID found for new link ID!");
}
void Flowgraph::render()
{
ImNodes::PushAttributeFlag(ImNodesAttributeFlags_EnableLinkDetachWithDragClick);
ImNodes::BeginNodeEditor();
2025-01-26 16:00:07 +01:00
ImNodes::MiniMap();
2025-01-22 20:08:00 +01:00
// ImNodes::PushColorStyle(ImNodesCol_TitleBar, 0xc01c28FF);
2025-01-22 20:08:00 +01:00
for (auto &n : nodes)
{
ImNodes::BeginNode(n->id);
ImNodes::BeginNodeTitleBar();
2025-03-16 18:08:49 +01:00
ImGui::Text("%s", n->title.c_str());
2025-01-22 20:08:00 +01:00
ImNodes::EndNodeTitleBar();
n->internal->render();
for (auto &io : n->node_io)
{
if (io.is_out)
{
ImNodes::BeginOutputAttribute(io.id);
// const float node_width = 200.0 * ui_scale;
// const float label_width = ImGui::CalcTextSize(io.name.c_str()).x;
// ImGui::Indent(node_width - label_width);
2025-03-16 18:08:49 +01:00
ImGui::Text("%s", io.name.c_str());
2025-01-22 20:08:00 +01:00
ImNodes::EndOutputAttribute();
}
else
{
ImNodes::BeginInputAttribute(io.id);
2025-03-16 18:08:49 +01:00
ImGui::Text("%s", io.name.c_str());
2025-01-22 20:08:00 +01:00
ImNodes::EndInputAttribute();
}
}
ImNodes::EndNode();
if (!n->pos_was_set)
{
ImNodes::SetNodeGridSpacePos(n->id, {n->pos_x, n->pos_y});
n->pos_was_set = true;
}
auto pos = ImNodes::GetNodeGridSpacePos(n->id);
n->pos_x = pos.x;
n->pos_y = pos.y;
}
// ImNodes::PopColorStyle();
2025-01-22 20:08:00 +01:00
for (auto &l : links)
ImNodes::Link(l.id, l.start, l.end);
ImNodes::EndNodeEditor();
int start_att, end_att;
if (ImNodes::IsLinkCreated(&start_att, &end_att))
{
links.push_back({getNewLinkID(), start_att, end_att});
logger->trace("LINK CREATE %d %d", start_att, end_att);
}
int link_id;
if (ImNodes::IsLinkDestroyed(&link_id))
{
auto iter = std::find_if(
links.begin(), links.end(), [link_id](const Link &link) -> bool
{ return link.id == link_id; });
logger->trace("LINK DELETE %d %d", iter->start, iter->end);
links.erase(iter);
}
2025-01-23 21:47:10 +01:00
if (ImGui::IsKeyPressed(ImGuiKey_Delete))
{
int node_s = ImNodes::NumSelectedNodes();
if (node_s > 0)
{
std::vector<int> nodes_ids(node_s);
ImNodes::GetSelectedNodes(nodes_ids.data());
for (auto &id : nodes_ids)
{
auto iter = std::find_if(
nodes.begin(), nodes.end(), [id](const std::shared_ptr<Node> &node) -> bool
{ return node->id == id; });
logger->trace("NODE DELETE %d", id);
2025-01-26 15:37:55 +01:00
for (auto &linkid : iter->get()->node_io)
{
auto liter = std::find_if(
links.begin(), links.end(), [linkid](const Link &link) -> bool
{ return link.start == linkid.id || link.end == linkid.id; });
if (liter != links.end())
links.erase(liter);
}
2025-01-23 21:47:10 +01:00
nodes.erase(iter);
}
}
}
2025-01-26 16:00:07 +01:00
if (ImGui::IsMouseClicked(ImGuiMouseButton_Right))
ImGui::OpenPopup("##popuprightclickflowgraph");
if (ImGui::BeginPopup("##popuprightclickflowgraph"))
{
if (ImGui::BeginMenu("Add Node"))
{
for (auto &opt : node_internal_registry)
{
if (ImGui::MenuItem(opt.first.c_str()))
{
auto mpos = ImGui::GetMousePos();
auto ptr = addNode(opt.first, opt.second());
ptr->pos_was_set = true;
ImNodes::SetNodeScreenSpacePos(ptr->id, mpos);
}
}
ImGui::EndMenu();
}
ImGui::EndPopup();
}
2025-01-22 20:08:00 +01:00
}
void Flowgraph::run()
{
for (auto &n : nodes)
n->internal->reset();
try
{
bool should_run_again = true;
int step_number = 0;
while (should_run_again)
{
should_run_again = false;
// Iterate through all nodes
for (auto &n : nodes)
{
// Check if this one can run
auto &i = n->internal;
if (i->can_run() && !i->has_run)
{
// Run it.
i->process();
logger->debug("Step %d Ran : %s", step_number, i->title.c_str());
// Iterate through outputs
for (int o = 0; o < i->outputs.size(); o++)
{
// Get output ID
int o_id = -1;
for (int c = 0, oc = 0; c < n->node_io.size(); c++)
{
if (n->node_io[c].is_out)
{
if (oc == o)
o_id = n->node_io[c].id;
oc++;
}
}
logger->trace("Output ID for %d is %d", o, o_id);
// Iterate through links, to asign outputs to applicable inputs
for (auto &l : links)
{
if (l.start == o_id)
{
// Iterate through nodes to find valid inputs
for (auto &n2 : nodes)
{
for (int b = 0, b2 = 0; b < n2->node_io.size(); b++)
{
if (!n2->node_io[b].is_out)
{
if (n2->node_io[b].id == l.end)
{
n2->internal->inputs[b2] = i->outputs[o];
logger->trace("Assigned to : " + n2->internal->title);
}
b2++;
}
}
}
}
if (l.end == o_id)
{
// Iterate through nodes to find valid inputs
for (auto &n2 : nodes)
{
for (int b = 0, b2 = 0; b < n2->node_io.size(); b++)
{
if (!n2->node_io[b].is_out)
{
if (n2->node_io[b].id == l.start)
{
n2->internal->inputs[b2] = i->outputs[o];
logger->trace("Assigned to : " + n2->internal->title);
}
b2++;
}
}
}
}
}
}
should_run_again = true;
}
}
step_number++;
}
logger->info("Flowgraph took %d steps to run!", step_number);
}
catch (std::exception &e)
{
logger->error("Error running flowgraph : %s", e.what());
}
for (auto &n : nodes)
n->internal->reset();
}
2025-01-22 20:08:00 +01:00
}