]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
refs #80 - Sketch base GUI: create/draw point, circle and arc
authornds <natalia.donis@opencascade.com>
Fri, 6 Jun 2014 15:36:52 +0000 (19:36 +0400)
committernds <natalia.donis@opencascade.com>
Fri, 6 Jun 2014 15:36:52 +0000 (19:36 +0400)
Arc feature inital creation. No V3d viewer.

src/PartSet/CMakeLists.txt
src/PartSet/PartSet_FeatureArcPrs.cpp [new file with mode: 0644]
src/PartSet/PartSet_FeatureArcPrs.h [new file with mode: 0644]
src/PartSet/PartSet_FeatureCirclePrs.h
src/PartSet/PartSet_FeatureLinePrs.h
src/PartSet/PartSet_FeaturePointPrs.h
src/PartSet/PartSet_OperationCreateFeature.cpp
src/SketchPlugin/SketchPlugin_Plugin.cpp
src/SketchPlugin/plugin-Sketch.xml

index a1c50ac6604f75f4e672a8053519ea02dd043504..a07a1f5990dfd8508477f558bda7376d77147efb 100644 (file)
@@ -5,6 +5,7 @@ SET(CMAKE_AUTOMOC ON)
 SET(PROJECT_HEADERS
        PartSet.h
        PartSet_Constants.h
+       PartSet_FeatureArcPrs.h
        PartSet_FeatureCirclePrs.h
        PartSet_FeaturePrs.h
        PartSet_FeatureLinePrs.h
@@ -23,6 +24,7 @@ SET(PROJECT_HEADERS
 
 SET(PROJECT_SOURCES
        PartSet_FeaturePrs.cpp
+       PartSet_FeatureArcPrs.cpp
        PartSet_FeatureCirclePrs.cpp
        PartSet_FeatureLinePrs.cpp
        PartSet_FeaturePointPrs.cpp
diff --git a/src/PartSet/PartSet_FeatureArcPrs.cpp b/src/PartSet/PartSet_FeatureArcPrs.cpp
new file mode 100644 (file)
index 0000000..024d911
--- /dev/null
@@ -0,0 +1,118 @@
+// File:        PartSet_FeaturePrs.h
+// Created:     04 Jun 2014
+// Author:      Natalia ERMOLAEVA
+
+#include <PartSet_FeatureArcPrs.h>
+#include <PartSet_Tools.h>
+
+#include <SketchPlugin_Feature.h>
+#include <SketchPlugin_Sketch.h>
+#include <SketchPlugin_ConstraintCoincidence.h>
+#include <SketchPlugin_Line.h>
+#include <SketchPlugin_Constraint.h>
+
+#include <GeomDataAPI_Point2D.h>
+
+#include <ModelAPI_Data.h>
+#include <ModelAPI_Document.h>
+#include <ModelAPI_AttributeRefAttr.h>
+#include <ModelAPI_AttributeRefList.h>
+
+#include <Precision.hxx>
+
+using namespace std;
+
+PartSet_FeatureArcPrs::PartSet_FeatureArcPrs(FeaturePtr theSketch)
+: PartSet_FeaturePrs(theSketch)
+{
+}
+
+void PartSet_FeatureArcPrs::initFeature(FeaturePtr theFeature)
+{
+  if (feature() && theFeature)
+  {
+    // use the last point of the previous feature as the first of the new one
+    boost::shared_ptr<ModelAPI_Data> aData = theFeature->data();
+    boost::shared_ptr<GeomDataAPI_Point2D> anInitPoint = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>
+                                                                  (aData->attribute(LINE_ATTR_END));
+    PartSet_Tools::setFeaturePoint(feature(), anInitPoint->x(), anInitPoint->y(), LINE_ATTR_START);
+    PartSet_Tools::setFeaturePoint(feature(), anInitPoint->x(), anInitPoint->y(), LINE_ATTR_END);
+
+    aData = feature()->data();
+    boost::shared_ptr<GeomDataAPI_Point2D> aPoint = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>
+                                                                 (aData->attribute(LINE_ATTR_START));
+    PartSet_Tools::createConstraint(sketch(), anInitPoint, aPoint);
+  }
+}
+
+PartSet_SelectionMode PartSet_FeatureArcPrs::setPoint(double theX, double theY,
+                                                       const PartSet_SelectionMode& theMode)
+{
+  PartSet_SelectionMode aMode = theMode;
+  switch (theMode)
+  {
+    case SM_FirstPoint: {
+      PartSet_Tools::setFeaturePoint(feature(), theX, theY, LINE_ATTR_START);
+      PartSet_Tools::setFeaturePoint(feature(), theX, theY, LINE_ATTR_END);
+      aMode = SM_SecondPoint;
+    }
+    break;
+    case SM_SecondPoint: {
+      PartSet_Tools::setFeaturePoint(feature(), theX, theY, LINE_ATTR_END);
+      aMode = SM_DonePoint;
+   }
+    break;
+    default:
+      break;
+  }
+  return aMode;
+}
+
+std::string PartSet_FeatureArcPrs::getAttribute(const PartSet_SelectionMode& theMode) const
+{
+  std::string aAttribute;
+  switch (theMode)
+  {
+    case SM_FirstPoint:
+      aAttribute = LINE_ATTR_START;
+    break;
+    case SM_SecondPoint:
+      aAttribute = LINE_ATTR_END;
+    break;
+    default:
+    break;
+  }
+  return aAttribute;
+}
+
+PartSet_SelectionMode PartSet_FeatureArcPrs::getNextMode(const std::string& theAttribute) const
+{
+  PartSet_SelectionMode aMode;
+
+  if (theAttribute == LINE_ATTR_START)
+    aMode = SM_SecondPoint;
+  else if (theAttribute == LINE_ATTR_END)
+    aMode = SM_DonePoint;
+  return aMode;
+}
+
+boost::shared_ptr<GeomDataAPI_Point2D> PartSet_FeatureArcPrs::featurePoint
+                                                     (const PartSet_SelectionMode& theMode)
+{
+  std::string aPointArg;
+  switch (theMode)
+  {
+    case SM_FirstPoint:
+      aPointArg = LINE_ATTR_START;
+      break;
+    case SM_SecondPoint:
+      aPointArg = LINE_ATTR_END;
+      break;
+    default:
+      break;
+  }
+  boost::shared_ptr<ModelAPI_Data> aData = feature()->data();
+  boost::shared_ptr<GeomDataAPI_Point2D> aPoint = boost::dynamic_pointer_cast<GeomDataAPI_Point2D>
+                                                              (aData->attribute(aPointArg));
+  return aPoint;
+}
diff --git a/src/PartSet/PartSet_FeatureArcPrs.h b/src/PartSet/PartSet_FeatureArcPrs.h
new file mode 100644 (file)
index 0000000..b0807db
--- /dev/null
@@ -0,0 +1,57 @@
+// File:        PartSet_FeatureArcPrs.h
+// Created:     04 Jun 2014
+// Author:      Natalia ERMOLAEVA
+
+#ifndef PartSet_FeatureArcPrs_H
+#define PartSet_FeatureArcPrs_H
+
+#include "PartSet.h"
+
+#include "PartSet_FeaturePrs.h"
+#include "PartSet_Constants.h"
+
+class GeomDataAPI_Point2D;
+
+/*!
+ \class PartSet_FeatureArcPrs
+ * \brief The class to define the circle arc feature manipulation. It is created for
+ * the feature create operation to move out the feature properties set and use one operation
+ * for any type of features.
+*/
+class PARTSET_EXPORT PartSet_FeatureArcPrs : public PartSet_FeaturePrs
+{
+public:
+  /// Constructor
+  /// \param theSketch the sketch feature
+  PartSet_FeatureArcPrs(FeaturePtr theSketch);
+  /// Destructor
+  virtual ~PartSet_FeatureArcPrs() {};
+
+  /// Sets the point to the feature in an attribute depending on the selection mode
+  /// \param theX the 2D point horizontal coordinate
+  /// \param theY the 2D point vertical coordinate
+  /// \param theMode the selection mode
+  /// \return the new selection mode
+  virtual PartSet_SelectionMode setPoint(double theX, double theY,
+                                         const PartSet_SelectionMode& theMode);
+
+  /// Returns the feature attribute name for the selection mode
+  /// \param theMode the current operation selection mode. The feature attribute depends on the mode
+  virtual std::string getAttribute(const PartSet_SelectionMode& theMode) const;
+
+  /// Returns the next selection mode after the attribute
+  /// \param theAttribute the feature attribute name
+  /// \return next attribute selection mode
+  virtual PartSet_SelectionMode getNextMode(const std::string& theAttribute) const;
+
+protected:
+  /// Initializes current feature by the given
+  /// \param theSourceFeature the feature, which attributes are used to initialize the current feature
+  virtual void initFeature(FeaturePtr theSourceFeature);
+
+  /// Returns the feature point in the selection mode position.
+  /// \param theMode the current operation selection mode. The feature attribute depends on the mode
+  virtual boost::shared_ptr<GeomDataAPI_Point2D> featurePoint(const PartSet_SelectionMode& theMode);
+};
+
+#endif
index ef4b8497dc2012b5edb514bc372b9761506c503b..6a75b05b87e0adf726e335acd1b6031276013e33 100644 (file)
@@ -14,7 +14,7 @@ class GeomDataAPI_Point2D;
 
 /*!
  \class PartSet_FeatureCirclePrs
- * \brief The abstract class to define the specific feature manipulation. It is created for
+ * \brief The class to define the circle feature manipulation. It is created for
  * the feature create operation to move out the feature properties set and use one operation
  * for any type of features.
 */
index a2ff5bba0397c2937512fdb0a43ef7373efb5b3b..b94e40265cba43d6deadc3beaf40eb9933485a69 100644 (file)
@@ -14,7 +14,7 @@ class GeomDataAPI_Point2D;
 
 /*!
  \class PartSet_FeatureLinePrs
- * \brief The abstract class to define the specific feature manipulation. It is created for
+ * \brief The class to define the line feature manipulation. It is created for
  * the feature create operation to move out the feature properties set and use one operation
  * for any type of features.
 */
index fa9f73debc765a8b11021f40a68836a914ba40ac..bd63137f227991d5a9da3d1a3487b6c8cf48d66b 100644 (file)
@@ -14,7 +14,7 @@ class GeomDataAPI_Point2D;
 
 /*!
  \class PartSet_FeaturePointPrs
- * \brief The abstract class to define the specific feature manipulation. It is created for
+ * \brief The class to define the point feature manipulation. It is created for
  * the feature create operation to move out the feature properties set and use one operation
  * for any type of features.
 */
index 7905f6a019ce9cf57343325fec236529db54e10e..2bfa875d6ad59adb8582bdacc3a814536253e9ab 100644 (file)
@@ -9,11 +9,13 @@
 #include <PartSet_FeaturePointPrs.h>
 #include <PartSet_FeatureLinePrs.h>
 #include <PartSet_FeatureCirclePrs.h>
+#include <PartSet_FeatureArcPrs.h>
 
 #include <SketchPlugin_Feature.h>
 #include <SketchPlugin_Point.h>
 #include <SketchPlugin_Line.h>
 #include <SketchPlugin_Circle.h>
+#include <SketchPlugin_Arc.h>
 
 #include <ModuleBase_OperationDescription.h>
 
@@ -50,6 +52,9 @@ PartSet_OperationCreateFeature::PartSet_OperationCreateFeature(const QString& th
   else if (aKind == SKETCH_CIRCLE_KIND) {
     myFeaturePrs = new PartSet_FeatureCirclePrs(theFeature);
   }
+  else if (aKind == SKETCH_ARC_KIND) {
+    myFeaturePrs = new PartSet_FeatureArcPrs(theFeature);
+  }
 }
 
 PartSet_OperationCreateFeature::~PartSet_OperationCreateFeature()
@@ -59,7 +64,8 @@ PartSet_OperationCreateFeature::~PartSet_OperationCreateFeature()
 
 bool PartSet_OperationCreateFeature::canProcessKind(const std::string& theId)
 {
-  return theId == SKETCH_LINE_KIND || theId == SKETCH_POINT_KIND || theId == SKETCH_CIRCLE_KIND;
+  return theId == SKETCH_LINE_KIND || theId == SKETCH_POINT_KIND || theId == SKETCH_CIRCLE_KIND ||
+         theId == SKETCH_ARC_KIND;
 }
 
 bool PartSet_OperationCreateFeature::canBeCommitted() const
index 14e61b2362c7806c27657e8017b92cb77c2f95c8..d494a63790a8cc9558e97ca2cda6a995d2b97514 100644 (file)
@@ -38,6 +38,9 @@ FeaturePtr SketchPlugin_Plugin::createFeature(string theFeatureID)
   else if (theFeatureID == SKETCH_CIRCLE_KIND) {
     return FeaturePtr(new SketchPlugin_Circle);
   }
+  else if (theFeatureID == SKETCH_ARC_KIND) {
+    return FeaturePtr(new SketchPlugin_Arc);
+  }
   else if (theFeatureID == SKETCH_CONSTRAINT_COINCIDENCE_KIND) {
     return FeaturePtr(new SketchPlugin_ConstraintCoincidence);
   }
index f5d7507d3fb82a5b5fa0cfc820c44ebeb808b46e..e39aa518cf6fe8c2f589d2b237529cbd5d6fdbe2 100644 (file)
@@ -1,7 +1,7 @@
 <plugin>
   <workbench id="Sketch">
     <group id="Basic">
-      <feature id="Sketch" nested="SketchPoint SketchLine SketchCircle SketchConstraintLength" title="Sketch" tooltip="Create a new sketch or edit an existing sketch" icon=":icons/sketch.png">
+      <feature id="Sketch" nested="SketchPoint SketchLine SketchCircle SketchArc SketchConstraintLength" title="Sketch" tooltip="Create a new sketch or edit an existing sketch" icon=":icons/sketch.png">
         <label title="Select a plane on which to create a sketch" tooltip="Select a plane on which to create a sketch"/> 
       <!--icon=":pictures/x_point.png"-->
       </feature>
@@ -16,7 +16,7 @@
         <point_selector id="CircleCenter" title="Center" tooltip="Center of the circle"/>
         <doublevalue id="CircleRadius" label="Radius:" min="0" step="1.0" default="0" icon=":icons/radius.png" tooltip="Set Radius"/>
       </feature>
-      <feature id="SketchArc" title="Arc" tooltip="Create a new arc of a circle" icon="" internal="1">
+      <feature id="SketchArc" title="Arc" tooltip="Create a new arc of a circle" icon="">
         <point_selector id="ArcCenter" title="Center" tooltip="Center of the arc"/>
         <point_selector id="ArcStartPoint" title="Start point" tooltip="Start point of the arc"/>
         <point_selector id="ArcEndPoint" title="End point" tooltip="End point of the arc"/>