Salome HOME
Merge branch 'origin/abn/openfile_fix'
[modules/paravis.git] / test / VisuPrs / 3D_viewer / A2.py
1 # Copyright (C) 2010-2013  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.
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/A2 case
21 # Create 3D Viewer and test set view properties for Vectors 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/A2")
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 + "Penta6.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 = 'vectoriel_field'
66
67 print "\nCreating Vectors.......",
68 vectors = VectorsOnField(proxy, EntityType.CELL, field_name, 1,
69                 is_colored=True, glyph_type="Cone")
70 if vectors is None:
71     raise RuntimeError("Error!!! Presentation wasn't created...")
72
73 display_only(vectors, my_view)
74 reset_view(my_view)
75 Render(my_view)
76
77 print "\nChange Presentation Parameters..."
78
79 for reprCode in represents:
80     repr = RepresentationType.get_name(reprCode)
81     if reprCode == RepresentationType.VOLUME:
82         is_good = call_and_check(vectors, "Representation", repr, 0)
83         if is_good:
84             msg = "VOLUME representation must be not available for Vectors"
85             raise RuntimeError(msg)
86     else:
87         call_and_check(vectors, "Representation", repr, 1)
88
89         for sha in shadings:
90             call_and_check(vectors, "Shading", sha, 1)
91             setShaded(my_view, sha)
92             Render(my_view)
93             time.sleep(1)
94
95             # save picture in file
96             # Construct image file name
97             pic_name = picturedir + "params_" + repr.replace(' ', '_') + "_any_" +  \
98                 str(sha) + "." + pictureext
99             # Show and record the presentation
100             process_prs_for_test(vectors, my_view, pic_name)
101
102 for opa in opacities:
103     call_and_check(vectors, "Opacity", opa, 1, compare_prec)
104
105 for lwi in linewidths:
106     call_and_check(vectors, "LineWidth", lwi, 1, compare_prec)