1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
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_ConstraintFillet.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_MultiRotation.h>
29 #include <SketchPlugin_MultiTranslation.h>
30 #include <SketchPlugin_Validators.h>
31 #include <SketchPlugin_ExternalValidator.h>
33 #include <Events_Loop.h>
34 #include <GeomDataAPI_Dir.h>
36 #include <ModelAPI_Session.h>
37 #include <ModelAPI_Document.h>
38 #include <ModelAPI_Validator.h>
39 #include <ModelAPI_Data.h>
41 #include <Config_PropManager.h>
49 //#define SET_PLANES_COLOR_IN_PREFERENCES
51 // the only created instance of this plugin
52 static SketchPlugin_Plugin* MY_SKETCH_INSTANCE = new SketchPlugin_Plugin();
54 SketchPlugin_Plugin::SketchPlugin_Plugin()
56 SessionPtr aMgr = ModelAPI_Session::get();
57 ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
58 aFactory->registerValidator("SketchPlugin_DistanceAttr",
59 new SketchPlugin_DistanceAttrValidator);
60 aFactory->registerValidator("SketchPlugin_ExternalValidator",
61 new SketchPlugin_ExternalValidator);
62 aFactory->registerValidator("SketchPlugin_TangentAttr",
63 new SketchPlugin_TangentAttrValidator);
64 aFactory->registerValidator("SketchPlugin_NotFixed",
65 new SketchPlugin_NotFixedValidator);
66 aFactory->registerValidator("SketchPlugin_EqualAttr",
67 new SketchPlugin_EqualAttrValidator);
68 aFactory->registerValidator("SketchPlugin_MirrorAttr",
69 new SketchPlugin_MirrorAttrValidator);
70 aFactory->registerValidator("SketchPlugin_CoincidenceAttr",
71 new SketchPlugin_CoincidenceAttrValidator);
72 aFactory->registerValidator("SketchPlugin_CopyValidator",
73 new SketchPlugin_CopyValidator);
74 aFactory->registerValidator("SketchPlugin_SolverErrorValidator",
75 new SketchPlugin_SolverErrorValidator);
76 aFactory->registerValidator("SketchPlugin_FilletVertexValidator",
77 new SketchPlugin_FilletVertexValidator);
78 aFactory->registerValidator("SketchPlugin_SplitValidator",
79 new SketchPlugin_SplitValidator);
80 aFactory->registerValidator("SketchPlugin_MiddlePointAttr",
81 new SketchPlugin_MiddlePointAttrValidator);
82 aFactory->registerValidator("SketchPlugin_ArcTangentPoint",
83 new SketchPlugin_ArcTangentPointValidator);
84 aFactory->registerValidator("SketchPlugin_IntersectionValidator",
85 new SketchPlugin_IntersectionValidator);
86 aFactory->registerValidator("SketchPlugin_ProjectionValidator",
87 new SketchPlugin_ProjectionValidator);
89 // register this plugin
90 ModelAPI_Session::get()->registerPlugin(this);
92 Config_PropManager::registerProp("Visualization", "sketch_entity_color",
93 "Sketch entity color",
94 Config_Prop::Color, SKETCH_ENTITY_COLOR);
96 Config_PropManager::registerProp("Visualization", "sketch_external_color",
97 "Sketch external entity color",
98 Config_Prop::Color, SKETCH_EXTERNAL_COLOR);
100 Config_PropManager::registerProp("Visualization", "sketch_auxiliary_color",
101 "Sketch auxiliary entity color",
102 Config_Prop::Color, SKETCH_AUXILIARY_COLOR);
104 Config_PropManager::registerProp("Visualization", "sketch_dimension_color",
105 "Sketch dimension color",
106 Config_Prop::Color, SKETCH_DIMENSION_COLOR);
108 Config_PropManager::registerProp("Visualization", "sketch_overconstraint_color",
109 "Sketch overconstraint color",
110 Config_Prop::Color, SKETCH_OVERCONSTRAINT_COLOR);
112 // register sketcher properties
113 #ifdef SET_PLANES_COLOR_IN_PREFERENCES
114 Config_PropManager::registerProp("Visualization", "yz_plane_color", "YZ plane color",
115 Config_Prop::Color, YZ_PLANE_COLOR);
116 Config_PropManager::registerProp("Visualization", "xz_plane_color", "XZ plane color",
117 Config_Prop::Color, XZ_PLANE_COLOR);
118 Config_PropManager::registerProp("Visualization", "xy_plane_color", "XY plane color",
119 Config_Prop::Color, XY_PLANE_COLOR);
123 FeaturePtr SketchPlugin_Plugin::createFeature(std::string theFeatureID)
125 if (theFeatureID == SketchPlugin_Sketch::ID()) {
126 return FeaturePtr(new SketchPlugin_Sketch);
127 } else if (theFeatureID == SketchPlugin_Point::ID()) {
128 return FeaturePtr(new SketchPlugin_Point);
129 } else if (theFeatureID == SketchPlugin_IntersectionPoint::ID()) {
130 return FeaturePtr(new SketchPlugin_IntersectionPoint);
131 } else if (theFeatureID == SketchPlugin_Line::ID()) {
132 return FeaturePtr(new SketchPlugin_Line);
133 } else if (theFeatureID == SketchPlugin_Circle::ID()) {
134 return FeaturePtr(new SketchPlugin_Circle);
135 } else if (theFeatureID == SketchPlugin_Arc::ID()) {
136 return FeaturePtr(new SketchPlugin_Arc);
137 } else if (theFeatureID == SketchPlugin_Projection::ID()) {
138 return FeaturePtr(new SketchPlugin_Projection);
139 } else if (theFeatureID == SketchPlugin_ConstraintCoincidence::ID()) {
140 return FeaturePtr(new SketchPlugin_ConstraintCoincidence);
141 } else if (theFeatureID == SketchPlugin_ConstraintCollinear::ID()) {
142 return FeaturePtr(new SketchPlugin_ConstraintCollinear);
143 } else if (theFeatureID == SketchPlugin_ConstraintDistance::ID()) {
144 return FeaturePtr(new SketchPlugin_ConstraintDistance);
145 } else if (theFeatureID == SketchPlugin_ConstraintLength::ID()) {
146 return FeaturePtr(new SketchPlugin_ConstraintLength);
147 } else if (theFeatureID == SketchPlugin_ConstraintParallel::ID()) {
148 return FeaturePtr(new SketchPlugin_ConstraintParallel);
149 } else if (theFeatureID == SketchPlugin_ConstraintPerpendicular::ID()) {
150 return FeaturePtr(new SketchPlugin_ConstraintPerpendicular);
151 } else if (theFeatureID == SketchPlugin_ConstraintRadius::ID()) {
152 return FeaturePtr(new SketchPlugin_ConstraintRadius);
153 } else if (theFeatureID == SketchPlugin_ConstraintRigid::ID()) {
154 return FeaturePtr(new SketchPlugin_ConstraintRigid);
155 } else if (theFeatureID == SketchPlugin_ConstraintHorizontal::ID()) {
156 return FeaturePtr(new SketchPlugin_ConstraintHorizontal);
157 } else if (theFeatureID == SketchPlugin_ConstraintVertical::ID()) {
158 return FeaturePtr(new SketchPlugin_ConstraintVertical);
159 } else if (theFeatureID == SketchPlugin_ConstraintEqual::ID()) {
160 return FeaturePtr(new SketchPlugin_ConstraintEqual);
161 } else if (theFeatureID == SketchPlugin_ConstraintTangent::ID()) {
162 return FeaturePtr(new SketchPlugin_ConstraintTangent);
163 } else if (theFeatureID == SketchPlugin_ConstraintMiddle::ID()) {
164 return FeaturePtr(new SketchPlugin_ConstraintMiddle);
165 } else if (theFeatureID == SketchPlugin_ConstraintMirror::ID()) {
166 return FeaturePtr(new SketchPlugin_ConstraintMirror);
167 } else if (theFeatureID == SketchPlugin_ConstraintFillet::ID()) {
168 return FeaturePtr(new SketchPlugin_ConstraintFillet);
169 } else if (theFeatureID == SketchPlugin_ConstraintSplit::ID()) {
170 return FeaturePtr(new SketchPlugin_ConstraintSplit);
171 } else if (theFeatureID == SketchPlugin_MultiTranslation::ID()) {
172 return FeaturePtr(new SketchPlugin_MultiTranslation);
173 } else if (theFeatureID == SketchPlugin_MultiRotation::ID()) {
174 return FeaturePtr(new SketchPlugin_MultiRotation);
175 } else if (theFeatureID == SketchPlugin_ConstraintAngle::ID()) {
176 return FeaturePtr(new SketchPlugin_ConstraintAngle);
178 // feature of such kind is not found
182 void SketchPlugin_Plugin::processEvent(const std::shared_ptr<Events_Message>& theMessage)
184 const Events_ID kRequestEvent =
185 Events_Loop::loop()->eventByName(EVENT_FEATURE_STATE_REQUEST);
186 if (theMessage->eventID() == kRequestEvent) {
187 std::shared_ptr<ModelAPI_FeatureStateMessage> aStateMessage =
188 std::dynamic_pointer_cast<ModelAPI_FeatureStateMessage>(theMessage);
189 Events_Loop::loop()->send(getFeaturesState(aStateMessage->feature()), false);
193 std::shared_ptr<ModelAPI_FeatureStateMessage> SketchPlugin_Plugin
194 ::getFeaturesState(const std::shared_ptr<ModelAPI_Feature>& theFeature) const
196 const Events_ID kResponseEvent = Events_Loop::loop()->eventByName(EVENT_FEATURE_STATE_RESPONSE);
197 std::shared_ptr<ModelAPI_FeatureStateMessage> aMsg(
198 new ModelAPI_FeatureStateMessage(kResponseEvent, this));
200 bool aHasSketchPlane = false;
201 std::shared_ptr<SketchPlugin_Sketch> aSketchFeature =
202 std::dynamic_pointer_cast<SketchPlugin_Sketch>(theFeature);
203 if (aSketchFeature.get()) {
204 std::shared_ptr<ModelAPI_Data> aData = aSketchFeature->data();
206 std::shared_ptr<GeomDataAPI_Dir> aNormal =
207 std::dynamic_pointer_cast<GeomDataAPI_Dir>(
208 aData->attribute(SketchPlugin_Sketch::NORM_ID()));
209 // it is important to check whether the normal attribute is initialized
210 // because it is possible that normal values are filled when the plane is checked on validity
211 aHasSketchPlane = aNormal && aNormal->isInitialized() &&
212 !(aNormal->x() == 0 && aNormal->y() == 0 && aNormal->z() == 0);
214 aMsg->setState(SketchPlugin_Point::ID(), aHasSketchPlane);
215 aMsg->setState(SketchPlugin_IntersectionPoint::ID(), aHasSketchPlane);
216 aMsg->setState(SketchPlugin_Line::ID(), aHasSketchPlane);
217 aMsg->setState(SketchPlugin_Circle::ID(), aHasSketchPlane);
218 aMsg->setState(SketchPlugin_Arc::ID(), aHasSketchPlane);
219 aMsg->setState(SketchPlugin_Projection::ID(), aHasSketchPlane);
220 aMsg->setState(SketchPlugin_ConstraintCoincidence::ID(), aHasSketchPlane);
221 aMsg->setState(SketchPlugin_ConstraintCollinear::ID(), aHasSketchPlane);
222 aMsg->setState(SketchPlugin_ConstraintDistance::ID(), aHasSketchPlane);
223 aMsg->setState(SketchPlugin_ConstraintLength::ID(), aHasSketchPlane);
224 aMsg->setState(SketchPlugin_ConstraintParallel::ID(), aHasSketchPlane);
225 aMsg->setState(SketchPlugin_ConstraintPerpendicular::ID(), aHasSketchPlane);
226 aMsg->setState(SketchPlugin_ConstraintRadius::ID(), aHasSketchPlane);
227 aMsg->setState(SketchPlugin_ConstraintRigid::ID(), aHasSketchPlane);
228 aMsg->setState(SketchPlugin_ConstraintHorizontal::ID(), aHasSketchPlane);
229 aMsg->setState(SketchPlugin_ConstraintVertical::ID(), aHasSketchPlane);
230 aMsg->setState(SketchPlugin_ConstraintEqual::ID(), aHasSketchPlane);
231 aMsg->setState(SketchPlugin_ConstraintTangent::ID(), aHasSketchPlane);
232 aMsg->setState(SketchPlugin_ConstraintMiddle::ID(), aHasSketchPlane);
233 aMsg->setState(SketchPlugin_ConstraintMirror::ID(), aHasSketchPlane);
234 aMsg->setState(SketchPlugin_ConstraintFillet::ID(), aHasSketchPlane);
235 aMsg->setState(SketchPlugin_ConstraintSplit::ID(), aHasSketchPlane);
236 aMsg->setState(SketchPlugin_ConstraintAngle::ID(), aHasSketchPlane);
237 aMsg->setState(SketchPlugin_MultiRotation::ID(), aHasSketchPlane);
238 aMsg->setState(SketchPlugin_MultiTranslation::ID(), aHasSketchPlane);
239 // SketchRectangle is a python feature, so its ID is passed just as a string
240 aMsg->setState("SketchRectangle", aHasSketchPlane);