Salome HOME
ace49808f83cff12d39e235cca94083c0d611ff7
[modules/visu.git] / src / CONVERTOR / VISU_Convertor.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  VISU OBJECT : interactive object for VISU entities implementation
23 //  File:    VISU_Convertor.cxx
24 //  Author:  Alexey PETROV
25 //  Module : VISU
26 //
27 #include "VISU_Convertor.hxx"
28 #include "VISU_ConvertorUtils.hxx"
29
30 #include <QString>
31
32 #include <utility>
33
34
35 //---------------------------------------------------------------
36 VISU_Convertor
37 ::VISU_Convertor():
38   myIsDone(false)
39 {}
40
41
42 //---------------------------------------------------------------
43 const std::string& 
44 VISU_Convertor
45 ::GetName()
46 {
47   return myName;
48 }
49
50
51 //---------------------------------------------------------------
52 int
53 VISU_Convertor
54 ::IsDone() const 
55 {
56   return myIsDone; 
57 }
58
59 //---------------------------------------------------------------
60 const VISU::TMeshMap& 
61 VISU_Convertor
62 ::GetMeshMap() 
63
64   return myMeshMap;
65 }
66
67
68 //---------------------------------------------------------------
69 std::string
70 VISU_Convertor
71 ::GenerateName(const VISU::TTime& aTime)
72 {
73   static QString aName;
74   const std::string aUnits = aTime.second, tmp(aUnits.size(), ' ');
75   if(aUnits == "" || aUnits == tmp)
76     aName.sprintf("%g, -", aTime.first);
77   else
78     aName.sprintf("%g, %s", aTime.first, aTime.second.c_str());
79   aName = aName.simplified();
80   return (const char*)aName.toLatin1();
81 }
82
83
84 //---------------------------------------------------------------
85 std::string
86 VISU_Convertor
87 ::GenerateName(const std::string& theName, 
88                unsigned int theTimeId) 
89 {
90   static QString aName;
91   aName = QString(theName.c_str()).simplified();
92   int iEnd = strlen((const char*)aName.toLatin1());
93   static int VtkHighLevelLength = 12; //25
94   if(iEnd > VtkHighLevelLength) iEnd = VtkHighLevelLength;
95   char* aNewName = new char[iEnd+1];
96   aNewName[iEnd] = '\0';
97   strncpy(aNewName, (const char*)aName.toLatin1(), iEnd);
98   std::replace(aNewName, aNewName + iEnd, ' ', '_');
99   if(true || theTimeId == 0)
100     aName = aNewName;
101   else
102     aName.sprintf("%s_%d",aNewName,theTimeId);
103   delete[] aNewName;
104   return (const char*)aName.toLatin1();
105 }
106
107
108 //---------------------------------------------------------------