]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.g2d/src/org/simantics/g2d/routing/algorithm2/Router2.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / routing / algorithm2 / Router2.java
index 8c95cc99715c0be2814c6f252f33d80254d94a04..cd851338abdcf56f97179678c06d2d98372f0506 100644 (file)
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.g2d.routing.algorithm2;\r
-\r
-import java.awt.geom.AffineTransform;\r
-import java.awt.geom.Path2D;\r
-import java.awt.geom.PathIterator;\r
-import java.awt.geom.Rectangle2D;\r
-import java.util.Arrays;\r
-\r
-import org.simantics.g2d.routing.Constants;\r
-import org.simantics.g2d.routing.IGraphModel;\r
-import org.simantics.g2d.routing.IRouter;\r
-import org.simantics.g2d.routing.Terminal;\r
-\r
-public class Router2 implements IRouter {\r
-\r
-    static int getSomeDirection(int mask) {\r
-        if(mask == 0)\r
-            return 0;\r
-        int result = 0;\r
-        while((mask & 1) == 0) {\r
-            ++result;\r
-            mask >>= 1;\r
-        }\r
-        return result;\r
-    }\r
-    \r
-    @Override\r
-    public void update(IGraphModel model) {\r
-        LocalRouter localRouter = new LocalRouter(false);\r
-        for(Object c : model.getConnections()) {\r
-            Terminal begin = model.getBeginTerminal(c);        \r
-            Terminal end = model.getEndTerminal(c);\r
-            double[] points = model.getRoutePoints(c);\r
-            \r
-            if(begin == null) {\r
-               if(points.length < 2)\r
-                       continue;\r
-                       begin = new Terminal(points[0], points[1], 0x1, Terminal.ZEROS, \r
-                               new Rectangle2D.Double(points[0], points[1], 0.0, 0.0));\r
-                       points = Arrays.copyOfRange(points, 2, points.length);\r
-               }\r
-               if(end == null) {\r
-                       if(points.length < 2)\r
-                       continue;\r
-                       end = new Terminal(points[points.length-2], points[points.length-1], 0xf, Terminal.ZEROS,\r
-                               new Rectangle2D.Double(points[points.length-2], points[points.length-1], 0.0, 0.0));\r
-                       points = Arrays.copyOf(points, points.length-2);\r
-               }\r
-\r
-               double bestLength = Double.POSITIVE_INFINITY;\r
-               Path2D bestPath = null;\r
-               \r
-               for(int sDir : Constants.POSSIBLE_DIRECTIONS[begin.directions])\r
-                       for(int tDir : Constants.POSSIBLE_DIRECTIONS[end.directions]) {\r
-                               localRouter.sx = begin.x;\r
-                               localRouter.sy = begin.y;\r
-                               localRouter.aMinX = begin.parentObstacle.getMinX();\r
-                               localRouter.aMinY = begin.parentObstacle.getMinY();\r
-                               localRouter.aMaxX = begin.parentObstacle.getMaxX();\r
-                               localRouter.aMaxY = begin.parentObstacle.getMaxY();\r
-                               localRouter.sourceDirection = sDir;\r
-\r
-                               localRouter.tx = end.x;\r
-                               localRouter.ty = end.y;\r
-                               localRouter.bMinX = end.parentObstacle.getMinX();\r
-                               localRouter.bMinY = end.parentObstacle.getMinY();\r
-                               localRouter.bMaxX = end.parentObstacle.getMaxX();\r
-                               localRouter.bMaxY = end.parentObstacle.getMaxY();\r
-                               localRouter.targetDirection = tDir;\r
-\r
-                               localRouter.route();\r
-\r
-                               double length = pathLength(localRouter.path);\r
-                               if(length < bestLength) {\r
-                                       bestLength = length;\r
-                                       bestPath = localRouter.path;\r
-                               }  \r
-                       }\r
-            \r
-               if(bestPath != null)\r
-                       model.setPath(c, bestPath);\r
-        }\r
-    }\r
-    \r
-    final static AffineTransform IDENTITY = new AffineTransform();\r
-\r
-    static double pathLength(Path2D path) {\r
-       double length = 0.0;\r
-       PathIterator it = path.getPathIterator(IDENTITY);\r
-       double[] temp = new double[6];\r
-       double x=0.0, y=0.0;\r
-       double bendCount = 0.0;\r
-       while(!it.isDone()) {\r
-               bendCount += 1.0;\r
-               if(it.currentSegment(temp) != PathIterator.SEG_MOVETO)\r
-                       length += Math.abs(x - temp[0] + y - temp[1]);\r
-               x = temp[0];\r
-                       y = temp[1];\r
-                       it.next();\r
-       }\r
-       return length * (6.0 + bendCount);\r
-    }\r
-    \r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.g2d.routing.algorithm2;
+
+import java.awt.geom.AffineTransform;
+import java.awt.geom.Path2D;
+import java.awt.geom.PathIterator;
+import java.awt.geom.Rectangle2D;
+import java.util.Arrays;
+
+import org.simantics.g2d.routing.Constants;
+import org.simantics.g2d.routing.IGraphModel;
+import org.simantics.g2d.routing.IRouter;
+import org.simantics.g2d.routing.Terminal;
+
+public class Router2 implements IRouter {
+
+    static int getSomeDirection(int mask) {
+        if(mask == 0)
+            return 0;
+        int result = 0;
+        while((mask & 1) == 0) {
+            ++result;
+            mask >>= 1;
+        }
+        return result;
+    }
+    
+    @Override
+    public void update(IGraphModel model) {
+        LocalRouter localRouter = new LocalRouter(false);
+        for(Object c : model.getConnections()) {
+            Terminal begin = model.getBeginTerminal(c);        
+            Terminal end = model.getEndTerminal(c);
+            double[] points = model.getRoutePoints(c);
+            
+            if(begin == null) {
+               if(points.length < 2)
+                       continue;
+                       begin = new Terminal(points[0], points[1], 0x1, Terminal.ZEROS, 
+                               new Rectangle2D.Double(points[0], points[1], 0.0, 0.0));
+                       points = Arrays.copyOfRange(points, 2, points.length);
+               }
+               if(end == null) {
+                       if(points.length < 2)
+                       continue;
+                       end = new Terminal(points[points.length-2], points[points.length-1], 0xf, Terminal.ZEROS,
+                               new Rectangle2D.Double(points[points.length-2], points[points.length-1], 0.0, 0.0));
+                       points = Arrays.copyOf(points, points.length-2);
+               }
+
+               double bestLength = Double.POSITIVE_INFINITY;
+               Path2D bestPath = null;
+               
+               for(int sDir : Constants.POSSIBLE_DIRECTIONS[begin.directions])
+                       for(int tDir : Constants.POSSIBLE_DIRECTIONS[end.directions]) {
+                               localRouter.sx = begin.x;
+                               localRouter.sy = begin.y;
+                               localRouter.aMinX = begin.parentObstacle.getMinX();
+                               localRouter.aMinY = begin.parentObstacle.getMinY();
+                               localRouter.aMaxX = begin.parentObstacle.getMaxX();
+                               localRouter.aMaxY = begin.parentObstacle.getMaxY();
+                               localRouter.sourceDirection = sDir;
+
+                               localRouter.tx = end.x;
+                               localRouter.ty = end.y;
+                               localRouter.bMinX = end.parentObstacle.getMinX();
+                               localRouter.bMinY = end.parentObstacle.getMinY();
+                               localRouter.bMaxX = end.parentObstacle.getMaxX();
+                               localRouter.bMaxY = end.parentObstacle.getMaxY();
+                               localRouter.targetDirection = tDir;
+
+                               localRouter.route();
+
+                               double length = pathLength(localRouter.path);
+                               if(length < bestLength) {
+                                       bestLength = length;
+                                       bestPath = localRouter.path;
+                               }  
+                       }
+            
+               if(bestPath != null)
+                       model.setPath(c, bestPath);
+        }
+    }
+    
+    final static AffineTransform IDENTITY = new AffineTransform();
+
+    static double pathLength(Path2D path) {
+       double length = 0.0;
+       PathIterator it = path.getPathIterator(IDENTITY);
+       double[] temp = new double[6];
+       double x=0.0, y=0.0;
+       double bendCount = 0.0;
+       while(!it.isDone()) {
+               bendCount += 1.0;
+               if(it.currentSegment(temp) != PathIterator.SEG_MOVETO)
+                       length += Math.abs(x - temp[0] + y - temp[1]);
+               x = temp[0];
+                       y = temp[1];
+                       it.next();
+       }
+       return length * (6.0 + bendCount);
+    }
+    
+}