X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_Tool.h;h=0047995a169da453dbf1672a338f20375ea8da49;hb=52a9ce5d728824041da42b650b57452763f56a60;hp=cb1506e05a9a280a6c4bb6de5981a3b54439d57e;hpb=1c6465288cda49e75392724ddc01aba7cfe4ef68;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_Tool.h b/src/HYDROData/HYDROData_Tool.h old mode 100644 new mode 100755 index cb1506e0..0047995a --- a/src/HYDROData/HYDROData_Tool.h +++ b/src/HYDROData/HYDROData_Tool.h @@ -1,74 +1,172 @@ +// Copyright (C) 2014-2015 EDF-R&D +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #ifndef HYDROData_Tool_HeaderFile #define HYDROData_Tool_HeaderFile #include "HYDROData.h" -#include "HYDROData_Entity.h" - -#include - -#include #include - +#include +#include +#include +#include +#include + + +class HYDROData_PolylineXY; +class HYDROData_Document; +class HYDROData_Entity; +class HYDROData_SequenceOfObjects; +class MapOfTreatedObjects; +class gp_XY; +class QColor; class QFile; -class Handle(HYDROData_Document); +class TCollection_ExtendedString; + +#ifdef WIN32 + enum TopAbs_State; +#else + #include +#endif +class TopoDS_Edge; +class TopoDS_Face; +class TopoDS_Shape; +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 theModule module + * \param theDoc document * \param thePrefix name prefix * \param theUsedNames list of already used names * \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 Find the data object with the specified name. - * \param theModule module - * \param theName name - * \param theObjectKind kind of object - * \return data object + * \brief Checks the type of object. + * \param theObject object to check + * \return true if object is geometry object */ - static Handle(HYDROData_Entity) FindObjectByName( const Handle(HYDROData_Document)& theDoc, - const QString& theName, - const ObjectKind theObjectKind = KIND_UNKNOWN ); + static bool IsGeometryObject( const Handle(HYDROData_Entity)& theObject ); /** - * \brief Find the data objects with the specified names. - * \param theModule module - * \param theNames list of names - * \param theObjectKind kind of object - * \return list of data objects + * \brief Updates the child object name. + * \param theOldStr old father object name + * \param theNewStr new father object name + * \param theObject object to update */ - static HYDROData_SequenceOfObjects FindObjectsByNames( const Handle(HYDROData_Document)& theDoc, - const QStringList& theNames, - const ObjectKind theObjectKind = KIND_UNKNOWN ); + static void UpdateChildObjectName( const QString& theOldStr, + const QString& theNewStr, + const Handle(HYDROData_Entity)& theObject ); + /** - * \brief Checks the type of object. - * \param theObject object to check - * \return true if object is geometry object + * \brief Generate name for new object in python environment. + * \param theTreatedObjects objects which was alredy created by dump operation + * \param thePrefix name prefix + * \return generated name */ - static bool IsGeometryObject( const Handle(HYDROData_Entity)& theObject ); + static QString GenerateNameForPython( const MapOfTreatedObjects& theTreatedObjects, + const QString& thePrefix ); + /** + * Computes Point State from TopAbs (simplified & limited method). + */ + + 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& theColors); + static void GenerateRepeatableRandColors(int nbColorsToGen, QVector& 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 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 ) @@ -87,8 +185,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