X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2FExchangePlugin%2FExchangePlugin_Tools.cpp;h=591d467c6a8cd3e825394bbb6de70dfcecff33ef;hb=1ae1787a61b0d13cc78d34200e9f2513d32ed382;hp=5a65fc1dabe8cd3b01adebced56f97ab49d88d7e;hpb=5decc02f4892227b0df11422e67d8b0d23272f6e;p=modules%2Fshaper.git diff --git a/src/ExchangePlugin/ExchangePlugin_Tools.cpp b/src/ExchangePlugin/ExchangePlugin_Tools.cpp index 5a65fc1da..591d467c6 100644 --- a/src/ExchangePlugin/ExchangePlugin_Tools.cpp +++ b/src/ExchangePlugin/ExchangePlugin_Tools.cpp @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: ExchangePlugin_Tools.cpp -// Created: May 15, 2015 -// Author: Sergey POKHODENKO +// Copyright (C) 2014-2021 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include @@ -20,31 +33,60 @@ std::list ExchangePlugin_Tools::split(const std::string& theString, std::string ExchangePlugin_Tools::selectionType2xaoDimension(const std::string& theType) { - if (theType == "Vertices") + if (theType == "Vertices" || theType == "vertex" || theType == "VERTEX") return "vertex"; - else if (theType == "Edges") + else if (theType == "Edges" || theType == "edge" || theType == "EDGE") return "edge"; - else if (theType == "Faces") + else if (theType == "Faces" || theType == "face" || theType == "FACE") return "face"; - else if (theType == "Solids") + else if (theType == "Solids" || theType == "solid" || theType == "SOLID") return "solid"; + else if (theType == "Part" || theType == "part" || theType == "PART") + return "whole"; return std::string(); } std::string ExchangePlugin_Tools::xaoDimension2selectionType(const std::string& theDimension) { -// return theDimension; - if (theDimension == "vertex") - return "Vertices"; + return "vertex"; else if (theDimension == "edge") - return "Edges"; + return "edge"; else if (theDimension == "face") - return "Faces"; + return "face"; else if (theDimension == "solid") - return "Solids"; + return "solid"; return std::string(); } + +std::string ExchangePlugin_Tools::valuesType2xaoType( + const ModelAPI_AttributeTables::ValueType& theType) +{ + switch(theType) { + case ModelAPI_AttributeTables::BOOLEAN: + return "boolean"; + case ModelAPI_AttributeTables::INTEGER: + return "integer"; + case ModelAPI_AttributeTables::DOUBLE: + return "double"; + case ModelAPI_AttributeTables::STRING: + return "string"; + } + return ""; +} + +ModelAPI_AttributeTables::ValueType ExchangePlugin_Tools::xaoType2valuesType(std::string theType) +{ + if (theType == "boolean") + return ModelAPI_AttributeTables::BOOLEAN; + if (theType == "integer") + return ModelAPI_AttributeTables::INTEGER; + if (theType == "double") + return ModelAPI_AttributeTables::DOUBLE; + if (theType == "string") + return ModelAPI_AttributeTables::STRING; + return ModelAPI_AttributeTables::DOUBLE; +}