]> gerrit.simantics Code Review - simantics/district.git/blobdiff - org.simantics.district.network.ui/src/org/simantics/district/network/ui/nodes/DistrictNetworkEdgeNode.java
Use detailed geometry in drawing info labels, symbols and picking.
[simantics/district.git] / org.simantics.district.network.ui / src / org / simantics / district / network / ui / nodes / DistrictNetworkEdgeNode.java
index e112c536622a3ffdce0a4ad4af64271d865e4bd9..1c677316a26c167751150d21d290fb33fe53cbbb 100644 (file)
@@ -32,6 +32,9 @@ public class DistrictNetworkEdgeNode extends G2DParentNode implements ISelection
     private DistrictNetworkEdge edge;
     private Rectangle2D bounds;
     private transient Path2D path;
+    private transient Path2D detailedPath;
+
+    private transient int zoomLevel = 0;
 
     private static boolean scaleStroke = true;
     private Color color;
@@ -47,11 +50,15 @@ public class DistrictNetworkEdgeNode extends G2DParentNode implements ISelection
     private static final Rectangle2D NORMAL = new Rectangle2D.Double(left, top, width, height);
 
     private transient Point2D centerPoint;
+    private transient Point2D detailedCenterPoint;
+    private transient Point2D direction;
+    private transient Point2D detailedDirection;
+
     private transient Rectangle2D symbolRect;
     private transient AffineTransform symbolTransform;
 
     private boolean hidden = false;
-    
+
     private Double arrowLength;
 
     private static double startX;
@@ -59,6 +66,8 @@ public class DistrictNetworkEdgeNode extends G2DParentNode implements ISelection
     private static double endX;
     private static double endY;
 
+    private Path2D arrowPath;
+
     @Override
     public void init() {
     }
@@ -82,6 +91,8 @@ public class DistrictNetworkEdgeNode extends G2DParentNode implements ISelection
             }
         }
 
+        zoomLevel = (Integer) g2d.getRenderingHint(DistrictRenderingHints.KEY_VIEW_ZOOM_LEVEL);
+
         if (!hidden) {
             Object aaHint = g2d.getRenderingHint(RenderingHints.KEY_ANTIALIASING);
             g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
@@ -96,8 +107,7 @@ public class DistrictNetworkEdgeNode extends G2DParentNode implements ISelection
                 bs = STROKE;
             }
 
-            int zoomLevel = (Integer) g2d.getRenderingHint(DistrictRenderingHints.KEY_VIEW_ZOOM_LEVEL);
-            path = calculatePath(edge, path, zoomLevel > 13);
+            Path2D path = renderDetailed(zoomLevel) ? this.detailedPath : this.path;
     
             if (isSelected()) {
                 g2d.setColor(SELECTION_COLOR);
@@ -114,56 +124,50 @@ public class DistrictNetworkEdgeNode extends G2DParentNode implements ISelection
                 g2d.setColor(Color.BLACK);
                 float lw = STROKE.getLineWidth() / (float)scale;
                 g2d.setStroke(new BasicStroke(lw, BasicStroke.CAP_BUTT, BasicStroke.JOIN_BEVEL));
-                
+
                 double l = arrowLength;
                 double w = 2 * (double) lw * Math.signum(l);
                 if (Math.abs(w) > Math.abs(l)) w = l;
                 double offset = 2 * (double) lw;
-                
-                double centerX = (startX + endX) / 2, centerY = (startY + endY) / 2;
-                double deltaX = endX - startX, deltaY = endY - startY;
-                double length = Math.sqrt(deltaX * deltaX + deltaY * deltaY);
-                deltaX /= length;
-                deltaY /= length;
-                
+
+                Point2D centerPoint = getCenterPoint(zoomLevel);
+                Point2D direction = getDirection(zoomLevel);
+                double centerX = centerPoint.getX(), centerY = centerPoint.getY();
+                double deltaX = direction.getX(), deltaY = direction.getY();
+
                 double x0 = centerX - l/2 * deltaX + offset * deltaY;
                 double y0 = centerY - l/2 * deltaY - offset * deltaX;
                 double x1 = centerX + (l/2 - w) * deltaX + offset * deltaY;
                 double y1 = centerY + (l/2 - w) * deltaY - offset * deltaX;
-                
+
                 g2d.draw(new Line2D.Double(x0, y0, x1, y1));
-                
-                Path2D path = new Path2D.Double();
-                path.moveTo(x1 + w * deltaX, y1 + w * deltaY);
-                path.lineTo(x1 + w * deltaY, y1 - w * deltaX);
-                path.lineTo(x1 - w * deltaY, y1 + w * deltaX);
-                path.closePath();
-                g2d.fill(path);
+
+                arrowPath = new Path2D.Double();
+                arrowPath.moveTo(x1 + w * deltaX, y1 + w * deltaY);
+                arrowPath.lineTo(x1 + w * deltaY, y1 - w * deltaX);
+                arrowPath.lineTo(x1 - w * deltaY, y1 + w * deltaX);
+                arrowPath.closePath();
+                g2d.fill(arrowPath);
             }
-            
+
             // Reset
             g2d.setStroke(oldStroke);
             g2d.setColor(oldColor);
             g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, aaHint);
         }
 
+        Point2D centerP = getCenterPoint(zoomLevel);
         for (INode nn : getNodes()) {
-            G2DNode g2dNode = (G2DNode)nn;
+            G2DNode g2dNode = (G2DNode) nn;
             if (g2dNode instanceof SVGNode) {
-                // Render SVG symbol
-                double viewScaleRecip = 10;
-                if (scaleStroke) {
-                    viewScaleRecip /= scale;
-                }
-
                 // If the node is hidden from the start, then the center point cannot be calculated yet.
-                Point2D p = getCenterPoint();
-                if (p == null)
+                if (!isDefined(centerP))
                     break;
 
-                symbolRect = DistrictNetworkNodeUtils.calculateDrawnGeometry(p, NORMAL, symbolRect, viewScaleRecip);
+                // Render SVG symbol
+                double viewScaleRecip = scaleStroke ? 10 / scale : 10;
+                symbolRect = DistrictNetworkNodeUtils.calculateDrawnGeometry(centerP, NORMAL, symbolRect, viewScaleRecip);
                 symbolTransform = DistrictNetworkNodeUtils.getTransformToRectangle(symbolRect, symbolTransform);
-
                 g2dNode.setTransform(symbolTransform);
             }
             g2dNode.render(g2d);
@@ -173,6 +177,14 @@ public class DistrictNetworkEdgeNode extends G2DParentNode implements ISelection
             g2d.setTransform(ot);
     }
 
+    static boolean isDefined(Point2D p) {
+        return p != null && !(Double.isNaN(p.getX()) || Double.isNaN(p.getY()));
+    }
+
+    boolean renderDetailed(int zoomLevel) {
+        return zoomLevel > 13;
+    }
+
     public float getStrokeWidth(AffineTransform tr, boolean selection) {
         double scale = DistrictNetworkNodeUtils.getScale(tr);
         float width = STROKE.getLineWidth() * getStrokeWidth(scale);
@@ -192,31 +204,16 @@ public class DistrictNetworkEdgeNode extends G2DParentNode implements ISelection
     }
 
     public Path2D getPath() {
-        return path;
+        return renderDetailed(zoomLevel) ? detailedPath : path;
     }
-    
-    private Point2D getCenterPoint() {
-        if (path == null)
-            return null;
-        if (centerPoint == null)
-            centerPoint = new Point2D.Double();
-        Rectangle2D bounds = path.getBounds2D();
-        centerPoint.setLocation(bounds.getCenterX(), bounds.getCenterY());
-        return centerPoint;
+
+    public Point2D getCenterPoint(int zoomLevel) {
+        return renderDetailed(zoomLevel) ? detailedCenterPoint : centerPoint;
     }
 
-//    public static Line2D calculateLine(DistrictNetworkEdge edge, Line2D result) {
-//        // Convert to screen coordinates
-//        double startX = ModelledCRS.longitudeToX(edge.getStartPoint().getX());
-//        double startY = ModelledCRS.latitudeToY(-edge.getStartPoint().getY()); // Invert for Simantics
-//        double endX = ModelledCRS.longitudeToX(edge.getEndPoint().getX());
-//        double endY = ModelledCRS.latitudeToY(-edge.getEndPoint().getY());// Invert for Simantics
-//
-//        if (result == null)
-//            result = new Line2D.Double();
-//        result.setLine(startX, startY, endX, endY);
-//        return result;
-//    }
+    public Point2D getDirection(int zoomLevel) {
+        return renderDetailed(zoomLevel) ? detailedDirection : direction;
+    }
 
     public static Path2D calculatePath(DistrictNetworkEdge edge, Path2D result, boolean detailed) {
         startX = ModelledCRS.longitudeToX(edge.getStartPoint().getX());
@@ -234,7 +231,6 @@ public class DistrictNetworkEdgeNode extends G2DParentNode implements ISelection
             double[] detailedGeometry = edge.getGeometry();
             if (detailedGeometry != null && !DistrictNetworkEdgeElementFactory.EMPTY.equals(detailedGeometry)) {
                 // ok, lets do this
-                
                 for (int i = 0; i < detailedGeometry.length; i += 2) {
                     double x = ModelledCRS.longitudeToX(detailedGeometry[i]);
                     double y = ModelledCRS.latitudeToY(-detailedGeometry[i+1]);// Invert for Simantics
@@ -262,12 +258,31 @@ public class DistrictNetworkEdgeNode extends G2DParentNode implements ISelection
         bounds = calculateBounds(oldBounds);
     }
 
+    /**
+     * Calculates conservative bounds of the node provided by
+     * <code>detailedPath</code>. These might be larger than the simplified bounds
+     * of <code>path</code> but the conservative bounds ensure that spatial
+     * optimizations work properly.
+     */
     private Rectangle2D calculateBounds(Rectangle2D rect) {
-        return calculatePath(edge, null, true).getBounds2D();
+        if (detailedPath == null)
+            detailedPath = calculatePath(edge, detailedPath, true);
+        return detailedPath.getBounds2D();
     }
 
     public void setDNEdge(DistrictNetworkEdge edge) {
         this.edge = edge;
+        path = calculatePath(edge, path, false);
+        detailedPath = calculatePath(edge, detailedPath, true);
+
+        centerPoint = new Point2D.Double();
+        detailedCenterPoint = new Point2D.Double();
+        direction = new Point2D.Double();
+        detailedDirection = new Point2D.Double();
+
+        DistrictNetworkNodeUtils.calculateCenterPointAndDirection(path, centerPoint, direction);
+        DistrictNetworkNodeUtils.calculateCenterPointAndDirection(detailedPath, detailedCenterPoint, detailedDirection);
+
         updateBounds();
     }
 
@@ -288,7 +303,7 @@ public class DistrictNetworkEdgeNode extends G2DParentNode implements ISelection
     public void setDynamicColor(Color color) {
         this.dynamicColor = color;
     }
-    
+
     @PropertySetter(value = "arrowLength")
     public void setArrowLength(Double length) {
         arrowLength = length;
@@ -300,10 +315,10 @@ public class DistrictNetworkEdgeNode extends G2DParentNode implements ISelection
             if (nn instanceof SVGNode)
                 ((SVGNode)nn).setData(value);
     }
-    
 
     @PropertySetter(value = "hidden")
     public void setHidden(Boolean value) {
         this.hidden = value;
     }
+
 }