1 package org.simantics.plant3d.scenegraph;
3 import java.util.HashMap;
6 import javax.vecmath.Point3d;
7 import javax.vecmath.Vector3d;
9 import org.simantics.g3d.math.MathTools;
10 import org.simantics.g3d.property.annotations.GetPropertyValue;
11 import org.simantics.g3d.property.annotations.SetPropertyValue;
12 import org.simantics.g3d.scenegraph.base.ParentNode;
13 import org.simantics.objmap.graph.annotations.DynamicGraphType;
14 import org.simantics.objmap.graph.annotations.GetType;
15 import org.simantics.objmap.graph.annotations.RelatedGetValue;
16 import org.simantics.objmap.graph.annotations.RelatedSetValue;
17 import org.simantics.objmap.graph.annotations.SetType;
18 import org.simantics.plant3d.ontology.Plant3D;
19 import org.simantics.plant3d.scenegraph.controlpoint.ControlPointFactory;
20 import org.simantics.plant3d.scenegraph.controlpoint.PipeControlPoint;
21 import org.simantics.plant3d.scenegraph.controlpoint.PipingRules;
23 @DynamicGraphType(Plant3D.URIs.InlineComponent)
24 public class InlineComponent extends PipelineComponent {
27 private PipeControlPoint controlPoint;
28 private boolean componentCalculatedOffset = false;
30 @GetType(Plant3D.URIs.InlineComponent)
31 public String getType() {
35 @SetType(Plant3D.URIs.InlineComponent)
36 public void setType(String type) throws Exception{
38 controlPoint = ControlPointFactory.create(this);
46 public PipeControlPoint getControlPoint() {
51 public void setParent(ParentNode<?> parent, String name) {
52 super.setParent(parent, name);
53 setPipeRun((PipeRun)parent);
56 public boolean isVariableLength() {
57 return !controlPoint.isFixed();
60 public boolean isModifialble() {
61 return controlPoint.isMod();
64 public boolean isSizeChange() {
65 return controlPoint.isSizeChange();
68 @RelatedGetValue(Plant3D.URIs.HasRotationAngle)
69 @GetPropertyValue(name="Rotation Angle", value=Plant3D.URIs.HasRotationAngle, tabId = "Default")
70 public Double getRotationAngle() {
71 if (!controlPoint.isRotate())
73 Double d = controlPoint.getRotationAngle();
76 return MathTools.radToDeg(d);
79 @RelatedSetValue(Plant3D.URIs.HasRotationAngle)
80 @SetPropertyValue(value=Plant3D.URIs.HasRotationAngle)
81 public void setRotationAngle(Double angle) {
82 if (!controlPoint.isRotate())
85 if (angle == null || Double.isInfinite(angle) || Double.isNaN(angle)) {
88 angle = MathTools.degToRad(angle);
89 if (controlPoint.getRotationAngle() != null && Math.abs(controlPoint.getRotationAngle()-angle) < MathTools.NEAR_ZERO)
91 controlPoint.setRotationAngle(angle);
92 PipingRules.requestUpdate(getControlPoint());
96 @RelatedGetValue(Plant3D.URIs.IsReversed)
97 @GetPropertyValue(name="Reverse", value=Plant3D.URIs.IsReversed, tabId = "Default")
98 public Boolean isReversed() {
99 if (!controlPoint.isReverse())
101 Boolean d = controlPoint._getReversed();
104 @RelatedSetValue(Plant3D.URIs.IsReversed)
105 @SetPropertyValue(value=Plant3D.URIs.IsReversed)
106 public void setReversed(Boolean reverse) {
107 if (!controlPoint.isReverse())
110 if (reverse == null) {
113 controlPoint.setReversed(reverse);
114 PipingRules.requestUpdate(getControlPoint());
118 public void updateParameters() {
119 super.updateParameters();
120 if (!isVariableLength()) {
121 Map<String,Object> calculated = getCalculatedParameters();
123 if (calculated.containsKey("offset")) {
124 controlPoint.setOffset((Double)calculated.get("offset"));
125 componentCalculatedOffset = true;
127 componentCalculatedOffset = false;
130 Map<String,Object> total = getTotalParameters();
132 if (total.containsKey("length")) {
133 controlPoint.setLength((Double)total.get("length"));
136 PipingRules.requestUpdate(getControlPoint());
141 public void setPipeRun(PipeRun pipeRun) {
142 // TODO Auto-generated method stub
143 super.setPipeRun(pipeRun);
144 if (getPipeRun() != null && getAlternativePipeRun() != null) {
150 public void setAlternativePipeRun(PipeRun pipeRun) {
151 // TODO Auto-generated method stub
152 super.setAlternativePipeRun(pipeRun);
153 if (getPipeRun() != null && getAlternativePipeRun() != null) {
158 private void updateOffset() {
159 if (!componentCalculatedOffset && getControlPoint().isOffset()) {
160 getControlPoint().setOffset(getPipeRun().getPipeDiameter()*0.5 - getAlternativePipeRun().getPipeDiameter()*0.5);
165 public Map<String, Object> updateParameterMap() {
166 Map<String,Object> map = new HashMap<String, Object>();
167 if (controlPoint != null) {
168 if (!Double.isNaN(controlPoint.getLength()) && controlPoint.isVariableLength())
169 map.put("length", controlPoint.getLength());
170 if (controlPoint.isDualInline()) {
171 PipeControlPoint sub = controlPoint.getDualSub();
172 PipeRun pipeRun2 = sub.getPipeRun();
173 if (pipeRun2 != null) {
174 map.put("radius2", pipeRun2.getPipeDiameter() * 0.5);
176 if (controlPoint.isOffset() && !componentCalculatedOffset) {
177 map.put("offset", controlPoint.getOffset());
182 PipeRun pipeRun = getPipeRun();
183 if (pipeRun != null) {
184 map.put("radius", pipeRun.getPipeDiameter() * 0.5);
189 @SetPropertyValue("flowlength")
190 public void setFlowLength(double l) {
191 // Not allowed, if not at the end of a run
192 if (getNext() != null)
193 throw new IllegalStateException("Cannot edit length of a connected component");
195 double length = getFlowLength();
196 Point3d p1 = new Point3d(), p2 = new Point3d();
197 controlPoint.getControlPointEnds(p1, p2);
198 Vector3d dir = new Vector3d();
201 dir.scale((l - length)/2);
202 Vector3d pos = new Vector3d(getPosition());