Salome HOME
bos #20430 [CEA 20428] FIELDS : improvement of simplified visualisations
[modules/med.git] / src / MEDCalc / tui / medpresentation.py
index ebd2c1cbc4a66f8be76bfe53760d4bcca035a293..487f7f7b061ecf01edde5ff257ee4ef44965e6a5 100644 (file)
 
 import medcalc
 import MEDCALC, SALOME
-from medcalc.medevents import notifyGui_addPresentation, notifyGui_removePresentation, notifyGui_error, notifyGui_modifyPresentation
+from medcalc.medevents import notifyGui_addPresentation, notifyGui_removePresentation, notifyGui_error, notifyGui_modifyPresentation, notifyGui_visibilityChanged
 from functools import reduce
+import pvsimple as pvs
 
 __manager = medcalc.medcorba.factory.getPresentationManager()
+DEFAULT_VISIBILITY = True
+DEFAULT_SCALAR_BAR_VISIBILITY = True
+DEFAULT_USE_CUSTOM_RANGE = False
+DEFAULT_SCALAR_BAR_RANGE = [0.0, 100.0]
+DEFAULT_PLANE_NORMAL = [0.0, 0.0, 1.0]
+DEFAULT_PLANE_POS = 1.0
+DEFAULT_SCALE_FACTOR = 0.2
+DEFAULT_CUT_POINT1 = [0.0, 0.0, 0.0]
+DEFAULT_CUT_POINT2 = [1.0, 1.0, 1.0]
+DEFAULT_HIDE_DATA_OUTSIDE_CUSTOM_RANGE = False
+DEFAULT_CUSTOM_SCALE_FACTOR = False
+DEFAULT_CONTOUR_COMPONENT = ""
 
 def MakeMeshView(meshID,
                  viewMode=MEDCALC.VIEW_MODE_DEFAULT,
                  meshMode=MEDCALC.MESH_MODE_DEFAULT):
   # Create the presentation instance in CORBA engine
   # The engine in turn creates the ParaView pipeline elements
-  params = MEDCALC.MeshViewParameters(meshID, meshMode)
+  visibility=True
+  params = MEDCALC.MeshViewParameters(meshID, meshMode, visibility)
   try:
     presentation_id = __manager.makeMeshView(params, viewMode)
     notifyGui_addPresentation(meshID, presentation_id)
@@ -47,7 +61,12 @@ def MakeScalarMap(proxy,
                   ):
   # Create the presentation instance in CORBA engine
   # The engine in turn creates the ParaView pipeline elements
-  params = MEDCALC.ScalarMapParameters(proxy.id, displayedComponent, scalarBarRange, colorMap)
+  visibility = DEFAULT_VISIBILITY
+  scalarBarVisibility = DEFAULT_SCALAR_BAR_VISIBILITY
+  scalarBarRangeArray = DEFAULT_SCALAR_BAR_RANGE
+  hideDataOutsideCustomRange = DEFAULT_HIDE_DATA_OUTSIDE_CUSTOM_RANGE
+  params = MEDCALC.ScalarMapParameters(proxy.id, displayedComponent, scalarBarRange, colorMap, visibility,
+                                       scalarBarVisibility, scalarBarRangeArray, hideDataOutsideCustomRange)
   try:
     presentation_id = __manager.makeScalarMap(params, viewMode)
     notifyGui_addPresentation(proxy.id, presentation_id)
@@ -62,10 +81,16 @@ def MakeContour(proxy,
                 colorMap=MEDCALC.COLOR_MAP_DEFAULT,
                 nbContours=MEDCALC.NB_CONTOURS_DEFAULT
                 ):
-  params = MEDCALC.ContourParameters(proxy.id, scalarBarRange, colorMap, nbContours)
+  visibility = DEFAULT_VISIBILITY
+  scalarBarVisibility = DEFAULT_SCALAR_BAR_VISIBILITY
+  hideDataOutsideCustomRange = DEFAULT_HIDE_DATA_OUTSIDE_CUSTOM_RANGE
+  scalarBarRangeArray = DEFAULT_SCALAR_BAR_RANGE
+  contourComponent = DEFAULT_CONTOUR_COMPONENT
+  params = MEDCALC.ContourParameters(proxy.id, scalarBarRange, colorMap, visibility, scalarBarVisibility,
+                                     scalarBarRangeArray, hideDataOutsideCustomRange, nbContours, contourComponent)
   try:
     presentation_id = __manager.makeContour(params, viewMode)
-    notifyGui_addPresentation(proxy.id, presentation_id)
+    notifyGui_addPresentation(proxy.id, presentation_id)                           
     return presentation_id
   except SALOME.SALOME_Exception as e:
     notifyGui_error("An error occurred while creating the contour:\n" + e.details.text)
@@ -80,7 +105,14 @@ def MakeVectorField(proxy,
                   ):
   # Create the presentation instance in CORBA engine
   # The engine in turn creates the ParaView pipeline elements
-  params = MEDCALC.VectorFieldParameters(proxy.id, scalarBarRange, colorMap)
+  visibility = DEFAULT_VISIBILITY
+  scalarBarVisibility = DEFAULT_SCALAR_BAR_VISIBILITY
+  scalarBarRangeArray = DEFAULT_SCALAR_BAR_RANGE
+  hideDataOutsideCustomRange = DEFAULT_HIDE_DATA_OUTSIDE_CUSTOM_RANGE
+  scaleFactor = DEFAULT_SCALE_FACTOR
+  customScaleFactor = DEFAULT_CUSTOM_SCALE_FACTOR
+  params = MEDCALC.VectorFieldParameters(proxy.id, scalarBarRange, colorMap, visibility, scalarBarVisibility,
+                                         scalarBarRangeArray, hideDataOutsideCustomRange, scaleFactor, customScaleFactor)
   try:
     presentation_id = __manager.makeVectorField(params, viewMode)
     notifyGui_addPresentation(proxy.id, presentation_id)
@@ -98,7 +130,12 @@ def MakeSlices(proxy,
                 nbSlices=MEDCALC.NB_SLICES_DEFAULT):
   # Create the presentation instance in CORBA engine
   # The engine in turn creates the ParaView pipeline elements
-  params = MEDCALC.SlicesParameters(proxy.id, displayedComponent,scalarBarRange, colorMap, 
+  visibility = DEFAULT_VISIBILITY
+  scalarBarVisibility = DEFAULT_SCALAR_BAR_VISIBILITY
+  scalarBarRangeArray = DEFAULT_SCALAR_BAR_RANGE
+  hideDataOutsideCustomRange = DEFAULT_HIDE_DATA_OUTSIDE_CUSTOM_RANGE
+  params = MEDCALC.SlicesParameters(proxy.id, displayedComponent,scalarBarRange, colorMap, visibility,
+                                    scalarBarVisibility, scalarBarRangeArray, hideDataOutsideCustomRange,
                                     sliceOrientation, nbSlices)
   try:
     presentation_id = __manager.makeSlices(params, viewMode)
@@ -116,7 +153,12 @@ def MakeDeflectionShape(proxy,
                   ):
   # Create the presentation instance in CORBA engine
   # The engine in turn creates the ParaView pipeline elements
-  params = MEDCALC.DeflectionShapeParameters(proxy.id, scalarBarRange, colorMap)
+  visibility = DEFAULT_VISIBILITY
+  scalarBarVisibility = DEFAULT_SCALAR_BAR_VISIBILITY
+  scalarBarRangeArray = DEFAULT_SCALAR_BAR_RANGE
+  hideDataOutsideCustomRange = DEFAULT_HIDE_DATA_OUTSIDE_CUSTOM_RANGE
+  params = MEDCALC.DeflectionShapeParameters(proxy.id, scalarBarRange, colorMap, visibility,
+                                    scalarBarVisibility, scalarBarRangeArray, hideDataOutsideCustomRange)
   try:
     presentation_id = __manager.makeDeflectionShape(params, viewMode)
     notifyGui_addPresentation(proxy.id, presentation_id)
@@ -134,7 +176,12 @@ def MakePointSprite(proxy,
                   ):
   # Create the presentation instance in CORBA engine
   # The engine in turn creates the ParaView pipeline elements
-  params = MEDCALC.PointSpriteParameters(proxy.id, displayedComponent, scalarBarRange, colorMap)
+  visibility = DEFAULT_VISIBILITY
+  scalarBarVisibility = DEFAULT_SCALAR_BAR_VISIBILITY
+  scalarBarRangeArray = DEFAULT_SCALAR_BAR_RANGE
+  hideDataOutsideCustomRange = DEFAULT_HIDE_DATA_OUTSIDE_CUSTOM_RANGE
+  params = MEDCALC.PointSpriteParameters(proxy.id, displayedComponent, scalarBarRange, colorMap, visibility,
+                                         scalarBarVisibility, scalarBarRangeArray, hideDataOutsideCustomRange)
   try:
     presentation_id = __manager.makePointSprite(params, viewMode)
     notifyGui_addPresentation(proxy.id, presentation_id)
@@ -143,6 +190,79 @@ def MakePointSprite(proxy,
     notifyGui_error("An error occurred while creating the point sprite:\n" + e.details.text)
     raise Exception(e.details.text)
 
+
+def MakePlot3D(proxy,
+              viewMode=MEDCALC.VIEW_MODE_DEFAULT,
+              scalarBarRange=MEDCALC.SCALAR_BAR_RANGE_DEFAULT,
+              colorMap=MEDCALC.COLOR_MAP_DEFAULT
+              ):
+  # Create the presentation instance in CORBA engine
+  # The engine in turn creates the ParaView pipeline elements
+  visibility = DEFAULT_VISIBILITY
+  scalarBarVisibility = DEFAULT_SCALAR_BAR_VISIBILITY
+  scalarBarRangeArray = DEFAULT_SCALAR_BAR_RANGE
+  hideDataOutsideCustomRange = DEFAULT_HIDE_DATA_OUTSIDE_CUSTOM_RANGE
+  scalarBarRangeArray = DEFAULT_SCALAR_BAR_RANGE
+  planeNormal = DEFAULT_PLANE_NORMAL
+  planePos = DEFAULT_PLANE_POS
+  params = MEDCALC.Plot3DParameters(proxy.id, scalarBarRange, colorMap, visibility,
+                                    scalarBarVisibility, scalarBarRangeArray, hideDataOutsideCustomRange, planeNormal, planePos)
+  try:
+    presentation_id = __manager.makePlot3D(params, viewMode)
+    notifyGui_addPresentation(proxy.id, presentation_id)
+    return presentation_id
+  except SALOME.SALOME_Exception as e:
+    notifyGui_error("An error occurred while creating the Plot3D:\n" + e.details.text)
+    raise Exception(e.details.text)
+
+
+def MakeStreamLines(proxy,
+              viewMode=MEDCALC.VIEW_MODE_DEFAULT,
+              scalarBarRange=MEDCALC.SCALAR_BAR_RANGE_DEFAULT,
+              colorMap=MEDCALC.COLOR_MAP_DEFAULT
+              ):
+  # Create the presentation instance in CORBA engine
+  # The engine in turn creates the ParaView pipeline elements
+  visibility = DEFAULT_VISIBILITY
+  scalarBarVisibility = DEFAULT_SCALAR_BAR_VISIBILITY
+  scalarBarRangeArray = DEFAULT_SCALAR_BAR_RANGE
+  hideDataOutsideCustomRange = DEFAULT_HIDE_DATA_OUTSIDE_CUSTOM_RANGE
+  integrDir = MEDCALC.INTEGRATION_DIR_DEFAULT
+  params = MEDCALC.StreamLinesParameters(proxy.id, scalarBarRange, colorMap, visibility,
+                                    scalarBarVisibility, scalarBarRangeArray, hideDataOutsideCustomRange, integrDir)
+  try:
+    presentation_id = __manager.makeStreamLines(params, viewMode)
+    notifyGui_addPresentation(proxy.id, presentation_id)
+    return presentation_id
+  except SALOME.SALOME_Exception as e:
+    notifyGui_error("An error occurred while creating the StreamLines:\n" + e.details.text)
+    raise Exception(e.details.text)
+
+
+def MakeCutSegment(proxy,
+              viewMode=MEDCALC.VIEW_MODE_DEFAULT,
+              scalarBarRange=MEDCALC.SCALAR_BAR_RANGE_DEFAULT,
+              colorMap=MEDCALC.COLOR_MAP_DEFAULT
+              ):
+  # Create the presentation instance in CORBA engine
+  # The engine in turn creates the ParaView pipeline elements
+  visibility = DEFAULT_VISIBILITY
+  scalarBarVisibility = DEFAULT_SCALAR_BAR_VISIBILITY
+  hideDataOutsideCustomRange = DEFAULT_HIDE_DATA_OUTSIDE_CUSTOM_RANGE
+  scalarBarRangeArray = DEFAULT_SCALAR_BAR_RANGE
+  point1 = DEFAULT_CUT_POINT1
+  point2 = DEFAULT_CUT_POINT2
+  params = MEDCALC.CutSegmentParameters(proxy.id, scalarBarRange, colorMap, visibility,
+                                        scalarBarVisibility, scalarBarRangeArray, hideDataOutsideCustomRange, point1, point2)
+  try:
+    presentation_id = __manager.makeCutSegment(params, viewMode)
+    notifyGui_addPresentation(proxy.id, presentation_id)
+    return presentation_id
+  except SALOME.SALOME_Exception as e:
+    notifyGui_error("An error occurred while creating the CutSegment:\n" + e.details.text)
+    raise Exception(e.details.text)
+
+
 def RemovePresentation(presentation_id):
   ok = __manager.removePresentation(presentation_id)
   if ok:
@@ -160,11 +280,18 @@ GetSlicesParameters = lambda pres_id: __GetGENERICParameters("Slices", pres_id)
 GetPointSpriteParameters = lambda pres_id: __GetGENERICParameters("PointSprite", pres_id)
 GetVectorFieldParameters = lambda pres_id: __GetGENERICParameters("VectorField", pres_id)
 GetDeflectionShapeParameters = lambda pres_id: __GetGENERICParameters("DeflectionShape", pres_id)
+GetPlot3DParameters = lambda pres_id: __GetGENERICParameters("Plot3D", pres_id)
+GetStreamLinesParameters = lambda pres_id: __GetGENERICParameters("StreamLines", pres_id)
+GetCutSegmentParameters = lambda pres_id: __GetGENERICParameters("CutSegment", pres_id)
 
 
 def __UpdateGENERIC(tag, presentation_id, params):
+  old_params = __GetGENERICParameters(tag, presentation_id)
   exec("__manager.update%s(presentation_id, params)" % tag)
   notifyGui_modifyPresentation(presentation_id)
+  if old_params.visibility != params.visibility:
+    # visibility is changed
+    notifyGui_visibilityChanged(presentation_id)
 
 UpdateMeshView = lambda pres_id, params: __UpdateGENERIC("MeshView", pres_id, params)
 UpdateScalarMap = lambda pres_id, params: __UpdateGENERIC("ScalarMap", pres_id, params)
@@ -173,6 +300,82 @@ UpdateSlices = lambda pres_id, params: __UpdateGENERIC("Slices", pres_id, params
 UpdateVectorField = lambda pres_id, params: __UpdateGENERIC("VectorField", pres_id, params)
 UpdatePointSprite = lambda pres_id, params: __UpdateGENERIC("PointSprite", pres_id, params)
 UpdateDeflectionShape = lambda pres_id, params: __UpdateGENERIC("DeflectionShape", pres_id, params)
+UpdatePlot3D = lambda pres_id, params: __UpdateGENERIC("Plot3D", pres_id, params)
+UpdateStreamLines = lambda pres_id, params: __UpdateGENERIC("StreamLines", pres_id, params)
+UpdateCutSegment = lambda pres_id, params: __UpdateGENERIC("CutSegment", pres_id, params)
+
+
+def get_bound_project(bound_box, planeNormal):
+  """Get bounds projection"""
+  EPS = 1E-3
+
+  def dot_product(a, b):
+    """Dot product of two 3-vectors."""
+    dot = a[0] * b[0] + a[1] * b[1] + a[2] * b[2]
+    return dot
+
+  bound_points = [[bound_box[1], bound_box[2], bound_box[4]],
+                  [bound_box[0], bound_box[3], bound_box[4]],
+                  [bound_box[0], bound_box[2], bound_box[5]]]
+  print(bound_points)
+
+  bound_prj = [0.0, 0.0, 0.0]
+
+  for i in range(0, 3):
+    tmp = dot_product(planeNormal, bound_points[i])
+    bound_prj[i] = tmp
+
+  return bound_prj
+
+
+def GetPositions(obj, planeNormal, displacement):
+  """Compute plane positions."""
+  positions = []
+  bounds = obj.GetDataInformation().GetBounds()
+  bound_prj = get_bound_project(bounds, planeNormal)
+  positions = [i * displacement for i in bound_prj]
+  return positions
+
+def IsPlanarObj(obj):
+  """
+  Check if the given input is planar
+  """
+  bounds_info = obj.GetDataInformation().GetBounds()
+  FLT_MIN = 1E-37
+
+  if (abs(bounds_info[0] - bounds_info[1]) <= FLT_MIN or
+    abs(bounds_info[2] - bounds_info[3]) <= FLT_MIN or
+    abs(bounds_info[4] - bounds_info[5]) <= FLT_MIN):
+    return True
+
+  return False
+
+def GetPlaneNormalVector(obj):
+  """Get Normal Vector"""
+  bounds = obj.GetDataInformation().GetBounds()
+  FLT_MIN = 1E-37
+
+  if abs(bounds[4] - bounds[5]) <= FLT_MIN:
+    p0 = [bounds[0], bounds[2], 0]
+    p1 = [bounds[1], bounds[2], 0]
+    p2 = [bounds[0], bounds[3], 0]
+  elif abs(bounds[2] - bounds[3]) <= FLT_MIN:
+    p0 = [bounds[0], 0, bounds[4]]
+    p1 = [bounds[1], 0, bounds[4]]
+    p2 = [bounds[0], 0, bounds[5]]
+  else:
+    p0 = [0, bounds[2], bounds[4]]
+    p1 = [0, bounds[3], bounds[4]]
+    p2 = [0, bounds[2], bounds[5]]
+  
+  x0, y0, z0 = p0
+  x1, y1, z1 = p1
+  x2, y2, z2 = p2
+  ux, uy, uz = u = [x1-x0, y1-y0, z1-z0]
+  vx, vy, vz = v = [x2-x0, y2-y0, z2-z0]
+  u_cross_v = [uy*vz-uz*vy, uz*vx-ux*vz, ux*vy-uy*vx]
+
+  return u_cross_v
 
 def ComputeCellAverageSize(obj):
   """
@@ -237,3 +440,27 @@ def SelectSourceField(obj, meshName, fieldName, discretisation):
       obj.AllArrays = [t]
       return
   raise Exception("Field not found")
+
+
+def FindOrCreateView(vtype):
+  """
+  Find and active or create a view with type vtype
+  """
+  result = None
+  view = pvs.GetActiveView()
+  if not view:
+    result = pvs.GetActiveViewOrCreate(vtype)
+  else:  
+    if view.SMProxy.GetXMLName() == vtype:
+      result = view
+    else:
+      layout1 = pvs.GetLayout(view)
+      views = pvs.GetViewsInLayout(layout1)
+      view = next((v for v in views if v.SMProxy.GetXMLName() == vtype), None)
+      if view is None:
+        result = pvs.CreateView(vtype)
+        pvs.AssignViewToLayout(view=view, layout=layout1, hint=0)
+      else:
+        pvs.SetActiveView(view)
+        result = view
+  return result
\ No newline at end of file