1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
//--------------------------------------------------------------------
//
// File Name : IGESAppli_DrilledHole.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESAppli_ToolDrilledHole.ixx>
#include <IGESData_ParamCursor.hxx>
#include <IGESData_LevelListEntity.hxx>
IGESAppli_ToolDrilledHole::IGESAppli_ToolDrilledHole () { }
void IGESAppli_ToolDrilledHole::ReadOwnParams
(const Handle(IGESAppli_DrilledHole)& ent,
const Handle(IGESData_IGESReaderData)& /*IR*/, IGESData_ParamReader& PR) const
{
Standard_Integer tempNbPropertyValues;
Standard_Real tempDrillDiaSize;
Standard_Real tempFinishDiaSize;
Standard_Integer tempPlatingFlag;
Standard_Integer tempNbLowerLayer;
Standard_Integer tempNbHigherLayer;
//Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
//szv#4:S4163:12Mar99 `st=` not needed
PR.ReadInteger(PR.Current(),"No. of Property values",tempNbPropertyValues);
PR.ReadReal(PR.Current(),"Drill diameter size",tempDrillDiaSize);
PR.ReadReal(PR.Current(),"Finish diameter size",tempFinishDiaSize);
PR.ReadInteger(PR.Current(),"Plating Flag",tempPlatingFlag);
PR.ReadInteger(PR.Current(),"Lower numbered layer", tempNbLowerLayer);
PR.ReadInteger(PR.Current(),"Higher numbered layer", tempNbHigherLayer);
DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
ent->Init(tempNbPropertyValues,tempDrillDiaSize,tempFinishDiaSize,
tempPlatingFlag, tempNbLowerLayer,tempNbHigherLayer);
}
void IGESAppli_ToolDrilledHole::WriteOwnParams
(const Handle(IGESAppli_DrilledHole)& ent, IGESData_IGESWriter& IW) const
{
IW.Send(ent->NbPropertyValues());
IW.Send(ent->DrillDiaSize());
IW.Send(ent->FinishDiaSize());
IW.SendBoolean(ent->IsPlating());
IW.Send(ent->NbLowerLayer());
IW.Send(ent->NbHigherLayer());
}
void IGESAppli_ToolDrilledHole::OwnShared
(const Handle(IGESAppli_DrilledHole)& /*ent*/, Interface_EntityIterator& /*iter*/) const
{
}
void IGESAppli_ToolDrilledHole::OwnCopy
(const Handle(IGESAppli_DrilledHole)& another,
const Handle(IGESAppli_DrilledHole)& ent, Interface_CopyTool& /*TC*/) const
{
ent->Init
(5,another->DrillDiaSize(),another->FinishDiaSize(),
(another->IsPlating() ? 1 : 0),
another->NbLowerLayer(),another->NbHigherLayer());
}
Standard_Boolean IGESAppli_ToolDrilledHole::OwnCorrect
(const Handle(IGESAppli_DrilledHole)& ent) const
{
Standard_Boolean res = (ent->NbPropertyValues() != 5);
if (res) ent->Init
(5,ent->DrillDiaSize(),ent->FinishDiaSize(),(ent->IsPlating() ? 1 : 0),
ent->NbLowerLayer(),ent->NbHigherLayer());
if (ent->SubordinateStatus() != 0) {
Handle(IGESData_LevelListEntity) nulevel;
ent->InitLevel(nulevel,0);
res = Standard_True;
} // NbPropertyvalues = 5 + RAZ level selon subordinate
return res;
}
IGESData_DirChecker IGESAppli_ToolDrilledHole::DirChecker
(const Handle(IGESAppli_DrilledHole)& /*ent*/) const
{
IGESData_DirChecker DC(406,6); //Form no = 6 & Type = 406
DC.Structure(IGESData_DefVoid);
DC.GraphicsIgnored();
DC.BlankStatusIgnored();
DC.UseFlagIgnored();
DC.HierarchyStatusIgnored();
return DC;
}
void IGESAppli_ToolDrilledHole::OwnCheck
(const Handle(IGESAppli_DrilledHole)& ent,
const Interface_ShareTool& , Handle(Interface_Check)& ach) const
{
if (ent->SubordinateStatus() != 0)
if (ent->DefLevel() != IGESData_DefOne &&
ent->DefLevel() != IGESData_DefSeveral)
ach->AddFail("Level type : Not value/reference");
if (ent->NbPropertyValues() != 5)
ach->AddFail("Number of Property Values != 5");
}
void IGESAppli_ToolDrilledHole::OwnDump
(const Handle(IGESAppli_DrilledHole)& ent, const IGESData_IGESDumper& /*dumper*/,
const Handle(Message_Messenger)& S, const Standard_Integer /*level*/) const
{
S << "IGESAppli_DrilledHole" << endl;
S << "Number of property values : " << ent->NbPropertyValues() << endl;
S << "Drill diameter size :" << ent->DrillDiaSize() << " ";
S << "Finish diameter size : " << ent->FinishDiaSize() << endl;
S << "Plating indication flag : ";
if (!ent->IsPlating()) S << "NO" << " - ";
else S << "YES" << " - ";
S << "Lower Numbered Layer : " << ent->NbLowerLayer() << " ";
S << "Higher Numbered Layer : " << ent->NbHigherLayer() << endl;
}
|