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

Loops by pin or pinlabel, loop color #288

Draft
wants to merge 10 commits into
base: dev
Choose a base branch
from

Conversation

visatu
Copy link

@visatu visatu commented Aug 9, 2022

  • Added possibility to make loops based on pin or pinlabel
  • Added possibility to make loops between more than two pins
  • Automatic loop coloring (based on DIN colors)
  • New syntax to determine loop color.
  • Add looped pins to "visible pins"

Input

connectors:

  A:
    pincount: 6
    # automatically colored according to "DIN" colors
    loops:
      - [1,2,3]
      - [4,5,6]
  B:
    pincount: 6
    # manually colored loops
    loops:
      - YE: [1,2,3]
      - GN: [4,5,6]

cables:
  w1:
    wirecount: 2
    colors: [RD,BU]

connections:
  - - A: [1,4]
    - w1: [1,2]
    - B: [1,4]

... results in:
image

Trying to link based on names that have none or more than one results when searching connector.pins or connector.pinlabels results in an error.

This PR includes the newlines added in #261, output of the dev branch woudln't make any sense without that.

@visatu visatu marked this pull request as draft August 11, 2022 13:28
Visa Tuominen added 2 commits August 15, 2022 12:11
make visible when "hide disconnected" is active
@visatu
Copy link
Author

visatu commented Aug 15, 2022

About loop 'length' which becomes an issue with bigger connectors with loops, as the loops seem to grow with the size of the diagram (?) and start overlapping with other connecting wires as well as each other.

Tried to play around setting the graphviz minlen attribute for the edge connections of the loops, to make the loop size smaller of possibly adjustable. I'm not experienced in using graphviz at all so this was basically a case of trial and error.

Tried so far:

  • setting minlen in different points of Harness.py where dot.attr is called, such as Harness.py:198
  • setting minlen where dot.edge is called such as Harness.py:213
  • Creating subgraphs for loops and setting minlen in the edge attributes in there.

Depending on where minlen=0 or minlen=1 is set, the output is either unchanged or all of the edges in the diagram become minimized:
image

From this experimentation it seems that the minlen is set globally and the last set value is what decides the minlen of the whole graph?

@kvid
Copy link
Collaborator

kvid commented May 23, 2023

I like most of these ideas. However, I feel we also need more attributes than color for each loop wire - e.g. wire entries with zero length makes no sense in the BOM. How about specifying the loop wires as a bundle of wires (with normal wire attributes)? Such a bundle could either be specified with a name together with other cables (and refer to this name from the connector) or maybe preferably directly under a loop_wires attribute for the connector. The bundle box could then be placed close to the connector box in the diagram (by placing an invisible group around them) or optionally joined with the connector box, but loop wires should still be drawn directly between connector pins.

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

2 participants