@@ -723,50 +723,52 @@ private void doCFGLayout(HashSet<Figure> figures, HashSet<Connection> edges) {
723
723
724
724
private Set <Pair <Point , Point >> lineCache = new HashSet <>();
725
725
726
- private void relayoutWithoutLayout (Set <Widget > oldVisibleWidgets ) {
727
-
728
- Diagram diagram = getModel ().getDiagram ();
729
-
730
- SceneAnimator animator = getSceneAnimator ();
731
- connectionLayer .removeChildren ();
726
+ private boolean shouldAnimate () {
732
727
int visibleFigureCount = 0 ;
733
- for (Figure f : diagram .getFigures ()) {
734
- if (getWidget (f , FigureWidget .class ).isVisible ()) {
728
+ for (Figure figure : getModel (). getDiagram () .getFigures ()) {
729
+ if (getWidget (figure , FigureWidget .class ).isVisible ()) {
735
730
visibleFigureCount ++;
736
731
}
737
732
}
733
+ return visibleFigureCount <= ANIMATION_LIMIT ;
734
+ }
738
735
736
+ private void relayoutWithoutLayout (Set <Widget > oldVisibleWidgets ) {
737
+ assert oldVisibleWidgets != null ;
738
+
739
+ Diagram diagram = getModel ().getDiagram ();
740
+ connectionLayer .removeChildren ();
741
+
742
+ SceneAnimator connectionAnimator = getSceneAnimator ();
743
+ boolean doAnimation = shouldAnimate ();
744
+ if (!doAnimation ) {
745
+ connectionAnimator = null ;
746
+ }
739
747
740
748
Set <Pair <Point , Point >> lastLineCache = lineCache ;
741
749
lineCache = new HashSet <>();
742
- for (Figure f : diagram .getFigures ()) {
743
- for (OutputSlot s : f .getOutputSlots ()) {
744
- SceneAnimator anim = animator ;
745
- if (visibleFigureCount > ANIMATION_LIMIT || oldVisibleWidgets == null ) {
746
- anim = null ;
747
- }
748
- List <Connection > cl = new ArrayList <>(s .getConnections ().size ());
749
- for (FigureConnection c : s .getConnections ()) {
750
- cl .add ((Connection ) c );
751
- }
752
- processOutputSlot (lastLineCache , s , cl , 0 , null , null , 0 , 0 , anim );
750
+ for (Figure figure : diagram .getFigures ()) {
751
+ for (OutputSlot outputSlot : figure .getOutputSlots ()) {
752
+ List <Connection > connectionList = new ArrayList <>(outputSlot .getConnections ());
753
+ processOutputSlot (lastLineCache , outputSlot , connectionList , 0 , null , null , connectionAnimator );
753
754
}
754
755
}
755
756
756
757
if (getModel ().getShowCFG ()) {
757
758
for (BlockConnection c : diagram .getBlockConnections ()) {
758
759
if (isVisible (c )) {
759
- processOutputSlot (lastLineCache , null , Collections .singletonList (c ), 0 , null , null , 0 , 0 , animator );
760
+ processOutputSlot (lastLineCache , null , Collections .singletonList (c ), 0 , null , null , connectionAnimator );
760
761
}
761
762
}
762
763
}
763
764
765
+ SceneAnimator animator = getSceneAnimator ();
764
766
for (Figure f : diagram .getFigures ()) {
765
767
FigureWidget w = getWidget (f );
766
768
if (w .isVisible ()) {
767
769
Point p = f .getPosition ();
768
770
Point p2 = new Point (p .x , p .y );
769
- if (( visibleFigureCount <= ANIMATION_LIMIT && oldVisibleWidgets != null && oldVisibleWidgets .contains (w ) )) {
771
+ if (doAnimation && oldVisibleWidgets .contains (w )) {
770
772
animator .animatePreferredLocation (w , p2 );
771
773
} else {
772
774
w .setPreferredLocation (p2 );
@@ -782,7 +784,7 @@ private void relayoutWithoutLayout(Set<Widget> oldVisibleWidgets) {
782
784
Point location = new Point (b .getBounds ().x , b .getBounds ().y );
783
785
Rectangle r = new Rectangle (location .x , location .y , b .getBounds ().width , b .getBounds ().height );
784
786
785
- if (( visibleFigureCount <= ANIMATION_LIMIT && oldVisibleWidgets != null && oldVisibleWidgets .contains (w ) )) {
787
+ if (doAnimation && oldVisibleWidgets .contains (w )) {
786
788
animator .animatePreferredBounds (w , r );
787
789
} else {
788
790
w .setPreferredBounds (r );
@@ -796,44 +798,42 @@ private void relayoutWithoutLayout(Set<Widget> oldVisibleWidgets) {
796
798
}
797
799
private final Point specialNullPoint = new Point (Integer .MAX_VALUE , Integer .MAX_VALUE );
798
800
799
- private void processOutputSlot (Set <Pair <Point , Point >> lastLineCache , OutputSlot outputSlot , List <Connection > connections , int controlPointIndex , Point lastPoint , LineWidget predecessor , int offx , int offy , SceneAnimator animator ) {
801
+ private void processOutputSlot (Set <Pair <Point , Point >> lastLineCache , OutputSlot outputSlot , List <Connection > connections , int controlPointIndex , Point lastPoint , LineWidget predecessor , SceneAnimator animator ) {
800
802
Map <Point , List <Connection >> pointMap = new HashMap <>(connections .size ());
801
803
802
- for (Connection c : connections ) {
803
-
804
- if (!isVisible (c )) {
804
+ for (Connection connection : connections ) {
805
+ if (!isVisible (connection )) {
805
806
continue ;
806
807
}
807
808
808
- List <Point > controlPoints = c .getControlPoints ();
809
+ List <Point > controlPoints = connection .getControlPoints ();
809
810
if (controlPointIndex >= controlPoints .size ()) {
810
811
continue ;
811
812
}
812
813
813
- Point cur = controlPoints .get (controlPointIndex );
814
- if (cur == null ) { // Long connection, has been cut vertically.
815
- cur = specialNullPoint ;
816
- } else if (c .hasSlots ()) {
814
+ Point currentPoint = controlPoints .get (controlPointIndex );
815
+ if (currentPoint == null ) { // Long connection, has been cut vertically.
816
+ currentPoint = specialNullPoint ;
817
+ } else if (connection .hasSlots ()) {
817
818
if (controlPointIndex == 0 && !outputSlot .shouldShowName ()) {
818
- cur = new Point (cur .x , cur .y - SLOT_OFFSET );
819
+ currentPoint = new Point (currentPoint .x , currentPoint .y - SLOT_OFFSET );
819
820
} else if (controlPointIndex == controlPoints .size () - 1 &&
820
- !((Slot )c .getTo ()).shouldShowName ()) {
821
- cur = new Point (cur .x , cur .y + SLOT_OFFSET );
821
+ !((Slot )connection .getTo ()).shouldShowName ()) {
822
+ currentPoint = new Point (currentPoint .x , currentPoint .y + SLOT_OFFSET );
822
823
}
823
824
}
824
825
825
- if (pointMap .containsKey (cur )) {
826
- pointMap .get (cur ).add (c );
826
+ if (pointMap .containsKey (currentPoint )) {
827
+ pointMap .get (currentPoint ).add (connection );
827
828
} else {
828
829
List <Connection > newList = new ArrayList <>(2 );
829
- newList .add (c );
830
- pointMap .put (cur , newList );
830
+ newList .add (connection );
831
+ pointMap .put (currentPoint , newList );
831
832
}
832
-
833
833
}
834
834
835
- for (Point p : pointMap .keySet ()) {
836
- List <Connection > connectionList = pointMap .get (p );
835
+ for (Point currentPoint : pointMap .keySet ()) {
836
+ List <Connection > connectionList = pointMap .get (currentPoint );
837
837
838
838
boolean isBold = false ;
839
839
boolean isDashed = true ;
@@ -855,9 +855,9 @@ private void processOutputSlot(Set<Pair<Point, Point>> lastLineCache, OutputSlot
855
855
}
856
856
857
857
LineWidget newPredecessor = predecessor ;
858
- if (p != specialNullPoint && lastPoint != specialNullPoint && lastPoint != null ) {
859
- Point p1 = new Point (lastPoint .x + offx , lastPoint .y + offy );
860
- Point p2 = new Point (p . x + offx , p . y + offy );
858
+ if (currentPoint != specialNullPoint && lastPoint != specialNullPoint && lastPoint != null ) {
859
+ Point p1 = new Point (lastPoint .x , lastPoint .y );
860
+ Point p2 = new Point (currentPoint . x , currentPoint . y );
861
861
862
862
Pair <Point , Point > curPair = new Pair <>(p1 , p2 );
863
863
SceneAnimator curAnimator = animator ;
@@ -874,7 +874,7 @@ private void processOutputSlot(Set<Pair<Point, Point>> lastLineCache, OutputSlot
874
874
lineWidget .getActions ().addAction (hoverAction );
875
875
}
876
876
877
- processOutputSlot (lastLineCache , outputSlot , connectionList , controlPointIndex + 1 , p , newPredecessor , offx , offy , animator );
877
+ processOutputSlot (lastLineCache , outputSlot , connectionList , controlPointIndex + 1 , currentPoint , newPredecessor , animator );
878
878
}
879
879
}
880
880
0 commit comments