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
|
//--------------------------------------------------------------------
//
// File Name : IGESAppli_LevelFunction.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESAppli_ToolLevelFunction.ixx>
#include <IGESData_ParamCursor.hxx>
#include <TCollection_HAsciiString.hxx>
#include <Interface_Macros.hxx>
#include <IGESData_Dump.hxx>
IGESAppli_ToolLevelFunction::IGESAppli_ToolLevelFunction () { }
void IGESAppli_ToolLevelFunction::ReadOwnParams
(const Handle(IGESAppli_LevelFunction)& ent,
const Handle(IGESData_IGESReaderData)& /* IR */, IGESData_ParamReader& PR) const
{
Standard_Integer tempNbPropertyValues;
Standard_Integer tempFuncDescripCode;
Handle(TCollection_HAsciiString) tempFuncDescrip;
//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);
if (PR.DefinedElseSkip())
PR.ReadInteger(PR.Current(),"Function description code",tempFuncDescripCode);
else
tempFuncDescripCode = 0;
if (PR.DefinedElseSkip())
PR.ReadText(PR.Current(),"Function description",tempFuncDescrip);
DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
ent->Init (tempNbPropertyValues,tempFuncDescripCode,tempFuncDescrip);
}
void IGESAppli_ToolLevelFunction::WriteOwnParams
(const Handle(IGESAppli_LevelFunction)& ent, IGESData_IGESWriter& IW) const
{
IW.Send(ent->NbPropertyValues());
IW.Send(ent->FuncDescriptionCode());
if (ent->FuncDescription().IsNull()) IW.SendVoid();
else IW.Send(ent->FuncDescription());
}
void IGESAppli_ToolLevelFunction::OwnShared
(const Handle(IGESAppli_LevelFunction)& /* ent */, Interface_EntityIterator& /* iter */) const
{
}
void IGESAppli_ToolLevelFunction::OwnCopy
(const Handle(IGESAppli_LevelFunction)& another,
const Handle(IGESAppli_LevelFunction)& ent, Interface_CopyTool& /* TC */) const
{
Standard_Integer aNbPropertyValues, code;
Handle(TCollection_HAsciiString) descrip;
if (!another->FuncDescription().IsNull()) descrip =
new TCollection_HAsciiString(another->FuncDescription());
code = another->FuncDescriptionCode();
aNbPropertyValues = another->NbPropertyValues();
ent->Init(aNbPropertyValues,code,descrip);
}
Standard_Boolean IGESAppli_ToolLevelFunction::OwnCorrect
(const Handle(IGESAppli_LevelFunction)& ent) const
{
Standard_Boolean res = (ent->NbPropertyValues() != 2);
if (res) ent->Init(2,ent->FuncDescriptionCode(),ent->FuncDescription());
return res; // nbpropertyvalues = 2
}
IGESData_DirChecker IGESAppli_ToolLevelFunction::DirChecker
(const Handle(IGESAppli_LevelFunction)& /* ent */ ) const
{
IGESData_DirChecker DC(406,3); //Form no = 3 & Type = 406
DC.Structure(IGESData_DefVoid);
DC.GraphicsIgnored();
DC.BlankStatusIgnored();
DC.UseFlagIgnored();
DC.HierarchyStatusIgnored();
DC.SubordinateStatusRequired(00);
return DC;
}
void IGESAppli_ToolLevelFunction::OwnCheck
(const Handle(IGESAppli_LevelFunction)& ent,
const Interface_ShareTool& , Handle(Interface_Check)& ach) const
{
if (ent->NbPropertyValues() != 2)
ach->AddFail("Number of Property Values != 2");
}
void IGESAppli_ToolLevelFunction::OwnDump
(const Handle(IGESAppli_LevelFunction)& ent, const IGESData_IGESDumper& /* dumper */,
const Handle(Message_Messenger)& S, const Standard_Integer /* level */) const
{
S << "IGESAppli_LevelFunction" << endl;
S << "Number of property values : " << ent->NbPropertyValues() << endl;
S << "Function Description code : " << ent->FuncDescriptionCode() << endl;
S << "Function Description : ";
IGESData_DumpString(S,ent->FuncDescription());
S << endl;
}
|