Salome HOME
Merge branch 'BR_H2018_3' into BR_2018_V8_5
[modules/hydro.git] / src / HYDROData / HYDROData_Tool.h
old mode 100644 (file)
new mode 100755 (executable)
index 83b1c04..c7bd4fe
 #define HYDROData_Tool_HeaderFile
 
 #include "HYDROData.h"
-#include "HYDROData_Entity.h"
-
-#include <Precision.hxx>
-
-#include <TopAbs_ShapeEnum.hxx>
-
-#include <QString>
 #include <QStringList>
-#include <gp_XY.hxx>
-#include <TopoDS_Face.hxx>
-
+#include <Precision.hxx>
+#include <QVector>
+#include <TopTools_SequenceOfShape.hxx>
+#include <NCollection_IndexedDataMap.hxx>
+#include <Message_ProgressIndicator.hxx>
+
+
+class HYDROData_PolylineXY;
+class HYDROData_Document;
+class HYDROData_Entity;
+class HYDROData_SequenceOfObjects;
+class MapOfTreatedObjects;
+class gp_XY;
+class QColor;
 class QFile;
+class TCollection_ExtendedString;
+
+#ifdef WIN32
+  enum TopAbs_State;
+#else
+  #include <TopAbs_State.hxx>
+#endif
+class TopoDS_Edge;
+class TopoDS_Face;
 class TopoDS_Shape;
-class TopTools_SequenceOfShape;
-class Handle(HYDROData_Document);
+class TopoDS_Wire;
+class Quantity_Color;
+class QColor;
 
 class HYDRODATA_EXPORT HYDROData_Tool {
 
+public:
+  enum ExecStatus
+  {
+    None,
+    Running,
+    Finished
+  };
+
 public:
 
   static void                           WriteStringsToFile( QFile&             theFile,
                                                             const QStringList& theStrings,
                                                             const QString&     theSep = "\n" );
 
-  /**
-   * Enables "MustBeUpdated" flag for objects that are depended on "MustBeUpdated" objects.
-   * \param theDoc document where this operation is performed
-   */
-  static void                           SetMustBeUpdatedObjects( const Handle(HYDROData_Document)& theDoc );
-
   /**
    * \brief Generate name for new object.
    * \param theDoc document
@@ -58,10 +74,13 @@ public:
    * \param theIsTryToUsePurePrefix if true - the prefix will be returned if the name equal to the prefix is not busy
    * \return generated name
    */
-  static QString                        GenerateObjectName( const Handle(HYDROData_Document)& theDoc,
-                                                            const QString&                    thePrefix,
-                                                            const QStringList&                theUsedNames = QStringList(),
-                                                            const bool                        theIsTryToUsePurePrefix = false );
+  static QString GenerateObjectName( const Handle(HYDROData_Document)& theDoc,
+                                                            const QString&                   thePrefix,
+                                                            const QStringList&               theUsedNames = QStringList(),
+                                                            const bool                       theIsTryToUsePurePrefix = false );
+  
+
+  static bool ExtractGeneratedObjectName(const QString& theName, int& outValue, QString& thePrefName);
 
   /**
    * \brief Checks the type of object.
@@ -93,8 +112,68 @@ public:
   * Computes Point State from TopAbs (simplified & limited method).
   */
 
- static TopAbs_State                    ComputePointState( const gp_XY& thePnt2d, 
-                                                              const TopoDS_Face& theFace );
+  static TopAbs_State                    ComputePointState( const gp_XY& thePnt2d, 
+                                                           const TopoDS_Face& theFace );
+
+  static double GetAltitudeForEdge( const TopoDS_Edge& theEdge,
+                                    const gp_XY& thePoint,
+                                    double theParameterTolerance,
+                                    double theSquareDistanceTolerance,
+                                    double theInvalidAltitude );
+  static double GetAltitudeForWire( const TopoDS_Wire& theWire,
+                                    const gp_XY& thePoint,
+                                    double theParameterTolerance,
+                                    double theSquareDistanceTolerance,
+                                    double theInvalidAltitude );
+
+  /**
+   * \brief Returns the first shape from the group.
+   * \param theGroups the list of groups
+   * \param theGroupId the group id
+   */
+  static TopoDS_Shape getFirstShapeFromGroup( const HYDROData_SequenceOfObjects& theGroups,
+                                              const int                          theGroupId );
+
+  static TCollection_ExtendedString toExtString( const QString& );
+  static QString                    toQString( const TCollection_ExtendedString& );
+
+  static Quantity_Color toOccColor( const QColor& );
+  static QColor toQtColor( const Quantity_Color& );
+
+  static QColor GenerateRandColor();
+  static bool GenerateNonRepeatableRandColors(int nbColorsToGen, QVector<QColor>& theColors);
+  static void GenerateRepeatableRandColors(int nbColorsToGen, QVector<QColor>& theColors);
+
+  static bool IsNan( double theValue );
+  static bool IsInf( double theValue );
+
+  /**
+  Rebuilds shape container (like compound/compsolid/shell) which contains faces (shared or nonshared with each other)
+  */
+  static TopoDS_Shape RebuildCmp(const TopoDS_Shape& in);
+
+  static TopoDS_Shape PolyXY2Face(const Handle(HYDROData_PolylineXY)& aPolyline);
+
+  static bool importFromXYZ( QString& theFileName, bool bImportXY, std::vector<gp_XYZ>& thePointsXYZ,
+                             std::vector<gp_XY>& thePointsXY);
+
+  static bool importPolylineFromXYZ(QString aFilename, Handle(HYDROData_Document) theDocument, 
+                                    bool importXY, NCollection_Sequence<Handle(HYDROData_Entity)>& importedEntities);
+  
+
+  static void SetSIProgress(const Handle(Message_ProgressIndicator)& thePI);
+  static const Handle(Message_ProgressIndicator)& GetSIProgress();
+
+  static void SetZIProgress(const Handle(Message_ProgressIndicator)& thePI);
+  static const Handle(Message_ProgressIndicator)& GetZIProgress();
+
+  static void SetTriangulationStatus(const ExecStatus& theStatus);
+  static const ExecStatus& GetTriangulationStatus();
+
+private:
+  static Handle(Message_ProgressIndicator)& StricklerInterpolationProgress();
+  static Handle(Message_ProgressIndicator)& BathymetryInterpolationProgress();
+  static ExecStatus myTriangulationStatus;
 };
 
 inline bool ValuesEquals( const double& theFirst, const double& theSecond )
@@ -113,8 +192,12 @@ inline  bool ValuesLessEquals( const double& theFirst, const double& theSecond )
   return theFirst <= theSecond || ValuesEquals( theFirst, theSecond );
 }
 
-
-
+HYDRODATA_EXPORT std::ostream& operator<<( std::ostream& theStream, const QString& theText );
+HYDRODATA_EXPORT std::ostream& operator<<( std::ostream& theStream, const QColor& theText );
+HYDRODATA_EXPORT std::ostream& operator<<( std::ostream& theStream, const TopoDS_Shape& theShape );
+HYDRODATA_EXPORT std::ostream& operator<<( std::ostream& theStream, const TopoDS_Face& theFace );
+HYDRODATA_EXPORT bool operator == ( const gp_XY& thePoint1, const gp_XY& thePoint2 );
+HYDRODATA_EXPORT std::ostream& operator<<( std::ostream& theStream, const gp_XY& theXY );
 
 #endif