]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchPlugin/SketchPlugin_SketchEntity.h
Salome HOME
2.10. Show thicker edges in Projection feature "included into sketch results"
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_SketchEntity.h
1 // Copyright (C) 2014-2019  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef SketchPlugin_SketchEntity_H_
21 #define SketchPlugin_SketchEntity_H_
22
23 #include "SketchPlugin.h"
24 #include "SketchPlugin_Feature.h"
25
26 #include <ModelAPI_CompositeFeature.h>
27 #include <ModelAPI_Session.h>
28 #include <GeomAPI_Shape.h>
29 #include <GeomAPI_AISObject.h>
30 #include <ModelAPI_Document.h>
31 #include <ModelAPI_AttributeSelection.h>
32 #include <ModelAPI_AttributeBoolean.h>
33 #include <ModelAPI_AttributeIntArray.h>
34 #include <GeomAPI_ICustomPrs.h>
35
36 #include <Config_PropManager.h>
37
38 /**\class SketchPlugin_SketchEntity
39  * \ingroup Plugins
40  * \brief Sketch Entity for creation of the new feature in PartSet. 
41  * This is an abstract class to give
42  * an interface to create the entity features such as line, circle, arc and point.
43  */
44 class SketchPlugin_SketchEntity : public SketchPlugin_Feature, public GeomAPI_ICustomPrs
45 {
46  public:
47   /// Reference to the construction type of the feature
48   inline static const std::string& AUXILIARY_ID()
49   {
50     static const std::string MY_AUXILIARY_ID("Auxiliary");
51     return MY_AUXILIARY_ID;
52   }
53
54   /// Reference to the external edge or vertex as a AttributeSelection
55   inline static const std::string& EXTERNAL_ID()
56   {
57     static const std::string MY_EXTERNAL_ID("External");
58     return MY_EXTERNAL_ID;
59   }
60
61   /// Reference to the copy type of the feature
62   inline static const std::string& COPY_ID()
63   {
64     static const std::string MY_COPY_ID("Copy");
65     return MY_COPY_ID;
66   }
67
68   /// Width of the auxiliary line
69   inline static const double SKETCH_LINE_WIDTH_AUXILIARY()
70   {
71     return 2;
72   }
73
74   /// Width of the line
75   inline static const double SKETCH_LINE_WIDTH()
76   {
77     return Config_PropManager::integer("Visualization", "sketch_line_width");
78   }
79
80   /// Style of the auxiliary line
81   inline static const int SKETCH_LINE_STYLE_AUXILIARY()
82   {
83     return  3;
84   }
85
86   /// Style of the line
87   inline static const int SKETCH_LINE_STYLE()
88   {
89     return  0;
90   }
91
92   /// Request for initialization of data model of the feature: adding all attributes
93   virtual void initAttributes();
94
95   /// Returns true of the feature is created basing on the external shape of not-this-sketch object
96   virtual bool isExternal() const
97   {
98     AttributeSelectionPtr aAttr = data()->selection(EXTERNAL_ID());
99     if (aAttr)
100       return aAttr->context().get() != NULL && !aAttr->isInvalid();
101     return false;
102   }
103
104   /// Returns true of the feature is a copy of other feature
105   virtual bool isCopy() const
106   {
107     AttributeBooleanPtr anAttr = data()->boolean(COPY_ID());
108     if(anAttr.get()) {
109       return anAttr->value();
110     }
111     return false;
112   }
113
114   virtual bool isIncludeToResult() const
115   {
116     AttributeBooleanPtr anAttr;
117     std::set<AttributePtr> aRefsToMe = data()->refsToMe();
118     std::set<AttributePtr>::const_iterator aIt;
119     for (aIt = aRefsToMe.cbegin(); aIt != aRefsToMe.cend(); ++aIt) {
120       if ((*aIt)->id() == "ProjectedFeature") {
121         FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>((*aIt)->owner());
122         if (aFeature.get()) {
123           anAttr = aFeature->data()->boolean("IncludeToResult");
124           if (anAttr.get())
125             return anAttr->value();
126         }
127       }
128     }
129     return true;
130   }
131
132 // LCOV_EXCL_START
133   /// Customize presentation of the feature
134   virtual bool customisePresentation(ResultPtr theResult, AISObjectPtr thePrs,
135                                      std::shared_ptr<GeomAPI_ICustomPrs> theDefaultPrs)
136   {
137     /// Store previous color values of the presentation to check it after setting specific entity
138     /// color. Default color is set into presentation to have not modified isCustomized state
139     /// after default customize prs is completed.
140     std::vector<int> aPrevColor;
141     aPrevColor.resize(3);
142     thePrs->getColor(aPrevColor[0], aPrevColor[1], aPrevColor[2]);
143     if (theResult.get()) {
144       std::string aSection, aName, aDefault;
145       theResult->colorConfigInfo(aSection, aName, aDefault);
146       std::vector<int> aColor;
147       aColor = Config_PropManager::color(aSection, aName);
148       thePrs->setColor(aColor[0], aColor[1], aColor[2]);
149     }
150
151     bool isCustomized = theDefaultPrs.get() != NULL &&
152                         theDefaultPrs->customisePresentation(theResult, thePrs, theDefaultPrs);
153     int aShapeType = thePrs->getShapeType();
154     // a compound is processed like the edge because the
155     // arc feature uses the compound for presentable AIS
156     if (aShapeType != 6/*an edge*/ && aShapeType != 7/*a vertex*/ && aShapeType != 0/*compound*/)
157       return false;
158
159     // set color from preferences
160     std::vector<int> aColor;
161     std::shared_ptr<ModelAPI_AttributeBoolean> anAuxiliaryAttr =
162                                     data()->boolean(SketchPlugin_SketchEntity::AUXILIARY_ID());
163     bool isConstruction = anAuxiliaryAttr.get() != NULL && anAuxiliaryAttr->value();
164     if (isConstruction) {
165       aColor = Config_PropManager::color("Visualization", "sketch_auxiliary_color");
166     }
167     else if (isExternal()) {
168       aColor = Config_PropManager::color("Visualization", "sketch_external_color");
169     }
170     else {
171       aColor = Config_PropManager::color("Visualization", "sketch_entity_color");
172     }
173     if (!aColor.empty()) {
174       if (theResult.get() && ModelAPI_Session::get()->isOperation()) {
175         AttributeIntArrayPtr aColorAttr = theResult->data()->intArray(ModelAPI_Result::COLOR_ID());
176         aColorAttr->setSize(3);
177         // Set the color attribute in order do not use default colors in the presentation object
178         for (int i = 0; i < 3; i++)
179           aColorAttr->setValue(i, aColor[i]);
180       }
181       thePrs->setColor(aColor[0], aColor[1], aColor[2]);
182       for (int i = 0; i < 3 && !isCustomized; i++)
183         isCustomized = aColor[i] != aPrevColor[i];
184     }
185
186     if (aShapeType == 6 || aShapeType == 0) { // if this is an edge or a compound
187       if (isConstruction) {
188         isCustomized = thePrs->setWidth(SKETCH_LINE_WIDTH_AUXILIARY()) || isCustomized;
189         isCustomized = thePrs->setLineStyle(SKETCH_LINE_STYLE_AUXILIARY()) || isCustomized;
190       }
191       else {
192         isCustomized = thePrs->setWidth(SKETCH_LINE_WIDTH()) || isCustomized;
193         isCustomized = thePrs->setLineStyle(SKETCH_LINE_STYLE()) || isCustomized;
194       }
195     }
196     else if (aShapeType == 7) { // otherwise this is a vertex
197       // The width value do not have effect on the point presentation.
198       // It is defined in order to extend selection area of the object.
199       thePrs->setWidth(17);
200     //  thePrs->setPointMarker(1, 1.); // Set point as a '+' symbol
201     }
202     if(isCopy() && !isIncludeToResult()) {
203       double aWidth = thePrs->width();
204       isCustomized = thePrs->setWidth(aWidth / 2.5) || isCustomized;
205     }
206
207     if (!theResult.get()) {
208       double aDeflection = Config_PropManager::real("Visualization", "construction_deflection");
209       thePrs->setDeflection(aDeflection);
210     }
211     return isCustomized;
212   }
213 // LCOV_EXCL_STOP
214
215 protected:
216   /// initializes mySketch
217   SketchPlugin_SketchEntity();
218
219   /// \brief Initializes attributes of derived class.
220   virtual void initDerivedClassAttributes(){};
221
222 };
223
224 #endif