Salome HOME
refs #482: new function for export calculation case
[modules/hydro.git] / src / HYDROData / HYDROData_Obstacle.h
1
2 #ifndef HYDROData_Obstacle_HeaderFile
3 #define HYDROData_Obstacle_HeaderFile
4
5 #include "HYDROData_ArtificialObject.h"
6
7 DEFINE_STANDARD_HANDLE(HYDROData_Obstacle, HYDROData_ArtificialObject)
8
9 /**\class HYDROData_Obstacle
10  * \brief 
11  *
12  */
13 class HYDROData_Obstacle : public HYDROData_ArtificialObject
14 {
15 protected:
16   /**
17    * Enumeration of tags corresponding to the persistent object parameters.
18    */
19   enum DataTag
20   {
21     DataTag_First = HYDROData_ArtificialObject::DataTag_First + 100, ///< first tag, to reserve
22     DataTag_GeomObjectEntry, ///< study entry of the imported GEOM object
23     DataTag_FilePath,        ///< imported file path
24     DataTag_Translation,     ///< translation coefficients
25   };
26
27 public:
28   DEFINE_STANDARD_RTTI(HYDROData_Obstacle);
29
30   /**
31    * Returns the kind of this object. Must be redefined in all objects of known type.
32    */
33   HYDRODATA_EXPORT virtual const ObjectKind GetKind() const {return KIND_OBSTACLE;}
34
35   /**
36    * Dump object to Python script representation.
37    */
38   HYDRODATA_EXPORT virtual QStringList DumpToPython( MapOfTreatedObjects& theTreatedObjects ) const;
39
40   /**
41    * Update the immersible zone object.
42    * Call this method whenever you made changes for object data.
43    */
44   HYDRODATA_EXPORT virtual void Update();
45
46   HYDRODATA_EXPORT virtual void UpdateLocalCS( double theDx, double theDy );
47
48   /**
49    * Checks that object has 2D presentation. Reimlemented to retun true.
50    */
51   HYDRODATA_EXPORT virtual bool IsHas2dPrs() const;
52
53   /**
54    * Returns the top shape of the object.
55    */
56   HYDRODATA_EXPORT virtual TopoDS_Shape GetTopShape() const;
57
58   /**
59    * Returns the 3d shape of the object.
60    */
61   HYDRODATA_EXPORT virtual TopoDS_Shape GetShape3D() const;
62
63   /**
64    * Returns default filling color for new obstacle.
65    */
66   HYDRODATA_EXPORT static QColor DefaultFillingColor();
67
68   /**
69    * Returns default border color for new obstacle.
70    */
71   HYDRODATA_EXPORT static QColor DefaultBorderColor();
72
73
74   /**
75    * Sets the 3d shape of the object.
76    */
77   HYDRODATA_EXPORT virtual void SetShape3D( const TopoDS_Shape& theShape );
78
79 public:
80
81   /**
82    * Imports shape from file containing geometrical object and sets this
83    * shape as the obstacle shape.
84    * The supported file types:
85    *  - BREP
86    *  - IGES
87    *  - STEP
88    *  - ACIS
89    * \param theFilePath the path to file
90    * \return \c true if file has been successfully read
91    */
92   HYDRODATA_EXPORT virtual bool ImportFromFile( const QString& theFilePath );
93
94   /**
95    * Stores the file path of the imported file.
96    * \param theFilePath file path
97    */
98   HYDRODATA_EXPORT void SetFilePath(const QString& theFilePath);
99
100   /**
101    * Returns the imported file path.
102    */
103   HYDRODATA_EXPORT QString GetFilePath() const;
104
105   
106   /**
107    * Imports shape from IOR.
108    * \param theIOR the IOR of Geom object
109    * \return \c true if shape has been successfully imported
110    */
111   HYDRODATA_EXPORT virtual bool ImportFromGeomIOR( const TCollection_AsciiString& theIOR );
112
113   /**
114    * Stores the study entry of the imported GEOM object.
115    * \param theEntry GEOM object entry
116    */
117   HYDRODATA_EXPORT void SetGeomObjectEntry( const TCollection_AsciiString& theEntry );
118
119   /**
120    * Returns the imported GEOM object entry.
121    */
122   HYDRODATA_EXPORT TCollection_AsciiString GetGeomObjectEntry() const;
123
124
125   /**
126    * Translate the obstacle to the given distance.
127    */
128   HYDRODATA_EXPORT void Translate( const double theDx,
129                                    const double theDy,
130                                    const double theDz );
131
132 protected:
133
134   /**
135    * Returns default filling color for new object.
136    */
137   HYDRODATA_EXPORT virtual QColor getDefaultFillingColor() const;
138
139   /**
140    * Returns default border color for new object.
141    */
142   HYDRODATA_EXPORT virtual QColor getDefaultBorderColor() const;
143
144   /**
145    * Returns the type of child altitude object.
146    * Reimplemented to create obstacle altitude object.
147    */
148   HYDRODATA_EXPORT virtual ObjectKind getAltitudeObjectType() const;
149
150 private:
151
152   /**
153    * Imports shape from the BREP file.
154    * \param theFilePath the path to file
155    * \return shape as TopoDS_Shape (null shape if import was failed)
156    */
157   TopoDS_Shape ImportBREP( const QString& theFilePath ) const;
158
159   /**
160    * Imports shape from the IGES file.
161    * \param theFilePath the path to file
162    * \return shape as TopoDS_Shape (null shape if import was failed)
163    */
164   TopoDS_Shape ImportIGES( const QString& theFilePath ) const;
165
166   /**
167    * Imports shape from the STEP file.
168    * \param theFilePath the path to file
169    * \return shape as TopoDS_Shape (null shape if import was failed)
170    */
171   TopoDS_Shape ImportSTEP( const QString& theFilePath ) const;
172
173   /**
174    * Create all necessary child group objects.
175    */
176   void createGroupObjects();
177
178   /**
179    * Sets the translation coefficients.
180    */
181   void setTranslation( const double theDx, const double theDy, const double theDz );
182
183   /**
184    * Returns the translation coefficients.
185    */
186   bool getTranslation( double& theDx, double& theDy, double& theDz ) const;
187
188 protected:
189
190   friend class HYDROData_Iterator;
191
192   /**
193    * Creates new object in the internal data structure. Use higher level objects 
194    * to create objects with real content.
195    */
196   HYDRODATA_EXPORT HYDROData_Obstacle();
197
198   /**
199    * Destructs properties of the object and object itself, removes it from the document.
200    */
201   virtual HYDRODATA_EXPORT ~HYDROData_Obstacle();
202
203 };
204
205 #endif