]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDRO_tests/TestViewer.cxx
Salome HOME
refs #1330: basic implementation of the not zoomable polyline arrows
[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_Shape.hxx>
38 #include <AIS_ColorScale.hxx>
39 #include <Prs3d_PointAspect.hxx>
40 #include <TopoDS_Iterator.hxx>
41 #include <QDir>
42 #include <QPainter>
43 #include <QHash>
44 #include <TopExp_Explorer.hxx>
45 #include <TopoDS.hxx>
46 #include <Prs3d_IsoAspect.hxx>
47
48 #include <GEOMUtils.hxx>
49 #include <TopTools_ListOfShape.hxx>
50 #include <TopTools_ListIteratorOfListOfShape.hxx>
51
52 #ifdef WIN32
53   #pragma warning ( default: 4251 )
54 #endif
55
56 #include <cppunit/TestAssert.h>
57
58 OCCViewer_ViewManager* TestViewer::myViewManager = 0;
59 OCCViewer_ViewWindow* TestViewer::myViewWindow = 0;
60 QString TestViewer::myKey = "";
61
62 OCCViewer_ViewManager* TestViewer::viewManager()
63 {
64   if( myViewManager )
65     return myViewManager;
66
67   myViewManager = new OCCViewer_ViewManager( 0, 0 );
68   OCCViewer_Viewer* aViewer = new OCCViewer_Viewer( true );
69
70   aViewer->setTrihedronSize( 100, true );
71   aViewer->setInteractionStyle( 0 );
72   aViewer->setZoomingStyle( 1 );
73
74   myViewManager->setViewModel( aViewer );
75   myViewWindow = dynamic_cast<OCCViewer_ViewWindow*>( myViewManager->createViewWindow() );
76
77   return myViewManager;
78 }
79
80 OCCViewer_Viewer* TestViewer::viewer()
81 {
82   return dynamic_cast<OCCViewer_Viewer*>( viewManager()->getViewModel() );
83 }
84
85 OCCViewer_ViewWindow* TestViewer::viewWindow()
86 {
87   viewManager(); //to create the view if it was not created earlier
88   return myViewWindow;
89 }
90
91 Handle(AIS_InteractiveContext) TestViewer::context()
92 {
93   return viewer()->getAISContext();
94 }
95
96 QColor TestViewer::GetColor(int i)
97 {
98   static QVector<QColor> aCV;
99   if( aCV.isEmpty() )
100   {
101     aCV  << QColor(0,0,255) 
102          << QColor(0,255,0)
103          << QColor(255,0,0)
104          << QColor(255,255,20) 
105          << QColor(20,255,255) 
106          << QColor(100,100,20) 
107          << QColor(10,100,150);
108   }
109   if (i < aCV.size())
110     return aCV[i];
111   else
112   {
113     QColor TestColor = aCV[i % aCV.size()];
114     QColor NewColor((TestColor.red() + i * 41) % 256, 
115       (TestColor.green() + i * 13) % 256, 
116       (TestColor.blue() + i * 23) % 256);
117     return NewColor;
118   }
119 }
120
121 void TestViewer::eraseAll( bool isUpdate )
122 {
123   context()->CloseLocalContext( -1, Standard_False );
124   context()->EraseAll( isUpdate );
125 }
126
127 void TestViewer::show( const Handle(AIS_InteractiveObject)& theObject,
128                        int theMode, int theSelectionMode, bool isFitAll, const char* theKey )
129 {
130   QString aNewKey = theKey;
131   if( !aNewKey.isEmpty() )
132   {
133     myKey = aNewKey;
134     eraseAll( false );
135   }
136   
137   context()->Display( theObject, theMode, theSelectionMode );
138   if( theSelectionMode > 0 )
139   {
140     context()->OpenLocalContext();
141     context()->Activate( theObject, theSelectionMode, Standard_True );
142   }
143
144   if( isFitAll )
145     fitAll();
146 }
147
148 void TestViewer::fitAll()
149 {
150   viewWindow()->onTopView();
151   viewWindow()->onFitAll();
152 }
153
154 void TestViewer::show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const QColor& theColor,
155   int theUIANb, int theVIANb)
156 {
157   Handle(AIS_Shape) aShape = new AIS_Shape( theShape );
158   if( theShape.ShapeType()==TopAbs_VERTEX )
159     aShape->Attributes()->PointAspect()->SetTypeOfMarker( Aspect_TOM_X );
160   if (theShape.ShapeType()==TopAbs_FACE)
161   {
162     context()->DefaultDrawer()->UIsoAspect()->SetNumber(theUIANb);
163     context()->DefaultDrawer()->VIsoAspect()->SetNumber(theVIANb);
164     Handle_Prs3d_Drawer aDrawer = aShape->Attributes();
165     aDrawer->UIsoAspect()->SetNumber(theUIANb);
166     aDrawer->VIsoAspect()->SetNumber(theVIANb);
167   }
168   aShape->SetMaterial( Graphic3d_NOM_PLASTIC );
169   aShape->SetColor( HYDROData_Tool::toOccColor( theColor ) );
170   context()->Display( aShape, theMode, 0, Standard_False );
171
172   if( isFitAll )
173     fitAll();
174 }
175 void TestViewer::show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const char* theKey,
176                        int theUIANb, int theVIANb)
177 {
178   QString aNewKey = theKey;
179   if( !aNewKey.isEmpty() )
180   {
181     eraseAll( false );
182     myKey = aNewKey;
183   }
184
185   if( theShape.IsNull() )
186     return;
187
188   int i = 0;
189   //show all faces first
190   TopTools_ListOfShape aListOfFaces;
191   TopExp_Explorer aFE( theShape, TopAbs_FACE );
192   for( ; aFE.More(); aFE.Next() )
193     aListOfFaces.Append(aFE.Current());
194   GEOMUtils::SortShapes(aListOfFaces);
195   TopTools_ListIteratorOfListOfShape aLF(aListOfFaces);
196   for( ; aLF.More(); aLF.Next(), i++)
197     show( aLF.Value(), theMode, false, GetColor(i), theUIANb, theVIANb );
198
199   //show all independent wires
200   TopTools_ListOfShape aListOfWires;
201   TopExp_Explorer aWE( theShape, TopAbs_WIRE, TopAbs_FACE );
202   for( ; aWE.More(); aWE.Next() )
203     aListOfWires.Append(aWE.Current());
204   GEOMUtils::SortShapes(aListOfWires);
205   TopTools_ListIteratorOfListOfShape aLW(aListOfWires);
206   for( ; aLW.More(); aLW.Next(), i++)
207     show( aLW.Value(), theMode, false, GetColor(i) );
208
209   //show all independent edges
210   TopTools_ListOfShape aListOfEdges;
211   TopExp_Explorer anEE( theShape, TopAbs_EDGE, TopAbs_WIRE );
212   for( ; anEE.More(); anEE.Next())
213     aListOfEdges.Append(anEE.Current());
214   GEOMUtils::SortShapes(aListOfEdges);
215   TopTools_ListIteratorOfListOfShape aLE(aListOfEdges);
216   for( ; aLE.More(); aLE.Next(), i++)
217     show( aLE.Value(), theMode, false, GetColor(i) );
218
219   if( isFitAll )
220     fitAll();
221 }
222
223 /*void TestViewer::ShowShape(const TopoDS_Shape& theShape, int theMode, int& i)
224 {
225   if( theShape.ShapeType()==TopAbs_SHELL )
226   {
227     TopoDS_Iterator anIt( theShape );
228     for( ; anIt.More(); anIt.Next())
229     {
230       show( anIt.Value(), theMode, false, GetColor(i) );
231       i++;
232     }
233   }
234   else if (theShape.ShapeType()==TopAbs_FACE ||
235            theShape.ShapeType()==TopAbs_WIRE ||
236            theShape.ShapeType()==TopAbs_EDGE ||
237            theShape.ShapeType()==TopAbs_VERTEX )
238   {
239     show( theShape, theMode, false, GetColor(i) );
240     i++;
241   }
242 }*/
243
244 bool AreImagesEqual( const QImage& theImage1, const QImage& theImage2, double theTolerance )
245 {
246   if( theImage1.isNull() || theImage2.isNull() )
247     return theImage1.isNull() == theImage2.isNull();
248
249   if( theImage1.size() != theImage2.size() )
250     return false;
251
252   int aBytesCount = theImage1.byteCount();
253   const uchar *aBytes1 = theImage1.constBits();
254   const uchar *aBytes2 = theImage2.constBits();
255   int aBytesCountE = 0;
256   for( int i=0; i<aBytesCount; i++ )
257     if( aBytes1[i] != aBytes2[i] )
258       aBytesCountE++;
259
260   if ((double)aBytesCountE / (double)aBytesCount > theTolerance)
261     return false;
262
263   return true;
264 }
265
266 bool TestViewer::AssertImages( QString& theMessage, const QImage* theImage, const char* theCase )
267 {
268   QImage anActualImage;
269   if( theImage )
270     anActualImage = *theImage;
271   else
272     anActualImage = viewWindow()->dumpView();
273
274   if( theCase )
275     myKey = theCase;
276
277   QString anExpectedRefFilePath = qgetenv( "HYDRO_ROOT_DIR" ) + "/bin/salome/test/HYDRO";
278   anExpectedRefFilePath += "/" + myKey + ".png";
279   QImage anExpectedRefImage; 
280   anExpectedRefImage.load( anExpectedRefFilePath );
281
282   if( AreImagesEqual( anActualImage, anExpectedRefImage, 0.001 ) )
283   {
284     theMessage = "";
285     return true;
286   }
287
288   QString aPath = QDir::tempPath() + "/" + myKey + ".png";
289   anActualImage.save( aPath );
290   //std::cout << anActualImage.width() << "x" << anActualImage.height() << std::endl;
291   theMessage = "The viewer contents does not correspond to the reference image: " + myKey;
292   
293   QImage aDiff( anExpectedRefImage.width(), anExpectedRefImage.height(), QImage::Format_ARGB32 );
294   QPainter aPainter( &aDiff );
295   aPainter.drawImage( 0, 0, anExpectedRefImage );
296   aPainter.setCompositionMode( QPainter::RasterOp_SourceXorDestination );
297   aPainter.drawImage( 0, 0, anActualImage );
298
299   QString aDiffFilePath = QDir::tempPath() + "/" + myKey + "_diff.png";
300   aDiff.save( aDiffFilePath );
301
302   anExpectedRefImage.save( QDir::tempPath() + "/" + myKey + "_1.png");
303
304   return false;
305 }
306
307 Handle(AIS_ColorScale) TestViewer::colorScale()
308 {
309   static Handle(AIS_ColorScale) aColorScale = new AIS_ColorScale();
310
311   return aColorScale;
312 }
313
314 void TestViewer::showColorScale( bool isShow )
315 {
316   Handle(AIS_ColorScale) aColorScale = colorScale();
317   if( aColorScale.IsNull() )
318     return;
319
320   Standard_Real anXPos = 0.05;
321   Standard_Real anYPos = 0.1;
322   Standard_Real aWidth = 0.2;
323   Standard_Real aHeight = 0.5;
324   Standard_Integer aTextHeight = 14;
325   Standard_Integer aNbIntervals = 30;
326
327   aColorScale->SetXPosition( anXPos );
328   aColorScale->SetYPosition( anYPos );
329   aColorScale->SetWidth( aWidth );
330   aColorScale->SetHeight( aHeight );
331   aColorScale->SetTextHeight( aTextHeight );
332   aColorScale->SetNumberOfIntervals( aNbIntervals );
333
334   aColorScale->SetTitle( "test" );
335   aColorScale->SetRange( 0, 1 );
336
337   aColorScale->SetToUpdate();
338
339   if( isShow )
340   {
341     if( !context()->IsDisplayed( aColorScale ) )
342       context()->Display( aColorScale );
343   }
344   else
345   {
346     if( context()->IsDisplayed( aColorScale ) )
347       context()->Erase( aColorScale );
348   }
349 }
350
351 bool TestViewer::ColorScaleIsDisplayed()
352 {
353   return context()->IsDisplayed( colorScale() );
354 }
355
356 void TestViewer::select( int theViewX, int theViewY )
357 {
358   Handle(V3d_View) aView = myViewWindow->getViewPort()->getView();
359   context()->MoveTo( theViewX, theViewY, aView );
360   context()->Select();
361 }
362
363 QString GetLine( QFile& theFile, bool isUtf8 )
364 {
365   QByteArray aLineData = theFile.readLine();
366   QString aLine;
367   if( isUtf8 )
368     aLine = QString::fromUtf8( aLineData );
369   else
370     aLine = aLineData;
371   return aLine;
372 }
373
374 bool TestViewer::areScriptsEqual( const QString& theBaseName,
375                                   bool isExpectedUtf8,
376                                   bool isActualUtf8,
377                                   int theLinesToOmit,
378                                   QString& theMsg )
379 {
380   QString anExpectedRefFilePath = qgetenv( "HYDRO_ROOT_DIR" ) + "/bin/salome/test/HYDRO";
381   anExpectedRefFilePath += "/" + theBaseName;
382   
383   QString anActualFilePath = QDir::tempPath() + "/" + theBaseName;
384
385   QFile anExpected( anExpectedRefFilePath );
386   QFile anActual( anActualFilePath );
387   if( !anExpected.open( QFile::ReadOnly | QFile::Text ) ||
388       !anActual.open  ( QFile::ReadOnly | QFile::Text ) )
389     return false;
390
391   for( int i=0; i<theLinesToOmit; i++ )
392     anExpected.readLine();
393
394   bool isEqual = true;
395   int i = 1;
396   while( !anExpected.atEnd() && isEqual )
397   {
398     QString anExpectedLine = GetLine( anExpected, isExpectedUtf8 );
399     QString anActualLine = GetLine( anActual, isActualUtf8 );
400     isEqual = anExpectedLine == anActualLine;
401     if( !isEqual )
402       theMsg = QString( "line %1\nActual: %2\nExpected: %3" ).arg( i ).arg( anActualLine ).arg( anExpectedLine );
403     i++;
404   }
405   
406   if( isEqual )
407     isEqual = anActual.atEnd();
408
409   anExpected.close();
410   anActual.close();
411
412   return isEqual;
413 }