X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_ResultBody.h;h=119978c6f5a896a0cc24f2c2259f6344be9f1471;hb=a8cfbfb436c27ff96edd5c808e9a452c35cef207;hp=bcd45b354aa721d90e17cd7b32121c47f21fb2b9;hpb=93310e00f0ac95395137c842108790bf62e6425e;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_ResultBody.h b/src/ModelAPI/ModelAPI_ResultBody.h index bcd45b354..119978c6f 100644 --- a/src/ModelAPI/ModelAPI_ResultBody.h +++ b/src/ModelAPI/ModelAPI_ResultBody.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_ResultBody.hxx // Created: 07 Jul 2014 // Author: Mikhail PONIKAROV @@ -7,9 +9,12 @@ #include "ModelAPI_Result.h" #include - +#include #include +class ModelAPI_BodyBuilder; +class GeomAlgoAPI_MakeShape; + /**\class ModelAPI_ResultBody * \ingroup DataModel * \brief The body (shape) result of a feature. @@ -21,59 +26,119 @@ class ModelAPI_ResultBody : public ModelAPI_Result { public: + MODELAPI_EXPORT virtual ~ModelAPI_ResultBody(); /// Returns the group identifier of this result - virtual std::string groupName() - { - return group(); - } + MODELAPI_EXPORT virtual std::string groupName(); /// Returns the group identifier of this result - static std::string group() + inline static std::string group() { static std::string MY_GROUP = "Bodies"; return MY_GROUP; } - /// Stores the shape (called by the execution method). - virtual void store(const boost::shared_ptr& theShape) = 0; - /// Returns the shape-result produced by this feature - virtual boost::shared_ptr shape() = 0; - - /// To virtually destroy the fields of successors - virtual ~ModelAPI_ResultBody() + /// default color for a result body + inline static const std::string& DEFAULT_COLOR() { + static const std::string RESULT_BODY_COLOR("200,200,230"); + return RESULT_BODY_COLOR; } + /// Iternal enumeration for storage the information of connected topology flag + enum ConnectedTopologyFlag { + ConnectionNotComputed, ///< not yet computed + IsConnected, ///< the topology is connected + IsNotConnected ///< the topology is connected + }; + /// Keeps (not persistently) the connected topology flag + ConnectedTopologyFlag myConnect; + + /// \brief Stores the shape (called by the execution method). + /// param[in] theShape shape to store. + /// param[in] theIsStoreSameShapes if false stores reference to the same shape if it is already in document. + MODELAPI_EXPORT virtual void store(const std::shared_ptr& theShape, + const bool theIsStoreSameShapes = true); + + /// Stores the generated shape (called by the execution method). + MODELAPI_EXPORT virtual void storeGenerated(const std::shared_ptr& theFromShape, + const std::shared_ptr& theToShape); + + /// Stores the modified shape (called by the execution method). + MODELAPI_EXPORT virtual void storeModified(const std::shared_ptr& theOldShape, + const std::shared_ptr& theNewShape, const int theDecomposeSolidsTag = 0); + + /// Stores the shape without naming support + MODELAPI_EXPORT virtual void storeWithoutNaming( + const std::shared_ptr& theShape); + + /// Returns the shape-result produced by this feature + MODELAPI_EXPORT virtual std::shared_ptr shape(); + /// Records the subshape newShape which was generated during a topological construction. /// As an example, consider the case of a face generated in construction of a box. - virtual void generated( - const boost::shared_ptr& theNewShape, const int theTag = 1) = 0; + MODELAPI_EXPORT virtual void generated(const std::shared_ptr& theNewShape, + const std::string& theName, const int theTag = 1); /// Records the shape newShape which was generated from the shape oldShape during a topological /// construction. As an example, consider the case of a face generated from an edge in /// construction of a prism. - virtual void generated(const boost::shared_ptr& theOldShape, - const boost::shared_ptr& theNewShape, const int theTag = 1) = 0; + MODELAPI_EXPORT virtual void generated(const std::shared_ptr& theOldShape, + const std::shared_ptr& theNewShape, const std::string& theName, + const int theTag = 1); /// Records the shape newShape which is a modification of the shape oldShape. /// As an example, consider the case of a face split or merged in a Boolean operation. - virtual void modified(const boost::shared_ptr& theOldShape, - const boost::shared_ptr& theNewShape, const int theTag = 1) = 0; + MODELAPI_EXPORT virtual void modified(const std::shared_ptr& theOldShape, + const std::shared_ptr& theNewShape, const std::string& theName, + const int theTag = 1); /// Records the shape oldShape which was deleted from the current label. /// As an example, consider the case of a face removed by a Boolean operation. - virtual void deleted( - const boost::shared_ptr& theOldShape, const int theTag = 1) = 0; + MODELAPI_EXPORT virtual void deleted( + const std::shared_ptr& theOldShape, const int theTag = 1); + + /// load deleted shapes + MODELAPI_EXPORT virtual void loadDeletedShapes (GeomAlgoAPI_MakeShape* theMS, + std::shared_ptr theShapeIn, + const int theKindOfShape, + const int theTag); + /// load and orient modified shapes + MODELAPI_EXPORT virtual void loadAndOrientModifiedShapes (GeomAlgoAPI_MakeShape* theMS, + std::shared_ptr theShapeIn, const int theKindOfShape, const int theTag, + const std::string& theName, GeomAPI_DataMapOfShapeShape& theSubShapes, const bool theIsStoreSeparate = false); + /// load and orient generated shapes + MODELAPI_EXPORT virtual void loadAndOrientGeneratedShapes (GeomAlgoAPI_MakeShape* theMS, + std::shared_ptr theShapeIn, const int theKindOfShape, + const int theTag, const std::string& theName, GeomAPI_DataMapOfShapeShape& theSubShapes); + + /// load shapes of the first level (to be used during shape import) + MODELAPI_EXPORT virtual void loadFirstLevel(std::shared_ptr theShape, + const std::string& theName, int& theTag); + + /// load disconnected edges + MODELAPI_EXPORT virtual void loadDisconnectedEdges(std::shared_ptr theShape, + const std::string& theName, int& theTag); + + /// load disconnected vetexes + MODELAPI_EXPORT virtual void loadDisconnectedVertexes(std::shared_ptr theShape, + const std::string& theName,int& theTag); + + /// Returns true if the latest modification of this body in the naming history + // is equal to the given shape + MODELAPI_EXPORT virtual bool isLatestEqual(const std::shared_ptr& theShape) = 0; + + /// Returns true is the topology is connected. Cashes this information for the current shape, + /// so it is more effective to use this method than directly GeomAPI_Shape. + MODELAPI_EXPORT virtual bool isConnectedTopology(); protected: - /// Use plugin manager for features creation: this method is - /// defined here only for SWIG-wrapping - ModelAPI_ResultBody() - { - } + /// Default constructor accessible only from Model_Objects + MODELAPI_EXPORT ModelAPI_ResultBody(); + + ModelAPI_BodyBuilder* myBuilder; ///< provides the body processing in naming shape }; //! Pointer on feature object -typedef boost::shared_ptr ResultBodyPtr; +typedef std::shared_ptr ResultBodyPtr; #endif