1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-31 11:15:31 +03:00
occt/src/RWStepGeom/RWStepGeom_RWCartesianTransformationOperator.cxx

164 lines
4.4 KiB
C++

// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// 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 <Interface_EntityIterator.hxx>
#include <RWStepGeom_RWCartesianTransformationOperator.hxx>
#include <StepData_StepReaderData.hxx>
#include <StepData_StepWriter.hxx>
#include <StepGeom_CartesianPoint.hxx>
#include <StepGeom_CartesianTransformationOperator.hxx>
#include <StepGeom_Direction.hxx>
RWStepGeom_RWCartesianTransformationOperator::RWStepGeom_RWCartesianTransformationOperator () {}
void RWStepGeom_RWCartesianTransformationOperator::ReadStep
(const Handle(StepData_StepReaderData)& data,
const Standard_Integer num,
Handle(Interface_Check)& ach,
const Handle(StepGeom_CartesianTransformationOperator)& ent) const
{
// 29 MAI 1997
// PATCH CKY : functionally_defined_transformation est aussi supertype, avec
// deux champs STRING. Pour bien faire, les ajouter. Au minimum, les faire
// sauter. On attend 7 champs au lieu de 5 et on commence au champ 3
// --- Number of Parameter Control ---
if (!data->CheckNbParams(num,7,ach,"cartesian_transformation_operator")) return;
// --- inherited field : name ---
Handle(TCollection_HAsciiString) aName;
//szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
data->ReadString (num,3,"name",ach,aName);
// --- own field : axis1 ---
Handle(StepGeom_Direction) aAxis1;
Standard_Boolean hasAaxis1 = Standard_True;
if (data->IsParamDefined(num,4)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
data->ReadEntity(num, 4,"axis1", ach, STANDARD_TYPE(StepGeom_Direction), aAxis1);
}
else {
hasAaxis1 = Standard_False;
aAxis1.Nullify();
}
// --- own field : axis2 ---
Handle(StepGeom_Direction) aAxis2;
Standard_Boolean hasAaxis2 = Standard_True;
if (data->IsParamDefined(num,5)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
data->ReadEntity(num, 5,"axis2", ach, STANDARD_TYPE(StepGeom_Direction), aAxis2);
}
else {
hasAaxis2 = Standard_False;
aAxis2.Nullify();
}
// --- own field : localOrigin ---
Handle(StepGeom_CartesianPoint) aLocalOrigin;
//szv#4:S4163:12Mar99 `Standard_Boolean stat4 =` not needed
data->ReadEntity(num, 6,"local_origin", ach, STANDARD_TYPE(StepGeom_CartesianPoint), aLocalOrigin);
// --- own field : scale ---
Standard_Real aScale;
Standard_Boolean hasAscale = Standard_True;
if (data->IsParamDefined(num,7)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat5 =` not needed
data->ReadReal (num,7,"scale",ach,aScale);
}
else {
hasAscale = Standard_False;
aScale = 0.;
}
//--- Initialisation of the read entity ---
ent->Init(aName, hasAaxis1, aAxis1, hasAaxis2, aAxis2, aLocalOrigin, hasAscale, aScale);
}
void RWStepGeom_RWCartesianTransformationOperator::WriteStep
(StepData_StepWriter& SW,
const Handle(StepGeom_CartesianTransformationOperator)& ent) const
{
// --- inherited field name ---
// PATCH CKY : name depuis geometric_representation_item
// et name + descr depuis functionally_defined_transformation
SW.Send(ent->Name());
SW.Send(ent->Name());
SW.Send(ent->Name());
// --- own field : axis1 ---
Standard_Boolean hasAaxis1 = ent->HasAxis1();
if (hasAaxis1) {
SW.Send(ent->Axis1());
}
else {
SW.SendUndef();
}
// --- own field : axis2 ---
Standard_Boolean hasAaxis2 = ent->HasAxis2();
if (hasAaxis2) {
SW.Send(ent->Axis2());
}
else {
SW.SendUndef();
}
// --- own field : localOrigin ---
SW.Send(ent->LocalOrigin());
// --- own field : scale ---
Standard_Boolean hasAscale = ent->HasScale();
if (hasAscale) {
SW.Send(ent->Scale());
}
else {
SW.SendUndef();
}
}
void RWStepGeom_RWCartesianTransformationOperator::Share(const Handle(StepGeom_CartesianTransformationOperator)& ent, Interface_EntityIterator& iter) const
{
if (ent->HasAxis1()) {
iter.GetOneItem(ent->Axis1());
}
if (ent->HasAxis2()) {
iter.GetOneItem(ent->Axis2());
}
iter.GetOneItem(ent->LocalOrigin());
}