1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #ifndef SketchPlugin_SketchEntity_H_
22 #define SketchPlugin_SketchEntity_H_
24 #include "SketchPlugin.h"
25 #include "SketchPlugin_Feature.h"
27 #include <ModelAPI_CompositeFeature.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 /// Width of the auxiliary line
69 inline static const double SKETCH_LINE_WIDTH_AUXILIARY()
75 inline static const double SKETCH_LINE_WIDTH()
80 /// Style of the auxiliary line
81 inline static const int SKETCH_LINE_STYLE_AUXILIARY()
87 inline static const int SKETCH_LINE_STYLE()
92 /// Request for initialization of data model of the feature: adding all attributes
93 virtual void initAttributes();
95 /// Returns true of the feature is created basing on the external shape of not-this-sketch object
96 virtual bool isExternal() const
98 AttributeSelectionPtr aAttr = data()->selection(EXTERNAL_ID());
100 return aAttr->context().get() != NULL && !aAttr->isInvalid();
104 /// Returns true of the feature is a copy of other feature
105 virtual bool isCopy() const
107 AttributeBooleanPtr anAttr = data()->boolean(COPY_ID());
109 return anAttr->value();
114 /// Customize presentation of the feature
115 virtual bool customisePresentation(ResultPtr theResult, AISObjectPtr thePrs,
116 std::shared_ptr<GeomAPI_ICustomPrs> theDefaultPrs)
118 /// Store previous color values of the presentation to check it after setting specific entity
119 /// color. Default color is set into presentation to have not modified isCustomized state
120 /// after default customize prs is completed.
121 std::vector<int> aPrevColor;
122 aPrevColor.resize(3);
123 thePrs->getColor(aPrevColor[0], aPrevColor[1], aPrevColor[2]);
124 if (theResult.get()) {
125 std::string aSection, aName, aDefault;
126 theResult->colorConfigInfo(aSection, aName, aDefault);
127 std::vector<int> aColor;
128 aColor = Config_PropManager::color(aSection, aName);
129 thePrs->setColor(aColor[0], aColor[1], aColor[2]);
132 bool isCustomized = theDefaultPrs.get() != NULL &&
133 theDefaultPrs->customisePresentation(theResult, thePrs, theDefaultPrs);
134 int aShapeType = thePrs->getShapeType();
135 // a compound is processed like the edge because the
136 // arc feature uses the compound for presentable AIS
137 if (aShapeType != 6/*an edge*/ && aShapeType != 7/*a vertex*/ && aShapeType != 0/*compound*/)
140 // set color from preferences
141 std::vector<int> aColor;
142 std::shared_ptr<ModelAPI_AttributeBoolean> anAuxiliaryAttr =
143 data()->boolean(SketchPlugin_SketchEntity::AUXILIARY_ID());
144 bool isConstruction = anAuxiliaryAttr.get() != NULL && anAuxiliaryAttr->value();
145 if (isConstruction) {
146 aColor = Config_PropManager::color("Visualization", "sketch_auxiliary_color");
148 else if (isExternal()) {
149 aColor = Config_PropManager::color("Visualization", "sketch_external_color");
152 aColor = Config_PropManager::color("Visualization", "sketch_entity_color");
154 if (!aColor.empty()) {
155 if (theResult.get()) {
156 AttributeIntArrayPtr aColorAttr = theResult->data()->intArray(ModelAPI_Result::COLOR_ID());
157 aColorAttr->setSize(3);
158 // Set the color attribute in order do not use default colors in the perasentation object
159 for (int i = 0; i < 3; i++)
160 aColorAttr->setValue(i, aColor[i]);
162 thePrs->setColor(aColor[0], aColor[1], aColor[2]);
163 for (int i = 0; i < 3 && !isCustomized; i++)
164 isCustomized = aColor[i] != aPrevColor[i];
167 if (aShapeType == 6 || aShapeType == 0) { // if this is an edge or a compound
168 if (isConstruction) {
169 isCustomized = thePrs->setWidth(SKETCH_LINE_WIDTH_AUXILIARY()) || isCustomized;
170 isCustomized = thePrs->setLineStyle(SKETCH_LINE_STYLE_AUXILIARY()) || isCustomized;
173 isCustomized = thePrs->setWidth(SKETCH_LINE_WIDTH()) || isCustomized;
174 isCustomized = thePrs->setLineStyle(SKETCH_LINE_STYLE()) || isCustomized;
177 else if (aShapeType == 7) { // otherwise this is a vertex
178 // The width value do not have effect on the point presentation.
179 // It is defined in order to extend selection area of the object.
180 thePrs->setWidth(17);
181 // thePrs->setPointMarker(1, 1.); // Set point as a '+' symbol
184 double aWidth = thePrs->width();
185 isCustomized = thePrs->setWidth(aWidth / 2.5) || isCustomized;
188 if (!theResult.get()) {
189 double aDeflection = Config_PropManager::real("Visualization", "construction_deflection");
190 thePrs->setDeflection(aDeflection);
196 /// initializes mySketch
197 SketchPlugin_SketchEntity();
199 /// \brief Initializes attributes of derived class.
200 virtual void initDerivedClassAttributes(){};