Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Advanced link path layout when it intersects source or target node #119

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

abvadabra
Copy link

@abvadabra abvadabra commented Aug 25, 2021

Hi!

This pull request implements improved behaviour for links drawing in cases when drawing it using simple bezier curve would intersect either target or source node. This idea is mainly inspired by implementation of creation graphs in The Machinery engine (reference image, notice behaviour of links between nodes at the very bottom).

In many cases this makes it much easier to keep readiblity while maintaining complex graphs and it's quite a noticeable UX improvement in comparison, with, e.g. UE4's Blueprints.

Demonstration of links difference with, and without this feature:
demo_1_1
demo_1_2

Demonstation of link behaviour when node is moved:
demo_node_editor

Right now proposed implementation is more like a prototype and not really finalized, I am willing to work on it further if you think that this is appropriate addition for imgui-node-editor.

During implementation I tried to keep code simple and reuse existing functionality as much as possible. The most noticable change is in the way link's curve is represented, instead of four bezier points it's now a struct which contains up to 16 points (NodeEditor::Detail::LinkPath). New types of links will be used only when start pin outputs to the right (with dir 1, 0) and end pin takes input from the left (with dir -1, 0)

If link can be drawn with a simple bezier then only first 4 points will be used and filled with control points for a single curve (just as before). If Link::GetPathType decides that link can intersect source or target node then curve will be constructed from four bezier curves, each describing one corner of the path. During link processing routines (rendering, hit testing, etc) for such cases additional straight line will be derived from each 4nth and 5th point (except for the last pair). These derived straight lines are still interpreted as beziers in order to reuse existing code.

Current known issues/further improvements:

  • I am a little unsure whether this feature should be enabled by default, since in some cases it might be not appropriate. I think we can add style option which controls this behaviour and set it disabled initially.
  • Current implementation of complex curve rendering can produce a bit of a gap between corner beziers and straight lines pieces. I am struggling with fixing it but luckily this gap is not really noticeable unless you zoom really close
  • There are some hidden constants in new path layouting code, which can be exposed via style interface.

@mgood7123
Copy link

looks nice :)

@thedmd
Copy link
Owner

thedmd commented Aug 27, 2021

Hi @abvadabra

Link routing look like a nice idea. Thank you for making a prototype. I will try to take a closer look at your work this weekend and get you a feedback.

This may be a promising introduction to auto-routing. : )

@DiegoBM
Copy link

DiegoBM commented Dec 10, 2021

Was this ever taken into serious consideration? The blueprints reroute pin is definitely something that I miss, and this could be a good workaround in the meantime.

@thedmd
Copy link
Owner

thedmd commented Dec 12, 2021

I do want to integrate such feature into node editor.

In the mean time, reroute pin can be built from regular node.
image
Recently I discovered I cannot use same pin as input&output at the same time. So there has to be two pins present, eventually I want add ability to reduce it to pin size node.

@DiegoBM
Copy link

DiegoBM commented Dec 12, 2021

It makes perfect sense, thank you for letting me know about that node, I was not aware of it.

@thedmd
Copy link
Owner

thedmd commented Dec 12, 2021

@DiegoBM Node is just an interactive rectangle. Custom reroute nodes there are only two pins of same type. You can place anything inside. :)

@ToppDev
Copy link

ToppDev commented Dec 13, 2021

is there a time plane when this feature/pull request will make it into the library?

just asking if it makes sense to implement a basic version myself in my fork or wait for it here.

@thedmd
Copy link
Owner

thedmd commented Dec 13, 2021

I think it will be a while.
You can however cherry-pick abvadabra work and use it as it is now.

@Stanlyhalo Stanlyhalo mentioned this pull request Jan 28, 2022
@Stanlyhalo
Copy link

Currently looking into it, but is it possible to make it so a dir of (0,1) or (0,-1) still enables this path?

@abvadabra
Copy link
Author

@Stanlyhalo It is possible, in order to do so you'd have to:

  1. Add desired types of path to the enum ed::LinkPathType.
  2. Implement logic which decides which type of path should be used depending on the relative positioning of two node. This is done in the function ed::Link::GetPathType.
  3. Implement actual path layouting logic in the function ed::Link::GetCurve(). It's implementation for horizontal links may look a bit intimidating at first but you just have to follow the same logic and it will be fine.

I suggest that you first make a mockup of how this kind of link layouting should work with vertical pins, it should be easier once you know what you're trying to achieve.

@Stanlyhalo
Copy link

@abvadabra Just a question, is it the if statement that checks if the type is default that generates the path of the link that you made?
image

@abvadabra
Copy link
Author

@Stanlyhalo No, Default type is for simple bezier links, it is the original behaviour which is available without this PR.

@Stanlyhalo
Copy link

Wait I'm confused, than where is it drawn/calculated?

pthom pushed a commit to pthom/imgui-node-editor that referenced this pull request May 12, 2024
… path layouting for cases when link would pass through either source or target node.

This is a squashed version of thedmd#119
pthom pushed a commit to pthom/imgui-node-editor that referenced this pull request May 12, 2024
… path layouting for cases when link would pass through either source or target node.

This is a squashed version of thedmd#119
@pthom
Copy link

pthom commented May 12, 2024

I created a squashed version of this PR that solves conflicts as of May 2024: pthom@436b296

I like it a lot, thanks a bunch @abvadabra !

PS: this squashed commit is still signed by you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants