Salome HOME
Merge branch 'akl/tests_update'
[modules/paravis.git] / test / VisuPrs / 3D_viewer / A1.py
1 # Copyright (C) 2010-2014  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/A1 case
21 # Create 3D Viewer and test set view properties for Plot 3D presentation
22 # Author:       POLYANSKIKH VERA
23 from paravistest import *
24 from presentations import *
25 from pvsimple import *
26 import sys
27 import paravis
28 import time
29
30 # Directory for saving snapshots
31 picturedir = get_picture_dir("3D_viewer/A1")
32
33 # Add path separator to the end of picture path if necessery
34 if not picturedir.endswith(os.sep):
35     picturedir += os.sep
36
37 #import file
38 my_paravis = paravis.myParavis
39
40 # Get view
41 my_view = GetRenderView()
42 reset_view(my_view)
43 Render(my_view)
44
45 file_name = datadir + "fra.med"
46 print " --------------------------------- "
47 print "file ", file_name
48 print " --------------------------------- "
49
50 my_paravis.ImportFile(file_name)
51 proxy = GetActiveSource()
52 if proxy is None:
53     raise RuntimeError("Error: can't import file.")
54 else:
55     print "OK"
56
57 represents = [RepresentationType.POINTS, RepresentationType.WIREFRAME,\
58 RepresentationType.SURFACE, RepresentationType.VOLUME]
59 shrinks = [0, 1]
60 shadings = [0, 1]
61 opacities = [1.0, 0.5, 0.0]
62 linewidths = [1.0, 3.0, 10.0]
63 compare_prec = 0.00001
64
65 field_name = 'VITESSE'
66
67 # Get view
68 my_view = GetRenderView()
69
70 print "\nCreating plot3d.......",
71 plot3d = Plot3DOnField(proxy, EntityType.NODE, field_name, 1)
72 if plot3d is None:
73     raise RuntimeError("Error!!! Presentation wasn't created...")
74
75 display_only(plot3d, my_view)
76 reset_view(my_view)
77 Render(my_view)
78
79 print "\nChange Presentation Parameters..."
80
81 for reprCode in represents:
82     repr = RepresentationType.get_name(reprCode)
83     if reprCode == RepresentationType.VOLUME:
84         is_good = call_and_check(plot3d, "Representation", repr, 0)
85         if is_good:
86             msg = "VOLUME representation must be not available for Plot 3D"
87             raise RuntimeError(msg)
88     else:
89         call_and_check(plot3d, "Representation", repr, 1)
90
91     for sha in shadings:
92         setShaded(my_view, sha)
93         call_and_check(plot3d, "Shading", sha, 1)
94         Render(my_view)
95
96         for opa in opacities:
97             call_and_check(plot3d, "Opacity", opa, 1, compare_prec)
98
99             for lwi in linewidths:
100                 call_and_check(plot3d, "LineWidth", lwi, 1, compare_prec)
101                 time.sleep(1)
102
103                 # save picture in file
104                 # Construct image file name
105                 pic_name = picturedir + "params_" + repr.replace(' ', '_') + "_any_" +  \
106                     str(sha) + "_" + str(opa) + "_" + str(lwi) + "." + pictureext
107                 # Show and record the presentation
108                 process_prs_for_test(plot3d, my_view, pic_name)