mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-14 13:30:48 +03:00
0031388: Data Exchange - support kinematics data in STEP format
- add new STEP entities.
This commit is contained in:
@@ -92,10 +92,14 @@ RWStepRepr_RWRepresentation.cxx
|
||||
RWStepRepr_RWRepresentation.hxx
|
||||
RWStepRepr_RWRepresentationContext.cxx
|
||||
RWStepRepr_RWRepresentationContext.hxx
|
||||
RWStepRepr_RWRepresentationContextReference.cxx
|
||||
RWStepRepr_RWRepresentationContextReference.hxx
|
||||
RWStepRepr_RWRepresentationItem.cxx
|
||||
RWStepRepr_RWRepresentationItem.hxx
|
||||
RWStepRepr_RWRepresentationMap.cxx
|
||||
RWStepRepr_RWRepresentationMap.hxx
|
||||
RWStepRepr_RWRepresentationReference.cxx
|
||||
RWStepRepr_RWRepresentationReference.hxx
|
||||
RWStepRepr_RWRepresentationRelationship.cxx
|
||||
RWStepRepr_RWRepresentationRelationship.hxx
|
||||
RWStepRepr_RWRepresentationRelationshipWithTransformation.cxx
|
||||
|
@@ -0,0 +1,79 @@
|
||||
// Created on : Sat May 02 12:41:14 2020
|
||||
// Created by: Irina KRYLOVA
|
||||
// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V3.0
|
||||
// Copyright (c) Open CASCADE 2020
|
||||
//
|
||||
// This file is part of Open CASCADE Technology software library.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or modify it under
|
||||
// the terms of the GNU Lesser General Public License version 2.1 as published
|
||||
// by the Free Software Foundation, with special exception defined in the file
|
||||
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
||||
// distribution for complete text of the license and disclaimer of any warranty.
|
||||
//
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
#include <RWStepRepr_RWRepresentationContextReference.hxx>
|
||||
|
||||
#include <Interface_EntityIterator.hxx>
|
||||
#include <StepData_StepReaderData.hxx>
|
||||
#include <StepData_StepWriter.hxx>
|
||||
#include <StepRepr_RepresentationContextReference.hxx>
|
||||
#include <TCollection_HAsciiString.hxx>
|
||||
|
||||
//=======================================================================
|
||||
//function : RWStepRepr_RWRepresentationContextReference
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
RWStepRepr_RWRepresentationContextReference::RWStepRepr_RWRepresentationContextReference() {}
|
||||
|
||||
|
||||
//=======================================================================
|
||||
//function : ReadStep
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
void RWStepRepr_RWRepresentationContextReference::ReadStep (const Handle(StepData_StepReaderData)& theData,
|
||||
const Standard_Integer theNum,
|
||||
Handle(Interface_Check)& theAch,
|
||||
const Handle(StepRepr_RepresentationContextReference)& theEnt) const
|
||||
{
|
||||
// Check number of parameters
|
||||
if ( ! theData->CheckNbParams(theNum,1,theAch,"representation_context_reference") ) return;
|
||||
|
||||
// Own fields of RepresentationContextReference
|
||||
|
||||
Handle(TCollection_HAsciiString) aContextIdentifier;
|
||||
theData->ReadString (theNum, 1, "context_identifier", theAch, aContextIdentifier);
|
||||
|
||||
// Initialize entity
|
||||
theEnt->Init(aContextIdentifier);
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : WriteStep
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
void RWStepRepr_RWRepresentationContextReference::WriteStep (StepData_StepWriter& theSW,
|
||||
const Handle(StepRepr_RepresentationContextReference)& theEnt) const
|
||||
{
|
||||
|
||||
// Own fields of RepresentationContextReference
|
||||
|
||||
theSW.Send (theEnt->ContextIdentifier());
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : Share
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
void RWStepRepr_RWRepresentationContextReference::Share (const Handle(StepRepr_RepresentationContextReference)& /*theEnt*/,
|
||||
Interface_EntityIterator& /*iter*/) const
|
||||
{
|
||||
|
||||
// Own fields of RepresentationContextReference
|
||||
}
|
@@ -0,0 +1,46 @@
|
||||
// Created on : Sat May 02 12:41:14 2020
|
||||
// Created by: Irina KRYLOVA
|
||||
// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V3.0
|
||||
// Copyright (c) Open CASCADE 2020
|
||||
//
|
||||
// This file is part of Open CASCADE Technology software library.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or modify it under
|
||||
// the terms of the GNU Lesser General Public License version 2.1 as published
|
||||
// by the Free Software Foundation, with special exception defined in the file
|
||||
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
||||
// distribution for complete text of the license and disclaimer of any warranty.
|
||||
//
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
#ifndef _RWStepRepr_RWRepresentationContextReference_HeaderFile_
|
||||
#define _RWStepRepr_RWRepresentationContextReference_HeaderFile_
|
||||
|
||||
#include <Standard.hxx>
|
||||
#include <Standard_DefineAlloc.hxx>
|
||||
#include <Standard_Handle.hxx>
|
||||
|
||||
class StepData_StepReaderData;
|
||||
class Interface_Check;
|
||||
class StepData_StepWriter;
|
||||
class Interface_EntityIterator;
|
||||
class StepRepr_RepresentationContextReference;
|
||||
|
||||
//! Read & Write tool for RepresentationContextReference
|
||||
class RWStepRepr_RWRepresentationContextReference
|
||||
{
|
||||
public:
|
||||
|
||||
DEFINE_STANDARD_ALLOC
|
||||
|
||||
Standard_EXPORT RWStepRepr_RWRepresentationContextReference();
|
||||
|
||||
Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData, const Standard_Integer theNum, Handle(Interface_Check)& theAch, const Handle(StepRepr_RepresentationContextReference)& theEnt) const;
|
||||
|
||||
Standard_EXPORT void WriteStep(StepData_StepWriter& SW, const Handle(StepRepr_RepresentationContextReference)& theEnt) const;
|
||||
|
||||
Standard_EXPORT void Share(const Handle(StepRepr_RepresentationContextReference)& theEnt, Interface_EntityIterator& iter) const;
|
||||
|
||||
};
|
||||
#endif // _RWStepRepr_RWRepresentationContextReference_HeaderFile_
|
88
src/RWStepRepr/RWStepRepr_RWRepresentationReference.cxx
Normal file
88
src/RWStepRepr/RWStepRepr_RWRepresentationReference.cxx
Normal file
@@ -0,0 +1,88 @@
|
||||
// Created on : Sat May 02 12:41:14 2020
|
||||
// Created by: Irina KRYLOVA
|
||||
// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V3.0
|
||||
// Copyright (c) Open CASCADE 2020
|
||||
//
|
||||
// This file is part of Open CASCADE Technology software library.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or modify it under
|
||||
// the terms of the GNU Lesser General Public License version 2.1 as published
|
||||
// by the Free Software Foundation, with special exception defined in the file
|
||||
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
||||
// distribution for complete text of the license and disclaimer of any warranty.
|
||||
//
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
#include <RWStepRepr_RWRepresentationReference.hxx>
|
||||
|
||||
#include <Interface_EntityIterator.hxx>
|
||||
#include <StepData_StepReaderData.hxx>
|
||||
#include <StepData_StepWriter.hxx>
|
||||
#include <StepRepr_RepresentationReference.hxx>
|
||||
#include <TCollection_HAsciiString.hxx>
|
||||
#include <StepRepr_RepresentationContextReference.hxx>
|
||||
|
||||
//=======================================================================
|
||||
//function : RWStepRepr_RWRepresentationReference
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
RWStepRepr_RWRepresentationReference::RWStepRepr_RWRepresentationReference() {}
|
||||
|
||||
|
||||
//=======================================================================
|
||||
//function : ReadStep
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
void RWStepRepr_RWRepresentationReference::ReadStep (const Handle(StepData_StepReaderData)& theData,
|
||||
const Standard_Integer theNum,
|
||||
Handle(Interface_Check)& theAch,
|
||||
const Handle(StepRepr_RepresentationReference)& theEnt) const
|
||||
{
|
||||
// Check number of parameters
|
||||
if ( ! theData->CheckNbParams(theNum,2,theAch,"representation_reference") ) return;
|
||||
|
||||
// Own fields of RepresentationReference
|
||||
|
||||
Handle(TCollection_HAsciiString) aId;
|
||||
theData->ReadString (theNum, 1, "id", theAch, aId);
|
||||
|
||||
Handle(StepRepr_RepresentationContextReference) aContextOfItems;
|
||||
theData->ReadEntity (theNum, 2, "context_of_items", theAch, STANDARD_TYPE(StepRepr_RepresentationContextReference), aContextOfItems);
|
||||
|
||||
// Initialize entity
|
||||
theEnt->Init(aId,
|
||||
aContextOfItems);
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : WriteStep
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
void RWStepRepr_RWRepresentationReference::WriteStep (StepData_StepWriter& SW,
|
||||
const Handle(StepRepr_RepresentationReference)& theEnt) const
|
||||
{
|
||||
|
||||
// Own fields of RepresentationReference
|
||||
|
||||
SW.Send (theEnt->Id());
|
||||
|
||||
SW.Send (theEnt->ContextOfItems());
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : Share
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
void RWStepRepr_RWRepresentationReference::Share (const Handle(StepRepr_RepresentationReference)& theEnt,
|
||||
Interface_EntityIterator& iter) const
|
||||
{
|
||||
|
||||
// Own fields of RepresentationReference
|
||||
|
||||
iter.AddItem (theEnt->ContextOfItems());
|
||||
}
|
46
src/RWStepRepr/RWStepRepr_RWRepresentationReference.hxx
Normal file
46
src/RWStepRepr/RWStepRepr_RWRepresentationReference.hxx
Normal file
@@ -0,0 +1,46 @@
|
||||
// Created on : Sat May 02 12:41:14 2020
|
||||
// Created by: Irina KRYLOVA
|
||||
// Generator: Express (EXPRESS -> CASCADE/XSTEP Translator) V3.0
|
||||
// Copyright (c) Open CASCADE 2020
|
||||
//
|
||||
// This file is part of Open CASCADE Technology software library.
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or modify it under
|
||||
// the terms of the GNU Lesser General Public License version 2.1 as published
|
||||
// by the Free Software Foundation, with special exception defined in the file
|
||||
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
||||
// distribution for complete text of the license and disclaimer of any warranty.
|
||||
//
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
#ifndef _RWStepRepr_RWRepresentationReference_HeaderFile_
|
||||
#define _RWStepRepr_RWRepresentationReference_HeaderFile_
|
||||
|
||||
#include <Standard.hxx>
|
||||
#include <Standard_DefineAlloc.hxx>
|
||||
#include <Standard_Handle.hxx>
|
||||
|
||||
class StepData_StepReaderData;
|
||||
class Interface_Check;
|
||||
class StepData_StepWriter;
|
||||
class Interface_EntityIterator;
|
||||
class StepRepr_RepresentationReference;
|
||||
|
||||
//! Read & Write tool for RepresentationReference
|
||||
class RWStepRepr_RWRepresentationReference
|
||||
{
|
||||
public:
|
||||
|
||||
DEFINE_STANDARD_ALLOC
|
||||
|
||||
Standard_EXPORT RWStepRepr_RWRepresentationReference();
|
||||
|
||||
Standard_EXPORT void ReadStep(const Handle(StepData_StepReaderData)& theData, const Standard_Integer theNum, Handle(Interface_Check)& theAch, const Handle(StepRepr_RepresentationReference)& theEnt) const;
|
||||
|
||||
Standard_EXPORT void WriteStep(StepData_StepWriter& SW, const Handle(StepRepr_RepresentationReference)& theEnt) const;
|
||||
|
||||
Standard_EXPORT void Share(const Handle(StepRepr_RepresentationReference)& theEnt, Interface_EntityIterator& iter) const;
|
||||
|
||||
};
|
||||
#endif // _RWStepRepr_RWRepresentationReference_HeaderFile_
|
Reference in New Issue
Block a user