]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDRO_tests/TestViewer.cxx
Salome HOME
7dcec1aa3c2a972d91bd0318082ad995617a7522
[modules/hydro.git] / src / HYDRO_tests / TestViewer.cxx
1
2 #include <TestViewer.h>
3 //#include <random.h>
4 #include <OCCViewer_ViewManager.h>
5 #ifdef WIN32
6   #pragma warning ( disable: 4251 )
7 #endif
8 #include <OCCViewer_ViewModel.h>
9 #ifdef WIN32
10   #pragma warning ( disable: 4251 )
11 #endif
12 #include <OCCViewer_ViewWindow.h>
13 #ifdef WIN32
14   #pragma warning ( disable: 4251 )
15 #endif
16 #include <AIS_InteractiveContext.hxx>
17 #include <AIS_Shape.hxx>
18 #include <TopoDS_Iterator.hxx>
19
20 #include <QDir>
21 #include <QPainter>
22 #include <QHash>
23
24 #ifdef WIN32
25   #pragma warning ( default: 4251 )
26 #endif
27
28 #include <cppunit/TestAssert.h>
29
30 OCCViewer_ViewManager* TestViewer::myViewManager = 0;
31 OCCViewer_ViewWindow* TestViewer::myViewWindow = 0;
32 QString TestViewer::myKey = "";
33
34 OCCViewer_ViewManager* TestViewer::viewManager()
35 {
36   if( myViewManager )
37     return myViewManager;
38
39   myViewManager = new OCCViewer_ViewManager( 0, 0 );
40   OCCViewer_Viewer* aViewer = new OCCViewer_Viewer( true );
41
42   aViewer->setTrihedronSize( 100, true );
43   aViewer->setInteractionStyle( 0 );
44   aViewer->setZoomingStyle( 1 );
45
46   myViewManager->setViewModel( aViewer );
47   myViewWindow = dynamic_cast<OCCViewer_ViewWindow*>( myViewManager->createViewWindow() );
48
49   return myViewManager;
50 }
51
52 OCCViewer_Viewer* TestViewer::viewer()
53 {
54   return dynamic_cast<OCCViewer_Viewer*>( viewManager()->getViewModel() );
55 }
56
57 OCCViewer_ViewWindow* TestViewer::viewWindow()
58 {
59   viewManager(); //to create the view if it was not created earlier
60   return myViewWindow;
61 }
62
63 Handle(AIS_InteractiveContext) context()
64 {
65   return TestViewer::viewer()->getAISContext();
66 }
67
68 QColor TestViewer::GetColor(int i)
69 {
70   QVector<QColor> aCV;
71   aCV  << QColor(0,0,255) 
72     << QColor(0,255,0)
73     << QColor(255,0,0)
74     << QColor(255,255,20) 
75     << QColor(20,255,255) 
76     << QColor(100,100,20) 
77     << QColor(10,100,150);
78   return aCV[i];
79 }
80
81 void TestViewer::show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const QColor& theColor )
82 {
83   double r = theColor.red() / 255.0;
84   double g = theColor.green() / 255.0;
85   double b = theColor.blue() / 255.0;
86
87   Handle(AIS_Shape) aShape = new AIS_Shape( theShape );
88   aShape->SetMaterial( Graphic3d_NOM_PLASTIC );
89   aShape->SetColor( Quantity_Color( r, g, b, Quantity_TOC_RGB ) );
90   context()->Display( aShape, theMode, 0, Standard_False );
91
92   if( isFitAll )
93   {
94     viewWindow()->onTopView();
95     viewWindow()->onFitAll();
96   }
97 }
98
99 void TestViewer::show( const TopoDS_Shape& theShape, int theMode, bool isFitAll, const char* theKey )
100 {
101   context()->EraseAll();
102   
103   myKey = theKey;
104   int i = 0;
105   if( theShape.ShapeType()==TopAbs_SHELL )
106   {
107     TopoDS_Iterator anIt( theShape );
108     for( ; anIt.More(); anIt.Next(), i++ )
109       show( anIt.Value(), theMode, false, GetColor(i) );
110   }
111   else
112     show( theShape, theMode, false, GetColor(0) );
113
114   if( isFitAll )
115   {
116     viewWindow()->onTopView();
117     viewWindow()->onFitAll();
118   }
119 }
120
121 bool AreImagesEqual( const QImage& theImage1, const QImage& theImage2, double theTolerance )
122 {
123   if( theImage1.isNull() || theImage2.isNull() )
124     return theImage1.isNull() == theImage2.isNull();
125
126   if( theImage1.size() != theImage2.size() )
127     return false;
128
129   int aBytesCount = theImage1.byteCount();
130   const uchar *aBytes1 = theImage1.constBits();
131   const uchar *aBytes2 = theImage2.constBits();
132   int aBytesCountE = 0;
133   for( int i=0; i<aBytesCount; i++ )
134     if( aBytes1[i] != aBytes2[i] )
135       aBytesCountE++;
136
137   if ((double)aBytesCountE / (double)aBytesCount > theTolerance)
138     return false;
139
140   return true;
141 }
142
143 bool TestViewer::AssertImages( QString& theMessage )
144 {
145   QImage anActualImage = viewWindow()->dumpView();
146
147   QString anExpectedRefFilePath = qgetenv( "HYDRO_REFERENCE_DATA" );
148   anExpectedRefFilePath += "/" + myKey + ".png";
149   QImage anExpectedRefImage; 
150   anExpectedRefImage.load( anExpectedRefFilePath );
151
152   if( AreImagesEqual( anActualImage, anExpectedRefImage, 0.001 ) )
153   {
154     theMessage = "";
155     return true;
156   }
157
158   QString aPath = QDir::tempPath() + "/" + myKey + ".png";
159   anActualImage.save( aPath );
160   //std::cout << anActualImage.width() << "x" << anActualImage.height() << std::endl;
161   theMessage = "The viewer contents does not correspond to the reference image: " + myKey;
162   
163   QImage aDiff( anExpectedRefImage.width(), anExpectedRefImage.height(), QImage::Format_ARGB32 );
164   QPainter aPainter( &aDiff );
165   aPainter.drawImage( 0, 0, anExpectedRefImage );
166   aPainter.setCompositionMode( QPainter::RasterOp_SourceXorDestination );
167   aPainter.drawImage( 0, 0, anActualImage );
168
169   QString aDiffFilePath = QDir::tempPath() + "/" + myKey + "_diff.png";
170   aDiff.save( aDiffFilePath );
171
172   return false;
173 }