]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.plant3d/src/org/simantics/plant3d/utils/ComponentUtils.java
Add a wall thickness property to pipe runs.
[simantics/3d.git] / org.simantics.plant3d / src / org / simantics / plant3d / utils / ComponentUtils.java
1 package org.simantics.plant3d.utils;
2
3 import java.util.ArrayList;
4 import java.util.Collection;
5 import java.util.HashMap;
6 import java.util.List;
7 import java.util.Map;
8 import java.util.stream.Collectors;
9
10 import javax.vecmath.Vector3d;
11
12 import org.simantics.Simantics;
13 import org.simantics.db.ReadGraph;
14 import org.simantics.db.RequestProcessor;
15 import org.simantics.db.Resource;
16 import org.simantics.db.common.request.ReadRequest;
17 import org.simantics.db.common.utils.NameUtils;
18 import org.simantics.db.exception.DatabaseException;
19 import org.simantics.g3d.math.MathTools;
20 import org.simantics.g3d.scenegraph.GeometryProvider;
21 import org.simantics.g3d.scenegraph.ParametricGeometryProvider;
22 import org.simantics.layer0.Layer0;
23 import org.simantics.plant3d.geometry.ParameterRead;
24 import org.simantics.plant3d.ontology.Plant3D;
25 import org.simantics.plant3d.scenegraph.EndComponent;
26 import org.simantics.plant3d.scenegraph.Equipment;
27 import org.simantics.plant3d.scenegraph.InlineComponent;
28 import org.simantics.plant3d.scenegraph.Nozzle;
29 import org.simantics.plant3d.scenegraph.P3DRootNode;
30 import org.simantics.plant3d.scenegraph.PipeRun;
31 import org.simantics.plant3d.scenegraph.PipelineComponent;
32 import org.simantics.plant3d.scenegraph.TurnComponent;
33 import org.simantics.plant3d.scenegraph.controlpoint.PipeControlPoint;
34 import org.simantics.plant3d.scenegraph.controlpoint.PipeControlPoint.Direction;
35 import org.simantics.plant3d.scenegraph.controlpoint.PipeControlPoint.PositionType;
36 import org.slf4j.Logger;
37 import org.slf4j.LoggerFactory;
38 import org.simantics.plant3d.scenegraph.controlpoint.PipingRules;
39
40 public class ComponentUtils {
41
42         private final static Logger LOGGER = LoggerFactory.getLogger(ComponentUtils.class);
43         
44         private static Map<String,Class<? extends PipelineComponent>> clazzes = new HashMap<String, Class<? extends PipelineComponent>>();
45         private static Map<String,GeometryProvider> providers = new HashMap<String,GeometryProvider>();
46         private static Map<String,String> names = new HashMap<String,String>();
47         
48         public static void preloadCache(RequestProcessor session) {
49                 try {
50                         session.syncRequest(new ReadRequest() {
51                                 
52                                 @Override
53                                 public void run(ReadGraph graph) throws DatabaseException {
54                                         List<String> types = new ArrayList<String>();
55                                         types.add(Plant3D.URIs.Builtin_Straight);
56                                         types.add(Plant3D.URIs.Builtin_Elbow);
57                                         types.add(Plant3D.URIs.Builtin_ConcentricReducer);
58                                         types.add(Plant3D.URIs.Builtin_BranchSplitComponent);
59                                         types.add(Plant3D.URIs.Builtin_EccentricReducer);
60                                         types.add(Plant3D.URIs.Builtin_Elbow45);
61                                         types.add(Plant3D.URIs.Builtin_Elbow90);
62                                         
63                                         for (String typeURI : types) {
64                                                 load(graph, typeURI);
65                                         }
66                                 }
67                         });
68                 } catch (DatabaseException e) {
69                         LOGGER.error("ComponentUtils.preloadCache() failed unexpectedly", e);
70                 }
71         }
72         
73         private static GeometryProvider getProvider(ReadGraph graph, Resource type) throws DatabaseException {
74                 
75                 Layer0 l0 = Layer0.getInstance(graph);
76                 Plant3D p3d = Plant3D.getInstance(graph);
77                 Resource geom = graph.getPossibleObject(type,p3d.hasGeometry);
78                 if (geom == null) {
79                         for (Resource a : graph.getObjects(type, l0.Asserts)) {
80                                 if (p3d.hasGeometry.equals(graph.getPossibleObject(a, l0.HasPredicate))) {
81                                         geom = graph.getPossibleObject(a, l0.HasObject);
82                                         break;
83                                 }
84                         }
85                 }
86                 if (geom != null) {
87                         GeometryProvider provider = graph.adapt(geom, GeometryProvider.class);
88                         if (provider instanceof ParametricGeometryProvider) {
89                         Map<String,Object> params = graph.syncRequest(new ParameterRead(type));
90                         if (params.size() > 0)
91                             ((ParametricGeometryProvider)provider).setProperties(params);
92                         }
93                         return provider;
94                 }
95                 return null;
96         }
97         
98         private static Class<? extends PipelineComponent> getClazz(ReadGraph graph, Resource type) throws DatabaseException {
99                 Plant3D p3d = Plant3D.getInstance(graph);
100                 if (graph.isInheritedFrom(type, p3d.InlineComponent))
101                         return InlineComponent.class;
102                 if (graph.isInheritedFrom(type, p3d.TurnComponent))
103                         return TurnComponent.class;
104                 if (graph.isInheritedFrom(type, p3d.EndComponent))
105                         return EndComponent.class;
106                 if (graph.isInheritedFrom(type, p3d.Nozzle))
107                         return Nozzle.class;
108                 return null;
109         }
110         
111         private static void load(ReadGraph graph, String typeURI) throws DatabaseException {
112                 Plant3D p3d = Plant3D.getInstance(graph);
113                 Resource type = graph.getResource(typeURI);
114                 
115                 GeometryProvider provider = getProvider(graph, type);
116                 if (provider != null || graph.hasStatement(type,p3d.NonVisibleComponent)) {
117                         providers.put(typeURI, provider);
118                         if (graph.isInheritedFrom(type, p3d.PipelineComponent))
119                                 clazzes.put(typeURI,getClazz(graph, type));
120                         names.put(typeURI, NameUtils.getSafeName(graph, type));
121                         return;
122                 }
123                 throw new DatabaseException("Cannot find component for " + typeURI);
124         }
125         
126         private static void load(final String typeURI) throws DatabaseException {
127                 Simantics.getSession().syncRequest(new ReadRequest() {
128                         
129                         @Override
130                         public void run(ReadGraph graph) throws DatabaseException {
131                                 load(graph,typeURI);    
132                         }
133                 });
134         }
135         
136         /**
137          * Creates a component
138          * 
139          * Does not set the name or add the component to a piperun.
140          * @param root
141          * @param typeURI
142          * @return
143          * @throws Exception
144          */
145         public static PipelineComponent createComponent(P3DRootNode root, String typeURI) throws Exception {
146                 Class<? extends PipelineComponent> type = clazzes.get(typeURI);
147                 GeometryProvider provider = providers.get(typeURI);
148                 if (type == null || provider == null) {
149                         load(typeURI);
150                         type = clazzes.get(typeURI);
151                         provider = providers.get(typeURI);
152                 }
153                 //PipelineComponent component = type.newInstance();
154                 PipelineComponent component = null;
155                 if (type == InlineComponent.class) {
156                         component = root.createInline();
157                 } else if (type == TurnComponent.class) {
158                         component = root.createTurn();
159                 } else if (type == EndComponent.class) {
160                         component = root.createTurn();
161                 } else if (type == Nozzle.class) {
162                         component = root.createNozzle();
163                 }
164                 component.setType(typeURI);
165                 component.setGeometry(provider);
166                 return component;
167         }
168         
169         /**
170          * Creates a equipment
171          * 
172          * Does not set the name
173          * 
174          * @param root
175          * @param typeURI
176          * @return
177          * @throws Exception
178          */
179         
180         public static Equipment createEquipment(P3DRootNode root, String typeURI) throws Exception {
181                 GeometryProvider provider = providers.get(typeURI);
182                 if (provider == null) {
183                         load(typeURI);
184                         provider = providers.get(typeURI);
185                 }
186                 Equipment equipment = root.createEquipment();
187                 equipment.setType(typeURI);
188                 equipment.setGeometry(provider);
189                 root.addChild(equipment);
190                 return equipment;
191         }
192         
193         public static Equipment createEquipmentWithNozzles(P3DRootNode root, String typeURI, String nozzleTypeUri) throws Exception {
194         GeometryProvider provider = providers.get(typeURI);
195         if (provider == null) {
196             load(typeURI);
197             provider = providers.get(typeURI);
198         }
199         Equipment equipment = root.createEquipment();
200         equipment.setType(typeURI);
201         equipment.setGeometry(provider);
202         root.addChild(equipment);
203         
204         for (int i = 0; i < equipment.numberOfFixedNozzles(); i++) {
205             createNozzle(root, equipment, new Item(nozzleTypeUri, "Nozzle"));
206             
207         }
208         
209         return equipment;
210     }
211         
212         public static InlineComponent createStraight(P3DRootNode root) throws Exception{
213                 InlineComponent component = root.createInline();
214                 component.setType(Plant3D.URIs.Builtin_Straight);
215                 component.setGeometry(providers.get(Plant3D.URIs.Builtin_Straight));
216                 return component;
217         }
218         
219         public static TurnComponent createTurn(P3DRootNode root) throws Exception {
220                 TurnComponent elbow = root.createTurn();
221                 elbow.setType(Plant3D.URIs.Builtin_Elbow);
222                 elbow.setGeometry(providers.get(Plant3D.URIs.Builtin_Elbow));
223                 return elbow;
224         }
225         
226         public static InlineComponent createReducer(P3DRootNode root) throws Exception {
227                 InlineComponent component = root.createInline();
228                 component.setType(Plant3D.URIs.Builtin_ConcentricReducer);
229                 component.setGeometry(providers.get(Plant3D.URIs.Builtin_ConcentricReducer));
230                 return component;
231         }
232         
233         public static InlineComponent createBranchSplit(P3DRootNode root) throws Exception {
234                 InlineComponent component = root.createInline();
235                 component.setType(Plant3D.URIs.Builtin_BranchSplitComponent);
236                 return component;
237         }
238         
239         public static Equipment createEquipment(P3DRootNode root, Item equipmentType) throws Exception {
240                 Equipment equipment = createEquipment(root, equipmentType.getUri());
241                 String n = root.getUniqueName(equipmentType.getName());
242                 equipment.setName(n);
243                 return equipment;
244         }
245         
246         public static Equipment createEquipmentWithNozzles(P3DRootNode root, Item equipmentType, Item nozzleType) throws Exception {
247         Equipment equipment = createEquipmentWithNozzles(root, equipmentType.getUri(), nozzleType.getUri());
248         String n = root.getUniqueName(equipmentType.getName());
249         equipment.setName(n);
250         return equipment;
251     }
252         
253         public static Nozzle createDefaultNozzle(P3DRootNode root, Equipment equipment) throws Exception {
254                 return createNozzle(root, equipment, new Item(Plant3D.URIs.Builtin_Nozzle, "Nozzle"));
255         }
256         
257         public static Nozzle createNozzle(P3DRootNode root, Equipment equipment, Item nozzleType) throws Exception {
258                 Nozzle nozzle = root.createNozzle();
259                 nozzle.setType(nozzleType.getUri());
260                 String n = root.getUniqueName(nozzleType.getName());
261                 nozzle.setName(n);
262                 PipeRun pipeRun = new PipeRun();
263                 n = root.getUniqueName("PipeRun");
264                 pipeRun.setName(n);
265                 nozzle.setPipeRun(pipeRun);
266                 
267                 equipment.addChild(nozzle);
268                 root.addChild(pipeRun);
269                 // root.getNodeMap().commit("Add nozzle " + n);
270                 return nozzle;
271         }
272         
273         public static class InsertInstruction {
274                 public String typeUri;
275                 
276                 public PositionType position = PositionType.NEXT;
277                 public PositionType insertPosition = PositionType.NEXT;
278
279                 // Component name
280                 public String name;
281                 
282                 // Reducer requires pipe specs
283                 public Double diameter;
284                 public Double thickness;
285                 public Double turnRadius;
286                 
287                 // Variable length 
288                 public Double length;
289                 
290                 // Variable angle
291                 public Double angle;
292                 
293                 // Rotation angle used with turns and rotated inline.
294                 public Double rotationAngle;
295
296                 public String getTypeUri() {
297                         return typeUri;
298                 }
299
300                 public void setTypeUri(String typeUri) {
301                         this.typeUri = typeUri;
302                 }
303
304                 public PositionType getPosition() {
305                         return position;
306                 }
307
308                 public void setPosition(PositionType position) {
309                         this.position = position;
310                 }
311
312                 public PositionType getInsertPosition() {
313                         return insertPosition;
314                 }
315
316                 public void setInsertPosition(PositionType insertPosition) {
317                         this.insertPosition = insertPosition;
318                 }
319
320                 public String getName() {
321                         return name;
322                 }
323
324                 public void setName(String name) {
325                         this.name = name;
326                 }
327
328                 public Double getDiameter() {
329                         return diameter;
330                 }
331
332                 public void setDiameter(Double diameter) {
333                         this.diameter = diameter;
334                 }
335                 
336                 public double getThickness() {
337                         return thickness;
338                 }
339                 
340                 public void setThickness(double thickness) {
341                         this.thickness = thickness;
342                 }
343
344                 public Double getTurnRadius() {
345                         return turnRadius;
346                 }
347
348                 public void setTurnRadius(Double turnRadius) {
349                         this.turnRadius = turnRadius;
350                 }
351
352                 public Double getLength() {
353                         return length;
354                 }
355
356                 public void setLength(Double length) {
357                         this.length = length;
358                 }
359
360                 public Double getAngle() {
361                         return angle;
362                 }
363
364                 public void setAngle(Double angle) {
365                         this.angle = angle;
366                 }
367                 
368                 public Double getRotationAngle() {
369             return rotationAngle;
370         }
371                 
372                 public void setRotationAngle(Double rotationAngle) {
373             this.rotationAngle = rotationAngle;
374         }
375
376         }
377         
378         public static PipelineComponent addComponent(P3DRootNode root, PipelineComponent component,  InsertInstruction inst) throws Exception {
379                 
380                 PipelineComponent newComponent = ComponentUtils.createComponent(root, inst.typeUri);
381                 if (inst.name != null)
382                         newComponent.setName(inst.name);
383                 
384                 PipeControlPoint newPcp = newComponent.getControlPoint();
385                 
386                 PipeControlPoint toPcp = component.getControlPoint();
387                 PipeRun pipeRun = toPcp.getPipeRun();
388                 
389                 String typeName = names.get(inst.typeUri);
390                 if (typeName == null)
391                         typeName = "Component";
392                 
393                 Vector3d dir = null;
394                 Vector3d pos = null;
395         
396                 PositionType position = inst.position;
397                 PositionType insertPosition = inst.insertPosition;
398                 boolean lengthAdjustable = false;
399                 if (newComponent instanceof InlineComponent) {
400                         lengthAdjustable = ((InlineComponent)newComponent).isVariableLength() || ((InlineComponent)newComponent).isModifialble(); 
401                 }
402                 boolean insertAdjustable = false;
403                 if (component instanceof InlineComponent) {
404                         insertAdjustable = ((InlineComponent)component).isVariableLength();
405                 }
406                 boolean sizeChange = false;
407                 if (newComponent instanceof InlineComponent) {
408                         sizeChange = ((InlineComponent)newComponent).isSizeChange();
409                 }
410                 
411                 if (toPcp.isInline()) {
412                         switch (position) {
413                         case NEXT: 
414                                 if (toPcp.isDualInline()) {
415                                         toPcp = toPcp.getDualSub();
416                                         pipeRun = toPcp.getPipeRun();
417                                 }
418                                 
419                                 break;
420                         case PREVIOUS:
421                                 if (toPcp.isDualSub()) {
422                                         toPcp = toPcp.parent;
423                                         pipeRun = toPcp.getPipeRun();
424                                 }
425                                 break;
426                         default:
427                                 break;
428                         }
429                         Vector3d start = new Vector3d();
430                         Vector3d end = new Vector3d();
431                         dir = new Vector3d();
432                         toPcp.getInlineControlPointEnds(start, end, dir);
433                         dir.normalize();
434                         switch (position) {
435                         case NEXT:
436                                 pos = new Vector3d(end);
437                                 break;
438                         case PREVIOUS:
439                                 pos = new Vector3d(start);
440                                 break;
441                         case SPLIT:
442                                 pos = new Vector3d(toPcp.getWorldPosition());
443                                 break;
444                         default:
445                                 break;
446                         }
447
448                 } else if (toPcp.isDirected()) {
449                         dir = new Vector3d(toPcp.getDirection(Direction.NEXT));
450                         pos = new Vector3d(toPcp.getWorldPosition());
451                 } else if (toPcp.isTurn() && toPcp.asFixedAngle()) {
452                         dir = new Vector3d(toPcp.getDirection(position == PositionType.NEXT ? Direction.NEXT : Direction.PREVIOUS));
453                         pos = new Vector3d(toPcp.getWorldPosition());
454                         if (!lengthAdjustable) {
455                                 Vector3d v = new Vector3d(dir);
456                                 v.scale(toPcp.getInlineLength());
457                                 pos.add(v);
458                         } else {
459                                 if (insertPosition == PositionType.NEXT) {
460                                         Vector3d v = new Vector3d(dir);
461                                         v.scale(toPcp.getInlineLength());
462                                         pos.add(v);
463                                 } else if (insertPosition == PositionType.SPLIT) {
464                                         // scale 0.5*length so that we don't remove the length twice from the new component
465                                         Vector3d v = new Vector3d(dir);
466                                         v.scale(toPcp.getInlineLength()*0.5);  
467                                         pos.add(v);
468                                 }
469                         }
470                 }
471                 
472                 String name = component.getPipeRun().getUniqueName(typeName);
473                 newComponent.setName(name);
474
475                 pipeRun.addChild(newComponent);
476                 if (newPcp.isSizeChange())
477                         newComponent.setAlternativePipeRun(pipeRun);
478
479                 if (newComponent instanceof InlineComponent) {
480                     InlineComponent inlineComponent = (InlineComponent)newComponent;
481                     if (inlineComponent.isVariableLength()|| inlineComponent.isModifialble()) {
482                         newPcp.setLength(inst.length);
483                         newComponent.setParameter("length", inst.length);
484                     }
485                     if (inst.rotationAngle != null)
486                         ((InlineComponent) newComponent).setRotationAngle(inst.rotationAngle);
487                 } else if (newComponent instanceof TurnComponent) {
488                     TurnComponent turnComponent = (TurnComponent)newComponent;
489                     if  (turnComponent.isVariableAngle()) {
490                                 newPcp.setTurnAngle(inst.angle);
491                                 newComponent.setParameter("turnAngle", inst.angle);
492                     }
493                     if (inst.rotationAngle != null)
494                 ((TurnComponent) newComponent).setRotationAngle(inst.rotationAngle);
495                 }
496                 
497                 
498                 newComponent.updateParameters();
499                 
500                 Vector3d v = new Vector3d(dir);
501                 if (insertAdjustable) {
502                         if (insertPosition == PositionType.NEXT)
503                                 v.scale(newComponent.getControlPoint().getInlineLength());
504                         else if (insertPosition == PositionType.SPLIT)
505                                 v.set(0, 0, 0);
506                         else if (insertPosition == PositionType.PREVIOUS)
507                                 v.scale(-newComponent.getControlPoint().getInlineLength());
508                 } else {
509                         v.scale(newComponent.getControlPoint().getInlineLength());
510                 }
511                 switch (position) {
512                 case NEXT:
513                         pos.add(v);
514                         break;
515                 case PREVIOUS:
516                         pos.sub(v);
517                         break;
518                 case SPLIT:
519                         break;
520                 default:
521                         break;
522                 }
523                 
524                 switch (position) {
525                 case NEXT: 
526                         if (toPcp.isDualInline())
527                                 toPcp = toPcp.getDualSub();
528                         newPcp.insert(toPcp, Direction.NEXT);
529                         newPcp.setWorldPosition(pos);
530                         break;
531                 case PREVIOUS:
532                         if (toPcp.isDualSub())
533                                 toPcp = toPcp.parent;
534                         newPcp.insert(toPcp, Direction.PREVIOUS);
535                         newPcp.setWorldPosition(pos);
536                         break;
537                 case SPLIT:
538                         PipingRules.splitVariableLengthComponent(newComponent, (InlineComponent)component, true);
539                 default:
540                         break;
541                 }
542                 
543                 // Move the size change and the rest of the components in the pipe run to a new pipe run
544                 if (sizeChange) {
545                         PipeRun other = new PipeRun();
546                         String n = root.getUniqueName("PipeRun");
547                         other.setName(n);
548                         other.setPipeDiameter(inst.diameter);
549                         other.setPipeThickness(inst.thickness);
550                         other.setTurnRadius(inst.turnRadius);
551                         root.addChild(other);
552                         
553                         other.addChild(newComponent.getControlPoint().getDualSub());
554                         newComponent.setAlternativePipeRun(other);
555                         
556                         boolean forward = position != PositionType.PREVIOUS;
557                         PipelineComponent comp = forward ? newComponent.getNext() : newComponent.getPrevious();
558                         while (comp != null && comp.getPipeRun() == pipeRun) {
559                                 if (comp.getParent() == pipeRun) {
560                                         comp.deattach();
561                                         other.addChild(comp);
562                                 } else {
563                                         comp.setPipeRun(other);
564                                 }
565                                 
566                                 // Reset parameters to match new pipe run
567                                 comp.updateParameters();
568                                 
569                                 comp = forward ? comp.getNext() : comp.getPrevious();
570                         }
571                         
572                         newComponent.updateParameters();
573                 }
574                 
575                 return newComponent;
576         }
577         
578         public static boolean connect(PipelineComponent current, PipelineComponent endTo) throws Exception {
579                 return connect(current, endTo, null, null);
580         }
581         
582         /**
583          * Connects component to another component
584          * @param current
585          * @param endTo
586          * @param endType
587          * @param position
588          * @return
589          * @throws Exception
590          */
591         public static boolean connect(PipelineComponent current, PipelineComponent endTo, PositionType endType, Vector3d position) throws Exception{
592                 PipeControlPoint endCP = endTo.getControlPoint();
593                 boolean reversed;
594                 if (current.getNext() == null)
595                         reversed = false;
596                 else if (current.getPrevious() == null)
597                         reversed = true;
598                 else
599                         return false;
600                 
601                 PipeRun pipeRun = current.getPipeRun();
602                 P3DRootNode root = (P3DRootNode)current.getRootNode();
603                 PipeControlPoint currentCP = current.getControlPoint();
604                 
605                 if (endType == null || endType == PositionType.NEXT || endType == PositionType.PREVIOUS) {
606                         
607                         
608                         
609                         boolean requiresReverse = false;
610                         if (!reversed && endCP.getPrevious() != null) {
611                                 if (endCP.getNext() != null)
612                                         return false;
613                                 requiresReverse = true;
614                         } else if (reversed && endCP.getNext() != null) {
615                                 if (endCP.getPrevious() != null)
616                                         return false;
617                                 requiresReverse = true;
618                         }
619                         PipeRun other = endCP.getPipeRun();
620                         boolean mergeRuns = other == null ? true : pipeRun.canMerge(other);
621                         
622                         if (requiresReverse) {
623                                 // Pipe line must be traversible with next/previous relations without direction change.
624                                 // Now the component, where we are connecting the created pipeline is defined in different order.
625                                 PipingRules.reverse(other);
626                                 
627                         }
628
629                         if (mergeRuns) {
630                                 // Runs have compatible specs and must be merged
631                                 if (other != null && pipeRun != other)
632                                         pipeRun.merge(other);
633                                 else if (other == null) {
634                                         if (!(endTo instanceof Nozzle)) {
635                                                 pipeRun.addChild(endTo);
636                                         } else {
637                                                 endTo.setPipeRun(pipeRun);
638                                         }
639                                 }
640                                 if (!reversed) {
641                                         currentCP.setNext(endCP);
642                                         endCP.setPrevious(currentCP);
643                                 } else {
644                                         currentCP.setPrevious(endCP);
645                                         endCP.setNext(currentCP);
646                                 }
647                         } else {
648                                 // Runs do not have compatible specs, and a reducer must be attached in between.
649                                 InlineComponent reducer = ComponentUtils.createReducer(root);
650                                 PipeControlPoint pcp = reducer.getControlPoint();
651                                 
652                                 Vector3d endPos = endCP.getWorldPosition();
653                                 Vector3d currentPos = currentCP.getWorldPosition();
654                                 Vector3d v = new Vector3d(endPos);
655                                 v.sub(currentPos);
656                                 v.scale(0.5);
657                                 v.add(currentPos);
658                                 
659                                 PipingRules.addSizeChange(reversed, pipeRun, other, reducer, currentCP, endCP);
660                                 
661                                 pcp.setWorldPosition(v);
662                                 reducer.updateParameters();
663                         }
664                         PipingRules.positionUpdate(endCP);
665                         return true;
666                         
667                 } else if (endType == PositionType.SPLIT) {
668                         InlineComponent branchSplit = createBranchSplit((InlineComponent)endTo, position);
669                         if (branchSplit == null)
670                                 return false;
671                         PipeControlPoint branchSplitCP = branchSplit.getControlPoint();
672                         PipeControlPoint pcp = new PipeControlPoint(branchSplit,pipeRun);
673                         branchSplitCP.children.add(pcp);
674                         pcp.parent = branchSplitCP;
675                         pcp.setWorldOrientation(branchSplitCP.getWorldOrientation());
676                         pcp.setWorldPosition(branchSplitCP.getWorldPosition());
677                                                 
678                         
679                         if(!reversed) {
680                                 pcp.setPrevious(currentCP);
681                                 currentCP.setNext(pcp);
682                         } else {
683                                 pcp.setNext(currentCP);
684                                 currentCP.setPrevious(pcp);
685                         }
686                         PipingRules.positionUpdate(endCP);
687                         return true;
688                 }
689                 return false;
690         }
691         
692         public static InlineComponent createBranchSplit(InlineComponent component, Vector3d pos) throws Exception{
693                 if (!component.isVariableLength())
694                         return null;
695                 PipeRun pipeRun = component.getPipeRun();
696                 Vector3d sStart = new Vector3d();
697                 Vector3d sEnd = new Vector3d();
698                 component.getControlPoint().getInlineControlPointEnds(sStart, sEnd);
699                 
700                 if (MathTools.distance(sStart, sEnd) < (pipeRun.getPipeDiameter()*0.5))
701                         return null;
702                 
703                 
704                 Vector3d p = MathTools.closestPointOnEdge(new Vector3d(pos), sStart, sEnd);
705                 if (p == sStart) {
706                         Vector3d v = new Vector3d(sEnd);
707                         v.sub(sStart);
708                         v.normalize();
709                         v.scale(component.getPipeRun().getPipeDiameter()*0.5);
710                         p.add(v);
711                 } else if (p == sEnd) {
712                         Vector3d v = new Vector3d(sStart);
713                         v.sub(sEnd);
714                         v.normalize();
715                         v.scale(component.getPipeRun().getPipeDiameter()*0.5);
716                         p.add(v);
717                 }
718                 
719                 P3DRootNode root = (P3DRootNode)component.getRootNode();
720                 InlineComponent branchSplit = ComponentUtils.createBranchSplit(root);
721                 String branchName = component.getPipeRun().getUniqueName("Branch");
722                 branchSplit.setName(branchName);
723                 component.getPipeRun().addChild(branchSplit);
724                 PipeControlPoint branchSplitCP = branchSplit.getControlPoint();
725                 branchSplitCP.setWorldPosition(p);
726                 PipingRules.splitVariableLengthComponent(branchSplit, component, false);
727                 return branchSplit;
728         }
729
730         public static Collection<String> getPipelineComponentNames(P3DRootNode root) {
731                 Collection<String> usedNames = root.getChild().stream()
732                                 .filter(n -> n instanceof PipeRun)
733                                 .flatMap(n -> ((PipeRun)n).getChild().stream())
734                                 .filter(n -> n instanceof PipelineComponent)
735                                 .map(n -> ((PipelineComponent)n).getName())
736                                 .collect(Collectors.toSet());
737                 return usedNames;
738         }
739 }