]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchPlugin/SketchPlugin_Plugin.cpp
Salome HOME
53d44428de64414af073947042c166f45d713265
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Plugin.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 #include <SketchPlugin_Plugin.h>
4 #include <SketchPlugin_Sketch.h>
5 #include <SketchPlugin_Line.h>
6 #include <SketchPlugin_Point.h>
7 #include <SketchPlugin_IntersectionPoint.h>
8 #include <SketchPlugin_Circle.h>
9 #include <SketchPlugin_Arc.h>
10 #include <SketchPlugin_Projection.h>
11 #include <SketchPlugin_ConstraintAngle.h>
12 #include <SketchPlugin_ConstraintCoincidence.h>
13 #include <SketchPlugin_ConstraintCollinear.h>
14 #include <SketchPlugin_ConstraintDistance.h>
15 #include <SketchPlugin_ConstraintEqual.h>
16 #include <SketchPlugin_Fillet.h>
17 #include <SketchPlugin_ConstraintSplit.h>
18 #include <SketchPlugin_ConstraintHorizontal.h>
19 #include <SketchPlugin_ConstraintLength.h>
20 #include <SketchPlugin_ConstraintMiddle.h>
21 #include <SketchPlugin_ConstraintMirror.h>
22 #include <SketchPlugin_ConstraintParallel.h>
23 #include <SketchPlugin_ConstraintPerpendicular.h>
24 #include <SketchPlugin_ConstraintRadius.h>
25 #include <SketchPlugin_ConstraintRigid.h>
26 #include <SketchPlugin_ConstraintTangent.h>
27 #include <SketchPlugin_ConstraintVertical.h>
28 #include <SketchPlugin_MacroArc.h>
29 #include <SketchPlugin_MacroCircle.h>
30 #include <SketchPlugin_MultiRotation.h>
31 #include <SketchPlugin_MultiTranslation.h>
32 #include <SketchPlugin_Trim.h>
33 #include <SketchPlugin_Validators.h>
34 #include <SketchPlugin_ExternalValidator.h>
35
36 #include <Events_Loop.h>
37 #include <GeomDataAPI_Dir.h>
38
39 #include <ModelAPI_Session.h>
40 #include <ModelAPI_Document.h>
41 #include <ModelAPI_Validator.h>
42 #include <ModelAPI_Data.h>
43
44 #include <Config_PropManager.h>
45
46 #include <memory>
47
48 #ifdef _DEBUG
49 #include <iostream>
50 #endif
51
52 //#define SET_PLANES_COLOR_IN_PREFERENCES
53
54 // the only created instance of this plugin
55 static SketchPlugin_Plugin* MY_SKETCH_INSTANCE = new SketchPlugin_Plugin();
56
57 SketchPlugin_Plugin::SketchPlugin_Plugin()
58 {
59   SessionPtr aMgr = ModelAPI_Session::get();
60   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
61   aFactory->registerValidator("SketchPlugin_DistanceAttr",
62                               new SketchPlugin_DistanceAttrValidator);
63   aFactory->registerValidator("SketchPlugin_ExternalValidator",
64                               new SketchPlugin_ExternalValidator);
65   aFactory->registerValidator("SketchPlugin_TangentAttr",
66                               new SketchPlugin_TangentAttrValidator);
67   aFactory->registerValidator("SketchPlugin_NotFixed",
68                               new SketchPlugin_NotFixedValidator);
69   aFactory->registerValidator("SketchPlugin_EqualAttr",
70                               new SketchPlugin_EqualAttrValidator);
71   aFactory->registerValidator("SketchPlugin_MirrorAttr",
72                               new SketchPlugin_MirrorAttrValidator);
73   aFactory->registerValidator("SketchPlugin_CoincidenceAttr",
74                               new SketchPlugin_CoincidenceAttrValidator);
75   aFactory->registerValidator("SketchPlugin_CopyValidator",
76                               new SketchPlugin_CopyValidator);
77   aFactory->registerValidator("SketchPlugin_SolverErrorValidator",
78                               new SketchPlugin_SolverErrorValidator);
79   aFactory->registerValidator("SketchPlugin_FilletVertexValidator",
80                               new SketchPlugin_FilletVertexValidator);
81   aFactory->registerValidator("SketchPlugin_SplitValidator",
82                               new SketchPlugin_SplitValidator);
83   aFactory->registerValidator("SketchPlugin_TrimValidator",
84                               new SketchPlugin_TrimValidator);
85   aFactory->registerValidator("SketchPlugin_MiddlePointAttr",
86                               new SketchPlugin_MiddlePointAttrValidator);
87   aFactory->registerValidator("SketchPlugin_ArcTangentPoint",
88                               new SketchPlugin_ArcTangentPointValidator);
89   aFactory->registerValidator("SketchPlugin_IntersectionValidator",
90                               new SketchPlugin_IntersectionValidator);
91   aFactory->registerValidator("SketchPlugin_ProjectionValidator",
92                               new SketchPlugin_ProjectionValidator);
93
94   // register this plugin
95   ModelAPI_Session::get()->registerPlugin(this);
96
97   Config_PropManager::registerProp("Visualization", "sketch_entity_color",
98                                    "Sketch entity color",
99                                    Config_Prop::Color, SKETCH_ENTITY_COLOR);
100
101   Config_PropManager::registerProp("Visualization", "sketch_external_color",
102                                    "Sketch external entity color",
103                                    Config_Prop::Color, SKETCH_EXTERNAL_COLOR);
104
105   Config_PropManager::registerProp("Visualization", "sketch_auxiliary_color",
106                                    "Sketch auxiliary entity color",
107                                    Config_Prop::Color, SKETCH_AUXILIARY_COLOR);
108
109   Config_PropManager::registerProp("Visualization", "sketch_dimension_color",
110                                    "Sketch dimension color",
111                                    Config_Prop::Color, SKETCH_DIMENSION_COLOR);
112
113   Config_PropManager::registerProp("Visualization", "sketch_overconstraint_color",
114                                    "Sketch overconstraint color",
115                                    Config_Prop::Color, SKETCH_OVERCONSTRAINT_COLOR);
116
117   // register sketcher properties
118 #ifdef SET_PLANES_COLOR_IN_PREFERENCES
119   Config_PropManager::registerProp("Visualization", "yz_plane_color", "YZ plane color",
120                                    Config_Prop::Color, YZ_PLANE_COLOR);
121   Config_PropManager::registerProp("Visualization", "xz_plane_color", "XZ plane color",
122                                    Config_Prop::Color, XZ_PLANE_COLOR);
123   Config_PropManager::registerProp("Visualization", "xy_plane_color", "XY plane color",
124                                    Config_Prop::Color, XY_PLANE_COLOR);
125 #endif
126 }
127
128 FeaturePtr SketchPlugin_Plugin::createFeature(std::string theFeatureID)
129 {
130   if (theFeatureID == SketchPlugin_Sketch::ID()) {
131     return FeaturePtr(new SketchPlugin_Sketch);
132   } else if (theFeatureID == SketchPlugin_Point::ID()) {
133     return FeaturePtr(new SketchPlugin_Point);
134   } else if (theFeatureID == SketchPlugin_IntersectionPoint::ID()) {
135     return FeaturePtr(new SketchPlugin_IntersectionPoint);
136   } else if (theFeatureID == SketchPlugin_Line::ID()) {
137     return FeaturePtr(new SketchPlugin_Line);
138   } else if (theFeatureID == SketchPlugin_Circle::ID()) {
139     return FeaturePtr(new SketchPlugin_Circle);
140   } else if (theFeatureID == SketchPlugin_Arc::ID()) {
141     return FeaturePtr(new SketchPlugin_Arc);
142   } else if (theFeatureID == SketchPlugin_Projection::ID()) {
143     return FeaturePtr(new SketchPlugin_Projection);
144   } else if (theFeatureID == SketchPlugin_ConstraintCoincidence::ID()) {
145     return FeaturePtr(new SketchPlugin_ConstraintCoincidence);
146   } else if (theFeatureID == SketchPlugin_ConstraintCollinear::ID()) {
147     return FeaturePtr(new SketchPlugin_ConstraintCollinear);
148   } else if (theFeatureID == SketchPlugin_ConstraintDistance::ID()) {
149     return FeaturePtr(new SketchPlugin_ConstraintDistance);
150   } else if (theFeatureID == SketchPlugin_ConstraintLength::ID()) {
151     return FeaturePtr(new SketchPlugin_ConstraintLength);
152   } else if (theFeatureID == SketchPlugin_ConstraintParallel::ID()) {
153     return FeaturePtr(new SketchPlugin_ConstraintParallel);
154   } else if (theFeatureID == SketchPlugin_ConstraintPerpendicular::ID()) {
155     return FeaturePtr(new SketchPlugin_ConstraintPerpendicular);
156   } else if (theFeatureID == SketchPlugin_ConstraintRadius::ID()) {
157     return FeaturePtr(new SketchPlugin_ConstraintRadius);
158   } else if (theFeatureID == SketchPlugin_ConstraintRigid::ID()) {
159     return FeaturePtr(new SketchPlugin_ConstraintRigid);
160   } else if (theFeatureID == SketchPlugin_ConstraintHorizontal::ID()) {
161     return FeaturePtr(new SketchPlugin_ConstraintHorizontal);
162   } else if (theFeatureID == SketchPlugin_ConstraintVertical::ID()) {
163     return FeaturePtr(new SketchPlugin_ConstraintVertical);
164   } else if (theFeatureID == SketchPlugin_ConstraintEqual::ID()) {
165     return FeaturePtr(new SketchPlugin_ConstraintEqual);
166   } else if (theFeatureID == SketchPlugin_ConstraintTangent::ID()) {
167     return FeaturePtr(new SketchPlugin_ConstraintTangent);
168   } else if (theFeatureID == SketchPlugin_ConstraintMiddle::ID()) {
169     return FeaturePtr(new SketchPlugin_ConstraintMiddle);
170   } else if (theFeatureID == SketchPlugin_ConstraintMirror::ID()) {
171     return FeaturePtr(new SketchPlugin_ConstraintMirror);
172   } else if (theFeatureID == SketchPlugin_Fillet::ID()) {
173     return FeaturePtr(new SketchPlugin_Fillet);
174   } else if (theFeatureID == SketchPlugin_ConstraintSplit::ID()) {
175     return FeaturePtr(new SketchPlugin_ConstraintSplit);
176   } else if (theFeatureID == SketchPlugin_MultiTranslation::ID()) {
177     return FeaturePtr(new SketchPlugin_MultiTranslation);
178   } else if (theFeatureID == SketchPlugin_MultiRotation::ID()) {
179     return FeaturePtr(new SketchPlugin_MultiRotation);
180   } else if (theFeatureID == SketchPlugin_ConstraintAngle::ID()) {
181     return FeaturePtr(new SketchPlugin_ConstraintAngle);
182   } else if (theFeatureID == SketchPlugin_Trim::ID()) {
183     return FeaturePtr(new SketchPlugin_Trim);
184   } else if (theFeatureID == SketchPlugin_MacroArc::ID()) {
185     return FeaturePtr(new SketchPlugin_MacroArc);
186   } else if (theFeatureID == SketchPlugin_MacroCircle::ID()) {
187     return FeaturePtr(new SketchPlugin_MacroCircle);
188   }
189   // feature of such kind is not found
190   return FeaturePtr();
191 }
192
193 void SketchPlugin_Plugin::processEvent(const std::shared_ptr<Events_Message>& theMessage)
194 {
195   const Events_ID kRequestEvent =
196       Events_Loop::loop()->eventByName(EVENT_FEATURE_STATE_REQUEST);
197   if (theMessage->eventID() == kRequestEvent) {
198     std::shared_ptr<ModelAPI_FeatureStateMessage> aStateMessage =
199         std::dynamic_pointer_cast<ModelAPI_FeatureStateMessage>(theMessage);
200     Events_Loop::loop()->send(getFeaturesState(aStateMessage->feature()), false);
201   }
202 }
203
204 std::shared_ptr<ModelAPI_FeatureStateMessage> SketchPlugin_Plugin
205 ::getFeaturesState(const std::shared_ptr<ModelAPI_Feature>& theFeature) const
206 {
207   const Events_ID kResponseEvent = Events_Loop::loop()->eventByName(EVENT_FEATURE_STATE_RESPONSE);
208   std::shared_ptr<ModelAPI_FeatureStateMessage> aMsg(
209       new ModelAPI_FeatureStateMessage(kResponseEvent, this));
210
211   bool aHasSketchPlane = false;
212   std::shared_ptr<SketchPlugin_Sketch> aSketchFeature =
213       std::dynamic_pointer_cast<SketchPlugin_Sketch>(theFeature);
214   if (aSketchFeature.get()) {
215     std::shared_ptr<ModelAPI_Data> aData = aSketchFeature->data();
216     if (aData) {
217       std::shared_ptr<GeomDataAPI_Dir> aNormal =
218         std::dynamic_pointer_cast<GeomDataAPI_Dir>(
219         aData->attribute(SketchPlugin_Sketch::NORM_ID()));
220       // it is important to check whether the normal attribute is initialized
221       // because it is possible that normal values are filled when the plane is checked on validity
222       aHasSketchPlane = aNormal && aNormal->isInitialized() &&
223                         !(aNormal->x() == 0 && aNormal->y() == 0 && aNormal->z() == 0);
224
225       aMsg->setState(SketchPlugin_Point::ID(), aHasSketchPlane);
226       aMsg->setState(SketchPlugin_IntersectionPoint::ID(), aHasSketchPlane);
227       aMsg->setState(SketchPlugin_Line::ID(), aHasSketchPlane);
228       aMsg->setState(SketchPlugin_Circle::ID(), aHasSketchPlane);
229       aMsg->setState(SketchPlugin_Arc::ID(), aHasSketchPlane);
230       aMsg->setState(SketchPlugin_Projection::ID(), aHasSketchPlane);
231       aMsg->setState(SketchPlugin_ConstraintCoincidence::ID(), aHasSketchPlane);
232       aMsg->setState(SketchPlugin_ConstraintCollinear::ID(), aHasSketchPlane);
233       aMsg->setState(SketchPlugin_ConstraintDistance::ID(), aHasSketchPlane);
234       aMsg->setState(SketchPlugin_ConstraintLength::ID(), aHasSketchPlane);
235       aMsg->setState(SketchPlugin_ConstraintParallel::ID(), aHasSketchPlane);
236       aMsg->setState(SketchPlugin_ConstraintPerpendicular::ID(), aHasSketchPlane);
237       aMsg->setState(SketchPlugin_ConstraintRadius::ID(), aHasSketchPlane);
238       aMsg->setState(SketchPlugin_ConstraintRigid::ID(), aHasSketchPlane);
239       aMsg->setState(SketchPlugin_ConstraintHorizontal::ID(), aHasSketchPlane);
240       aMsg->setState(SketchPlugin_ConstraintVertical::ID(), aHasSketchPlane);
241       aMsg->setState(SketchPlugin_ConstraintEqual::ID(), aHasSketchPlane);
242       aMsg->setState(SketchPlugin_ConstraintTangent::ID(), aHasSketchPlane);
243       aMsg->setState(SketchPlugin_ConstraintMiddle::ID(), aHasSketchPlane);
244       aMsg->setState(SketchPlugin_ConstraintMirror::ID(), aHasSketchPlane);
245       aMsg->setState(SketchPlugin_Fillet::ID(), aHasSketchPlane);
246       aMsg->setState(SketchPlugin_ConstraintSplit::ID(), aHasSketchPlane);
247       aMsg->setState(SketchPlugin_ConstraintAngle::ID(), aHasSketchPlane);
248       aMsg->setState(SketchPlugin_MultiRotation::ID(), aHasSketchPlane);
249       aMsg->setState(SketchPlugin_MultiTranslation::ID(), aHasSketchPlane);
250       aMsg->setState(SketchPlugin_Trim::ID(), aHasSketchPlane);
251       aMsg->setState(SketchPlugin_MacroArc::ID(), aHasSketchPlane);
252       aMsg->setState(SketchPlugin_MacroCircle::ID(), aHasSketchPlane);
253       // SketchRectangle is a python feature, so its ID is passed just as a string
254       aMsg->setState("SketchRectangle", aHasSketchPlane);
255     }
256   }
257   return aMsg;
258 }