blob: 772fca7df7c52398f82bba5db6c5250f8e058fbf (
plain)
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
|
#include <IGESSelect_SetGlobalParameter.ixx>
#include <IGESData_GlobalSection.hxx>
#include <Interface_ParamSet.hxx>
#include <Interface_FileParameter.hxx>
#include <stdio.h>
#include <Interface_Check.hxx>
IGESSelect_SetGlobalParameter::IGESSelect_SetGlobalParameter
(const Standard_Integer numpar)
: IGESSelect_ModelModifier (Standard_False)
{ thenum = numpar; }
Standard_Integer IGESSelect_SetGlobalParameter::GlobalNumber () const
{ return thenum; }
void IGESSelect_SetGlobalParameter::SetValue
(const Handle(TCollection_HAsciiString)& text)
{ theval = text; }
Handle(TCollection_HAsciiString) IGESSelect_SetGlobalParameter::Value
() const
{ return theval; }
void IGESSelect_SetGlobalParameter::Performing
(IFSelect_ContextModif& ctx,
const Handle(IGESData_IGESModel)& target,
Interface_CopyTool& ) const
{
if (theval.IsNull()) {
ctx.CCheck()->AddWarning("Set IGES Global Parameter, no value defined, ignored");
return;
}
IGESData_GlobalSection GS = target->GlobalSection();
Handle(Interface_ParamSet) oldset = GS.Params();
if (thenum <= 0 || thenum > oldset->NbParams()) {
char mess[80];
sprintf(mess,"Set IGES Global Parameter : Number %d incorrect",thenum);
ctx.CCheck()->AddFail(mess);
return;
}
Interface_FileParameter& FP = oldset->ChangeParam (thenum);
FP.Init (theval->ToCString(),FP.ParamType());
Handle(Interface_Check) check = new Interface_Check;
GS.Init (oldset,check);
ctx.AddCheck(check);
if (!check->HasFailed()) target->SetGlobalSection(GS);
}
TCollection_AsciiString IGESSelect_SetGlobalParameter::Label () const
{
char mess[80];
if (theval.IsNull()) sprintf(mess,"Set IGES Global Parameter (undefined)");
else sprintf(mess,"Set IGES Global Parameter Number %d to %s",
thenum,theval->ToCString());
return TCollection_AsciiString (mess);
}
|