]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.plant3d/src/org/simantics/plant3d/scenegraph/controlpoint/PipingRules.java
Fix path leg updates when reducer is the first or the last component.
[simantics/3d.git] / org.simantics.plant3d / src / org / simantics / plant3d / scenegraph / controlpoint / PipingRules.java
1 package org.simantics.plant3d.scenegraph.controlpoint;
2
3 import java.util.ArrayList;
4 import java.util.Collection;
5 import java.util.List;
6
7 import javax.vecmath.Point3d;
8 import javax.vecmath.Quat4d;
9 import javax.vecmath.Vector3d;
10
11 import org.simantics.g3d.math.MathTools;
12 import org.simantics.plant3d.scenegraph.InlineComponent;
13 import org.simantics.plant3d.scenegraph.P3DRootNode;
14 import org.simantics.plant3d.scenegraph.PipeRun;
15 import org.simantics.plant3d.scenegraph.PipelineComponent;
16 import org.simantics.plant3d.scenegraph.TurnComponent;
17 import org.simantics.plant3d.scenegraph.controlpoint.PipeControlPoint.Direction;
18 import org.simantics.plant3d.utils.ComponentUtils;
19 import org.simantics.utils.datastructures.Pair;
20 import org.simantics.utils.ui.ErrorLogger;
21
22 public class PipingRules {
23         private static final boolean DEBUG = false;
24         private static final boolean DUMMY = false;
25
26         private static double MIN_TURN_ANGLE = 0.001;    // Threshold for removing turn components.
27         private static double ALLOWED_OFFSET = 0.001;    // Allowed offset for directed path legs
28         private static double MIN_INLINE_LENGTH = 0.0005; // Minimum length of inline components, when component removal is not allowed. 
29
30         private static final int REMOVE_NONE = 0;
31         private static final int REMOVE_START = 1;
32         private static final int REMOVE_END = 2;
33         private static final int REMOVE_BOTH = 3;
34         
35
36         // PathLeg iteration indicator. NEXT_S > NEXT > NONE  PREV_S > PREV > NONE 
37         private enum PathLegUpdateType {
38                 NONE,   // Only current path leg needs to be updated  (for example, inline comp was moved)
39                 PREV,   // Current and previous path leg need to be updated 
40                 NEXT,   // Current and next path leg need to be updated
41                 PREV_S, // Current and previous two path legs need to be updated (turn was moved, which affect other path leg end turns, and thus following path legs
42                 NEXT_S  // Current and next two path legs need to be updated
43         };
44         
45         private static boolean enabled = true;  // 
46         private static boolean updating = false;
47         private static boolean allowInsertRemove = true;
48         private static boolean triedIR = false;
49
50         
51         private static List<PipeControlPoint> requestUpdates = new ArrayList<PipeControlPoint>();
52         private static List<PipeControlPoint> currentUpdates = new ArrayList<PipeControlPoint>();
53         
54         private static Object updateMutex = new Object();
55         private static Object ruleMutex = new Object();
56         
57         public static void requestUpdate(PipeControlPoint pcp) {
58             if (!PipingRules.enabled)
59                 return;
60                 if (DEBUG) System.out.println("PipingRules request " + pcp);
61                 synchronized (updateMutex) {
62                         if (!requestUpdates.contains(pcp))
63                                 requestUpdates.add(pcp);
64                 }
65         }
66         
67         public static boolean update() throws Exception {
68             if (!PipingRules.enabled)
69                 return false;
70             
71                 if (requestUpdates.size() == 0)
72                         return false;
73                 
74                 List<PipeControlPoint> temp = new ArrayList<PipeControlPoint>(requestUpdates.size());
75                 synchronized(updateMutex) {
76                         temp.addAll(requestUpdates);
77                         requestUpdates.clear();
78                 }
79                 synchronized (ruleMutex) {
80                         currentUpdates.clear();
81                         currentUpdates.addAll(temp);
82                         // TODO : we should remove already processed control points from currentUpdates after each _positionUpdate call.
83                         for (PipeControlPoint pcp : currentUpdates)
84                                 _positionUpdate(pcp, true);
85                         currentUpdates.clear();
86                 }
87                 synchronized(updateMutex) {
88                         requestUpdates.removeAll(temp);
89                 }
90                 
91                 return true;
92         }
93         
94         public static boolean positionUpdate(PipeControlPoint pcp) throws Exception {
95                 
96                 return positionUpdate(pcp, true);
97         }
98         
99         public static boolean positionUpdate(PipeControlPoint pcp, boolean allowIR) throws Exception {
100                 synchronized (ruleMutex) {
101                         currentUpdates.add(pcp);
102                         boolean b = _positionUpdate(pcp, allowIR);
103                         currentUpdates.clear();
104                         return b;
105                 }
106                 
107         }
108         
109         private static boolean _positionUpdate(PipeControlPoint pcp, boolean allowIR) throws Exception {
110                 if (updating || !enabled)
111                         return true;
112                 if (pcp.getPipeRun() == null)
113                         return false;
114                 try {
115                         if (DEBUG) System.out.println("PipingRules " + pcp);
116                         updating = true;
117                         allowInsertRemove = allowIR;
118                         triedIR = false;
119                         validate(pcp.getPipeRun());
120                         if (pcp.getParentPoint() != null)
121                             pcp = pcp.getParentPoint();
122                         if (pcp.asPathLegEnd()) {
123                                 updatePathLegEndControlPoint(pcp); // FIXME: Rules won't work properly, if they are not run twice.
124                                 //updatePathLegEndControlPoint(pcp);
125                         } else {
126                                 updateInlineControlPoint(pcp);
127                                 //updateInlineControlPoint(pcp);
128                         }
129                         validate(pcp.getPipeRun());
130                         if (!allowInsertRemove)
131                                 return !triedIR;
132                         return true;
133                 } finally {
134                         updating = false;
135 //                      System.out.println("PipingRules done " + pcp);
136                 }
137         }
138         
139         public static void setEnabled(boolean enabled) {
140                 PipingRules.enabled = enabled;
141                 if(!enabled)
142                         currentUpdates.clear();
143         }
144         
145         public static boolean isEnabled() {
146                 return enabled;
147         }
148
149         public static class ExpandIterInfo {
150                 // these two are turn control points
151                 private PipeControlPoint start;
152                 private PipeControlPoint end;
153                 private int type;
154
155                 public ExpandIterInfo() {
156
157                 }
158
159                 public ExpandIterInfo(PipeControlPoint tcp, int type) {
160                         if (type == REMOVE_START)
161                                 start = tcp;
162                         else
163                                 end = tcp;
164                         this.type = type;
165                 }
166
167                 public ExpandIterInfo(PipeControlPoint start, PipeControlPoint end) {
168                         this.start = start;
169                         this.end = end;
170                         this.type = REMOVE_BOTH;
171                 }
172
173                 public PipeControlPoint getEnd() {
174                         return end;
175                 }
176
177                 public void setEnd(PipeControlPoint end) {
178                         this.end = end;
179                 }
180
181                 public PipeControlPoint getStart() {
182                         return start;
183                 }
184
185                 public void setStart(PipeControlPoint start) {
186                         this.start = start;
187                 }
188
189                 public int getType() {
190                         return type;
191                 }
192
193                 public void setType(int type) {
194                         this.type = type;
195                 }
196
197         }
198
199         private static void updatePathLegEndControlPoint(PipeControlPoint pcp) throws Exception {
200                 if (DEBUG)
201                         System.out.println("PipingRules.updatePathLegEndControlPoint() " + pcp);
202                 if (pcp.getNext() != null) {
203                         updatePathLegNext(pcp, pcp, PathLegUpdateType.NEXT_S);
204                 }
205                 if (pcp.getPrevious() != null) {
206                         updatePathLegPrev(pcp, pcp, PathLegUpdateType.PREV_S);
207                 }
208
209         }
210
211         private static void updateInlineControlPoint(PipeControlPoint pcp) throws Exception {
212                 if (DEBUG)
213                         System.out.println("PipingRules.updateInlineControlPoint() " + pcp);
214                 PipeControlPoint start = pcp.findPreviousEnd();
215                 updatePathLegNext(start, pcp, PathLegUpdateType.NONE);
216         }
217
218         private static PipeControlPoint insertElbow(PipeControlPoint pcp1, PipeControlPoint pcp2, Vector3d pos) throws Exception{
219                 if (DEBUG)
220                         System.out.println("PipingRules.insertElbow() " + pcp1 + " " + pcp2 + " " + pos);
221                 if (pcp1.getNext() == pcp2 && pcp2.getPrevious() == pcp1) {
222                         
223                 } else if (pcp1.getNext() == pcp2 && pcp1.isDualInline() && pcp2.getPrevious() == pcp1.getDualSub()) {
224                         pcp1 = pcp1.getDualSub();       
225                 } else if (pcp1.getPrevious() == pcp2 && pcp2.getNext() == pcp1) {
226                         PipeControlPoint t = pcp1;
227                         pcp1 = pcp2;
228                         pcp2 = t;
229                 } else if (pcp2.isDualInline() && pcp1.getPrevious() == pcp2.getDualSub() && pcp2.getNext() == pcp1) {
230                         PipeControlPoint t = pcp1;
231                         pcp1 = pcp2.getDualSub();
232                         pcp2 = t;
233                 } else {
234                         throw new RuntimeException();
235                 }
236                 TurnComponent elbow = ComponentUtils.createTurn((P3DRootNode)pcp1.getRootNode());
237                 PipeControlPoint pcp = elbow.getControlPoint();
238                 if (pcp1.isDualInline())
239                         pcp1 = pcp1.getDualSub();
240                 String name = pcp1.getPipeRun().getUniqueName("Elbow");
241                 elbow.setName(name);
242                 pcp1.getPipeRun().addChild(elbow);
243
244                 pcp.insert(pcp1, pcp2);
245
246                 pcp.setWorldPosition(pos);
247                 validate(pcp.getPipeRun());
248                 return pcp;
249         }
250         
251         private static PipeControlPoint insertStraight(PipeControlPoint pcp1, PipeControlPoint pcp2, Vector3d pos, double length) throws Exception {
252                 if (DEBUG)
253                         System.out.println("PipingRules.insertStraight() " + pcp1 + " " + pcp2 + " " + pos);
254                 if (pcp1.getNext() == pcp2 && pcp2.getPrevious() == pcp1) {
255                         
256                 } else if (pcp1.getNext() == pcp2 && pcp1.isDualInline() && pcp2.getPrevious() == pcp1.getDualSub()) {
257                         pcp1 = pcp1.getDualSub();       
258                 } else if (pcp1.getPrevious() == pcp2 && pcp2.getNext() == pcp1) {
259                         PipeControlPoint t = pcp1;
260                         pcp1 = pcp2;
261                         pcp2 = t;
262                 } else if (pcp2.isDualInline() && pcp1.getPrevious() == pcp2.getDualSub() && pcp2.getNext() == pcp1) {
263                         PipeControlPoint t = pcp1;
264                         pcp1 = pcp2.getDualSub();
265                         pcp2 = t;
266                 } else {
267                         throw new RuntimeException();
268                 }
269                 InlineComponent component = ComponentUtils.createStraight((P3DRootNode)pcp1.getRootNode());
270                 PipeControlPoint scp = component.getControlPoint();
271                 if (pcp1.isDualInline())
272                         pcp1 = pcp1.getDualSub();
273                 String name = pcp1.getPipeRun().getUniqueName("Pipe");
274                 component.setName(name);
275                 pcp1.getPipeRun().addChild(component);
276                 
277                 scp.insert(pcp1, pcp2);
278
279                 scp.setWorldPosition(pos);
280                 scp.setLength(length);
281                 validate(scp.getPipeRun());
282                 return scp;
283         }
284         
285         private static PipeControlPoint insertStraight(PipeControlPoint pcp, Direction direction , Vector3d pos, double length) throws Exception {
286                 if (DEBUG)
287                         System.out.println("PipingRules.insertStraight() " + pcp + " " + direction + " " + pos);
288                 
289                 InlineComponent component = ComponentUtils.createStraight((P3DRootNode)pcp.getRootNode());
290                 PipeControlPoint scp = component.getControlPoint();
291                 if (pcp.isDualInline() && direction == Direction.NEXT)
292                         pcp = pcp.getDualSub();
293                 String name = pcp.getPipeRun().getUniqueName("Pipe");
294                 component.setName(name);
295                 pcp.getPipeRun().addChild(component);
296                 
297                 scp.insert(pcp,direction);
298
299                 scp.setWorldPosition(pos);
300                 scp.setLength(length);
301                 validate(scp.getPipeRun());
302                 return scp;
303         }
304
305         private static void updatePathLegNext(PipeControlPoint start, PipeControlPoint updated, PathLegUpdateType lengthChange) throws Exception {
306                 UpdateStruct2 us = createUS(start, Direction.NEXT, 0, new ArrayList<ExpandIterInfo>(), updated);
307                 if (us == null) {
308                     System.out.println("Null update struct " + start);
309                     return; 
310                 }
311                 updatePathLeg(us, lengthChange);
312         }
313         
314         private static void updatePathLegPrev(PipeControlPoint start, PipeControlPoint updated, PathLegUpdateType lengthChange) throws Exception {
315                 UpdateStruct2 us = createUS(start, Direction.PREVIOUS, 0, new ArrayList<ExpandIterInfo>(), updated);
316                 if (us == null) {
317             System.out.println("Null update struct " + start);
318             return; 
319         }
320                 updatePathLeg(us, lengthChange);
321         }
322
323         private static class UpdateStruct2 {
324                 public PipeControlPoint start;
325                 public Vector3d startPoint;
326                 public ArrayList<PipeControlPoint> list;
327                 public PipeControlPoint end;
328                 public Vector3d endPoint;
329                 public Vector3d dir;
330                 public Vector3d offset;
331                 public boolean hasOffsets;
332                 public int iter;
333                 public boolean reversed;
334                 public ArrayList<ExpandIterInfo> toRemove;
335                 public PipeControlPoint updated;
336
337                 public UpdateStruct2(PipeControlPoint start, Vector3d startPoint, ArrayList<PipeControlPoint> list, PipeControlPoint end, Vector3d endPoint, Vector3d dir, Vector3d offset, boolean hasOffsets, int iter, boolean reversed, ArrayList<ExpandIterInfo> toRemove, PipeControlPoint updated) {
338                         if (start == null || end == null)
339                                 throw new NullPointerException();
340                         this.start = start;
341                         this.startPoint = startPoint;
342                         this.list = list;
343                         this.end = end;
344                         this.endPoint = endPoint;
345                         this.dir = dir;
346                         this.offset = offset;
347                         this.hasOffsets = hasOffsets;
348                         this.iter = iter;
349                         this.reversed = reversed;
350                         this.toRemove = toRemove;
351                         this.updated = updated;
352                         
353                         if (!MathTools.isValid(startPoint) || 
354                                 !MathTools.isValid(endPoint) || 
355                                 !MathTools.isValid(dir)) {
356                                 throw new RuntimeException();
357                         }
358                 }
359
360                 public String toString() {
361                         return start + " " + end+ " " + dir + " " + hasOffsets + " " + offset + " " + iter + " " + toRemove.size();
362                 }
363
364         }
365
366         @SuppressWarnings("unused")
367         private static boolean calculateOffset(Vector3d startPoint, Vector3d endPoint, PipeControlPoint start, ArrayList<PipeControlPoint> list, PipeControlPoint end, Vector3d dir, Vector3d offset) {
368                 boolean hasOffsets = false;
369                 List<PipeControlPoint> offsets = new ArrayList<PipeControlPoint>(list.size());
370                 // Only start offset affects the calculation
371                 if (start.isOffset())
372                     offsets.add(start);
373                 for (PipeControlPoint icp : list) {
374                         if (icp.isOffset()) {
375                                 offsets.add(icp);
376                         } else if (icp.isDualSub())
377                                 ErrorLogger.defaultLogError("Updating pipe run, found offset controlpoint " + icp, new Exception("ASSERT!"));
378                 }
379                 if (offsets.size() == 0) {
380                         dir.set(endPoint);
381                         dir.sub(startPoint);
382                         double l = dir.lengthSquared(); 
383                         if (l > MathTools.NEAR_ZERO)
384                                 dir.scale(1.0/Math.sqrt(l));
385                         offset.set(0.0, 0.0, 0.0);
386                         return false;
387                 } else {
388                         Vector3d sp = new Vector3d(startPoint);
389                         Point3d ep = new Point3d(endPoint);
390                         dir.set(ep);
391                         dir.sub(sp);
392                         double l = dir.lengthSquared(); 
393                         if (l > MathTools.NEAR_ZERO)
394                                 dir.scale(1.0/Math.sqrt(l));
395                         int iter = 100;
396                         while (iter >= 0) {
397                                 iter--;
398                                 offset.set(0.0, 0.0, 0.0);
399                                 
400                                 for (PipeControlPoint icp : offsets) {
401                                         Vector3d v = icp.getSizeChangeOffsetVector(dir);
402                                         offset.add(v);
403                                 }
404                                 Point3d nep = new Point3d(endPoint);
405                                 nep.sub(offset);
406                                 if (nep.distance(ep) < 0.0000000001) {
407                                         break;
408                                 } 
409                                 ep = nep;
410                                 dir.set(ep);
411                                 dir.sub(sp);
412                                 l = dir.lengthSquared(); 
413                                 if (l > MathTools.NEAR_ZERO)
414                                         dir.scale(1.0/Math.sqrt(l));
415                         }
416                         hasOffsets = true;
417                 }
418                 
419                 if (DEBUG && hasOffsets)
420                         System.out.println("calcOffset s:"+ startPoint + " e:" + endPoint + " d:" + dir + " o:"+offset) ;
421                 return hasOffsets;
422         }
423         
424         private static UpdateStruct2 createUS(PipeControlPoint start, Direction direction, int iter, ArrayList<ExpandIterInfo> toRemove, PipeControlPoint updated) {
425                 ArrayList<PipeControlPoint> list = new ArrayList<PipeControlPoint>();
426                 PipeControlPoint end = null;
427                 if (direction == Direction.NEXT) {
428                         end = start.findNextEnd(list);
429                 } else {
430                         ArrayList<PipeControlPoint> prevList = new ArrayList<PipeControlPoint>();
431                         PipeControlPoint tend = start.findPreviousEnd(prevList);
432                         for (PipeControlPoint icp : prevList) {
433                                 if (icp.isDualSub()) {
434                                         list.add(0, icp.getParentPoint());
435                                 } else {
436                                         list.add(0, icp);
437                                 }
438                         }  
439                         end = start;
440                         start = tend;
441                 }
442                 if (start == end)
443                         return null;
444                 boolean hasOffsets = false;
445                 Vector3d offset = new Vector3d();
446                 Vector3d startPoint = start.getWorldPosition();
447                 Vector3d endPoint = end.getWorldPosition();
448                 Vector3d dir = new Vector3d();
449                 hasOffsets = calculateOffset(startPoint, endPoint, start, list, end, dir, offset);
450                 System.out.println();
451                 return new UpdateStruct2(start, startPoint, list, end, endPoint, dir, offset, hasOffsets, iter, direction == Direction.PREVIOUS, toRemove, updated);
452         }
453         
454         private static boolean asDirected(PipeControlPoint pcp, Direction direction) {
455                 if (pcp.isDirected())
456                         return true;
457                 if (pcp.asFixedAngle()) {
458                         if (!pcp._getReversed())
459                                 return direction == Direction.NEXT;
460                         else
461                                 return direction == Direction.PREVIOUS;
462                 }
463                 return false;
464         }
465         
466         private static Vector3d direction(PipeControlPoint pcp, Direction direction) {
467                 return pcp.getDirection(direction);
468         }
469  
470         private static void updatePathLeg(UpdateStruct2 u, PathLegUpdateType lengthChange) throws Exception {
471             boolean rs = true;
472             boolean re = true;
473             if (lengthChange == PathLegUpdateType.NONE) {
474                 rs = false;
475                 re = false;
476             }
477             updatePathLeg(u, lengthChange, rs, re);
478         }
479         
480         private static void updatePathLeg(UpdateStruct2 u, PathLegUpdateType lengthChange, boolean rs, boolean re) throws Exception {
481                 int directed = 0;
482                 if (asDirected(u.start, Direction.NEXT))
483                         directed++;
484                 if (asDirected(u.end, Direction.PREVIOUS))
485                         directed++;
486                 if (rs)
487                     setErrorForce(u.start, null);
488                 if (re)
489                     setErrorForce(u.end, null);
490         for (PipeControlPoint pcp : u.list)
491             setErrorForce(pcp, null);
492                 switch (directed) {
493                 case 0:
494                         updateFreePathLeg(u, lengthChange);
495                         break;
496                 case 1:
497                         updateDirectedPathLeg(u, lengthChange);
498                         break;
499                 case 2:
500                         updateDualDirectedPathLeg(u, lengthChange);
501                         break;
502                 }
503
504         }
505
506         private static void updateFreePathLeg(UpdateStruct2 u, PathLegUpdateType lengthChange) throws Exception {
507                 if (DEBUG)
508                         System.out.println("PipingRules.updateFreePipeRun " + u + " " + lengthChange);
509                 checkExpandPathLeg(u, lengthChange);
510                 if (u.start.isInline() || u.end.isInline() || u.start.asFixedAngle()|| u.end.asFixedAngle())
511                         processPathLeg(u, true, false);
512         }
513
514         private static void updateInlineControlPoints(UpdateStruct2 u, boolean checkSizes) throws Exception{
515                 if (DEBUG)
516                         System.out.println("PipingRules.updateInlineControlPoints() " + u);
517
518                 Vector3d start = new Vector3d(u.startPoint);
519                 Vector3d end = new Vector3d(u.endPoint);
520                 
521                 if (checkSizes) {
522                         // create offsets for leg ends.
523                     if (u.start.isTurn())
524                         MathTools.mad(start, u.dir, u.start.getInlineLength());
525                     if (u.end.isTurn())
526                         MathTools.mad(end, u.dir, -u.end.getInlineLength());   
527                 }
528
529                 boolean recalcline = false;
530
531                 Vector3d sp = new Vector3d(start);
532                 Vector3d ep = new Vector3d(end);
533                 ep.sub(u.offset);
534                 
535                 if (u.start.isOffset()) {
536                     Vector3d offset = u.start.getSizeChangeOffsetVector(u.dir);
537                     updateOffsetPoint(u.start, offset);
538             sp.add(offset);
539             ep.add(offset);
540                 }
541                     
542                 for (PipeControlPoint icp : u.list) {
543                         updateInlineControlPoint(icp, sp, ep, u.dir);
544                         if (icp.isOffset()) {
545                                 // TODO : offset vector is already calculated and should be cached
546                                 Vector3d  offset = icp.getSizeChangeOffsetVector(u.dir);
547                                 updateOffsetPoint(icp, offset);
548                                 sp.add(offset);
549                                 ep.add(offset);
550                         }
551                 }
552                 
553                 if (!checkSizes)
554                         return; 
555
556                 // Collect all path leg points for updating variable length components. This list will also contain leg ends (usually turns)
557         ArrayList<PipeControlPoint> pathLegPoints = new ArrayList<>();
558         // Collect all fixed length components with their offsets. 
559         ArrayList<Pair<PipeControlPoint,Vector3d>> fixedLengthPoints = new ArrayList<>();
560
561         pathLegPoints.add(u.start);
562         fixedLengthPoints.add(new Pair<PipeControlPoint, Vector3d>(u.start, new Vector3d()));
563         Vector3d off = new Vector3d();
564         for (PipeControlPoint icp : u.list) {
565             pathLegPoints.add(icp);
566             updateBranchControlPointBranches(icp);
567             if (icp.isOffset()) {
568                 fixedLengthPoints.add(new Pair<PipeControlPoint, Vector3d>(icp, new Vector3d(off)));
569                 Vector3d  offset = icp.getSizeChangeOffsetVector(u.dir);
570                 off.add(offset);
571             } else if (!icp.isVariableLength()) {
572                 fixedLengthPoints.add(new Pair<PipeControlPoint, Vector3d>(icp, new Vector3d(off)));
573             }
574         }
575         pathLegPoints.add(u.end);
576         fixedLengthPoints.add(new Pair<PipeControlPoint, Vector3d>(u.end, new Vector3d(off)));
577         
578                 sp = new Vector3d(start);
579                 ep = new Vector3d(end);
580                 ep.sub(u.offset);
581                 
582                 updateFixedLengths(fixedLengthPoints, sp, ep, u.dir);
583                 
584                 for (int i = 0; i < pathLegPoints.size(); i++) {
585                         PipeControlPoint icp = pathLegPoints.get(i);
586
587                         PipeControlPoint prev = i > 0 ? pathLegPoints.get(i - 1) : null;
588                         PipeControlPoint next = i < pathLegPoints.size() - 1 ? pathLegPoints.get(i + 1) : null;
589                         
590                         if (prev != null && prev.isDualInline())
591                                 prev = prev.getDualSub();               
592
593                         if (icp.isVariableLength()) {
594                                 if (prev != null && next != null) {
595                                         recalcline = recalcline | updateVariableLength(icp,  prev, next);
596
597                                 } else {
598                                     // this is variable length component at the end of the piperun.
599                     // the problem is that we want to keep unconnected end of the component in the same
600                     // place, but center of the component must be moved.
601                                         updateVariableLengthEnd(icp, prev != null ? prev : next);
602                                 }
603                         } else if (prev != null && !prev.isVariableLength()) {
604                             // If this and previous control point are not variable length pcps, 
605                 // we'll have to check if there is no empty space between them.
606                 // I there is, we'll have to create new variable length component between them.
607                                 recalcline = recalcline | possibleVaribleLengthInsert(icp, prev);
608                         }
609                         if (icp.isOffset()) {
610                                 // TODO : offset vector is already calculated and should be cached
611                                 Vector3d  offset = icp.getSizeChangeOffsetVector(u.dir);
612                                 sp.add(offset);
613                                 ep.add(offset);
614                         }
615                 }
616                 
617                 if (recalcline) {
618                         u.list.clear();
619                         u.start.findNextEnd(u.list);
620                 } 
621                 if (checkSizes) {
622                     sp = new Vector3d(u.startPoint);
623                 ep = new Vector3d(u.endPoint);
624                 ep.sub(u.offset);
625                     double pathLegLength = MathTools.distance(sp, ep);
626             double availableLength = pathLegLength;
627             if (u.start.isTurn())
628                 availableLength -= u.start.getInlineLength();
629             if (u.end.isTurn())
630                 availableLength -= u.end.getInlineLength();
631             for (PipeControlPoint pcp : u.list) {
632                 if (!pcp.isVariableLength())
633                     availableLength-= pcp.getLength();
634                     }
635             if (availableLength < 0.0) {
636                 setError(u.start, "Not enough available space");
637                 setError(u.end, "Not enough available space");
638                 for (PipeControlPoint pcp : u.list)
639                     setError(pcp, "Not enough available space");
640             }
641 //            System.out.println(u.start.getPipelineComponent().toString() + " " + pathLegLength + " " + availableLength + " " + u.end.getPipelineComponent().toString() + " " + u.start.getInlineLength() + " " + u.end.getInlineLength());
642                 }
643         }
644         
645         private enum Gap{ATTACHED,OVERLAP,SPACE};
646         
647         private static class GapObj {
648             Gap gap;
649             double d;
650             
651             Pair<PipeControlPoint,Vector3d> pcp1;
652             Pair<PipeControlPoint,Vector3d> pcp2;
653         }
654         
655         private static void updateFixedLengths(List<Pair<PipeControlPoint,Vector3d>> fixedLengthPoints, Vector3d s, Vector3d e, Vector3d dir) {
656             double totalLength = MathTools.distance(s, e);
657             double reservedLength = 0.0;
658             List<Double> distances = new ArrayList<>(fixedLengthPoints.size());
659             distances.add(0.0);
660             for (int i = 1; i < fixedLengthPoints.size()-1; i++) {
661                 Pair<PipeControlPoint,Vector3d> pcp = fixedLengthPoints.get(i);
662                 reservedLength += pcp.first.getLength();
663                 Vector3d p = pcp.first.getWorldPosition();
664                 p.sub(pcp.second);
665                 double d= MathTools.distance(s, p);
666                 distances.add(d);
667             }
668             distances.add(totalLength);
669             
670             if (totalLength >= reservedLength) {
671                 // There is enough space for all fixed length components.
672                 List<GapObj> gaps = new ArrayList<>(fixedLengthPoints.size()-1);
673                 int overlaps = 0;
674                 // Analyze gaps between components
675                 for (int i = 0; i < fixedLengthPoints.size()-1; i++) {
676                     Pair<PipeControlPoint,Vector3d> pcp1 = fixedLengthPoints.get(i);
677                     Pair<PipeControlPoint,Vector3d> pcp2 = fixedLengthPoints.get(i+1);
678                     double d1 = distances.get(i);
679                     double d2 = distances.get(i+1);
680                     double ld1 = i == 0 ? 0.0 :pcp1.first.getInlineLength();
681                     double ld2 = i == fixedLengthPoints.size()-2 ? 0.0 : pcp2.first.getInlineLength();
682                     
683                     double e1 = d1 + ld1; // End of comp1
684                     double s2 = d2 - ld2; // Start of comp2
685                     double diff =s2 - e1;
686                     GapObj obj = new GapObj();
687                     obj.pcp1 = pcp1;
688                     obj.pcp2 = pcp2;
689                     obj.d = diff;
690                     if (diff < -MIN_INLINE_LENGTH) {
691                         obj.gap = Gap.OVERLAP;
692                         overlaps++;
693                     } else if (diff > MIN_INLINE_LENGTH) {
694                         obj.gap = Gap.SPACE;
695                     } else {
696                         obj.gap = Gap.ATTACHED;
697                     }
698                     gaps.add(obj);
699                 }
700                 // If there are no overlaps, there is nothing to do.
701                 if (overlaps == 0)
702                     return;
703                 // Get rid of overlapping components by using closest available free spaces.
704                 for (int i = 0; i < gaps.size(); i++) {
705                     GapObj gapObj = gaps.get(i);
706                     if (gapObj.gap != Gap.OVERLAP)
707                         continue;
708                     double curr = gapObj.d;
709                     int d = 1;
710                     while (curr < -MIN_INLINE_LENGTH) {
711                         GapObj next = i+d >= 0 ? gaps.get(i+d) : null;
712                     GapObj prev = i-d >= 0 ? gaps.get(i-d) : null;
713                         if (next != null && next.gap == Gap.SPACE) {
714                             double move = Math.min(-curr, next.d);
715                             curr+= move;
716                             next.d -= move;
717                             if (next.d < MIN_INLINE_LENGTH)
718                                 next.gap = Gap.ATTACHED;
719                             Vector3d mv = new Vector3d(dir);
720                             mv.normalize();
721                             mv.scale(move);
722                             for (int j = i ; j < i+d; j++) {
723                                 Pair<PipeControlPoint,Vector3d> pcp = gaps.get(j).pcp2;
724                                 Vector3d p = new Vector3d(pcp.first.getWorldPosition());
725                                 p.add(mv);
726                                 pcp.first.setWorldPosition(p);
727                             }
728                         }
729                         if (curr < -MIN_INLINE_LENGTH && prev != null && prev.gap == Gap.SPACE) {
730                             double move = Math.min(-curr, prev.d);
731                         curr+= move;
732                         next.d -= move;
733                         if (next.d < MIN_INLINE_LENGTH)
734                             next.gap = Gap.ATTACHED;
735                         Vector3d mv = new Vector3d(dir);
736                         mv.normalize();
737                         mv.scale(-move);
738                         for (int j = i ; j > i-d; j--) {
739                             Pair<PipeControlPoint,Vector3d> pcp = gaps.get(j).pcp1;
740                             Vector3d p = new Vector3d(pcp.first.getWorldPosition());
741                             p.add(mv);
742                             pcp.first.setWorldPosition(p);
743                         }
744                         }
745                     }
746                 }
747             } else {
748             for (int i = 1; i < fixedLengthPoints.size()-1; i++) {
749                 Pair<PipeControlPoint,Vector3d> prev = i == 0 ? null : fixedLengthPoints.get(i-1);
750                 Pair<PipeControlPoint,Vector3d> curr = fixedLengthPoints.get(i);
751                 Pair<PipeControlPoint,Vector3d> next = i == fixedLengthPoints.size() -1 ? null : fixedLengthPoints.get(i+1);
752                 updateFixedLength(curr, prev, next, s,e, dir);
753             }
754             }
755         }
756         
757         private static void updateFixedLength(Pair<PipeControlPoint,Vector3d> icp, Pair<PipeControlPoint,Vector3d> prev,  Pair<PipeControlPoint,Vector3d> next, Vector3d s, Vector3d e, Vector3d dir) {
758             if (prev != null) {
759                checkOverlap(prev, icp, dir,true);
760             }
761             if (next != null)
762                 checkOverlap(icp, next, dir,true);
763         }
764         
765         private static boolean checkOverlap(Pair<PipeControlPoint,Vector3d> icp, Pair<PipeControlPoint,Vector3d> icp2, Vector3d dir, boolean se) {
766             Vector3d p1 = icp.first.getWorldPosition();
767             Vector3d p2 = icp2.first.getWorldPosition();
768             p1.add(icp.second);
769             p2.add(icp2.second);
770             double u[] = new double[1];
771             MathTools.closestPointOnStraight(p2, p1, dir, u);
772             if (u[0] < 0.0) {
773                 p2.set(p1);
774                 p2.sub(icp.second);
775                 p2.add(icp2.second);
776                 MathTools.mad(p2, dir, MIN_INLINE_LENGTH);
777                 icp2.first.setWorldPosition(p2);
778             }
779             double d = MathTools.distance(p1, p2);
780         double r = icp.first.getInlineLength() + icp2.first.getInlineLength();
781         
782             if ((d-r) < - MIN_INLINE_LENGTH) {
783             if (se) {
784                 setError(icp.first, "Overlapping");
785                 setError(icp2.first, "Overlapping");
786             }
787             return true;
788         }
789         return false;
790         }
791         
792         /**
793          * Overrides current error of a component
794          * @param pcp
795          * @param error
796          */
797         private static void setErrorForce(PipeControlPoint pcp, String error) {
798             PipelineComponent comp = pcp.getPipelineComponent();
799         if (comp == null)
800             return;
801         comp.setError(error);
802         }
803         
804         /**
805          * Sets error for a component, if there is no existing error.
806          * @param pcp
807          * @param error
808          */
809         private static void setError(PipeControlPoint pcp, String error) {
810             PipelineComponent comp = pcp.getPipelineComponent();
811             if (comp == null)
812                 return;
813             if (comp.getError() != null)
814                 return;
815             comp.setError(error);
816         }
817         
818         private static boolean updateVariableLength(PipeControlPoint icp, PipeControlPoint prev,  PipeControlPoint next) {
819                 Vector3d prevPos = prev.getWorldPosition();
820                 Vector3d nextPos = next.getWorldPosition();
821                 
822                 Vector3d dir = new Vector3d(nextPos);
823                 dir.sub(prevPos);
824                 double l = dir.length();                // distance between control points
825                 double l2prev = prev.getInlineLength(); // distance taken by components
826                 double l2next = next.getInlineLength();
827                 double l2 = l2prev + l2next;
828                 double length = l - l2;                 // true length of the variable length component
829                 if (length >= MIN_INLINE_LENGTH) {      // check if there is enough space for variable length component.
830                         // components fit
831                         dir.normalize();
832                         dir.scale(length * 0.5 + l2prev);   // calculate center position of the component
833                         dir.add(prevPos);
834                         icp.setWorldPosition(dir);
835                         icp.setLength(length);
836                         return false;
837                 } else {
838                         // components leave no space to the component and it must be removed
839                         if (icp.isDeletable()) {
840                             if (!allowInsertRemove) {
841                                 icp.setLength(MIN_INLINE_LENGTH);
842                                 setError(icp, "Not enough available space");
843                                 triedIR = true;
844                                 return false;
845                             }
846                                 if (DEBUG)
847                                         System.out.println("PipingRules.updateVariableLength removing " + icp);
848                                 icp._remove();
849                                 return true;
850                         } else {
851                             icp.setLength(MIN_INLINE_LENGTH);
852                             icp.getPipelineComponent().setError("Not enough available space");
853                         }
854                         return false;
855                 }
856         }
857         
858         private static boolean possibleVaribleLengthInsert(PipeControlPoint icp, PipeControlPoint prev) throws Exception{
859                 Vector3d currentPos = icp.getWorldPosition();
860                 Vector3d prevPos = prev.getWorldPosition();
861                 Vector3d dir = new Vector3d(currentPos);
862                 dir.sub(prevPos);
863                 double l = dir.lengthSquared();
864                 double l2prev = prev.getInlineLength();
865                 double l2next = icp.getInlineLength();
866                 double l2 = l2prev + l2next;
867                 double l2s = l2 * l2;
868                 if (l > l2s) {
869                         if (allowInsertRemove) {
870                                 dir.normalize();
871                                 double length = Math.sqrt(l) - l2; // true length of the variable length component
872                                 dir.scale(length * 0.5 + l2prev); // calculate center position of the component
873                                 dir.add(prevPos);
874                                 insertStraight(prev, icp, dir, length);
875                                 return true;
876                         } else {
877                                 triedIR = true;
878                         }
879                 }
880                 return false;
881         }
882         
883         private static void updateVariableLengthEnd(PipeControlPoint icp,  PipeControlPoint prev) {
884                 Vector3d currentPos = icp.getWorldPosition();
885                 Vector3d prevPos = prev.getWorldPosition();
886                 
887                 Vector3d dir = new Vector3d();
888                 dir.sub(currentPos, prevPos);
889                 
890                 boolean simple = currentUpdates.contains(icp);
891                 if (simple) {
892                         // Update based on position -> adjust length
893                         double currentLength = (dir.length() - prev.getInlineLength()) * 2.0;
894                         icp.setLength(currentLength);
895                 } else {
896                         // Update based on neighbour movement -> adjust length and position, so that free end stays in place.
897                         double currentLength = icp.getLength();
898                         if (currentLength < MathTools.NEAR_ZERO) {
899                                 currentLength = (dir.length() - prev.getInlineLength()) * 2.0;
900                         }
901                         
902                         if (dir.lengthSquared() > MathTools.NEAR_ZERO)
903                                 dir.normalize();
904                         Point3d endPos = new Point3d(dir);
905                         endPos.scale(currentLength * 0.5);
906                         endPos.add(currentPos); // this is the free end of the component
907         
908                         double offset = prev.getInlineLength();
909                         Point3d beginPos = new Point3d(dir);
910                         beginPos.scale(offset);
911                         beginPos.add(prevPos); // this is the connected end of the component
912         
913                         double l = beginPos.distance(endPos);
914                         
915                         if (Double.isNaN(l))
916                                 System.out.println("Length for " + icp + " is NaN");
917         
918                         dir.scale(l * 0.5);
919                         beginPos.add(dir); // center position
920         
921                         if (DEBUG)
922                                 System.out.println("PipingRules.updateInlineControlPoints() setting variable length to " + l);
923                         icp.setLength(l);
924         
925                         icp.setWorldPosition(new Vector3d(beginPos));
926                 }
927         }
928
929         private static void ppNoOffset(UpdateStruct2 u) throws Exception {
930                 if (DEBUG)
931                         System.out.println("PipingRules.ppNoOffset() " + u);
932                 Vector3d offset = new Vector3d();
933                 if (u.hasOffsets) {
934                         u.dir.normalize();
935                         for (PipeControlPoint icp : u.list) {
936                                 if (icp.isOffset()) {
937                                         offset.add(icp.getSizeChangeOffsetVector(u.dir));
938                                 } else if (icp.isDualSub())
939                                         ErrorLogger.defaultLogError("Updating pipe run, found offset controlpoint " + icp, new Exception("ASSERT!"));
940                         }
941                 }
942                 u.offset = offset;
943                 checkExpandPathLeg(u, PathLegUpdateType.NONE);
944         }
945
946         private static void ppNoDir(PipeControlPoint start, Vector3d startPoint, ArrayList<PipeControlPoint> list, PipeControlPoint end, Vector3d endPoint, boolean hasOffsets, int iter, boolean reversed, ArrayList<ExpandIterInfo> toRemove, PipeControlPoint updated) throws Exception {
947                 if (DEBUG)
948                         System.out.println("PipingRules.ppNoDir() " + start + " " + end + " " + iter + " " + toRemove.size());
949                 // FIXME : extra loop (dir should be calculated here)
950                 Vector3d dir = new Vector3d();
951                 Vector3d offset = new Vector3d();
952                 hasOffsets = calculateOffset(startPoint, endPoint, start, list, end, dir, offset);
953                 ppNoOffset(new UpdateStruct2(start, startPoint, list, end, endPoint, dir, null, hasOffsets, iter, reversed, toRemove, updated));
954         }
955
956         private static void checkExpandPathLeg(UpdateStruct2 u, PathLegUpdateType lengthChange) throws Exception {
957                 checkExpandPathLeg(u, lengthChange, u.updated.isInline() && u.updated.isOffset());
958         }
959         
960         private static void checkExpandPathLeg(UpdateStruct2 u, PathLegUpdateType lengthChange, boolean updateEnds) throws Exception {
961                 if (DEBUG)
962                         System.out.println("PipingRules.checkExpandPathLeg() " + u + " " + lengthChange);
963                 if (lengthChange != PathLegUpdateType.NONE) {
964                         // FIXME : turns cannot be checked before inline cps are updated,
965                         // since their position affects calculation of turns
966                         processPathLeg(u, updateEnds, false);
967                         int type = checkTurns(u, lengthChange);
968                         if (type == REMOVE_NONE) {
969                                 processPathLeg(u, updateEnds, true);
970                         } else {
971                                 expandPathLeg(u, type);
972                         }
973                 } else {
974                         processPathLeg(u, updateEnds, true);
975                 }
976         }
977
978         private static void updateDirectedPathLeg(UpdateStruct2 u, PathLegUpdateType lengthChange) throws Exception {
979                 if (DEBUG)
980                         System.out.println("PipingRules.updateDirectedPipeRun() " + u + " " + lengthChange);
981                 PipeControlPoint dcp;
982                 PipeControlPoint other;
983                 boolean canMoveOther = false;
984                 boolean dcpStart = false;
985                 boolean inlineEnd = false;
986                 Vector3d position;
987                 if (asDirected(u.start, Direction.NEXT)) {
988                         dcp = u.start;
989                         other = u.end;
990                         position = u.startPoint;
991                         dcpStart = true;
992                         if (!u.reversed)
993                                 canMoveOther = true;
994                         inlineEnd = u.end.isInline();
995                                 
996                 } else {
997                         dcp = u.end;
998                         other = u.start;
999                         position = u.endPoint;
1000                         if (u.reversed)
1001                                 canMoveOther = true;
1002                         inlineEnd = u.start.isInline();
1003                 }
1004
1005                 Vector3d directedDirection = direction(dcp, dcpStart ? Direction.NEXT : Direction.PREVIOUS);
1006                 if (directedDirection == null) {
1007                         //updateTurnControlPointTurn(dcp, dcp.getPrevious(), dcp.getNext());
1008                         updateTurnControlPointTurn(dcp, null, null);
1009                         directedDirection = direction(dcp, dcpStart ? Direction.NEXT : Direction.PREVIOUS);
1010                         if (directedDirection == null) {
1011                                 return;
1012                         }
1013                 }
1014                 Point3d directedEndPoint = new Point3d(u.endPoint);
1015                 if (u.hasOffsets)
1016                         directedEndPoint.add(u.offset);
1017
1018                 double mu[] = new double[2];
1019
1020                 Vector3d closest;
1021                 Vector3d t = new Vector3d();
1022
1023                 if (dcpStart) {
1024                         closest = MathTools.closestPointOnStraight(directedEndPoint, u.startPoint, directedDirection, mu);
1025                         t.sub(closest, directedEndPoint);
1026                 } else {
1027                         closest = MathTools.closestPointOnStraight(u.startPoint, directedEndPoint, directedDirection, mu);
1028                         t.sub(closest, u.startPoint);
1029                 }
1030
1031                 double distance = t.length();
1032                 boolean aligned = (distance < ALLOWED_OFFSET);
1033                 if (aligned) {
1034                         if (u.start.isInline() || u.end.isInline() || u.start.asFixedAngle() || u.end.asFixedAngle())
1035                                 processPathLeg(u, true, false);
1036                         checkExpandPathLeg(u, lengthChange, inlineEnd);
1037                         
1038                 } else {
1039                         if (u.iter > 0) {
1040                                 backIter(u);
1041                         } else {
1042                                 PipeControlPoint nextToMoved;
1043
1044                                 if (u.list.size() > 0)
1045                                         if (dcpStart)
1046                                                 nextToMoved = u.list.get(0);
1047                                         else
1048                                                 nextToMoved = u.list.get(u.list.size() - 1);
1049                                 else if (dcpStart)
1050                                         nextToMoved = u.end;
1051                                 else
1052                                         nextToMoved = u.start;
1053                                 if (other.isVariableAngle()) {
1054
1055                                         // TODO calculate needed space from next run end.
1056                                     double space = spaceForTurn(other);
1057                                         if (mu[0] < space) {
1058                                                 if (dcpStart) {
1059                                                         closest.set(u.startPoint);
1060                                                 } else {
1061                                                         closest.set(u.endPoint);
1062                                                 }
1063                                                 Vector3d v = new Vector3d(directedDirection);
1064                                                 v.scale(space);
1065                                                 closest.add(v);
1066                                         }
1067
1068                                         if (canMoveOther) {
1069                                                 if (DEBUG)
1070                                                         System.out.println("PipingRules.updateDirectedPipeRun() moved end " + other + " to " + closest);
1071                                                 other.setWorldPosition(closest);
1072                                                 if (dcpStart) {
1073                                                         ppNoOffset(new UpdateStruct2(u.start, u.startPoint, u.list, u.end, new Vector3d(closest), directedDirection, null, u.hasOffsets, u.iter, u.reversed, u.toRemove, u.updated));
1074                                                         if (u.end.getNext() != null)
1075                                                                 updatePathLegNext(u.end, u.updated, PathLegUpdateType.NEXT);
1076                                                 } else {
1077                                                         ppNoOffset(new UpdateStruct2(u.start, new Vector3d(closest), u.list, u.end, u.endPoint, directedDirection, null, u.hasOffsets, u.iter, u.reversed, u.toRemove, u.updated));
1078                                                         if (u.start.getPrevious() != null)
1079                                                                 updatePathLegPrev(u.start, u.updated, PathLegUpdateType.PREV);
1080                                                 }
1081                                         } else {
1082                                                 // TODO : calculate needed space from next run end.
1083                                                 if (allowInsertRemove)
1084                                                         insertElbowUpdate(u, dcp, nextToMoved, dcpStart, position, directedDirection);
1085                                                         
1086                                                 else
1087                                                         triedIR = true;
1088                                         }
1089                                 } else if (other.isNonDirected() && other.getParentPoint() != null) {
1090                                         // FIXME : this code was for updating branches
1091                                         Vector3d bintersect = new Vector3d();
1092                                         PipeControlPoint bcp = other.getParentPoint();
1093                                         if (bcp != null && canMoveOther) {
1094                                                 Point3d bstart = new Point3d();
1095                                                 Point3d bend = new Point3d();
1096                                                 Vector3d bdir = new Vector3d();
1097                                                 bcp.getInlineControlPointEnds(bstart, bend, bdir);
1098                                                 Vector3d nintersect = new Vector3d();
1099
1100                                                 MathTools.intersectStraightStraight(position, directedDirection, bend, bdir, nintersect, bintersect, mu);
1101                                                 Vector3d dist = new Vector3d(nintersect);
1102                                                 dist.sub(bintersect);
1103                                                 canMoveOther = mu[1] > 0.0 && mu[1] < 1.0 && dist.lengthSquared() < 0.01;
1104                                         } else {
1105                                                 // TODO : endControlPoints are undirected: calculcate
1106                                                 // correct position for it
1107                                                 throw new UnsupportedOperationException("not implemented");
1108                                         }
1109                                         if (canMoveOther) {
1110                                                 if (DEBUG)
1111                                                         System.out.println("PipingRules.updateDirectedPipeRun() moved end " + other + " to " + bintersect);
1112                                                 // is required branch position is in possible range
1113                                                 bcp.setWorldPosition(bintersect);
1114                                                 if (dcpStart) {
1115                                                         checkExpandPathLeg(new UpdateStruct2(u.start, u.startPoint, u.list, u.end, new Vector3d(bintersect), directedDirection, u.offset, u.hasOffsets, u.iter, u.reversed, u.toRemove, u.updated), lengthChange);
1116                                                 } else {
1117                                                         checkExpandPathLeg(new UpdateStruct2(u.start, new Vector3d(bintersect), u.list, u.end, u.endPoint, directedDirection, u.offset, u.hasOffsets, u.iter, u.reversed, u.toRemove, u.updated), lengthChange);
1118                                                 }
1119                                         } else {
1120                                                 // branch cannot be moved into right position, new turn
1121                                                 // / elbow must be inserted
1122                                                 if (allowInsertRemove)
1123                                                         insertElbowUpdate(u, dcp, nextToMoved, dcpStart, position, directedDirection);
1124                                                 else
1125                                                         triedIR = true;
1126                                         }
1127
1128                                 } else { // assume that control point cannot be moved, but can
1129                                                         // be rotated
1130                                         if (allowInsertRemove)
1131                                                 insertElbowUpdate(u, dcp, nextToMoved, dcpStart, position, directedDirection);
1132                                         else
1133                                                 triedIR = true;
1134                                 }
1135                         }
1136                 }
1137                 
1138                 
1139         }
1140
1141         private static void updateDualDirectedPathLeg(UpdateStruct2 u, PathLegUpdateType lengthChange) throws Exception {
1142                 if (DEBUG)
1143                         System.out.println("PipingRules.updateDualDirectedPipeRun() " + u + " " + lengthChange);
1144                 
1145                 PipeControlPoint dcp1 = u.start;
1146                 PipeControlPoint dcp2 = u.end;
1147                 Point3d position1 = new Point3d(u.startPoint);
1148                 Point3d position2 = new Point3d(u.endPoint);
1149                 Point3d position1offset = new Point3d(position1);
1150                 position1offset.sub(u.offset);
1151                 Point3d position2offset = new Point3d(position2);
1152                 position2offset.add(u.offset);
1153                 Vector3d dir1 = direction(dcp1, Direction.NEXT);
1154                 Vector3d dir2 = direction(dcp2, Direction.PREVIOUS);
1155                 Vector3d p1 = MathTools.closestPointOnStraight(position1offset, position2, dir2);
1156                 Vector3d p2 = MathTools.closestPointOnStraight(position2offset, position1, dir1);
1157                 double d1 = position1.distance(new Point3d(p1));
1158                 double d2 = position2.distance(new Point3d(p2));
1159
1160                 boolean aligned = (d1 < ALLOWED_OFFSET && d2 < ALLOWED_OFFSET);
1161                 if (aligned) {
1162                         processPathLeg(u);
1163                 } else {
1164                         if (u.iter > 0) {
1165                                 backIter(u);
1166                         } else if (allowInsertRemove){
1167                                 PipeControlPoint dcp;
1168                                 PipeControlPoint next;
1169                                 if (!u.reversed) {
1170                                         dcp = dcp1;
1171                                         if (u.list.size() > 0)
1172                                                 next = u.list.get(0);
1173                                         else
1174                                                 next = dcp2;
1175                                 } else {
1176                                         dcp = dcp2;
1177                                         if (u.list.size() > 0)
1178                                                 next = u.list.get(u.list.size() - 1);
1179                                         else
1180                                                 next = dcp1;
1181                                 }
1182                                 
1183                                 p1 = dcp.getWorldPosition();
1184                                 Vector3d v = new Vector3d();
1185                                 if (!u.reversed)
1186                                         v.set(dir1);
1187                                 else
1188                                         v.set(dir2);
1189                                 
1190                                 // Reserve space for 90 deg elbow
1191                                 double off = dcp1.getPipeRun().getTurnRadius();
1192                                 v.scale(off);
1193                                 p1.add(v);
1194
1195                                 if (!u.reversed)
1196                                         p2 = MathTools.closestPointOnStraight(new Point3d(p1), position2, dir2);
1197                                 else
1198                                         p2 = MathTools.closestPointOnStraight(new Point3d(p1), position1, dir1);
1199
1200                                 // By default, the elbows are placed next to each other, by using 90 deg angles.
1201                                 // If the distance between elbows is not enough, we must move the other elbow (and create more shallow angle elbows)
1202                                 if (MathTools.distance(p1, p2) < off*2.05) {
1203                                         p2.add(v);
1204                                 }
1205                                 
1206                                 PipeControlPoint tcp1 = insertElbow(dcp, next, p1);
1207                                 PipeControlPoint tcp2 = insertElbow(tcp1, next, p2);
1208
1209                                 if (DEBUG)
1210                                         System.out.println("PipingRules.updateDualDirectedPipeRun() created two turns " + tcp1 + " " + tcp2);
1211
1212                                 if (!u.reversed) {
1213                                         Vector3d dd = new Vector3d(p2);
1214                                         dd.sub(p1);
1215                                         dir2.negate();
1216                                         updatePathLegNext(u.start, u.updated, PathLegUpdateType.NONE);
1217                                         updatePathLegNext(tcp1, u.updated, PathLegUpdateType.NONE);
1218                                         if (!u.reversed)
1219                                                 updatePathLegNext(tcp2, u.updated, PathLegUpdateType.NONE);
1220                                         else
1221                                                 updatePathLegPrev(tcp2, u.updated, PathLegUpdateType.NONE);
1222                                 } else {
1223                                         Vector3d dd = new Vector3d(p1);
1224                                         dd.sub(p2);
1225                                         dir2.negate();
1226                                         updatePathLegNext(tcp1, u.updated, PathLegUpdateType.NONE);
1227                                         updatePathLegNext(tcp2, u.updated, PathLegUpdateType.NONE);
1228                                         if (!u.reversed)
1229                                                 updatePathLegNext(u.start, u.updated, PathLegUpdateType.NONE);
1230                                         else
1231                                                 updatePathLegPrev(u.start, u.updated, PathLegUpdateType.NONE);
1232                                 }
1233                         } else {
1234                                 triedIR = true;
1235                         }
1236                 }
1237                 
1238         }
1239         
1240         private static double spaceForTurn(PipeControlPoint tcp) {
1241                 // TODO : this returns now space for 90 deg turn.
1242                 // The challenge: position of tcp affects the turn angle, which then affects the required space. Perhaps we need to iterate...
1243                 // Additionally, if the path legs contain offset, using just positions of opposite path leg ends is not enough,    
1244                 return ((TurnComponent)tcp.getPipelineComponent()).getTurnRadius();
1245         }
1246
1247         private static void insertElbowUpdate(UpdateStruct2 u, PipeControlPoint dcp, PipeControlPoint next, boolean dcpStart, Vector3d position, Vector3d directedDirection) throws Exception{
1248
1249                 
1250 //              Vector3d closest = new Vector3d(position);
1251 //              closest.add(directedDirection);
1252                 
1253                 PipeControlPoint tcp = null;
1254                 Vector3d closest;
1255                 if (dcpStart) {
1256                         closest = MathTools.closestPointOnStraight(next.getWorldPosition(), position, directedDirection);
1257                         tcp = insertElbow(dcp, next, closest);
1258                 } else {
1259                         closest = MathTools.closestPointOnStraight(dcp.getWorldPosition(), position, directedDirection);
1260                         tcp = insertElbow(next, dcp, closest);
1261                 }
1262                 // TODO properly calculate required distance between start and inserted elbow.
1263                 double d = MathTools.distance(position, closest);
1264                 double s = spaceForTurn(tcp);
1265                 if (d < s)  {
1266                         d = s - d;
1267                         Vector3d p = new Vector3d(directedDirection);
1268                         p.scale(d);
1269                         p.add(closest);
1270                         tcp.setPosition(p);
1271                         closest = p;
1272                 }
1273                 
1274                 
1275
1276                 if (DEBUG)
1277                         System.out.println("PipingRules.updateDirectedPipeRun() inserted " + tcp);
1278
1279                 if (dcpStart) {
1280                         // update pipe run from new turn to other end
1281                         ppNoDir(tcp, new Vector3d(closest), u.list, u.end, u.endPoint, u.hasOffsets, u.iter, u.reversed, u.toRemove, u.updated);
1282                         // update pipe run from directed to new turn
1283                         processPathLeg(new UpdateStruct2(u.start, u.startPoint, new ArrayList<PipeControlPoint>(), tcp, new Vector3d(closest), directedDirection, new Vector3d(), false, 0, false, new ArrayList<ExpandIterInfo>(), u.updated));
1284                 } else {
1285                         // update pipe run from other end to new turn
1286                         ppNoDir(u.start, u.startPoint, u.list, tcp, new Vector3d(closest), u.hasOffsets, u.iter, u.reversed, u.toRemove, u.updated);
1287                         // update pipe run from new turn to directed
1288                         processPathLeg(new UpdateStruct2(tcp, new Vector3d(closest), new ArrayList<PipeControlPoint>(), u.end, u.endPoint, directedDirection, new Vector3d(), false, 0, false, new ArrayList<ExpandIterInfo>(), u.updated));
1289                 }
1290         }
1291
1292         /**
1293          * Checks if turns can be removed (turn angle near zero)
1294          */
1295         private static int checkTurns(UpdateStruct2 u, PathLegUpdateType lengthChange) throws Exception {
1296                 if (DEBUG)
1297                         System.out.println("PipingRules.checkTurns() " + u.start + " " + u.end);
1298                 boolean startRemoved = false;
1299                 boolean endRemoved = false;
1300                 if (u.start.isVariableAngle()) {
1301                         // this won't work properly if inline control points are not updated
1302                         PipeControlPoint startPrev = u.start.getPrevious();
1303                         if (startPrev != null) {
1304                                 double a = updateTurnControlPointTurn(u.start, null, u.dir);
1305                                 if (a < MIN_TURN_ANGLE && u.start.isDeletable())
1306                                         startRemoved = true;
1307                                 else if (lengthChange == PathLegUpdateType.PREV || lengthChange == PathLegUpdateType.PREV_S) {
1308                                         PathLegUpdateType type;
1309                                         if (lengthChange == PathLegUpdateType.PREV_S)
1310                                                 type = PathLegUpdateType.PREV;
1311                                         else
1312                                                 type = PathLegUpdateType.NONE;
1313                                         updatePathLegPrev(u.start, u.start, type);
1314                                 }
1315                         }
1316                 }
1317                 if (u.end.isVariableAngle()) {
1318
1319                         PipeControlPoint endNext = u.end.getNext();
1320                         if (endNext != null) {
1321                                 // TODO: u.end, u.dir, null
1322                                 double a = updateTurnControlPointTurn(u.end, null, null);
1323                                 if (a < MIN_TURN_ANGLE && u.end.isDeletable())
1324                                         endRemoved = true;
1325                                 else if (lengthChange == PathLegUpdateType.NEXT || lengthChange == PathLegUpdateType.NEXT_S) {
1326                                         PathLegUpdateType type;
1327                                         if (lengthChange == PathLegUpdateType.NEXT_S)
1328                                                 type = PathLegUpdateType.NEXT;
1329                                         else
1330                                                 type = PathLegUpdateType.NONE;
1331                                         updatePathLegNext(u.end, u.end, type);
1332                                 }
1333                         }
1334                 }
1335                 if (DEBUG)
1336                         System.out.println("PipingRules.checkTurns() res " + startRemoved + " " + endRemoved);
1337                 if (!startRemoved && !endRemoved)
1338                         return REMOVE_NONE;
1339                 if (startRemoved && endRemoved)
1340                         return REMOVE_BOTH;
1341                 if (startRemoved)
1342                         return REMOVE_START;
1343                 return REMOVE_END;
1344         }
1345
1346         /**
1347          * Expands piperun search over turns that are going to be removed
1348          * 
1349          */
1350         private static void expandPathLeg(UpdateStruct2 u, int type) throws Exception {
1351                 if (DEBUG)
1352                         System.out.println("PipingRules.expandPipeline " + u.start + " " + u.end);
1353                 ArrayList<PipeControlPoint> newList = new ArrayList<PipeControlPoint>();
1354                 switch (type) {
1355                 case REMOVE_NONE:
1356                         throw new RuntimeException("Error in piping rules");
1357                 case REMOVE_START:
1358                         u.toRemove.add(new ExpandIterInfo(u.start, REMOVE_START));
1359                         u.start = u.start.findPreviousEnd();
1360                         u.startPoint = u.start.getPosition();
1361                         u.start.findNextEnd(newList);
1362                         newList.addAll(u.list);
1363                         u.list = newList;
1364                         break;
1365                 case REMOVE_END:
1366                         u.toRemove.add(new ExpandIterInfo(u.end, REMOVE_END));
1367                         u.end = u.end.findNextEnd(newList);
1368                         u.endPoint = u.end.getPosition();
1369                         u.list.addAll(newList);
1370                         break;
1371                 case REMOVE_BOTH:
1372                         u.toRemove.add(new ExpandIterInfo(u.start, u.end));
1373                         u.start = u.start.findPreviousEnd();
1374                         u.startPoint = u.start.getPosition();
1375                         u.start.findNextEnd(newList);
1376                         newList.addAll(u.list);
1377                         u.list = newList;
1378                         newList = new ArrayList<PipeControlPoint>();
1379                         u.end = u.end.findNextEnd(newList);
1380                         u.endPoint = u.end.getPosition();
1381                         u.list.addAll(newList);
1382                         break;
1383                 default:
1384                         throw new RuntimeException("Error in piping rules");
1385
1386                 }
1387                 u.offset = new Vector3d();
1388                 if (u.hasOffsets) {
1389                         u.dir.normalize();
1390                         for (PipeControlPoint icp : u.list) {
1391                                 if (icp.isOffset()) {
1392                                         u.offset.add(icp.getSizeChangeOffsetVector(u.dir));
1393                                 } else if (icp.isDualSub())
1394                                         ErrorLogger.defaultLogError("Updating pipe run, found offset controlpoint " + icp, new Exception("ASSERT!"));
1395                         }
1396                 }
1397                 if (DEBUG)
1398                         System.out.println("PipingRules.expandPipeline expanded " + u.start + " " + u.end);
1399                 u.iter++;
1400                 updatePathLeg(u, PathLegUpdateType.NONE);
1401         }
1402
1403         /**
1404          * reverts one iteration of turn removing back)
1405          */
1406         private static void backIter(UpdateStruct2 u) throws Exception {
1407
1408                 if (DEBUG)
1409                         System.out.println("PipingRules.backIter" + u.start + " " + u.end);
1410                 if (u.iter == 0)
1411                         throw new RuntimeException("Error in piping rules");
1412                 ExpandIterInfo info = u.toRemove.get(u.toRemove.size() - 1);
1413                 u.toRemove.remove(u.toRemove.size() - 1);
1414                 if (info.getType() == REMOVE_START || info.getType() == REMOVE_BOTH) {
1415                         while (u.list.size() > 0) {
1416                                 PipeControlPoint icp = u.list.get(0);
1417                                 if (icp.getPrevious().equals(info.getStart()))
1418                                         break;
1419                                 u.list.remove(icp);
1420                         }
1421                         u.start = info.getStart();
1422                 }
1423                 if (info.getType() == REMOVE_END || info.getType() == REMOVE_BOTH) {
1424                         while (u.list.size() > 0) {
1425                                 PipeControlPoint icp = u.list.get(u.list.size() - 1);
1426                                 if (icp.getNext().equals(info.getEnd()))
1427                                         break;
1428                                 u.list.remove(icp);
1429                         }
1430                         u.end = info.getEnd();
1431                 }
1432                 u.offset = new Vector3d();
1433                 if (u.hasOffsets) {
1434                         u.dir.normalize();
1435                         for (PipeControlPoint icp : u.list) {
1436                                 if (icp.isOffset()) {
1437                                         u.offset.add(icp.getSizeChangeOffsetVector(u.dir));
1438                                 } else if (icp.isDualSub())
1439                                         ErrorLogger.defaultLogError("Updating pipe run, found offset controlpoint " + icp, new Exception("ASSERT!"));
1440                         }
1441                 }
1442                 processPathLeg(u);
1443
1444         }
1445
1446         /**
1447          * Processes pipe run (removes necessary turns and updates run ends)
1448          */
1449         // private static void processPathLeg(PipeControlPoint start, Point3d
1450         // startPoint,ArrayList<InlineControlPoint> list, PipeControlPoint
1451         // end,Point3d endPoint, Vector3d dir,Vector3d offset, boolean
1452         // hasOffsets,int iter, boolean reversed, ArrayList<ExpandIterInfo>
1453         // toRemove) throws TransactionException {
1454
1455         private static void processPathLeg(UpdateStruct2 u) throws Exception {
1456                 if (DEBUG)
1457                         System.out.println("PipingRules.processPathLeg " + u.start + " " + u.end);
1458                 processPathLeg(u, true, true);
1459         }
1460
1461         private static void processPathLeg(UpdateStruct2 u, boolean updateEnds, boolean updateInline) throws Exception {
1462                 if (DEBUG)
1463                         System.out.println("PipingRules.processPathLeg " + (updateEnds ? "ends " : "") + (updateInline ? "inline " : "") + u.start + " " + u.end);
1464
1465                 if (u.toRemove.size() > 0) {
1466                         for (ExpandIterInfo info : u.toRemove) {
1467                                 if (info.getStart() != null) {
1468                                         if (DEBUG)
1469                                                 System.out.println("PipingRules.processPathLeg removing start " + info.getStart());
1470                                         info.getStart()._remove();
1471                                 }
1472                                 if (info.getEnd() != null) {
1473                                         if (DEBUG)
1474                                                 System.out.println("PipingRules.processPathLeg removing end " + info.getEnd());
1475                                         info.getEnd()._remove();
1476                                 }
1477                         }
1478                         // ControlPointTools.removeControlPoint may remove more than one CP;
1479                         // we must populate inline CP list again.
1480                         u.list.clear();
1481                         u.start.findNextEnd( u.list);
1482                 }
1483                 // FIXME : inline CPs are update twice because their positions must be
1484                 // updated before and after ends.
1485                 updateInlineControlPoints(u, false);
1486                 
1487                 if (updateEnds) {
1488                         if (u.start.isTurn()) {
1489                                 //updateTurnControlPointTurn(u.start, u.start.getPrevious(), u.start.getNext());
1490                                 updateTurnControlPointTurn(u.start, null, null);
1491 //                              updatePathLegPrev(u.start, u.start, PathLegUpdateType.NONE);
1492                         } else if (u.start.isEnd()) {
1493                                 updateEndComponentControlPoint(u.start, u.dir);
1494                         } else if (u.start.isInline()) {
1495                                 updateControlPointOrientation(u.start, u.dir);
1496                         }
1497                         if (u.end.isTurn()) {
1498                                 //updateTurnControlPointTurn(u.end, u.end.getPrevious(), u.end.getNext());
1499                                 updateTurnControlPointTurn(u.end, null, null);
1500 //                              updatePathLegNext(u.end, u.end, PathLegUpdateType.NONE);
1501                         } else if (u.end.isEnd()) {
1502                                 updateEndComponentControlPoint(u.end, u.dir);
1503                         } else if (u.end.isInline()) {
1504                                 updateControlPointOrientation(u.end, u.dir);
1505                         }
1506
1507                 } else {
1508                         if (u.start.isEnd()) {
1509                                 updateEndComponentControlPoint(u.start, u.dir);
1510                         }
1511                         if (u.end.isEnd()) {
1512                                 updateEndComponentControlPoint(u.end, u.dir);
1513                         }
1514                 }
1515                 if (updateInline)
1516                         updateInlineControlPoints(u, true);
1517
1518         }
1519
1520         /**
1521          * Processes pipe run and recalculates offset
1522          */
1523         // private static void processPathLeg(PipeControlPoint start, Point3d
1524         // startPoint,ArrayList<InlineControlPoint> list, PipeControlPoint
1525         // end,Point3d endPoint, Vector3d dir, boolean hasOffsets,int iter, boolean
1526         // reversed, ArrayList<ExpandIterInfo> toRemove) throws TransactionException
1527         // {
1528         @SuppressWarnings("unused")
1529         private static void processPathLegNoOffset(UpdateStruct2 u) throws Exception {
1530                 if (DEBUG)
1531                         System.out.println("PipingRules.processPathLeg " + u.start + " " + u.end);
1532                 Vector3d offset = new Vector3d();
1533                 if (u.hasOffsets) {
1534                         u.dir.normalize();
1535                         for (PipeControlPoint icp : u.list) {
1536                                 if (icp.isOffset()) {
1537                                         offset.add(icp.getSizeChangeOffsetVector(u.dir));
1538                                 } else if (icp.isDualSub()) {
1539                                         ErrorLogger.defaultLogError("Updating pipe run, found offset controlpoint " + icp, new Exception("ASSERT!"));
1540                                 }
1541                         }
1542                 }
1543                 processPathLeg(u);
1544         }
1545
1546         private static void updateOffsetPoint(PipeControlPoint sccp, Vector3d offset) {
1547                 Vector3d world = sccp.getWorldPosition();
1548                 world.add(offset);
1549                 PipeControlPoint ocp = sccp.getDualSub();
1550                 ocp.setWorldPosition(world);
1551         }
1552
1553         /**
1554          * Updates InlineControlPoints position when straight pipe's end(s) have
1555          * been changed)
1556          * 
1557          * @param pipeline
1558          * @param icp
1559          * @param nextPoint
1560          * @param prevPoint
1561          */
1562         private static void updateInlineControlPoint(PipeControlPoint icp, Vector3d prev, Vector3d next,  Vector3d dir) {
1563                 if (DEBUG)
1564                         System.out.println("PipingRules.updateInlineControlPoint() " + icp);
1565
1566                 Vector3d inlinePoint = icp.getWorldPosition();
1567                 Vector3d prevPoint = new Vector3d(prev);
1568                 Vector3d nextPoint = new Vector3d(next);
1569                 if (!icp.isVariableLength()) {
1570                         // Reserve space for fixed length components. 
1571                         MathTools.mad(prevPoint, dir, icp.getInlineLength());
1572                         MathTools.mad(nextPoint, dir, -icp.getInlineLength());
1573                         if (MathTools.distance(prevPoint, nextPoint) < ALLOWED_OFFSET) {
1574                                 prevPoint = prev;
1575                                 nextPoint = next;
1576                         }
1577                 }
1578                 boolean canCalc = MathTools.distance(prevPoint, nextPoint) > ALLOWED_OFFSET;
1579                 if (DEBUG)
1580                         System.out.print("InlineControlPoint update " + icp + " " + inlinePoint + " " + prevPoint + " " + nextPoint);
1581                 Vector3d newInlinePoint = null;
1582                 if (canCalc) {
1583                         boolean branchUpdate = false;
1584                         PipeControlPoint becp = null;
1585                         for (PipeControlPoint pcp : icp.getChildPoints())
1586                                 if (pcp.isNonDirected()) {
1587                                         branchUpdate = true;
1588                                         becp = pcp;
1589                                         break;
1590                                 }
1591         
1592                         if (DUMMY || !branchUpdate) {
1593                                 newInlinePoint = MathTools.closestPointOnEdge(new Vector3d(inlinePoint), prevPoint, nextPoint);
1594                                 
1595                         } else {
1596         
1597                                 // FIXME : can only handle one branch
1598                                 PipeControlPoint p = null;
1599                                 if (becp.getNext() != null) {
1600                                         p = becp.findNextEnd();
1601                                 } else if (becp.getPrevious() != null) {
1602                                         p = becp.findPreviousEnd();
1603                                 }
1604                                 if (p == null) {
1605                                         newInlinePoint = MathTools.closestPointOnEdge(new Vector3d(inlinePoint), prevPoint, nextPoint);
1606                                 } else if (canCalc){
1607                                         Vector3d branchLegEnd = p.getWorldPosition();
1608                                         Vector3d dir2 = new Vector3d(inlinePoint);
1609                                         dir2.sub(branchLegEnd);
1610                                         Vector3d dir1 = new Vector3d(nextPoint);
1611                                         dir1.sub(prevPoint);
1612                                         newInlinePoint = new Vector3d();
1613                                         double mu[] = new double[2];
1614                                         MathTools.intersectStraightStraight(new Vector3d(prevPoint), dir1, new Vector3d(branchLegEnd), dir2, newInlinePoint, new Vector3d(), mu);
1615                                         if (DEBUG)
1616                                                 System.out.println(mu[0]);
1617                                         // FIXME : reserve space
1618                                         if (mu[0] < 0.0) {
1619                                                 newInlinePoint = new Vector3d(prevPoint);
1620                                         } else if (mu[0] > 1.0) {
1621                                                 newInlinePoint = new Vector3d(nextPoint);
1622                                         }
1623                                 }
1624                         }
1625                 } else {
1626                         // prevPoint == nextPoint
1627                         newInlinePoint = new Vector3d(prevPoint);
1628                 }
1629                 if (DEBUG)
1630                         System.out.println(" " + newInlinePoint);
1631
1632                 icp.setWorldPosition(newInlinePoint);
1633                 updateControlPointOrientation(icp, dir);
1634         }
1635
1636         /**
1637          * Updates InlineControlPoints position when straight pipe's end(s) have
1638          * been changed)
1639          * 
1640          * @param pipeline
1641          * @param icp
1642          * @param nextPoint
1643          * @param prevPoint
1644          */
1645         private static void updateEndComponentControlPoint(PipeControlPoint ecp, Vector3d dir) throws Exception {
1646                 if (DEBUG)
1647                         System.out.println("PipingRules.updateEndComponentControlPoint() " + ecp);
1648                 //FIXME : end control point cannot be fixed!
1649                 //if (!ecp.isFixed())
1650                 updateControlPointOrientation(ecp, dir);
1651
1652                 for (PipeControlPoint pcp : ecp.getChildPoints()) {
1653                         // TODO update position
1654                         updatePathLegEndControlPoint(pcp);
1655                 }
1656         }
1657
1658         private static void updateControlPointOrientation(PipeControlPoint pcp, Vector3d dir) {
1659                 Double angleO = pcp.getRotationAngle();
1660                 double angle = 0.0;
1661                 if (angleO != null)
1662                         angle = angleO;
1663                 boolean reversed = pcp._getReversed();
1664                 Quat4d q = null;
1665                 if (dir != null) {
1666                     q = pcp.getControlPointOrientationQuat(dir, angle, reversed);
1667                 } else {
1668                     q = pcp.getControlPointOrientationQuat(angle, reversed);
1669                 }
1670                 pcp.setWorldOrientation(q);
1671         }
1672
1673         /**
1674          * Updates all branches when branch's position has been changed
1675          * 
1676          * @param bcp
1677          */
1678         private static void updateBranchControlPointBranches(PipeControlPoint bcp) throws Exception {
1679                 if (DEBUG)
1680                         System.out.println("PipingRules.updateBranchControlPointBranches() " + bcp);
1681                 if (bcp.isDualInline())
1682                         return;
1683                 Collection<PipeControlPoint> branches = bcp.getChildPoints();
1684                 if (branches.size() == 0) {
1685                         if (DEBUG)
1686                                 System.out.println("No Branches found");
1687                         return;
1688                 }
1689                 
1690                 for (PipeControlPoint pcp : branches) {
1691                         updatePathLegEndControlPoint(pcp);
1692                 }
1693         }
1694
1695         private static double updateTurnControlPointTurn(PipeControlPoint tcp, Vector3d prev, Vector3d next) {
1696                 if (next == null) {
1697                         UpdateStruct2 us = createUS(tcp, Direction.NEXT, 0, new ArrayList<PipingRules.ExpandIterInfo>(), tcp);
1698                         if (us != null)
1699                                 next = us.dir;
1700                 }
1701                 if (prev == null) {
1702                         UpdateStruct2 us = createUS(tcp, Direction.PREVIOUS, 0, new ArrayList<PipingRules.ExpandIterInfo>(), tcp);
1703                         if (us != null) {
1704                                 prev = us.dir;
1705                         }
1706                 }
1707                 
1708                 if (!tcp.asFixedAngle()) {
1709                         
1710                         
1711                         if (next == null || prev == null) {
1712                                 if (tcp.getTurnAngle() != null)
1713                                         return tcp.getTurnAngle();
1714                                 return Math.PI; // FIXME : argh
1715                         }
1716                         double turnAngle = prev.angle(next);
1717         
1718                         double angle = Math.PI - turnAngle;
1719         
1720                         Vector3d turnAxis = new Vector3d();
1721                         turnAxis.cross(prev, next);
1722                         if (turnAxis.lengthSquared() > MathTools.NEAR_ZERO) {
1723                                 double elbowRadius = ((TurnComponent)tcp.getPipelineComponent()).getTurnRadius();
1724                                 double R = elbowRadius / Math.tan(angle * 0.5);
1725                                 
1726                                 turnAxis.normalize();
1727                                 tcp.setTurnAngle(turnAngle);
1728                                 tcp.setLength(R);// setComponentOffsetValue(R);
1729                                 tcp.setTurnAxis(turnAxis);
1730         //                      tcp.setPosition(tcp.getPosition());
1731                         } else {
1732                                 turnAngle = 0.0;
1733                                 tcp.setTurnAngle(0.0);
1734                                 tcp.setLength(0.0);
1735                                 tcp.setTurnAxis(new Vector3d(MathTools.Y_AXIS));
1736                         }
1737                         
1738                         updateControlPointOrientation(tcp,prev);
1739                         
1740                         if (DEBUG)
1741                                 System.out.println("PipingTools.updateTurnControlPointTurn " + prev + " " + next + " " + turnAngle + " " + turnAxis);
1742                         return turnAngle;
1743                 } else {
1744                         
1745                         if (prev != null && next != null) {
1746                                 // Nothing to do
1747                         } else if (prev == null) {
1748                                 if (!tcp._getReversed())
1749                                         tcp.setReversed(true);
1750                         } else if (next == null) {
1751                                 if (tcp._getReversed())
1752                                         tcp.setReversed(false);
1753                         }
1754                         
1755                         Vector3d dir = null;
1756                         if (!tcp._getReversed()) {
1757                                 dir = prev;
1758                         } else {
1759                                 dir = next;
1760                                 dir.negate();
1761                         }
1762                         if (dir == null) {
1763                                 return Math.PI; // FIXME : argh
1764                         }
1765                         
1766                         Quat4d q = PipeControlPoint.getControlPointOrientationQuat(dir, tcp.getRotationAngle() != null ? tcp.getRotationAngle() : 0.0);
1767                         Vector3d v = new Vector3d();
1768                         MathTools.rotate(q, MathTools.Y_AXIS,v);
1769                         tcp.setTurnAxis(v);
1770                         tcp.setWorldOrientation(q);
1771                         if (tcp.getTurnAngle() != null)
1772                                 return tcp.getTurnAngle();
1773                         return Math.PI; // FIXME : argh
1774                 }
1775                 
1776                 
1777         }
1778         
1779         public static List<PipeControlPoint> getControlPoints(PipeRun pipeRun) {
1780                 List<PipeControlPoint> list = new ArrayList<PipeControlPoint>();
1781                 if (pipeRun.getControlPoints().size() == 0)
1782                         return list;
1783                 PipeControlPoint pcp = pipeRun.getControlPoints().iterator().next();
1784                 while (pcp.getPrevious() != null) {
1785                         PipeControlPoint prev = pcp.getPrevious();
1786                         if (prev.getPipeRun() != pipeRun && prev.getPipeRun() != null) { // bypass possible corruption
1787                             break;
1788                         }
1789                         pcp = prev;
1790                 }
1791                 if (pcp.isDualSub()) {
1792                         pcp = pcp.getParentPoint();
1793                 }
1794                 list.add(pcp);
1795                 while (pcp.getNext() != null) {
1796                         pcp = pcp.getNext();
1797                         if (pcp.getPipeRun() != pipeRun)
1798                                 break;
1799                         list.add(pcp);
1800                 }
1801                 return list;
1802         }
1803         
1804         public static void reverse(PipeRun pipeRun) {
1805                 
1806                 while (true) {
1807                         List<PipeControlPoint> points = getControlPoints(pipeRun);
1808                         PipeControlPoint pcp = points.get(0);
1809                         if (pcp.isSizeChange() && pcp.getChildPoints().size() > 0) {
1810                                 PipeRun pr = pcp.getPipeRun();
1811                                 if (pr != pipeRun)
1812                                     pipeRun = pr;
1813                                 else break;
1814                         } else {
1815                                 break;
1816                         }
1817                 }
1818                 List<PipeRun> all = new ArrayList<PipeRun>();
1819                 List<List<PipeControlPoint>> pcps = new ArrayList<List<PipeControlPoint>>();
1820                 while (true) {
1821                         all.add(pipeRun);
1822                         List<PipeControlPoint> points = getControlPoints(pipeRun);
1823                         pcps.add(points);
1824                         PipeControlPoint pcp = points.get(points.size()-1);
1825                         if (pcp.getChildPoints().size() > 0) {
1826                                 PipeRun pipeRun2 = pcp.getChildPoints().get(0).getPipeRun();
1827                                 if (pipeRun == pipeRun2)
1828                                     break;
1829                                 else
1830                                     pipeRun = pipeRun2;
1831                         } else {
1832                                 break;
1833                         }
1834                 }
1835                 for (int i = 0 ; i < all.size(); i++) {
1836                         List<PipeControlPoint> list = pcps.get(i);
1837                         _reverse(list);
1838                 }
1839                 for (int i = 0 ; i < all.size(); i++) {
1840                         boolean last = i == all.size() - 1;
1841                         List<PipeControlPoint> list = pcps.get(i);
1842                         
1843                         if (!last) {
1844                                 List<PipeControlPoint> list2 = pcps.get(i+1);
1845                                 PipeControlPoint prev = list.get(list.size()-1);
1846                                 PipeControlPoint next = list2.get(0);
1847                                 System.out.println();
1848                                 if (prev == next) {
1849                                         // Reverse the component on the boundary.
1850                                         InlineComponent ic = (InlineComponent)prev.getPipelineComponent();
1851                                         PipeRun r1 = ic.getPipeRun();
1852                                         PipeRun r2 = ic.getAlternativePipeRun();
1853                                         if (r1 == null || r2 == null)
1854                                                 throw new RuntimeException("Components on PipeRun changes should refer to bot PipeRuns");
1855                                         ic.deattach();
1856                                         r2.addChild(ic);
1857                                         ic.setPipeRun(r2);
1858                                         ic.setAlternativePipeRun(r1);
1859                                 } else {
1860                                         throw new RuntimeException("PipeRun changes should contain shared control points");
1861                                 }
1862                                 
1863                         }
1864                 }
1865                         
1866         }
1867         
1868         private static void _reverse(List<PipeControlPoint> list) {
1869                 if (list.size() <= 1)
1870                         return; // nothing to do.
1871                 
1872                 for (int i = 0 ; i < list.size(); i++) {
1873                         boolean first = i == 0;
1874                         boolean last = i == list.size() - 1;
1875                         PipeControlPoint current = list.get(i);
1876                         PipeControlPoint currentSub = null;
1877                         if (current.isDualInline())
1878                                 currentSub = current.getDualSub();
1879                         if (first) {
1880                                 PipeControlPoint next = list.get(i+1);
1881                                 if (next.isDualInline())
1882                                         next = next.getDualSub();
1883                                 if (current.getNext() == next)
1884                                         current.setNext(null);
1885                                 current.setPrevious(next);
1886                                 if (currentSub != null) {
1887                                         if (currentSub.getNext() == next)
1888                                                 currentSub.setNext(null);
1889                                         currentSub.setPrevious(next);       
1890                                 }
1891                         } else if (last) {
1892                                 PipeControlPoint prev = list.get(i-1);
1893                                 
1894                                 if (current.getPrevious() == prev)
1895                                         current.setPrevious(null);
1896                                 current.setNext(prev);
1897                                 
1898                                 if (currentSub != null) {
1899                                         if (currentSub.getPrevious() == prev)
1900                                                 currentSub.setPrevious(null);
1901                                         currentSub.setNext(prev);       
1902                                 }
1903                         } else {
1904                                 PipeControlPoint prev = list.get(i-1);
1905                                 PipeControlPoint next = list.get(i+1);
1906                                 if (next.isDualInline())
1907                                         next = next.getDualSub();
1908                                 
1909                                 
1910                                 current.setPrevious(next);
1911                                 current.setNext(prev);
1912                                 
1913                                 if (currentSub != null) {
1914                                         currentSub.setPrevious(next);
1915                                         currentSub.setNext(prev);       
1916                                 }
1917                                 
1918                         }
1919                         //if (current.isTurn() && current.isFixed()) {
1920                         if (current.asFixedAngle()) {
1921                                 current.setReversed(!current._getReversed());
1922                         }
1923                         if (current.isInline() && current.isReverse()) {
1924                                 current.setReversed(!current._getReversed());
1925                         }   
1926                 }
1927         }
1928         
1929         
1930         
1931         public static void validate(PipeRun pipeRun) {
1932                 if (pipeRun == null)
1933                         return;
1934                 Collection<PipeControlPoint> pcps = pipeRun.getControlPoints();
1935                 int count = 0;
1936                 //System.out.println("Validate " + pipeRun.getName());
1937                 for (PipeControlPoint pcp : pcps) {
1938                         if (pcp.getParentPoint() == null || pcp.getParentPoint().getPipeRun() != pipeRun)
1939                                 count++;
1940                 }
1941                 List<PipeControlPoint> runPcps = getControlPoints(pipeRun);
1942                 if (runPcps.size() != count) {
1943                         System.out.println("Run " + pipeRun.getName() + " contains unconnected control points, found " + runPcps.size() + " connected, " + pcps.size() + " total.");
1944                         for (PipeControlPoint pcp : pcps) {
1945                             if (!runPcps.contains(pcp)) {
1946                                 System.out.println("Unconnected " + pcp + " " + pcp.getPipelineComponent());
1947                             }
1948                         }
1949                 }
1950                 for (PipeControlPoint pcp : pcps) {
1951                     if (pcp.getPipeRun() == null) {
1952                         System.out.println("PipeRun ref missing " + pcp + " " + pcp.getPipelineComponent());
1953                     }
1954                         if (!pcp.isDirected() && pcp.getNext() == null && pcp.getPrevious() == null)
1955                                 System.out.println("Orphan undirected " + pcp + " " + pcp.getPipelineComponent());
1956                 }
1957                 for (PipeControlPoint pcp : pcps) {
1958                         if (pcp.getParentPoint() == null) {
1959                                 PipeControlPoint sub = null;
1960                                 if (pcp.isDualInline())
1961                                         sub = pcp.getDualSub();
1962                                 PipeControlPoint next = pcp.getNext();
1963                                 PipeControlPoint prev = pcp.getPrevious();
1964                                 if (next != null) {
1965                                         if (!(next.getPrevious() == pcp || next.getPrevious() == sub)) {
1966                                                 System.out.println("Inconsistency between " + pcp + " -> " +next );
1967                                         }
1968                                 }
1969                                 if (prev != null) {
1970                                         PipeControlPoint prevParent = null;
1971                                         if (prev.isDualSub()) {
1972                                                 prevParent = prev.getParentPoint();
1973                                         } else if (prev.isDualInline()) {
1974                                                 System.out.println("Inconsistency between " + pcp + " <-- " +prev );
1975                                         }
1976                                         if (!(prev.getNext() == pcp && (prevParent == null || prevParent.getNext() == pcp))) {
1977                                                 System.out.println("Inconsistency between " + pcp + " <-- " +prev );
1978                                         }
1979                                 }
1980                         }
1981                 }
1982         }
1983         
1984         public static void splitVariableLengthComponent(PipelineComponent newComponent, InlineComponent splittingComponent, boolean assignPos) throws Exception{
1985                 assert(!splittingComponent.getControlPoint().isFixedLength());
1986                 assert(!(newComponent instanceof  InlineComponent && !newComponent.getControlPoint().isFixedLength()));
1987                 PipeControlPoint newCP = newComponent.getControlPoint();
1988                 PipeControlPoint splittingCP = splittingComponent.getControlPoint();
1989                 PipeControlPoint nextCP = splittingCP.getNext();
1990                 PipeControlPoint prevCP = splittingCP.getPrevious();
1991                 
1992                 /* there are many different cases to insert new component when
1993                    it splits existing VariableLengthinlineComponent.
1994                 
1995                    1. VariableLengthComponet is connected from both sides:
1996                           - insert new component between VariableLength component and component connected to it
1997                           - insert new VariableLengthComponent between inserted component and component selected in previous step
1998                 
1999                    2. VariableLengthComponent is connected from one side
2000                          - Use previous case or:
2001                          - Insert new component to empty end
2002                          - Insert new VariableLength component to inserted components empty end
2003                          
2004                    3. VariableLength is not connected to any component.
2005                          - Should not be possible, at least in current implementation.
2006                          - Could be done using second case
2007
2008                 */
2009                 
2010                 if (nextCP == null && prevCP == null) {
2011                         // this should not be possible
2012                         throw new RuntimeException("VariableLengthComponent " + splittingComponent + " is not connected to anything.");
2013                 }
2014                 double newLength = newComponent.getControlPoint().getLength();
2015                 
2016                 
2017                 Point3d next = new Point3d();
2018                 Point3d prev = new Point3d();
2019                 splittingCP.getInlineControlPointEnds(prev, next);
2020                 
2021                 Vector3d newPos = null;
2022                 if (assignPos) {
2023                         newPos = new Vector3d(prev);
2024                         Vector3d dir = new Vector3d(next);
2025                         dir.sub(prev);
2026                         dir.scale(0.5);
2027                         newPos.add(dir);
2028                         newComponent.setWorldPosition(newPos);
2029                 } else {
2030                         newPos = newComponent.getWorldPosition();
2031                 }
2032                 
2033                 
2034
2035                 Vector3d dir = new Vector3d(next);
2036                 dir.sub(prev);
2037                 dir.normalize();
2038                 dir.scale(newLength * 0.5);
2039                 Point3d vn = new Point3d(newPos);
2040                 Point3d vp = new Point3d(newPos);
2041                 vn.add(dir);
2042                 vp.sub(dir);
2043                 double ln = vn.distance(next);
2044                 double lp = vp.distance(prev);
2045                 vp.interpolate(prev, 0.5);
2046                 vn.interpolate(next, 0.5);
2047                 
2048                 
2049                 if (nextCP == null) {
2050                         newCP.insert(splittingCP, Direction.NEXT);
2051                         insertStraight(newCP, Direction.NEXT, new Vector3d(vn), ln);
2052                         splittingCP.setWorldPosition(new Vector3d(vp));
2053 //                      ControlPointTools.setWorldPosition(splittingCP, vp);
2054 //                      splittingCP.setRelatedScalarDouble(ProcessResource.plant3Dresource.HasLength, lp);
2055                 } else if (prevCP == null) {
2056                         newCP.insert(splittingCP, Direction.PREVIOUS);
2057                         insertStraight(newCP, Direction.PREVIOUS, new Vector3d(vp), lp);
2058                         splittingCP.setWorldPosition(new Vector3d(vn));
2059 //                      splittingCP.setRelatedScalarDouble(ProcessResource.plant3Dresource.HasLength, ln);
2060                 } else {
2061                         newCP.insert(splittingCP, nextCP);
2062                         insertStraight(newCP, nextCP, new Vector3d(vn), ln);
2063                         splittingCP.setWorldPosition(new Vector3d(vp));
2064 //                      splittingCP.setRelatedScalarDouble(ProcessResource.plant3Dresource.HasLength, lp);
2065                 }
2066                 positionUpdate(newCP);
2067
2068         }
2069         
2070         public static void addSizeChange(boolean reversed, PipeRun pipeRun, PipeRun other, InlineComponent reducer, PipeControlPoint previous, PipeControlPoint next) {
2071                 PipeControlPoint pcp = reducer.getControlPoint();
2072                 PipeControlPoint ocp = pcp.getDualSub();
2073                 if (!reversed) {
2074                         String name = pipeRun.getUniqueName("Reducer");
2075                         reducer.setName(name);
2076                         pipeRun.addChild(reducer);
2077                         other.addChild(ocp);
2078                         reducer.setAlternativePipeRun(other);
2079                         
2080                         previous.setNext(pcp);
2081                         pcp.setPrevious(previous);
2082                         ocp.setPrevious(previous);
2083                         if (next != null) {
2084                                 pcp.setNext(next);
2085                                 ocp.setNext(next);
2086                                 next.setPrevious(ocp);
2087                         }
2088                 } else {
2089                         String name = other.getUniqueName("Reducer");
2090                         reducer.setName(name);
2091                         other.addChild(reducer);
2092                         pipeRun.addChild(ocp);
2093                         reducer.setAlternativePipeRun(pipeRun);
2094                         
2095                         if (next != null) {
2096                                 next.setNext(pcp);
2097                                 pcp.setPrevious(next);
2098                                 ocp.setPrevious(next);
2099                         }
2100                         pcp.setNext(previous);
2101                         ocp.setNext(previous);
2102                         previous.setPrevious(ocp);
2103                 }
2104         }
2105 }