Salome HOME
Merge branch 'BR_LCM_COMP' into BR_LAND_COVER_MAP
[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   int i = 0;
172   if( theShape.ShapeType()==TopAbs_COMPOUND )
173   {
174     TopExp_Explorer anExplorer( theShape, TopAbs_FACE );
175     for( ; anExplorer.More(); anExplorer.Next() ) 
176       ShowShape (anExplorer.Current(), theMode, i);
177   }
178   else
179     ShowShape(theShape, theMode, i);
180
181
182   if( isFitAll )
183   {
184     viewWindow()->onTopView();
185     viewWindow()->onFitAll();
186   }
187 }
188
189 void TestViewer::ShowShape(const TopoDS_Shape& theShape, int theMode, int& i)
190 {
191   if( theShape.ShapeType()==TopAbs_SHELL )
192   {
193     TopoDS_Iterator anIt( theShape );
194     for( ; anIt.More(); anIt.Next())
195     {
196       show( anIt.Value(), theMode, false, GetColor(i) );
197       i++;
198     }
199   }
200   else if (theShape.ShapeType()==TopAbs_FACE ||
201            theShape.ShapeType()==TopAbs_WIRE ||
202            theShape.ShapeType()==TopAbs_EDGE ||
203            theShape.ShapeType()==TopAbs_VERTEX )
204   {
205     show( theShape, theMode, false, GetColor(i) );
206     i++;
207   }
208 }
209
210 bool AreImagesEqual( const QImage& theImage1, const QImage& theImage2, double theTolerance )
211 {
212   if( theImage1.isNull() || theImage2.isNull() )
213     return theImage1.isNull() == theImage2.isNull();
214
215   if( theImage1.size() != theImage2.size() )
216     return false;
217
218   int aBytesCount = theImage1.byteCount();
219   const uchar *aBytes1 = theImage1.constBits();
220   const uchar *aBytes2 = theImage2.constBits();
221   int aBytesCountE = 0;
222   for( int i=0; i<aBytesCount; i++ )
223     if( aBytes1[i] != aBytes2[i] )
224       aBytesCountE++;
225
226   if ((double)aBytesCountE / (double)aBytesCount > theTolerance)
227     return false;
228
229   return true;
230 }
231
232 bool TestViewer::AssertImages( QString& theMessage )
233 {
234   QImage anActualImage = viewWindow()->dumpView();
235
236   QString anExpectedRefFilePath = qgetenv( "HYDRO_REFERENCE_DATA" );
237   anExpectedRefFilePath += "/" + myKey + ".png";
238   QImage anExpectedRefImage; 
239   anExpectedRefImage.load( anExpectedRefFilePath );
240
241   if( AreImagesEqual( anActualImage, anExpectedRefImage, 0.001 ) )
242   {
243     theMessage = "";
244     return true;
245   }
246
247   QString aPath = QDir::tempPath() + "/" + myKey + ".png";
248   anActualImage.save( aPath );
249   //std::cout << anActualImage.width() << "x" << anActualImage.height() << std::endl;
250   theMessage = "The viewer contents does not correspond to the reference image: " + myKey;
251   
252   QImage aDiff( anExpectedRefImage.width(), anExpectedRefImage.height(), QImage::Format_ARGB32 );
253   QPainter aPainter( &aDiff );
254   aPainter.drawImage( 0, 0, anExpectedRefImage );
255   aPainter.setCompositionMode( QPainter::RasterOp_SourceXorDestination );
256   aPainter.drawImage( 0, 0, anActualImage );
257
258   QString aDiffFilePath = QDir::tempPath() + "/" + myKey + "_diff.png";
259   aDiff.save( aDiffFilePath );
260
261   return false;
262 }
263
264 Handle_Aspect_ColorScale TestViewer::showColorScale( bool isShow )
265 {
266   Handle(V3d_View) aView = myViewWindow->getViewPort()->getView();
267   if( aView.IsNull() )
268     return Handle(Aspect_ColorScale)();
269
270   Handle(Aspect_ColorScale) aColorScale = aView->ColorScale();
271   if( aColorScale.IsNull() )
272     return aColorScale;
273
274   Standard_Real anXPos = 0.05;
275   Standard_Real anYPos = 0.1;
276   Standard_Real aWidth = 0.2;
277   Standard_Real aHeight = 0.5;
278   Standard_Integer aTextHeight = 14;
279   Standard_Integer aNbIntervals = 30;
280
281   aColorScale->SetXPosition( anXPos );
282   aColorScale->SetYPosition( anYPos );
283   aColorScale->SetWidth( aWidth );
284   aColorScale->SetHeight( aHeight );
285   aColorScale->SetTextHeight( aTextHeight );
286   aColorScale->SetNumberOfIntervals( aNbIntervals );
287
288   aColorScale->SetTitle( "test" );
289   aColorScale->SetRange( 0, 1 );
290
291   if( isShow )
292   {
293     if( !aView->ColorScaleIsDisplayed() )
294       aView->ColorScaleDisplay();
295   }
296   else
297   {
298     if( aView->ColorScaleIsDisplayed() )
299       aView->ColorScaleErase();
300   }
301   return aColorScale;
302 }
303
304 void TestViewer::select( int theViewX, int theViewY )
305 {
306   Handle(V3d_View) aView = myViewWindow->getViewPort()->getView();
307   context()->MoveTo( theViewX, theViewY, aView );
308   context()->Select();
309 }
310
311 QString GetLine( QFile& theFile, bool isUtf8 )
312 {
313   QByteArray aLineData = theFile.readLine();
314   QString aLine;
315   if( isUtf8 )
316     aLine = QString::fromUtf8( aLineData );
317   else
318     aLine = aLineData;
319   return aLine;
320 }
321
322 bool TestViewer::areScriptsEqual( const QString& theBaseName,
323                                   bool isExpectedUtf8,
324                                   bool isActualUtf8,
325                                   int theLinesToOmit,
326                                   QString& theMsg )
327 {
328   QString anExpectedRefFilePath = qgetenv( "HYDRO_REFERENCE_DATA" );  
329   anExpectedRefFilePath += "/" + theBaseName;
330   
331   QString anActualFilePath = QDir::tempPath() + "/" + theBaseName;
332
333   QFile anExpected( anExpectedRefFilePath );
334   QFile anActual( anActualFilePath );
335   if( !anExpected.open( QFile::ReadOnly | QFile::Text ) ||
336       !anActual.open  ( QFile::ReadOnly | QFile::Text ) )
337     return false;
338
339   for( int i=0; i<theLinesToOmit; i++ )
340     anExpected.readLine();
341
342   bool isEqual = true;
343   int i = 1;
344   while( !anExpected.atEnd() && isEqual )
345   {
346     QString anExpectedLine = GetLine( anExpected, isExpectedUtf8 );
347     QString anActualLine = GetLine( anActual, isActualUtf8 );
348     isEqual = anExpectedLine == anActualLine;
349     if( !isEqual )
350       theMsg = QString( "line %1\nActual: %2\nExpected: %3" ).arg( i ).arg( anActualLine ).arg( anExpectedLine );
351     i++;
352   }
353   
354   if( isEqual )
355     isEqual = anActual.atEnd();
356
357   anExpected.close();
358   anActual.close();
359
360   return isEqual;
361 }