]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.plant3d/src/org/simantics/plant3d/actions/AddComponentAction.java
Merge "Fix component add with overlapping setting"
[simantics/3d.git] / org.simantics.plant3d / src / org / simantics / plant3d / actions / AddComponentAction.java
1 package org.simantics.plant3d.actions;
2
3 import java.awt.event.KeyEvent;
4 import java.awt.event.MouseEvent;
5 import java.awt.event.MouseWheelEvent;
6 import java.util.HashSet;
7 import java.util.Set;
8
9 import javax.vecmath.Vector3d;
10
11 import org.eclipse.swt.widgets.Display;
12 import org.simantics.g3d.scenegraph.NodeMap;
13 import org.simantics.g3d.scenegraph.base.INode;
14 import org.simantics.g3d.vtk.swt.InteractiveVtkComposite;
15 import org.simantics.g3d.vtk.swt.vtkSwtAction;
16 import org.simantics.plant3d.Activator;
17 import org.simantics.plant3d.dialog.ComponentSelectionDialog;
18 import org.simantics.plant3d.gizmo.TerminalSelectionGizmo;
19 import org.simantics.plant3d.scenegraph.InlineComponent;
20 import org.simantics.plant3d.scenegraph.Nozzle;
21 import org.simantics.plant3d.scenegraph.P3DRootNode;
22 import org.simantics.plant3d.scenegraph.PipeRun;
23 import org.simantics.plant3d.scenegraph.PipelineComponent;
24 import org.simantics.plant3d.scenegraph.controlpoint.PipeControlPoint;
25 import org.simantics.plant3d.scenegraph.controlpoint.PipeControlPoint.Direction;
26 import org.simantics.plant3d.scenegraph.controlpoint.PipeControlPoint.PositionType;
27 import org.simantics.plant3d.scenegraph.controlpoint.PipingRules;
28 import org.simantics.plant3d.utils.ComponentUtils;
29 import org.simantics.plant3d.utils.Item;
30 import org.simantics.plant3d.utils.Item.Type;
31 import org.simantics.utils.threads.ThreadUtils;
32 import org.simantics.utils.ui.ExceptionUtils;
33
34 import vtk.vtkProp;
35
36 public class AddComponentAction extends vtkSwtAction {
37         
38
39         private P3DRootNode root;
40         private PipelineComponent component;
41         private NodeMap<vtkProp,INode> nodeMap;
42         
43         private TerminalSelectionGizmo gizmo;
44         
45         private Set<PositionType> allowed = new HashSet<PositionType>();
46         
47         private Item toAdd = null;
48         private PositionType insertPosition;
49         private boolean insertAdjustable;
50         private boolean lengthAdjustable;
51         
52         public AddComponentAction(InteractiveVtkComposite panel, P3DRootNode root) {
53                 super(panel);
54                 this.root = root;
55                 setText("Add Component");
56                 setImageDescriptor(Activator.imageDescriptorFromPlugin(Activator.PLUGIN_ID, "icons/Component.png"));
57                 nodeMap = root.getNodeMap();
58                 gizmo = new TerminalSelectionGizmo(panel);
59         }
60         
61         public void setComponent(PipelineComponent component) {
62                 this.component = component;
63                 
64                 allowed.clear();
65                 if (component instanceof Nozzle) {
66                     if (component.getNext() == null && component.getPrevious() == null) {
67                     allowed.add(PositionType.NEXT);
68                 }  
69                 } else {
70                 if (component.getNext() == null) {
71                         allowed.add(PositionType.NEXT);
72                 }
73                 if (component.getPrevious() == null) {
74                         allowed.add(PositionType.PREVIOUS);
75                 }
76                 if (component instanceof InlineComponent && !component.getControlPoint().isFixed()){
77                         allowed.add(PositionType.SPLIT);
78                 }
79                 }
80                 setEnabled(allowed.size() > 0);
81         }
82         
83         private Double length;
84         private Double angle;
85         private Double diameter;
86         private Double turnRadius;
87         
88         @Override
89         public void run() {
90             
91                 ComponentSelectionDialog dialog = new ComponentSelectionDialog(Display.getCurrent().getActiveShell(), allowed, component);
92                 if (dialog.open() == ComponentSelectionDialog.CANCEL)
93                         return;
94                 toAdd = dialog.getSelected();
95                 if (toAdd == null)
96                         return;
97                 this.insertPosition = dialog.getInsertPosition();
98                 this.insertAdjustable = dialog.isInsertAdjustable();
99                 this.lengthAdjustable = dialog.isLenghtAdjustable();
100                 this.length = dialog.getLength();
101                 this.angle = dialog.getAngle();
102                 this.diameter = dialog.getDiameter();
103                 this.turnRadius = dialog.getTurnRadius();
104                 allowed = dialog.filterAllowed();
105                 gizmo.setComponent(component, allowed);
106                 super.run();
107                 panel.refresh();
108         }
109         
110         @Override
111         public boolean keyPressed(KeyEvent e) {
112                 if (e.getKeyCode() == KeyEvent.VK_ESCAPE)
113                         panel.useDefaultAction();
114                 return true;
115                 
116         }
117         
118         public void attach() {
119                 if (component == null)
120                         return;
121                 
122                 super.attach();
123                 ThreadUtils.asyncExec(panel.getThreadQueue(), new Runnable() {
124                         public void run() {
125                                 attachUI();
126                         }
127                 });
128                 
129         }
130         
131         public void deattach() {
132 //              deactivate();
133                 component = null;
134                 nodeMap.commit("Add component");
135                 deattachUI();
136                 super.deattach();
137                 panel.refresh();
138         }
139         
140         private void attachUI() {
141                 //panel.setCursor(activeCursor);
142                 gizmo.attach(panel);
143         }
144         
145         private void deattachUI() {
146                 //panel.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
147                 gizmo.deattach();
148         }
149         
150         @Override
151         public boolean mouseMoved(MouseEvent e) {
152                 return getDefaultAction().mouseMoved(e);
153         }
154         
155         @Override
156         public boolean mousePressed(MouseEvent e) {
157                 return getDefaultAction().mousePressed(e);
158         }
159
160         @Override
161         public boolean mouseReleased(MouseEvent e) {
162                 return getDefaultAction().mouseReleased(e);
163         }
164         
165         @Override
166         public boolean mouseDragged(MouseEvent e) {
167                 return getDefaultAction().mouseDragged(e);
168         }
169         
170         public void doInsert(PositionType position) {
171                 try  {
172                         PipelineComponent newComponent = ComponentUtils.createComponent(root,toAdd.getUri());
173                         PipeControlPoint newPcp = newComponent.getControlPoint();
174                         
175                         PipeControlPoint toPcp = component.getControlPoint();
176                         PipeRun pipeRun = toPcp.getPipeRun();
177                         
178                         Vector3d dir = null;
179                         Vector3d pos = null;
180                 
181                         
182                         if (toPcp.isInline()) {
183                             switch (position) {
184                     case NEXT: 
185                         if (toPcp.isDualInline())
186                             toPcp = toPcp.getSubPoint().get(0);
187                         
188                         break;
189                     case PREVIOUS:
190                         if (toPcp.isDualSub())
191                             toPcp = toPcp.parent;
192                     }
193                             Vector3d start = new Vector3d();
194                             Vector3d end = new Vector3d();
195                     dir = new Vector3d();
196                     toPcp.getInlineControlPointEnds(start, end, dir);
197                     dir.normalize();
198                    switch (position) {
199                 case NEXT:
200                     pos = new Vector3d(end);
201                     break;
202                 case PREVIOUS:
203                     pos = new Vector3d(start);
204                     break;
205                 case SPLIT:
206                     pos = new Vector3d(toPcp.getWorldPosition());
207                     break;
208                 }
209                    
210                         } else if (toPcp.isDirected()) {
211                             dir = new Vector3d(toPcp.getDirection(Direction.NEXT));
212                             pos = new Vector3d(toPcp.getWorldPosition());
213                         } else if (toPcp.isTurn() && toPcp.isFixed()) {
214                             dir = new Vector3d(toPcp.getDirection(position == PositionType.NEXT ? Direction.NEXT : Direction.PREVIOUS));
215                 pos = new Vector3d(toPcp.getWorldPosition());
216                 if (!lengthAdjustable) {
217                     Vector3d v = new Vector3d(dir);
218                     v.scale(toPcp.getInlineLength());
219                     pos.add(v);
220                 } else {
221                     if (insertPosition == PositionType.NEXT) {
222                         Vector3d v = new Vector3d(dir);
223                         v.scale(toPcp.getInlineLength());
224                         pos.add(v);
225                     } else if (insertPosition == PositionType.SPLIT) {
226                         // scale 0.5*length so that we don't remove the length twice from the new component
227                         Vector3d v = new Vector3d(dir);
228                         v.scale(toPcp.getInlineLength()*0.5);  
229                         pos.add(v);
230                     }
231                 }
232                         }
233                         
234                         
235                         if (!toAdd.isSizeChange()) {
236                                 String name = component.getPipeRun().getUniqueName(toAdd.getName());
237                                 newComponent.setName(name);
238
239                                 pipeRun.addChild(newComponent);
240                                 if (toAdd.isVariable()) {
241                                         // TODO: these options are not stored into DB. Should they?!
242                                         if (toAdd.getType() == Type.INLINE) {
243                                                 newPcp.setLength(length);
244 //                                              newPcp.setFixed(true);
245                                         } else if (toAdd.getType() == Type.TURN) {
246                                                 newPcp.setTurnAngle(angle);
247 //                                              newPcp.setFixed(true);
248                                         }
249                                 }
250                                 newComponent.updateParameters();
251                                 
252                             Vector3d v = new Vector3d(dir);
253                             if (insertAdjustable) {
254                             if (insertPosition == PositionType.NEXT)
255                                 v.scale(newComponent.getControlPoint().getInlineLength());
256                             else if (insertPosition == PositionType.SPLIT)
257                                 v.set(0, 0, 0);
258                             else if (insertPosition == PositionType.PREVIOUS)
259                                 v.scale(-newComponent.getControlPoint().getInlineLength());
260                             } else {
261                                 v.scale(newComponent.getControlPoint().getInlineLength());
262                             }
263                 switch (position) {
264                 case NEXT:
265                     pos.add(v);
266                     break;
267                 case PREVIOUS:
268                     pos.sub(v);
269                     break;
270                 case SPLIT:
271                     break;
272                 }
273                                 
274                                 switch (position) {
275                                 case NEXT: 
276                                         if (toPcp.isDualInline())
277                                                 toPcp = toPcp.getSubPoint().get(0);
278                                         newPcp.insert(toPcp, Direction.NEXT);
279                                         newPcp.setWorldPosition(pos);
280                                         break;
281                                 case PREVIOUS:
282                                         if (toPcp.isDualSub())
283                                                 toPcp = toPcp.parent;
284                                         newPcp.insert(toPcp, Direction.PREVIOUS);
285                                         newPcp.setWorldPosition(pos);
286                                         break;
287                                 case SPLIT:
288                                         PipingRules.splitVariableLengthComponent(newComponent, (InlineComponent)component, true);
289                                 }
290                         } else {
291                                 PipeRun other = new PipeRun();
292                                 String n = root.getUniqueName("PipeRun");
293                                 other.setName(n);
294                                 other.setPipeDiameter(diameter);
295                                 other.setTurnRadius(turnRadius);
296                                 root.addChild(other);
297                                 
298                                 
299                                 if (position == PositionType.NEXT) {
300                                         PipingRules.addSizeChange(false, pipeRun, other, (InlineComponent)newComponent, toPcp, null);
301                         } else if (position == PositionType.PREVIOUS){
302                                 PipingRules.addSizeChange(true, pipeRun, other, (InlineComponent)newComponent, toPcp, null);
303                         }
304                                 newPcp.setWorldPosition(pos);
305                                 // TODO : chicken-egg problem
306                                 newComponent.updateParameters();
307                             Vector3d v = new Vector3d(dir);
308                 v.scale(newComponent.getControlPoint().getLength()*0.5);
309                 switch (position) {
310                 case NEXT:
311                     pos.add(v);
312                     break;
313                 case PREVIOUS:
314                     pos.sub(v);
315                     break;
316                 case SPLIT:
317                     break;
318                 }
319                 newPcp.setWorldPosition(pos);
320                                 
321                         }
322                         
323                         
324                 } catch (Exception e) {
325                         ExceptionUtils.logAndShowError("Cannot add component", e);
326                 }
327         }
328         
329         public boolean mouseClicked(MouseEvent e) {
330                 if (e.getClickCount() == 1 && e.getButton() == MouseEvent.BUTTON1) {
331                         int type = panel.getPickType();
332                         //panel.setPickType(0);
333                         panel.setPickType(5);
334                         vtkProp[] picked = panel.pick(e.getX(), e.getY());
335                         panel.setPickType(type);
336                         PositionType position = gizmo.getPickedPosition(picked);
337
338                         if (position != null) {
339                                 doInsert(position);
340                                 panel.useDefaultAction();
341                                 return true;
342                         }
343                 } 
344                 return getDefaultAction().mouseClicked(e);
345         }
346         
347         @Override
348         public boolean mouseWheelMoved(MouseWheelEvent e) {
349             return getDefaultAction().mouseWheelMoved(e);
350         }
351 }