From 1870a9d214fab1520bbce7f64230a7cbb4afc2f4 Mon Sep 17 00:00:00 2001 From: Martin Felis Date: Sun, 16 Mar 2025 22:59:05 +0100 Subject: [PATCH] Added custom imgui-node-editor changes. --- .../blueprints-example/blueprints-example.cpp | 5 +++-- .../blueprints-example/utilities/builders.h | 2 +- 3rdparty/imgui-node-editor/imgui_node_editor.cpp | 13 ++++++++----- 3rdparty/imgui-node-editor/imgui_node_editor.h | 3 +++ .../imgui-node-editor/imgui_node_editor_api.cpp | 7 +++++++ .../imgui-node-editor/imgui_node_editor_internal.h | 6 ++++++ 6 files changed, 28 insertions(+), 8 deletions(-) diff --git a/3rdparty/imgui-node-editor/examples/blueprints-example/blueprints-example.cpp b/3rdparty/imgui-node-editor/examples/blueprints-example/blueprints-example.cpp index f72f3ad..303add1 100644 --- a/3rdparty/imgui-node-editor/examples/blueprints-example/blueprints-example.cpp +++ b/3rdparty/imgui-node-editor/examples/blueprints-example/blueprints-example.cpp @@ -929,7 +929,8 @@ struct Example: { auto cursorTopLeft = ImGui::GetCursorScreenPos(); - util::BlueprintNodeBuilder builder(m_HeaderBackground, GetTextureWidth(m_HeaderBackground), GetTextureHeight(m_HeaderBackground)); +// util::BlueprintNodeBuilder builder(m_HeaderBackground, GetTextureWidth(m_HeaderBackground), GetTextureHeight(m_HeaderBackground)); + util::BlueprintNodeBuilder builder; for (auto& node : m_Nodes) { @@ -1832,4 +1833,4 @@ int Main(int argc, char** argv) return exampe.Run(); return 0; -} \ No newline at end of file +} diff --git a/3rdparty/imgui-node-editor/examples/blueprints-example/utilities/builders.h b/3rdparty/imgui-node-editor/examples/blueprints-example/utilities/builders.h index ef5db2c..07c42f0 100644 --- a/3rdparty/imgui-node-editor/examples/blueprints-example/utilities/builders.h +++ b/3rdparty/imgui-node-editor/examples/blueprints-example/utilities/builders.h @@ -11,7 +11,7 @@ //------------------------------------------------------------------------------ -# include +# include "3rdparty/imgui-node-editor/imgui_node_editor.h" //------------------------------------------------------------------------------ diff --git a/3rdparty/imgui-node-editor/imgui_node_editor.cpp b/3rdparty/imgui-node-editor/imgui_node_editor.cpp index 1d2bb06..26c0456 100644 --- a/3rdparty/imgui-node-editor/imgui_node_editor.cpp +++ b/3rdparty/imgui-node-editor/imgui_node_editor.cpp @@ -1256,6 +1256,9 @@ void ed::EditorContext::End() auto control = BuildControl(m_CurrentAction && m_CurrentAction->IsDragging()); // NavigateAction.IsMovingOverEdge() //auto& editorStyle = GetStyle(); + // martin.felis, 2024-05-01, Start: expose Hot Node + m_HotNode = control.HotNode ? control.HotNode->m_ID : 0; + // martin.felis, 2024-05-01, End: expose Hot Node m_HoveredNode = control.HotNode && m_CurrentAction == nullptr ? control.HotNode->m_ID : 0; m_HoveredPin = control.HotPin && m_CurrentAction == nullptr ? control.HotPin->m_ID : 0; m_HoveredLink = control.HotLink && m_CurrentAction == nullptr ? control.HotLink->m_ID : 0; @@ -4391,15 +4394,15 @@ ed::EditorAction::AcceptResult ed::ShortcutAction::Accept(const Control& control Action candidateAction = None; auto& io = ImGui::GetIO(); - if (io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_X))) + if (io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGuiKey_X)) candidateAction = Cut; - if (io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_C))) + if (io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGuiKey_C)) candidateAction = Copy; - if (io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_V))) + if (io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGuiKey_V)) candidateAction = Paste; if (io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(GetKeyIndexForD())) candidateAction = Duplicate; - if (!io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_Space))) + if (!io.KeyCtrl && !io.KeyShift && !io.KeyAlt && ImGui::IsKeyPressed(ImGuiKey_Space)) candidateAction = CreateNode; if (candidateAction != None) @@ -4953,7 +4956,7 @@ ed::EditorAction::AcceptResult ed::DeleteItemsAction::Accept(const Control& cont return False; auto& io = ImGui::GetIO(); - if (Editor->CanAcceptUserInput() && ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_Delete)) && Editor->AreShortcutsEnabled()) + if (Editor->CanAcceptUserInput() && ImGui::IsKeyPressed(ImGuiKey_Delete) && Editor->AreShortcutsEnabled()) { auto& selection = Editor->GetSelectedObjects(); if (!selection.empty()) diff --git a/3rdparty/imgui-node-editor/imgui_node_editor.h b/3rdparty/imgui-node-editor/imgui_node_editor.h index c79f41a..72afb2e 100644 --- a/3rdparty/imgui-node-editor/imgui_node_editor.h +++ b/3rdparty/imgui-node-editor/imgui_node_editor.h @@ -409,6 +409,9 @@ IMGUI_NODE_EDITOR_API void EndShortcut(); IMGUI_NODE_EDITOR_API float GetCurrentZoom(); +// martin.felis, 2024-05-01, Start: expose Hot Node +IMGUI_NODE_EDITOR_API NodeId GetHotNode(); +// martin.felis, 2024-05-01, Stop: expose Hot Node IMGUI_NODE_EDITOR_API NodeId GetHoveredNode(); IMGUI_NODE_EDITOR_API PinId GetHoveredPin(); IMGUI_NODE_EDITOR_API LinkId GetHoveredLink(); diff --git a/3rdparty/imgui-node-editor/imgui_node_editor_api.cpp b/3rdparty/imgui-node-editor/imgui_node_editor_api.cpp index c8c7c3f..f9bd7fb 100644 --- a/3rdparty/imgui-node-editor/imgui_node_editor_api.cpp +++ b/3rdparty/imgui-node-editor/imgui_node_editor_api.cpp @@ -667,6 +667,13 @@ float ax::NodeEditor::GetCurrentZoom() return s_Editor->GetView().InvScale; } +// martin.felis, 2024-05-01, Start: expose Hot Node +ax::NodeEditor::NodeId ax::NodeEditor::GetHotNode() +{ + return s_Editor->GetHotNode(); +} +// martin.felis, 2024-05-01, End: expose Hot Node + ax::NodeEditor::NodeId ax::NodeEditor::GetHoveredNode() { return s_Editor->GetHoveredNode(); diff --git a/3rdparty/imgui-node-editor/imgui_node_editor_internal.h b/3rdparty/imgui-node-editor/imgui_node_editor_internal.h index 0d018cf..ae818ed 100644 --- a/3rdparty/imgui-node-editor/imgui_node_editor_internal.h +++ b/3rdparty/imgui-node-editor/imgui_node_editor_internal.h @@ -1447,6 +1447,9 @@ struct EditorContext void EnableShortcuts(bool enable); bool AreShortcutsEnabled(); + // martin.felis, 2024-05-01, Start: expose Hot Node + NodeId GetHotNode() const { return m_HotNode; } + // martin.felis, 2024-05-01, End: expose Hot Node NodeId GetHoveredNode() const { return m_HoveredNode; } PinId GetHoveredPin() const { return m_HoveredPin; } LinkId GetHoveredLink() const { return m_HoveredLink; } @@ -1528,6 +1531,9 @@ private: vector m_AnimationControllers; FlowAnimationController m_FlowAnimationController; + // martin.felis, 2024-05-01, Start: expose Hot Node + NodeId m_HotNode; + // martin.felis, 2024-05-01, End: expose Hot Node NodeId m_HoveredNode; PinId m_HoveredPin; LinkId m_HoveredLink;