Salome HOME
Update constraint Mirror.
[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_Circle.h>
8 #include <SketchPlugin_Arc.h>
9 #include <SketchPlugin_ConstraintCoincidence.h>
10 #include <SketchPlugin_ConstraintDistance.h>
11 #include <SketchPlugin_ConstraintEqual.h>
12 #include <SketchPlugin_ConstraintFillet.h>
13 #include <SketchPlugin_ConstraintHorizontal.h>
14 #include <SketchPlugin_ConstraintLength.h>
15 #include <SketchPlugin_ConstraintMirror.h>
16 #include <SketchPlugin_ConstraintParallel.h>
17 #include <SketchPlugin_ConstraintPerpendicular.h>
18 #include <SketchPlugin_ConstraintRadius.h>
19 #include <SketchPlugin_ConstraintRigid.h>
20 #include <SketchPlugin_ConstraintTangent.h>
21 #include <SketchPlugin_ConstraintVertical.h>
22 #include <SketchPlugin_Validators.h>
23 #include <SketchPlugin_ExternalValidator.h>
24
25 #include <Events_Loop.h>
26 #include <GeomDataAPI_Dir.h>
27
28 #include <ModelAPI_Session.h>
29 #include <ModelAPI_Document.h>
30 #include <ModelAPI_Validator.h>
31 #include <ModelAPI_Data.h>
32
33 #include <Config_PropManager.h>
34
35 #include <memory>
36
37 #ifdef _DEBUG
38 #include <iostream>
39 #endif
40
41 //#define SET_PLANES_COLOR_IN_PREFERENCES
42
43 using namespace std;
44
45 // the only created instance of this plugin
46 static SketchPlugin_Plugin* MY_SKETCH_INSTANCE = new SketchPlugin_Plugin();
47
48 SketchPlugin_Plugin::SketchPlugin_Plugin()
49 {
50   SessionPtr aMgr = ModelAPI_Session::get();
51   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
52   aFactory->registerValidator("SketchPlugin_DistanceAttr",
53                               new SketchPlugin_DistanceAttrValidator);  
54   aFactory->registerValidator("SketchPlugin_ExternalValidator",
55                               new SketchPlugin_ExternalValidator);
56   aFactory->registerValidator("SketchPlugin_TangentAttr",
57                               new SketchPlugin_TangentAttrValidator);
58   aFactory->registerValidator("SketchPlugin_NotFixed",
59                               new SketchPlugin_NotFixedValidator);
60   aFactory->registerValidator("SketchPlugin_EqualAttr",
61                               new SketchPlugin_EqualAttrValidator);
62   aFactory->registerValidator("SketchPlugin_MirrorAttr",
63                               new SketchPlugin_MirrorAttrValidator);
64
65   // register this plugin
66   ModelAPI_Session::get()->registerPlugin(this);
67   
68   Config_PropManager::registerProp("Visualization", "sketch_entity_color", "Sketch enity color",
69                                    Config_Prop::Color, SKETCH_ENTITY_COLOR);
70
71   Config_PropManager::registerProp("Visualization", "sketch_external_color", "Sketch external entity color",
72                                    Config_Prop::Color, SKETCH_EXTERNAL_COLOR);
73
74   Config_PropManager::registerProp("Visualization", "sketch_auxiliary_color", "Sketch auxiliary entity color",
75                                    Config_Prop::Color, SKETCH_AUXILIARY_COLOR);
76
77   Config_PropManager::registerProp("Visualization", "sketch_constraint_color", "Sketch constraint color",
78                                    Config_Prop::Color, SKETCH_CONSTRAINT_COLOR);
79
80   Config_PropManager::registerProp("Visualization", "sketch_dimension_color", "Sketch dimension color",
81                                    Config_Prop::Color, SKETCH_DIMENSION_COLOR);
82
83   // register sketcher properties
84 #ifdef SET_PLANES_COLOR_IN_PREFERENCES
85   Config_PropManager::registerProp("Visualization", "yz_plane_color", "YZ plane color",
86                                    Config_Prop::Color, YZ_PLANE_COLOR);
87   Config_PropManager::registerProp("Visualization", "xz_plane_color", "XZ plane color",
88                                    Config_Prop::Color, XZ_PLANE_COLOR);
89   Config_PropManager::registerProp("Visualization", "xy_plane_color", "XY plane color",
90                                    Config_Prop::Color, XY_PLANE_COLOR);
91 #endif
92 }
93
94 FeaturePtr SketchPlugin_Plugin::createFeature(string theFeatureID)
95 {
96   if (theFeatureID == SketchPlugin_Sketch::ID()) {
97     return FeaturePtr(new SketchPlugin_Sketch);
98   } else if (theFeatureID == SketchPlugin_Point::ID()) {
99     return FeaturePtr(new SketchPlugin_Point);
100   } else if (theFeatureID == SketchPlugin_Line::ID()) {
101     return FeaturePtr(new SketchPlugin_Line);
102   } else if (theFeatureID == SketchPlugin_Circle::ID()) {
103     return FeaturePtr(new SketchPlugin_Circle);
104   } else if (theFeatureID == SketchPlugin_Arc::ID()) {
105     return FeaturePtr(new SketchPlugin_Arc);
106   } else if (theFeatureID == SketchPlugin_ConstraintCoincidence::ID()) {
107     return FeaturePtr(new SketchPlugin_ConstraintCoincidence);
108   } else if (theFeatureID == SketchPlugin_ConstraintDistance::ID()) {
109     return FeaturePtr(new SketchPlugin_ConstraintDistance);
110   } else if (theFeatureID == SketchPlugin_ConstraintLength::ID()) {
111     return FeaturePtr(new SketchPlugin_ConstraintLength);
112   } else if (theFeatureID == SketchPlugin_ConstraintParallel::ID()) {
113     return FeaturePtr(new SketchPlugin_ConstraintParallel);
114   } else if (theFeatureID == SketchPlugin_ConstraintPerpendicular::ID()) {
115     return FeaturePtr(new SketchPlugin_ConstraintPerpendicular);
116   } else if (theFeatureID == SketchPlugin_ConstraintRadius::ID()) {
117     return FeaturePtr(new SketchPlugin_ConstraintRadius);
118   } else if (theFeatureID == SketchPlugin_ConstraintRigid::ID()) {
119     return FeaturePtr(new SketchPlugin_ConstraintRigid);
120   } else if (theFeatureID == SketchPlugin_ConstraintHorizontal::ID()) {
121     return FeaturePtr(new SketchPlugin_ConstraintHorizontal);
122   } else if (theFeatureID == SketchPlugin_ConstraintVertical::ID()) {
123     return FeaturePtr(new SketchPlugin_ConstraintVertical);
124   } else if (theFeatureID == SketchPlugin_ConstraintEqual::ID()) {
125     return FeaturePtr(new SketchPlugin_ConstraintEqual);
126   } else if (theFeatureID == SketchPlugin_ConstraintTangent::ID()) {
127     return FeaturePtr(new SketchPlugin_ConstraintTangent);
128   } else if (theFeatureID == SketchPlugin_ConstraintMirror::ID()) {
129     return FeaturePtr(new SketchPlugin_ConstraintMirror);
130   } else if (theFeatureID == SketchPlugin_ConstraintFillet::ID()) {
131     return FeaturePtr(new SketchPlugin_ConstraintFillet);
132   }
133   // feature of such kind is not found
134   return FeaturePtr();
135 }
136
137 void SketchPlugin_Plugin::processEvent(const std::shared_ptr<Events_Message>& theMessage)
138 {
139   const Events_ID kRequestEvent =
140       Events_Loop::loop()->eventByName(EVENT_FEATURE_STATE_REQUEST);
141   if (theMessage->eventID() == kRequestEvent) {
142     std::shared_ptr<ModelAPI_FeatureStateMessage> aStateMessage =
143         std::dynamic_pointer_cast<ModelAPI_FeatureStateMessage>(theMessage);
144     Events_Loop::loop()->send(getFeaturesState(aStateMessage->feature()), false);
145   }
146 }
147
148 std::shared_ptr<ModelAPI_FeatureStateMessage> SketchPlugin_Plugin
149 ::getFeaturesState(const std::shared_ptr<ModelAPI_Feature>& theFeature) const
150 {
151   const Events_ID kResponseEvent = Events_Loop::loop()->eventByName(EVENT_FEATURE_STATE_RESPONSE);
152   std::shared_ptr<ModelAPI_FeatureStateMessage> aMsg =
153       std::make_shared<ModelAPI_FeatureStateMessage>(kResponseEvent, this);
154
155   bool aHasSketchPlane = false;
156   std::shared_ptr<SketchPlugin_Sketch> aSketchFeature =
157       std::dynamic_pointer_cast<SketchPlugin_Sketch>(theFeature);
158   if (aSketchFeature.get()) {
159     std::shared_ptr<ModelAPI_Data> aData = aSketchFeature->data();
160     if (aData) {
161       std::shared_ptr<GeomDataAPI_Dir> aNormal =
162         std::dynamic_pointer_cast<GeomDataAPI_Dir>(aData->attribute(SketchPlugin_Sketch::NORM_ID()));
163       aHasSketchPlane = aNormal && !(aNormal->x() == 0 && aNormal->y() == 0 && aNormal->z() == 0);
164
165       aMsg->setState(SketchPlugin_Point::ID(), aHasSketchPlane);
166       aMsg->setState(SketchPlugin_Line::ID(), aHasSketchPlane);
167       aMsg->setState(SketchPlugin_Circle::ID(), aHasSketchPlane);
168       aMsg->setState(SketchPlugin_Arc::ID(), aHasSketchPlane);
169       aMsg->setState(SketchPlugin_ConstraintCoincidence::ID(), aHasSketchPlane);
170       aMsg->setState(SketchPlugin_ConstraintDistance::ID(), aHasSketchPlane);
171       aMsg->setState(SketchPlugin_ConstraintLength::ID(), aHasSketchPlane);
172       aMsg->setState(SketchPlugin_ConstraintParallel::ID(), aHasSketchPlane);
173       aMsg->setState(SketchPlugin_ConstraintPerpendicular::ID(), aHasSketchPlane);
174       aMsg->setState(SketchPlugin_ConstraintRadius::ID(), aHasSketchPlane);
175       aMsg->setState(SketchPlugin_ConstraintRigid::ID(), aHasSketchPlane);
176       aMsg->setState(SketchPlugin_ConstraintHorizontal::ID(), aHasSketchPlane);
177       aMsg->setState(SketchPlugin_ConstraintVertical::ID(), aHasSketchPlane);
178       aMsg->setState(SketchPlugin_ConstraintEqual::ID(), aHasSketchPlane);
179       aMsg->setState(SketchPlugin_ConstraintTangent::ID(), aHasSketchPlane);
180       aMsg->setState(SketchPlugin_ConstraintMirror::ID(), aHasSketchPlane);
181       aMsg->setState(SketchPlugin_ConstraintFillet::ID(), aHasSketchPlane);
182     }
183   }
184   return aMsg;
185 }