mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
292 lines
8.9 KiB
C++
292 lines
8.9 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 <IGESData_IGESDumper.hxx>
|
|
#include <IGESData_IGESEntity.hxx>
|
|
#include <IGESGeom_Boundary.hxx>
|
|
#include <IGESGeom_BoundedSurface.hxx>
|
|
#include <IGESGeom_BSplineCurve.hxx>
|
|
#include <IGESGeom_BSplineSurface.hxx>
|
|
#include <IGESGeom_CircularArc.hxx>
|
|
#include <IGESGeom_CompositeCurve.hxx>
|
|
#include <IGESGeom_ConicArc.hxx>
|
|
#include <IGESGeom_CopiousData.hxx>
|
|
#include <IGESGeom_CurveOnSurface.hxx>
|
|
#include <IGESGeom_Direction.hxx>
|
|
#include <IGESGeom_Flash.hxx>
|
|
#include <IGESGeom_Line.hxx>
|
|
#include <IGESGeom_OffsetCurve.hxx>
|
|
#include <IGESGeom_OffsetSurface.hxx>
|
|
#include <IGESGeom_Plane.hxx>
|
|
#include <IGESGeom_Point.hxx>
|
|
#include <IGESGeom_RuledSurface.hxx>
|
|
#include <IGESGeom_SpecificModule.hxx>
|
|
#include <IGESGeom_SplineCurve.hxx>
|
|
#include <IGESGeom_SplineSurface.hxx>
|
|
#include <IGESGeom_SurfaceOfRevolution.hxx>
|
|
#include <IGESGeom_TabulatedCylinder.hxx>
|
|
#include <IGESGeom_ToolBoundary.hxx>
|
|
#include <IGESGeom_ToolBoundedSurface.hxx>
|
|
#include <IGESGeom_ToolBSplineCurve.hxx>
|
|
#include <IGESGeom_ToolBSplineSurface.hxx>
|
|
#include <IGESGeom_ToolCircularArc.hxx>
|
|
#include <IGESGeom_ToolCompositeCurve.hxx>
|
|
#include <IGESGeom_ToolConicArc.hxx>
|
|
#include <IGESGeom_ToolCopiousData.hxx>
|
|
#include <IGESGeom_ToolCurveOnSurface.hxx>
|
|
#include <IGESGeom_ToolDirection.hxx>
|
|
#include <IGESGeom_ToolFlash.hxx>
|
|
#include <IGESGeom_ToolLine.hxx>
|
|
#include <IGESGeom_ToolOffsetCurve.hxx>
|
|
#include <IGESGeom_ToolOffsetSurface.hxx>
|
|
#include <IGESGeom_ToolPlane.hxx>
|
|
#include <IGESGeom_ToolPoint.hxx>
|
|
#include <IGESGeom_ToolRuledSurface.hxx>
|
|
#include <IGESGeom_ToolSplineCurve.hxx>
|
|
#include <IGESGeom_ToolSplineSurface.hxx>
|
|
#include <IGESGeom_ToolSurfaceOfRevolution.hxx>
|
|
#include <IGESGeom_ToolTabulatedCylinder.hxx>
|
|
#include <IGESGeom_ToolTransformationMatrix.hxx>
|
|
#include <IGESGeom_ToolTrimmedSurface.hxx>
|
|
#include <IGESGeom_TransformationMatrix.hxx>
|
|
#include <IGESGeom_TrimmedSurface.hxx>
|
|
#include <Interface_Macros.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(IGESGeom_SpecificModule,IGESData_SpecificModule)
|
|
|
|
// Each Module is attached to a Protocol : it must interpret Case Numbers
|
|
// (arguments <CN> of various methods) in accordance to values returned by
|
|
// the method TypeNumber from this Protocol
|
|
IGESGeom_SpecificModule::IGESGeom_SpecificModule() { }
|
|
|
|
|
|
void IGESGeom_SpecificModule::OwnDump
|
|
(const Standard_Integer CN, const Handle(IGESData_IGESEntity)& ent,
|
|
const IGESData_IGESDumper& dumper, Standard_OStream& S,
|
|
const Standard_Integer own) const
|
|
{
|
|
switch (CN) {
|
|
case 1 : {
|
|
DeclareAndCast(IGESGeom_BSplineCurve,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolBSplineCurve tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 2 : {
|
|
DeclareAndCast(IGESGeom_BSplineSurface,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolBSplineSurface tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 3 : {
|
|
DeclareAndCast(IGESGeom_Boundary,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolBoundary tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 4 : {
|
|
DeclareAndCast(IGESGeom_BoundedSurface,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolBoundedSurface tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 5 : {
|
|
DeclareAndCast(IGESGeom_CircularArc,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolCircularArc tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 6 : {
|
|
DeclareAndCast(IGESGeom_CompositeCurve,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolCompositeCurve tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 7 : {
|
|
DeclareAndCast(IGESGeom_ConicArc,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolConicArc tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 8 : {
|
|
DeclareAndCast(IGESGeom_CopiousData,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolCopiousData tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 9 : {
|
|
DeclareAndCast(IGESGeom_CurveOnSurface,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolCurveOnSurface tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 10 : {
|
|
DeclareAndCast(IGESGeom_Direction,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolDirection tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 11 : {
|
|
DeclareAndCast(IGESGeom_Flash,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolFlash tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 12 : {
|
|
DeclareAndCast(IGESGeom_Line,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolLine tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 13 : {
|
|
DeclareAndCast(IGESGeom_OffsetCurve,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolOffsetCurve tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 14 : {
|
|
DeclareAndCast(IGESGeom_OffsetSurface,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolOffsetSurface tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 15 : {
|
|
DeclareAndCast(IGESGeom_Plane,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolPlane tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 16 : {
|
|
DeclareAndCast(IGESGeom_Point,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolPoint tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 17 : {
|
|
DeclareAndCast(IGESGeom_RuledSurface,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolRuledSurface tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 18 : {
|
|
DeclareAndCast(IGESGeom_SplineCurve,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolSplineCurve tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 19 : {
|
|
DeclareAndCast(IGESGeom_SplineSurface,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolSplineSurface tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 20 : {
|
|
DeclareAndCast(IGESGeom_SurfaceOfRevolution,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolSurfaceOfRevolution tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 21 : {
|
|
DeclareAndCast(IGESGeom_TabulatedCylinder,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolTabulatedCylinder tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 22 : {
|
|
DeclareAndCast(IGESGeom_TransformationMatrix,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolTransformationMatrix tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
case 23 : {
|
|
DeclareAndCast(IGESGeom_TrimmedSurface,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESGeom_ToolTrimmedSurface tool;
|
|
tool.OwnDump(anent,dumper,S,own);
|
|
}
|
|
break;
|
|
default : break;
|
|
}
|
|
}
|
|
|
|
|
|
Standard_Boolean IGESGeom_SpecificModule::OwnCorrect
|
|
(const Standard_Integer CN, const Handle(IGESData_IGESEntity)& ent) const
|
|
{
|
|
// Applies only on some types
|
|
switch (CN) {
|
|
case 3 : {
|
|
DeclareAndCast(IGESGeom_Boundary,anent,ent);
|
|
if (anent.IsNull()) break;
|
|
IGESGeom_ToolBoundary tool;
|
|
return tool.OwnCorrect(anent);
|
|
}
|
|
case 7 : {
|
|
DeclareAndCast(IGESGeom_ConicArc,anent,ent);
|
|
if (anent.IsNull()) break;
|
|
IGESGeom_ToolConicArc tool;
|
|
return tool.OwnCorrect(anent);
|
|
}
|
|
case 9 : {
|
|
DeclareAndCast(IGESGeom_Boundary,anent,ent);
|
|
if (anent.IsNull()) break;
|
|
IGESGeom_ToolBoundary tool;
|
|
return tool.OwnCorrect(anent);
|
|
}
|
|
case 11 : {
|
|
DeclareAndCast(IGESGeom_Flash,anent,ent);
|
|
if (anent.IsNull()) break;
|
|
IGESGeom_ToolFlash tool;
|
|
return tool.OwnCorrect(anent);
|
|
}
|
|
case 13 : {
|
|
DeclareAndCast(IGESGeom_OffsetCurve,anent,ent);
|
|
if (anent.IsNull()) break;
|
|
IGESGeom_ToolOffsetCurve tool;
|
|
return tool.OwnCorrect(anent);
|
|
}
|
|
case 22 : {
|
|
DeclareAndCast(IGESGeom_TransformationMatrix,anent,ent);
|
|
if (anent.IsNull()) break;
|
|
IGESGeom_ToolTransformationMatrix tool;
|
|
return tool.OwnCorrect(anent);
|
|
}
|
|
default : break;
|
|
}
|
|
return Standard_False;
|
|
}
|