]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.plant3d/src/org/simantics/plant3d/scenegraph/controlpoint/ControlPointFactory.java
Equipment/Component library customization
[simantics/3d.git] / org.simantics.plant3d / src / org / simantics / plant3d / scenegraph / controlpoint / ControlPointFactory.java
1 package org.simantics.plant3d.scenegraph.controlpoint;
2
3 import java.util.HashMap;
4 import java.util.List;
5 import java.util.Map;
6
7 import org.simantics.Simantics;
8 import org.simantics.db.ReadGraph;
9 import org.simantics.db.Resource;
10 import org.simantics.db.exception.DatabaseException;
11 import org.simantics.db.request.Read;
12 import org.simantics.plant3d.ontology.Plant3D;
13 import org.simantics.plant3d.scenegraph.PipelineComponent;
14 import org.simantics.plant3d.scenegraph.controlpoint.PipeControlPoint.PointType;
15 import org.simantics.plant3d.utils.Item;
16 import org.simantics.plant3d.utils.P3DUtil;
17
18 public class ControlPointFactory {
19         
20         private static Map<String,Instruction> cache = new HashMap<String, Instruction>();
21         
22         
23         public static void preloadCache() throws Exception {
24                 List<Item> items = P3DUtil.getEnds(Plant3D.URIs.Builtin);
25                 items.addAll(P3DUtil.getInlines(Plant3D.URIs.Builtin));
26                 items.addAll(P3DUtil.getNozzles(Plant3D.URIs.Builtin));
27                 items.addAll(P3DUtil.getTurns(Plant3D.URIs.Builtin));
28                 
29                 for (Item item : items) {
30                         Instruction inst = createInstruction(item.getUri());
31                         cache.put(item.getUri(), inst);
32                 }
33         }
34         
35         public static PipeControlPoint create(PipelineComponent component) throws Exception {
36                 Instruction inst = cache.get(component.getType());
37                 if (inst == null) {
38                         inst = createInstruction(component.getType());
39                         cache.put(component.getType(), inst);
40                 }
41                 if (inst == null) {
42                         return null;
43                 }
44                 
45                 PipeControlPoint pcp = new PipeControlPoint(component);
46                 pcp.setType(inst.type);
47                 pcp.setFixed(inst.fixed);
48                 pcp.setRotate(inst.isRotate);
49                 pcp.setReverse(inst.isReverse);
50                 switch(inst.type) {
51                 case END:
52                         
53                         break;
54                 case INLINE:
55                         if (inst.isOffset || inst.isSizeChange) {
56                                 PipeControlPoint sub = new PipeControlPoint(component);
57                                 pcp.children.add(sub);
58                                 sub.parent = pcp;
59                                 sub.setType(inst.type);
60                                 sub.setFixed(inst.fixed);
61                                 sub.setSub(true);
62                                 sub.setDeletable(false);
63                                 if (inst.isOffset)
64                                         pcp.setOffset(0.0);
65                                 if (inst.isSizeChange)
66                                         pcp.setSizeChange(true);
67                         }
68                         
69                         break;
70                 case TURN:
71                         
72                         break;
73                 }
74                 return pcp;
75         }
76         
77         
78         private static class Instruction {
79                 PointType type;
80                 boolean fixed;
81                 boolean isOffset;
82                 boolean isSizeChange;
83                 boolean isRotate;
84                 boolean isReverse;
85                 
86         }
87         
88         private static Instruction createInstruction(final String type) throws Exception {
89                 return Simantics.getSession().syncRequest(new Read<Instruction>() {
90                         @Override
91                         public Instruction perform(ReadGraph graph) throws DatabaseException {
92                                 Resource res = graph.getResource(type);
93                                 Plant3D p3d = Plant3D.getInstance(graph);
94                                 Instruction i = new Instruction();
95                                 i.fixed = false;
96                                 i.isOffset = false;
97                                 i.isSizeChange = false;
98                                 i.isRotate = false;
99                                 i.isReverse = false;
100                                 i.type = PointType.INLINE;
101                                 if (graph.isInheritedFrom(res, p3d.Nozzle)) {
102                                         i.fixed = true;
103                                         i.isOffset = false;
104                                         i.isSizeChange = false;
105                                         i.type = PointType.END;
106                                 } else if (graph.isInheritedFrom(res, p3d.InlineComponent)){
107                                         
108                                         i.type = PointType.INLINE;
109                                         if (graph.hasStatement(res,p3d.VariableLengthInlineComponent)) {
110                                                 i.fixed = false;
111                                         } else if (graph.hasStatement(res,p3d.FixedLengthInlineComponent)) {
112                                                 i.fixed = true;
113                                         }
114                                         
115                                         if (graph.hasStatement(res,p3d.SizeChangeComponent)) {
116                                                 i.isSizeChange = true;
117                                         }
118                                         
119                                         if (graph.hasStatement(res,p3d.OffsetComponent)) {
120                                                 i.isOffset = true;
121                                         }
122                                         if (graph.hasStatement(res,p3d.RotateComponent)) {
123                                                 i.isRotate = true;
124                                         }
125                                         
126                                         if (graph.hasStatement(res,p3d.ReverseComponent)) {
127                                                 i.isReverse = true;
128                                         }
129                                         
130                                 } else if (graph.isInheritedFrom(res, p3d.TurnComponent)) {
131                                         i.type = PointType.TURN;
132                                         if (graph.hasStatement(res,p3d.VariableAngleTurnComponent)) {
133                                                 i.fixed = false;
134                                         } else if (graph.hasStatement(res,p3d.FixedAngleTurnComponent)) {
135                                                 i.fixed = true; 
136                                         }
137                                 } else if (graph.isInheritedFrom(res, p3d.EndComponent)) {
138                                         i.fixed = false;
139                                         i.type = PointType.END;
140                                 } else {
141                                         return null;
142                                 }
143                                 return i;
144                         }
145                 });
146         }
147
148 }