Salome HOME
TShell cannot be disconnected; use TCompound of shells/faces instead
[modules/hydro.git] / src / HYDRO_tests / TestViewer.cxx
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include <TestViewer.h>
20 #include <HYDROData_Tool.h>
21 #include <OCCViewer_ViewManager.h>
22 #ifdef WIN32
23   #pragma warning ( disable: 4251 )
24 #endif
25 #include <OCCViewer_ViewPort3d.h>
26 #ifdef WIN32
27   #pragma warning ( disable: 4251 )
28 #endif
29 #include <OCCViewer_ViewModel.h>
30 #ifdef WIN32
31   #pragma warning ( disable: 4251 )
32 #endif
33 #include <OCCViewer_ViewWindow.h>
34 #ifdef WIN32
35   #pragma warning ( disable: 4251 )
36 #endif
37 #include <AIS_InteractiveContext.hxx>
38 #include <AIS_Shape.hxx>
39 #include <Aspect_ColorScale.hxx>
40 #include <Prs3d_PointAspect.hxx>
41 #include <TopoDS_Iterator.hxx>
42 #include <QDir>
43 #include <QPainter>
44 #include <QHash>
45 #include <TopExp_Explorer.hxx>
46 #include <TopoDS.hxx>
47
48 #ifdef WIN32
49   #pragma warning ( default: 4251 )
50 #endif
51
52 #include <cppunit/TestAssert.h>
53
54 OCCViewer_ViewManager* TestViewer::myViewManager = 0;
55 OCCViewer_ViewWindow* TestViewer::myViewWindow = 0;
56 QString TestViewer::myKey = "";
57
58 OCCViewer_ViewManager* TestViewer::viewManager()
59 {
60   if( myViewManager )
61     return myViewManager;
62
63   myViewManager = new OCCViewer_ViewManager( 0, 0 );
64   OCCViewer_Viewer* aViewer = new OCCViewer_Viewer( true );
65
66   aViewer->setTrihedronSize( 100, true );
67   aViewer->setInteractionStyle( 0 );
68   aViewer->setZoomingStyle( 1 );
69
70   myViewManager->setViewModel( aViewer );
71   myViewWindow = dynamic_cast<OCCViewer_ViewWindow*>( myViewManager->createViewWindow() );
72
73   return myViewManager;
74 }
75
76 OCCViewer_Viewer* TestViewer::viewer()
77 {
78   return dynamic_cast<OCCViewer_Viewer*>( viewManager()->getViewModel() );
79 }
80
81 OCCViewer_ViewWindow* TestViewer::viewWindow()
82 {
83   viewManager(); //to create the view if it was not created earlier
84   return myViewWindow;
85 }
86
87 Handle(AIS_InteractiveContext) context()
88 {
89   return TestViewer::viewer()->getAISContext();
90 }
91
92 QColor TestViewer::GetColor(int i)
93 {
94   static QVector<QColor> aCV;
95   if( aCV.isEmpty() )
96   {
97     aCV  << QColor(0,0,255) 
98          << QColor(0,255,0)
99          << QColor(255,0,0)
100          << QColor(255,255,20) 
101          << QColor(20,255,255) 
102          << QColor(100,100,20) 
103          << QColor(10,100,150);
104   }
105   if (i < aCV.size())
106     return aCV[i];
107   else
108   {
109     QColor TestColor = aCV[i % aCV.size()];
110     QColor NewColor((TestColor.red() + i * 41) % 256, 
111       (TestColor.green() + i * 13) % 256, 
112       (TestColor.blue() + i * 23) % 256);
113     return NewColor;
114   }
115 }
116
117 void TestViewer::show( const Handle(AIS_InteractiveObject)& theObject,
118                        int theMode, int theSelectionMode, bool isFitAll, const char* theKey )
119 {
120   QString aNewKey = theKey;
121   if( !aNewKey.isEmpty() )
122   {
123     myKey = aNewKey;
124     context()->CloseLocalContext();
125     context()->EraseAll( Standard_False );
126   }
127   
128   context()->Display( theObject, theMode, theSelectionMode );
129   if( theSelectionMode > 0 )
130   {
131     context()->OpenLocalContext();
132     context()->Activate( theObject, theSelectionMode, Standard_True );
133   }
134
135   if( isFitAll )
136   {
137     viewWindow()->onTopView();
138     viewWindow()->onFitAll();
139   }
140 }
141
142 void TestViewer::show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const QColor& theColor )
143 {
144   Handle(AIS_Shape) aShape = new AIS_Shape( theShape );
145   if( theShape.ShapeType()==TopAbs_VERTEX )
146     aShape->Attributes()->PointAspect()->SetTypeOfMarker( Aspect_TOM_X );
147   aShape->SetMaterial( Graphic3d_NOM_PLASTIC );
148   aShape->SetColor( HYDROData_Tool::toOccColor( theColor ) );
149   context()->Display( aShape, theMode, 0, Standard_False );
150
151   if( isFitAll )
152   {
153     viewWindow()->onTopView();
154     viewWindow()->onFitAll();
155   }
156 }
157
158 void TestViewer::show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const char* theKey )
159 {
160   QString aNewKey = theKey;
161   if( !aNewKey.isEmpty() )
162   {
163     context()->CloseLocalContext();
164     context()->EraseAll( Standard_False );
165     myKey = aNewKey;
166   }
167
168   if( theShape.IsNull() )
169     return;
170
171   if( theShape.ShapeType()==TopAbs_COMPOUND )
172   {
173     TopExp_Explorer anExplorer( theShape, TopAbs_FACE );
174     for( ; anExplorer.More(); anExplorer.Next() ) 
175       ShowShape (anExplorer.Current(), theMode);
176   }
177   else
178     ShowShape(theShape, theMode);
179
180
181   if( isFitAll )
182   {
183     viewWindow()->onTopView();
184     viewWindow()->onFitAll();
185   }
186 }
187
188 void TestViewer::ShowShape(const TopoDS_Shape& theShape, int theMode)
189 {
190   int i = 0;
191   if( theShape.ShapeType()==TopAbs_SHELL )
192   {
193     TopoDS_Iterator anIt( theShape );
194     for( ; anIt.More(); anIt.Next(), i++ )
195       show( anIt.Value(), theMode, false, GetColor(i) );
196   }
197   else if (theShape.ShapeType()==TopAbs_FACE ||
198            theShape.ShapeType()==TopAbs_WIRE ||
199            theShape.ShapeType()==TopAbs_EDGE ||
200            theShape.ShapeType()==TopAbs_VERTEX )
201     show( theShape, theMode, false, GetColor(0) );
202 }
203
204 bool AreImagesEqual( const QImage& theImage1, const QImage& theImage2, double theTolerance )
205 {
206   if( theImage1.isNull() || theImage2.isNull() )
207     return theImage1.isNull() == theImage2.isNull();
208
209   if( theImage1.size() != theImage2.size() )
210     return false;
211
212   int aBytesCount = theImage1.byteCount();
213   const uchar *aBytes1 = theImage1.constBits();
214   const uchar *aBytes2 = theImage2.constBits();
215   int aBytesCountE = 0;
216   for( int i=0; i<aBytesCount; i++ )
217     if( aBytes1[i] != aBytes2[i] )
218       aBytesCountE++;
219
220   if ((double)aBytesCountE / (double)aBytesCount > theTolerance)
221     return false;
222
223   return true;
224 }
225
226 bool TestViewer::AssertImages( QString& theMessage )
227 {
228   QImage anActualImage = viewWindow()->dumpView();
229
230   QString anExpectedRefFilePath = qgetenv( "HYDRO_REFERENCE_DATA" );
231   anExpectedRefFilePath += "/" + myKey + ".png";
232   QImage anExpectedRefImage; 
233   anExpectedRefImage.load( anExpectedRefFilePath );
234
235   if( AreImagesEqual( anActualImage, anExpectedRefImage, 0.001 ) )
236   {
237     theMessage = "";
238     return true;
239   }
240
241   QString aPath = QDir::tempPath() + "/" + myKey + ".png";
242   anActualImage.save( aPath );
243   //std::cout << anActualImage.width() << "x" << anActualImage.height() << std::endl;
244   theMessage = "The viewer contents does not correspond to the reference image: " + myKey;
245   
246   QImage aDiff( anExpectedRefImage.width(), anExpectedRefImage.height(), QImage::Format_ARGB32 );
247   QPainter aPainter( &aDiff );
248   aPainter.drawImage( 0, 0, anExpectedRefImage );
249   aPainter.setCompositionMode( QPainter::RasterOp_SourceXorDestination );
250   aPainter.drawImage( 0, 0, anActualImage );
251
252   QString aDiffFilePath = QDir::tempPath() + "/" + myKey + "_diff.png";
253   aDiff.save( aDiffFilePath );
254
255   return false;
256 }
257
258 Handle_Aspect_ColorScale TestViewer::showColorScale( bool isShow )
259 {
260   Handle(V3d_View) aView = myViewWindow->getViewPort()->getView();
261   if( aView.IsNull() )
262     return Handle(Aspect_ColorScale)();
263
264   Handle(Aspect_ColorScale) aColorScale = aView->ColorScale();
265   if( aColorScale.IsNull() )
266     return aColorScale;
267
268   Standard_Real anXPos = 0.05;
269   Standard_Real anYPos = 0.1;
270   Standard_Real aWidth = 0.2;
271   Standard_Real aHeight = 0.5;
272   Standard_Integer aTextHeight = 14;
273   Standard_Integer aNbIntervals = 30;
274
275   aColorScale->SetXPosition( anXPos );
276   aColorScale->SetYPosition( anYPos );
277   aColorScale->SetWidth( aWidth );
278   aColorScale->SetHeight( aHeight );
279   aColorScale->SetTextHeight( aTextHeight );
280   aColorScale->SetNumberOfIntervals( aNbIntervals );
281
282   aColorScale->SetTitle( "test" );
283   aColorScale->SetRange( 0, 1 );
284
285   if( isShow )
286   {
287     if( !aView->ColorScaleIsDisplayed() )
288       aView->ColorScaleDisplay();
289   }
290   else
291   {
292     if( aView->ColorScaleIsDisplayed() )
293       aView->ColorScaleErase();
294   }
295   return aColorScale;
296 }
297
298 void TestViewer::select( int theViewX, int theViewY )
299 {
300   Handle(V3d_View) aView = myViewWindow->getViewPort()->getView();
301   context()->MoveTo( theViewX, theViewY, aView );
302   context()->Select();
303 }
304
305 bool TestViewer::areScriptsEqual( const QString& theBaseName )
306 {
307   QString anExpectedRefFilePath = qgetenv( "HYDRO_REFERENCE_DATA" );  
308   anExpectedRefFilePath += "/" + theBaseName;
309   
310   QString anActualFilePath = QDir::tempPath() + "/" + theBaseName;
311
312   QFile anExpected( anExpectedRefFilePath );
313   QFile anActual( anActualFilePath );
314   if( !anExpected.open( QFile::ReadOnly | QFile::Text ) ||
315       !anActual.open  ( QFile::ReadOnly | QFile::Text ) )
316     return false;
317
318   const int aLinesToOmit = 20;
319   for( int i=0; i<aLinesToOmit; i++ )
320     anExpected.readLine();
321
322   bool isEqual = true;
323   while( !anExpected.atEnd() && isEqual )
324   {
325     QString anExpectedLine = QString::fromUtf8( anExpected.readLine() );
326     QString anActualLine = anActual.readLine();
327     isEqual = anExpectedLine == anActualLine;
328   }
329
330   if( isEqual )
331     isEqual = anActual.atEnd();
332
333   anExpected.close();
334   anActual.close();
335
336   return isEqual;
337 }