mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
141 lines
5.3 KiB
C++
141 lines
5.3 KiB
C++
// Created by: CKY / Contract Toubro-Larsen
|
|
// Copyright (c) 1993-1999 Matra Datavision
|
|
// 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 <IGESBasic_Hierarchy.hxx>
|
|
#include <IGESBasic_ToolHierarchy.hxx>
|
|
#include <IGESData_DirChecker.hxx>
|
|
#include <IGESData_IGESDumper.hxx>
|
|
#include <IGESData_IGESReaderData.hxx>
|
|
#include <IGESData_IGESWriter.hxx>
|
|
#include <IGESData_ParamReader.hxx>
|
|
#include <Interface_Check.hxx>
|
|
#include <Interface_CopyTool.hxx>
|
|
#include <Interface_EntityIterator.hxx>
|
|
#include <Interface_ShareTool.hxx>
|
|
|
|
IGESBasic_ToolHierarchy::IGESBasic_ToolHierarchy () { }
|
|
|
|
|
|
void IGESBasic_ToolHierarchy::ReadOwnParams
|
|
(const Handle(IGESBasic_Hierarchy)& ent,
|
|
const Handle(IGESData_IGESReaderData)& /*IR*/, IGESData_ParamReader& PR) const
|
|
{
|
|
Standard_Integer tempNbPropertyValues;
|
|
Standard_Integer tempLineFont;
|
|
Standard_Integer tempView;
|
|
Standard_Integer tempEntityLevel;
|
|
Standard_Integer tempBlankStatus;
|
|
Standard_Integer tempLineWeight;
|
|
Standard_Integer tempColorNum;
|
|
//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.ReadInteger(PR.Current(),"LineFont",tempLineFont);
|
|
PR.ReadInteger(PR.Current(),"View",tempView);
|
|
PR.ReadInteger(PR.Current(),"Entity level",tempEntityLevel);
|
|
PR.ReadInteger(PR.Current(),"Blank status",tempBlankStatus);
|
|
PR.ReadInteger(PR.Current(),"Line weight",tempLineWeight);
|
|
PR.ReadInteger(PR.Current(),"Color number",tempColorNum);
|
|
|
|
DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
|
|
ent->Init(tempNbPropertyValues,tempLineFont,tempView,tempEntityLevel,
|
|
tempBlankStatus,tempLineWeight,tempColorNum);
|
|
}
|
|
|
|
void IGESBasic_ToolHierarchy::WriteOwnParams
|
|
(const Handle(IGESBasic_Hierarchy)& ent, IGESData_IGESWriter& IW) const
|
|
{
|
|
IW.Send(ent->NbPropertyValues());
|
|
IW.Send(ent->NewLineFont());
|
|
IW.Send(ent->NewView());
|
|
IW.Send(ent->NewEntityLevel());
|
|
IW.Send(ent->NewBlankStatus());
|
|
IW.Send(ent->NewLineWeight());
|
|
IW.Send(ent->NewColorNum());
|
|
}
|
|
|
|
void IGESBasic_ToolHierarchy::OwnShared
|
|
(const Handle(IGESBasic_Hierarchy)& /*ent*/, Interface_EntityIterator& /*iter*/) const
|
|
{
|
|
}
|
|
|
|
void IGESBasic_ToolHierarchy::OwnCopy
|
|
(const Handle(IGESBasic_Hierarchy)& another,
|
|
const Handle(IGESBasic_Hierarchy)& ent, Interface_CopyTool& /*TC*/) const
|
|
{
|
|
ent->Init(6,another->NewLineFont(), another->NewView(),
|
|
another->NewEntityLevel(),another->NewBlankStatus(),
|
|
another->NewLineWeight(), another->NewColorNum());
|
|
}
|
|
|
|
Standard_Boolean IGESBasic_ToolHierarchy::OwnCorrect
|
|
(const Handle(IGESBasic_Hierarchy)& ent) const
|
|
{
|
|
Standard_Boolean res = (ent->NbPropertyValues() != 6);
|
|
if (res) ent->Init
|
|
(6,ent->NewLineFont(),ent->NewView(),ent->NewEntityLevel(),
|
|
ent->NewBlankStatus(),ent->NewLineWeight(),ent->NewColorNum());
|
|
return res; // nbpropertyvalues=6
|
|
}
|
|
|
|
IGESData_DirChecker IGESBasic_ToolHierarchy::DirChecker
|
|
(const Handle(IGESBasic_Hierarchy)& /*ent*/) const
|
|
{
|
|
IGESData_DirChecker DC(406,10); //Form no = 10 & Type = 406
|
|
DC.Structure(IGESData_DefVoid);
|
|
DC.GraphicsIgnored();
|
|
DC.BlankStatusIgnored();
|
|
DC.UseFlagIgnored();
|
|
DC.HierarchyStatusIgnored();
|
|
return DC;
|
|
}
|
|
|
|
void IGESBasic_ToolHierarchy::OwnCheck
|
|
(const Handle(IGESBasic_Hierarchy)& ent,
|
|
const Interface_ShareTool& , Handle(Interface_Check)& ach) const
|
|
{
|
|
if (ent->NbPropertyValues() != 6)
|
|
ach->AddFail("Number of Property Values != 6");
|
|
if (ent->NewLineFont() != 0 && ent->NewLineFont() != 1)
|
|
ach->AddFail("InCorrect LineFont");
|
|
if (ent->NewView() != 0 && ent->NewView() != 1)
|
|
ach->AddFail("InCorrect View");
|
|
if (ent->NewEntityLevel() != 0 && ent->NewEntityLevel() != 1)
|
|
ach->AddFail("InCorrect EntityLevel");
|
|
if (ent->NewBlankStatus() != 0 && ent->NewBlankStatus() != 1)
|
|
if (ent->NewLineWeight() != 0 && ent->NewLineWeight() != 1)
|
|
ach->AddFail("InCorrect LineWeight");
|
|
if (ent->NewColorNum() != 0 && ent->NewColorNum() != 1)
|
|
ach->AddFail("InCorrect ColorNum");
|
|
}
|
|
|
|
void IGESBasic_ToolHierarchy::OwnDump
|
|
(const Handle(IGESBasic_Hierarchy)& ent, const IGESData_IGESDumper& /*dumper*/,
|
|
Standard_OStream& S, const Standard_Integer /*level*/) const
|
|
{
|
|
S << "IGESBasic_Hierarchy\n"
|
|
<< "Number of property values : " << ent->NbPropertyValues() << "\n"
|
|
<< "Line Font : " << ent->NewLineFont() << "\n"
|
|
<< "View Number : " << ent->NewView() << "\n"
|
|
<< "Entity level : " << ent->NewEntityLevel() << "\n"
|
|
<< "Blank status : " << ent->NewBlankStatus() << "\n"
|
|
<< "Line weight : " << ent->NewLineWeight() << "\n"
|
|
<< "Color number : " << ent->NewColorNum() << std::endl;
|
|
}
|