mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-01 10:26:12 +03:00
394 lines
12 KiB
C++
Executable File
394 lines
12 KiB
C++
Executable File
// Copyright (c) 1999-2012 OPEN CASCADE SAS
|
|
//
|
|
// The content of this file is subject to the Open CASCADE Technology Public
|
|
// License Version 6.5 (the "License"). You may not use the content of this file
|
|
// except in compliance with the License. Please obtain a copy of the License
|
|
// at http://www.opencascade.org and read it completely before using this file.
|
|
//
|
|
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
|
|
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
|
|
//
|
|
// The Original Code and all software distributed under the License is
|
|
// distributed on an "AS IS" basis, without warranty of any kind, and the
|
|
// Initial Developer hereby disclaims all such warranties, including without
|
|
// limitation, any warranties of merchantability, fitness for a particular
|
|
// purpose or non-infringement. Please see the License for the specific terms
|
|
// and conditions governing the rights and limitations under the License.
|
|
|
|
#include <IGESAppli_ReadWriteModule.ixx>
|
|
#include <Interface_Macros.hxx>
|
|
|
|
#include <IGESAppli_DrilledHole.hxx>
|
|
#include <IGESAppli_ElementResults.hxx>
|
|
#include <IGESAppli_FiniteElement.hxx>
|
|
#include <IGESAppli_Flow.hxx>
|
|
#include <IGESAppli_FlowLineSpec.hxx>
|
|
#include <IGESAppli_LevelFunction.hxx>
|
|
#include <IGESAppli_LevelToPWBLayerMap.hxx>
|
|
#include <IGESAppli_LineWidening.hxx>
|
|
#include <IGESAppli_NodalConstraint.hxx>
|
|
#include <IGESAppli_NodalDisplAndRot.hxx>
|
|
#include <IGESAppli_NodalResults.hxx>
|
|
#include <IGESAppli_Node.hxx>
|
|
#include <IGESAppli_PWBArtworkStackup.hxx>
|
|
#include <IGESAppli_PWBDrilledHole.hxx>
|
|
#include <IGESAppli_PartNumber.hxx>
|
|
#include <IGESAppli_PinNumber.hxx>
|
|
#include <IGESAppli_PipingFlow.hxx>
|
|
#include <IGESAppli_ReferenceDesignator.hxx>
|
|
#include <IGESAppli_RegionRestriction.hxx>
|
|
|
|
#include <IGESAppli_ToolDrilledHole.hxx>
|
|
#include <IGESAppli_ToolElementResults.hxx>
|
|
#include <IGESAppli_ToolFiniteElement.hxx>
|
|
#include <IGESAppli_ToolFlow.hxx>
|
|
#include <IGESAppli_ToolFlowLineSpec.hxx>
|
|
#include <IGESAppli_ToolLevelFunction.hxx>
|
|
#include <IGESAppli_ToolLevelToPWBLayerMap.hxx>
|
|
#include <IGESAppli_ToolLineWidening.hxx>
|
|
#include <IGESAppli_ToolNodalConstraint.hxx>
|
|
#include <IGESAppli_ToolNodalDisplAndRot.hxx>
|
|
#include <IGESAppli_ToolNodalResults.hxx>
|
|
#include <IGESAppli_ToolNode.hxx>
|
|
#include <IGESAppli_ToolPWBArtworkStackup.hxx>
|
|
#include <IGESAppli_ToolPWBDrilledHole.hxx>
|
|
#include <IGESAppli_ToolPartNumber.hxx>
|
|
#include <IGESAppli_ToolPinNumber.hxx>
|
|
#include <IGESAppli_ToolPipingFlow.hxx>
|
|
#include <IGESAppli_ToolReferenceDesignator.hxx>
|
|
#include <IGESAppli_ToolRegionRestriction.hxx>
|
|
|
|
|
|
|
|
// Each Module is attached to a Protocol : it must interprete Case Numbers
|
|
// (arguments <CN> of various methods) in accordance to values returned by
|
|
// the method TypeNumber from this Protocol
|
|
|
|
|
|
IGESAppli_ReadWriteModule::IGESAppli_ReadWriteModule () { }
|
|
|
|
|
|
Standard_Integer IGESAppli_ReadWriteModule::CaseIGES
|
|
(const Standard_Integer typenum, const Standard_Integer formnum) const
|
|
{
|
|
switch (typenum) {
|
|
case 134 : return 12;
|
|
case 136 : return 3;
|
|
case 138 : return 10;
|
|
case 146 : return 11;
|
|
case 148 : return 2;
|
|
case 402 :
|
|
switch (formnum) {
|
|
case 18 : return 4;
|
|
case 20 : return 17;
|
|
default : break;
|
|
}
|
|
break;
|
|
case 406 :
|
|
switch (formnum) {
|
|
case 2 : return 19;
|
|
case 3 : return 6;
|
|
case 5 : return 8;
|
|
case 6 : return 1;
|
|
case 7 : return 18;
|
|
case 8 : return 16;
|
|
case 9 : return 15;
|
|
case 14 : return 5;
|
|
case 24 : return 7;
|
|
case 25 : return 13;
|
|
case 26 : return 14;
|
|
default : break;
|
|
}
|
|
break;
|
|
case 418 : return 9;
|
|
default : break;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
void IGESAppli_ReadWriteModule::ReadOwnParams
|
|
(const Standard_Integer CN, const Handle(IGESData_IGESEntity)& ent,
|
|
const Handle(IGESData_IGESReaderData)& IR, IGESData_ParamReader& PR) const
|
|
{
|
|
switch (CN) {
|
|
case 1 : {
|
|
DeclareAndCast(IGESAppli_DrilledHole,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolDrilledHole tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 2 : {
|
|
DeclareAndCast(IGESAppli_ElementResults,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolElementResults tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 3 : {
|
|
DeclareAndCast(IGESAppli_FiniteElement,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolFiniteElement tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 4 : {
|
|
DeclareAndCast(IGESAppli_Flow,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolFlow tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 5 : {
|
|
DeclareAndCast(IGESAppli_FlowLineSpec,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolFlowLineSpec tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 6 : {
|
|
DeclareAndCast(IGESAppli_LevelFunction,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolLevelFunction tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 7 : {
|
|
DeclareAndCast(IGESAppli_LevelToPWBLayerMap,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolLevelToPWBLayerMap tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 8 : {
|
|
DeclareAndCast(IGESAppli_LineWidening,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolLineWidening tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 9 : {
|
|
DeclareAndCast(IGESAppli_NodalConstraint,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolNodalConstraint tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 10 : {
|
|
DeclareAndCast(IGESAppli_NodalDisplAndRot,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolNodalDisplAndRot tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 11 : {
|
|
DeclareAndCast(IGESAppli_NodalResults,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolNodalResults tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 12 : {
|
|
DeclareAndCast(IGESAppli_Node,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolNode tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 13 : {
|
|
DeclareAndCast(IGESAppli_PWBArtworkStackup,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolPWBArtworkStackup tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 14 : {
|
|
DeclareAndCast(IGESAppli_PWBDrilledHole,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolPWBDrilledHole tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 15 : {
|
|
DeclareAndCast(IGESAppli_PartNumber,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolPartNumber tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 16 : {
|
|
DeclareAndCast(IGESAppli_PinNumber,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolPinNumber tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 17 : {
|
|
DeclareAndCast(IGESAppli_PipingFlow,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolPipingFlow tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 18 : {
|
|
DeclareAndCast(IGESAppli_ReferenceDesignator,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolReferenceDesignator tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
case 19 : {
|
|
DeclareAndCast(IGESAppli_RegionRestriction,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolRegionRestriction tool;
|
|
tool.ReadOwnParams(anent,IR,PR);
|
|
}
|
|
break;
|
|
default : break;
|
|
}
|
|
}
|
|
|
|
|
|
void IGESAppli_ReadWriteModule::WriteOwnParams
|
|
(const Standard_Integer CN, const Handle(IGESData_IGESEntity)& ent,
|
|
IGESData_IGESWriter& IW) const
|
|
{
|
|
switch (CN) {
|
|
case 1 : {
|
|
DeclareAndCast(IGESAppli_DrilledHole,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolDrilledHole tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 2 : {
|
|
DeclareAndCast(IGESAppli_ElementResults,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolElementResults tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 3 : {
|
|
DeclareAndCast(IGESAppli_FiniteElement,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolFiniteElement tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 4 : {
|
|
DeclareAndCast(IGESAppli_Flow,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolFlow tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 5 : {
|
|
DeclareAndCast(IGESAppli_FlowLineSpec,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolFlowLineSpec tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 6 : {
|
|
DeclareAndCast(IGESAppli_LevelFunction,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolLevelFunction tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 7 : {
|
|
DeclareAndCast(IGESAppli_LevelToPWBLayerMap,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolLevelToPWBLayerMap tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 8 : {
|
|
DeclareAndCast(IGESAppli_LineWidening,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolLineWidening tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 9 : {
|
|
DeclareAndCast(IGESAppli_NodalConstraint,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolNodalConstraint tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 10 : {
|
|
DeclareAndCast(IGESAppli_NodalDisplAndRot,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolNodalDisplAndRot tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 11 : {
|
|
DeclareAndCast(IGESAppli_NodalResults,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolNodalResults tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 12 : {
|
|
DeclareAndCast(IGESAppli_Node,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolNode tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 13 : {
|
|
DeclareAndCast(IGESAppli_PWBArtworkStackup,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolPWBArtworkStackup tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 14 : {
|
|
DeclareAndCast(IGESAppli_PWBDrilledHole,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolPWBDrilledHole tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 15 : {
|
|
DeclareAndCast(IGESAppli_PartNumber,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolPartNumber tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 16 : {
|
|
DeclareAndCast(IGESAppli_PinNumber,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolPinNumber tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 17 : {
|
|
DeclareAndCast(IGESAppli_PipingFlow,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolPipingFlow tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 18 : {
|
|
DeclareAndCast(IGESAppli_ReferenceDesignator,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolReferenceDesignator tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
case 19 : {
|
|
DeclareAndCast(IGESAppli_RegionRestriction,anent,ent);
|
|
if (anent.IsNull()) return;
|
|
IGESAppli_ToolRegionRestriction tool;
|
|
tool.WriteOwnParams(anent,IW);
|
|
}
|
|
break;
|
|
default : break;
|
|
}
|
|
}
|