Salome HOME
Further porting: ImportFile is now replaced by OpenDataFile
[modules/paravis.git] / test / VisuPrs / 3D_viewer / A8.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/A8 case
21 # Create 3D Viewer and test set view properties for Cut Lines 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/A8")
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 + "Tetra4.med"
45 print " --------------------------------- "
46 print "file ", file_name
47 print " --------------------------------- "
48
49 OpenDataFile(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 = 'scalar field'
65
66 print "\nCreating cut lines.......",
67 cut_lines = CutLinesOnField(proxy, EntityType.CELL, field_name, 1,
68                     nb_lines=10,
69                     orientation1=Orientation.ZX,
70                     orientation2=Orientation.XY,
71                     displacement1=0.5, displacement2=0.5)
72 if cut_lines is None:
73     raise RuntimeError("Error!!! Presentation wasn't created...")
74
75 display_only(cut_lines, 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(cut_lines, "Representation", repr, 0)
85         if is_good:
86             msg = "VOLUME representation must be not available for Iso Surface"
87             raise RuntimeError(msg)
88     else:
89         call_and_check(cut_lines, "Representation", repr, 1)
90
91         for sha in shadings:
92             setShaded(my_view, sha)
93             call_and_check(cut_lines, "Interpolation", sha, 1)
94             Render(my_view)
95
96             for opa in opacities:
97                 call_and_check(cut_lines, "Opacity", opa, 1, compare_prec)
98
99                 for lwi in linewidths:
100                     call_and_check(cut_lines, "LineWidth", lwi, 1,
101                     compare_prec)
102
103                     time.sleep(1)
104
105                     # save picture in file
106                     # Construct image file name
107                     pic_name = picturedir + "params_" + repr.replace(' ', '_') + "_any_" +  \
108                         str(sha) + "_" + str(opa) + "_" + str(lwi) + "." + pictureext
109                     # Show and record the presentation
110                     process_prs_for_test(cut_lines, my_view, pic_name)