Salome HOME
enable make test
[modules/paravis.git] / test / VisuPrs / 3D_viewer / A7.py
1 # Copyright (C) 2010-2015  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 # This case corresponds to: /visu/3D_viewer/A7 case
21 # Create 3D Viewer and test set view properties for CutPlanes presentation
22 # Author: POLYANSKIKH VERA
23 from paravistest import *
24 from presentations import *
25 from pvsimple import *
26 import sys
27 import time
28
29 # Directory for saving snapshots
30 picturedir = get_picture_dir("3D_viewer/A7")
31
32 # Add path separator to the end of picture path if necessery
33 if not picturedir.endswith(os.sep):
34     picturedir += os.sep
35
36 # Get view
37 my_view = GetRenderView()
38 reset_view(my_view)
39 Render(my_view)
40
41 file_name = datadir + "Tetra4.med"
42 print " --------------------------------- "
43 print "file ", file_name
44 print " --------------------------------- "
45
46 OpenDataFile(file_name)
47 proxy = GetActiveSource()
48 if proxy is None:
49     raise RuntimeError("Error: can't import file.")
50 else:
51     print "OK"
52
53 represents = [RepresentationType.POINTS, RepresentationType.WIREFRAME,\
54 RepresentationType.SURFACE, RepresentationType.VOLUME]
55 shrinks = [0, 1]
56 shadings = ["Flat", "Gouraud"]
57 opacities = [1.0, 0.5, 0.0]
58 linewidths = [1.0, 3.0, 10.0]
59 compare_prec = 0.00001
60
61 field_name = 'scalar field'
62
63 print "\nCreating cut planes.......",
64 cut_planes = CutPlanesOnField(proxy, EntityType.CELL, field_name, 1,
65 nb_planes=10, orientation=Orientation.YZ, displacement=0.5)
66 if cut_planes is None:
67     raise RuntimeError("Error!!! Presentation wasn't created...")
68
69 display_only(cut_planes, my_view)
70 reset_view(my_view)
71 Render(my_view)
72
73 print "\nChange Presentation Parameters..."
74
75 for reprCode in represents:
76     repr = RepresentationType.get_name(reprCode)
77     if reprCode == RepresentationType.VOLUME:
78         is_good = call_and_check(cut_planes, "Representation", repr, 0)
79         if is_good:
80             msg = "VOLUME representation must be not available for Iso Surface"
81             raise RuntimeError(msg)
82     else:
83         call_and_check(cut_planes, "Representation", repr, 1)
84
85         for sha in shadings:
86             setShaded(my_view, sha)
87             call_and_check(cut_planes, "Interpolation", sha, 1)
88             Render(my_view)
89
90             for opa in opacities:
91                 call_and_check(cut_planes, "Opacity", opa, 1, compare_prec)
92
93                 for lwi in linewidths:
94                     call_and_check(cut_planes, "LineWidth", lwi, 1,
95                     compare_prec)
96                     time.sleep(1)
97
98                     # save picture in file
99                     # Construct image file name
100                     pic_name = picturedir + "params_" + repr.replace(' ', '_') + "_any_" +  \
101                         str(sha) + "_" + str(opa) + "_" + str(lwi) + "." + pictureext
102                     # Show and record the presentation
103                     process_prs_for_test(cut_planes, my_view, pic_name)