Salome HOME
Merge 'abn/V8_1_fix' branch into V8_1_BR.
[modules/med.git] / src / MEDCalc / cmp / MEDPresentationScalarMap.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 "MEDPyLockWrapper.hxx"
21
22 #include "MEDPresentationScalarMap.hxx"
23 #include "MEDPresentationException.hxx"
24
25 #include <SALOME_KernelServices.hxx>
26 #undef LOG  // should be fixed in KERNEL - double definition
27 #include <Basics_Utils.hxx>
28
29 #include <sstream>
30
31 const std::string MEDPresentationScalarMap::TYPE_NAME = "MEDPresentationScalarMap";
32
33 MEDPresentationScalarMap::MEDPresentationScalarMap(const MEDCALC::ScalarMapParameters& params,
34                                                    const MEDCALC::ViewModeType viewMode) :
35     MEDPresentation(params.fieldHandlerId, TYPE_NAME, viewMode, params.colorMap, params.scalarBarRange), _params(params)
36 {
37 }
38
39 void
40 MEDPresentationScalarMap::internalGeneratePipeline()
41 {
42   MEDPresentation::internalGeneratePipeline();
43
44   MEDPyLockWrapper lock;
45
46   setOrCreateRenderView(); // instanciate __viewXXX
47   createSource();
48
49   // Populate internal array of available components:
50   fillAvailableFieldComponents();
51
52   // Nothing to do in a scalar map, obj = source:
53   pushAndExecPyLine(_objVar + " = " + _srcObjVar);
54
55   showObject();
56
57   colorBy();
58   showScalarBar();
59   selectColorMap();
60   rescaleTransferFunction();
61   resetCameraAndRender();
62 }
63
64 void
65 MEDPresentationScalarMap::updatePipeline(const MEDCALC::ScalarMapParameters& params)
66 {
67   if (params.fieldHandlerId != _params.fieldHandlerId)
68     throw KERNEL::createSalomeException("Unexpected updatePipeline error! Mismatching fieldHandlerId!");
69
70   if (std::string(params.displayedComponent) != std::string(_params.displayedComponent))
71     updateComponent<MEDPresentationScalarMap, MEDCALC::ScalarMapParameters>(std::string(params.displayedComponent));
72   if (params.scalarBarRange != _params.scalarBarRange)
73     updateScalarBarRange<MEDPresentationScalarMap, MEDCALC::ScalarMapParameters>(params.scalarBarRange);
74   if (params.colorMap != _params.colorMap)
75     updateColorMap<MEDPresentationScalarMap, MEDCALC::ScalarMapParameters>(params.colorMap);
76 }
77