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