1 // Copyright (C) 2014-2023 CEA, EDF
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #ifndef SketchPlugin_SketchEntity_H_
21 #define SketchPlugin_SketchEntity_H_
23 #include "SketchPlugin.h"
24 #include "SketchPlugin_Feature.h"
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>
36 #include <Config_PropManager.h>
38 /**\class SketchPlugin_SketchEntity
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.
44 class SketchPlugin_SketchEntity : public SketchPlugin_Feature //, public GeomAPI_ICustomPrs
47 /// Reference to the construction type of the feature
48 inline static const std::string& AUXILIARY_ID()
50 static const std::string MY_AUXILIARY_ID("Auxiliary");
51 return MY_AUXILIARY_ID;
54 /// Reference to the external edge or vertex as a AttributeSelection
55 inline static const std::string& EXTERNAL_ID()
57 static const std::string MY_EXTERNAL_ID("External");
58 return MY_EXTERNAL_ID;
61 /// Reference to the copy type of the feature
62 inline static const std::string& COPY_ID()
64 static const std::string MY_COPY_ID("Copy");
68 /// Reference to the parent feature if exist
69 inline static const std::string& PARENT_ID()
71 static const std::string& MY_PARENT_ID("ParentFeature");
75 /// Width of the auxiliary line
76 inline static const int SKETCH_LINE_WIDTH_AUXILIARY()
82 inline static const int SKETCH_LINE_WIDTH()
84 return Config_PropManager::integer("Visualization", "sketch_line_width");
87 /// Style of the auxiliary line
88 inline static const int SKETCH_LINE_STYLE_AUXILIARY()
94 inline static const int SKETCH_LINE_STYLE()
99 /// Request for initialization of data model of the feature: adding all attributes
100 virtual void initAttributes();
102 /// Returns true of the feature is created basing on the external shape of not-this-sketch object
103 virtual bool isExternal() const
105 AttributeSelectionPtr aAttr = data()->selection(EXTERNAL_ID());
107 return aAttr->context().get() != NULL && !aAttr->isInvalid();
111 /// Returns true of the feature is a copy of other feature
112 virtual bool isCopy() const
114 AttributeBooleanPtr anAttr = data()->boolean(COPY_ID());
116 return anAttr->value();
121 //virtual bool isIncludeToResult() const
123 // AttributeBooleanPtr anAttr;
124 // std::set<AttributePtr> aRefsToMe = data()->refsToMe();
125 // std::set<AttributePtr>::const_iterator aIt;
126 // for (aIt = aRefsToMe.cbegin(); aIt != aRefsToMe.cend(); ++aIt) {
127 // if ((*aIt)->id() == "ProjectedFeature") {
128 // FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>((*aIt)->owner());
129 // if (aFeature.get()) {
130 // anAttr = aFeature->data()->boolean("IncludeToResult");
132 // return anAttr->value();
140 /// Customize presentation of the feature
141 //virtual bool customisePresentation(ResultPtr theResult, AISObjectPtr thePrs,
142 // std::shared_ptr<GeomAPI_ICustomPrs> theDefaultPrs)
144 // /// Store previous color values of the presentation to check it after setting specific entity
145 // /// color. Default color is set into presentation to have not modified isCustomized state
146 // /// after default customize prs is completed.
147 // std::vector<int> aPrevColor;
148 // aPrevColor.resize(3);
149 // thePrs->getColor(aPrevColor[0], aPrevColor[1], aPrevColor[2]);
150 // if (theResult.get()) {
151 // std::string aSection, aName, aDefault;
152 // theResult->colorConfigInfo(aSection, aName, aDefault);
153 // std::vector<int> aColor;
154 // aColor = Config_PropManager::color(aSection, aName);
155 // thePrs->setColor(aColor[0], aColor[1], aColor[2]);
158 // bool isCustomized = theDefaultPrs.get() != NULL &&
159 // theDefaultPrs->customisePresentation(theResult, thePrs, theDefaultPrs);
160 // int aShapeType = thePrs->getShapeType();
161 // // a compound is processed like the edge because the
162 // // arc feature uses the compound for presentable AIS
163 // if (aShapeType != 6/*an edge*/ && aShapeType != 7/*a vertex*/ && aShapeType != 0/*compound*/)
166 // // set color from preferences
167 // std::vector<int> aColor;
168 // std::shared_ptr<ModelAPI_AttributeBoolean> anAuxiliaryAttr =
169 // data()->boolean(SketchPlugin_SketchEntity::AUXILIARY_ID());
170 // bool isConstruction = anAuxiliaryAttr.get() != NULL && anAuxiliaryAttr->value();
171 // if (isConstruction) {
172 // aColor = Config_PropManager::color("Visualization", "sketch_auxiliary_color");
174 // else if (isExternal()) {
175 // aColor = Config_PropManager::color("Visualization", "sketch_external_color");
178 // aColor = Config_PropManager::color("Visualization", "sketch_entity_color");
180 // if (!aColor.empty()) {
181 // if (theResult.get() && ModelAPI_Session::get()->isOperation()) {
182 // AttributeIntArrayPtr aColorAttr =
183 // theResult->data()->intArray(ModelAPI_Result::COLOR_ID());
184 // aColorAttr->setSize(3);
185 // // Set the color attribute in order do not use default colors in the presentation object
186 // for (int i = 0; i < 3; i++)
187 // aColorAttr->setValue(i, aColor[i]);
189 // thePrs->setColor(aColor[0], aColor[1], aColor[2]);
190 // for (int i = 0; i < 3 && !isCustomized; i++)
191 // isCustomized = aColor[i] != aPrevColor[i];
194 // if (aShapeType == 6 || aShapeType == 0) { // if this is an edge or a compound
195 // if (isConstruction) {
196 // isCustomized = thePrs->setWidth(SKETCH_LINE_WIDTH_AUXILIARY()) || isCustomized;
197 // isCustomized = thePrs->setLineStyle(SKETCH_LINE_STYLE_AUXILIARY()) || isCustomized;
200 // isCustomized = thePrs->setWidth(SKETCH_LINE_WIDTH()) || isCustomized;
201 // isCustomized = thePrs->setLineStyle(SKETCH_LINE_STYLE()) || isCustomized;
204 // else if (aShapeType == 7) { // otherwise this is a vertex
205 // // The width value do not have effect on the point presentation.
206 // // It is defined in order to extend selection area of the object.
207 // thePrs->setWidth(17);
208 // // thePrs->setPointMarker(1, 1.); // Set point as a '+' symbol
210 // if(isCopy() && !isIncludeToResult()) {
211 // double aWidth = thePrs->width();
212 // isCustomized = thePrs->setWidth(aWidth / 2.5) || isCustomized;
215 // if (!theResult.get()) {
216 // double aDeflection = Config_PropManager::real("Visualization", "construction_deflection");
217 // thePrs->setDeflection(aDeflection);
219 // return isCustomized;
224 /// initializes mySketch
225 SketchPlugin_SketchEntity();
227 /// \brief Initializes attributes of derived class.
228 virtual void initDerivedClassAttributes(){};
230 /// \brief Initializes attributes of derived class which were added recently.
231 virtual void initDerivedClassAttributes2(){};