geom/src/STLPlugin/STLPlugin_IOperations_i.cc

113 lines
3.9 KiB
C++

// Copyright (C) 2014 CEA/DEN, EDF R&D, OPEN CASCADE
//
// 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
//
// internal includes
#include "STLPlugin_IOperations_i.hh"
#include "STLPlugin_IOperations.hxx"
// KERNEL includes
#include <utilities.h>
//=============================================================================
/*!
* constructor:
*/
//=============================================================================
STLPlugin_IOperations_i::STLPlugin_IOperations_i( PortableServer::POA_ptr thePOA,
GEOM::GEOM_Gen_ptr theEngine,
STLPlugin_IOperations* theImpl )
:GEOM_IOperations_i( thePOA, theEngine, theImpl )
{
MESSAGE( "STLPlugin_IOperations_i::STLPlugin_IOperations_i" );
}
//=============================================================================
/*!
* destructor
*/
//=============================================================================
STLPlugin_IOperations_i::~STLPlugin_IOperations_i()
{
MESSAGE( "STLPlugin_IOperations_i::~STLPlugin_IOperations_i" );
}
//=============================================================================
/*!
* ExportSTL
* Export a shape to STL format
* \param theOriginal The shape to export
* \param theIsASCII The format of the exported file (ASCII or Binary)
* \param theFileName The name of the exported file
* \param theDeflection The deflection of the exported shape
*/
//=============================================================================
void STLPlugin_IOperations_i::ExportSTL( GEOM::GEOM_Object_ptr theOriginal,
const char* theFileName,
const bool theIsASCII,
const double theDeflection,
const bool theIsRelative )
{
// duplicate the original shape
GEOM::GEOM_Object_var aGEOMObject = GEOM::GEOM_Object::_duplicate( theOriginal );
//Set a not done flag
GetOperations()->SetNotDone();
//Get the reference shape
Handle(GEOM_Object) anOriginal = GetObjectImpl( theOriginal );
if (anOriginal.IsNull()) return;
GetOperations()->ExportSTL( anOriginal, theFileName, theIsASCII, theDeflection, theIsRelative );
}
//=============================================================================
/*!
* ImportSTL
* Import a shape from STL format
* \param theFileName The name of the file to import
* \return List of GEOM_Objects, containing the created shape and propagation groups.
*/
//=============================================================================
GEOM::ListOfGO* STLPlugin_IOperations_i::ImportSTL( const char* theFileName )
{
GEOM::ListOfGO_var aSeq = new GEOM::ListOfGO;
//Set a not done flag
GetOperations()->SetNotDone();
//Import the shape from the file
Handle(TColStd_HSequenceOfTransient) aHSeq = GetOperations()->ImportSTL( theFileName );
if( !GetOperations()->IsDone() || aHSeq.IsNull() )
return aSeq._retn();
// Copy created objects.
Standard_Integer aLength = aHSeq->Length();
aSeq->length( aLength );
for( Standard_Integer i = 1; i <= aLength; i++ )
aSeq[i-1] = GetObject( Handle(GEOM_Object)::DownCast( aHSeq->Value(i) ) );
return aSeq._retn();
}
STLPlugin_IOperations* STLPlugin_IOperations_i::GetOperations()
{
return (STLPlugin_IOperations*)GetImpl();
}