Salome HOME
[MEDCalcl] PointSprite and VectorField presentations.
[modules/med.git] / src / MEDCalc / cmp / MEDPresentationContour.cxx
1 // Copyright (C) 2016  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 #include "MEDPresentationContour.hxx"
21
22 #include <SALOME_KernelServices.hxx>
23 #undef LOG  // should be fixed in KERNEL - double definition
24 #include <Basics_Utils.hxx>
25
26 #include <sstream>
27
28 const std::string MEDPresentationContour::TYPE_NAME = "MEDPresentationContour";
29 const std::string MEDPresentationContour::PROP_NB_CONTOUR = "nbContour";
30
31 MEDPresentationContour::MEDPresentationContour(const MEDCALC::ContourParameters& params,
32                                                const MEDCALC::ViewModeType viewMode) :
33         MEDPresentation(params.fieldHandlerId, TYPE_NAME, viewMode, params.colorMap, params.scalarBarRange),
34         _params(params)
35 {
36   setIntProperty(MEDPresentationContour::PROP_NB_CONTOUR, params.nbContours);
37 }
38
39 void
40 MEDPresentationContour::setNumberContours()
41 {
42   std::ostringstream oss;
43
44   oss << "min_max = " << _srcObjVar << ".PointData.GetArray('" << _fieldName << "').GetRange();";
45   pushAndExecPyLine(oss.str()); oss.str("");
46   oss << "delta = (min_max[1]-min_max[0])/float(" << _params.nbContours << ");";
47   pushAndExecPyLine(oss.str()); oss.str("");
48   oss << _objVar << ".Isosurfaces = [min_max[0]+0.5*delta+i*delta for i in range(" << _params.nbContours << ")];";
49   pushAndExecPyLine(oss.str()); oss.str("");
50 }
51
52 void
53 MEDPresentationContour::internalGeneratePipeline()
54 {
55   MEDPresentation::internalGeneratePipeline();
56
57   MEDPyLockWrapper lock;
58
59   createSource();
60
61   // Populate internal array of available components:
62   fillAvailableFieldComponents();
63   if (getIntProperty(MEDPresentation::PROP_NB_COMPONENTS) > 1)
64     {
65       const char * msg = "Contour presentation only works for scalar field!"; // this message will appear in GUI too
66       STDLOG(msg);
67       throw KERNEL::createSalomeException(msg);
68     }
69
70   setOrCreateRenderView(); // instanciate __viewXXX
71
72   // Contour needs point data:
73   applyCellToPointIfNeeded();
74
75   std::ostringstream oss;
76   oss << _objVar << " = pvs.Contour(Input=" << _srcObjVar << ");";
77   pushAndExecPyLine(oss.str()); oss.str("");
78
79   showObject();
80
81   oss << _objVar << ".ContourBy = ['POINTS', '" << _fieldName << "'];";
82   pushAndExecPyLine(oss.str()); oss.str("");
83
84   // Set number of contours
85   setNumberContours();
86   colorBy("POINTS");    // necessarily POINTS because of the conversion above
87   showScalarBar();
88   rescaleTransferFunction();
89   selectColorMap();
90   resetCameraAndRender();
91 }
92
93 void
94 MEDPresentationContour::updatePipeline(const MEDCALC::ContourParameters& params)
95 {
96   if (params.fieldHandlerId != _params.fieldHandlerId)
97     throw KERNEL::createSalomeException("Unexpected updatePipeline error! Mismatching fieldHandlerId!");
98
99   if (params.scalarBarRange != _params.scalarBarRange)
100     updateScalarBarRange<MEDPresentationContour, MEDCALC::ContourParameters>(params.scalarBarRange);
101   if (params.colorMap != _params.colorMap)
102     updateColorMap<MEDPresentationContour, MEDCALC::ContourParameters>(params.colorMap);
103
104   if (params.nbContours != _params.nbContours)
105     updateNbContours(params.nbContours);
106 }
107
108 void
109 MEDPresentationContour::updateNbContours(const int nbContours)
110 {
111   _params.nbContours = nbContours;
112
113   // GUI helper:
114   setIntProperty(MEDPresentationContour::PROP_NB_CONTOUR, nbContours);
115
116   // Update the pipeline:
117   {
118     MEDPyLockWrapper lock;
119     setNumberContours();
120     pushAndExecPyLine("pvs.Render();");
121   }
122 }