1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-11 10:44:53 +03:00
occt/src/IGESBasic/IGESBasic_ToolOrderedGroup.cxx
bugmaster b311480ed5 0023024: Update headers of OCCT files
Added appropriate copyright and license information in source files
2012-03-21 19:43:04 +04:00

156 lines
5.4 KiB
C++
Executable File

// Created by: CKY / Contract Toubro-Larsen
// Copyright (c) 1993-1999 Matra Datavision
// 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 <IGESBasic_ToolOrderedGroup.ixx>
#include <IGESData_ParamCursor.hxx>
#include <IGESData_IGESEntity.hxx>
#include <IGESData_HArray1OfIGESEntity.hxx>
#include <IGESData_Dump.hxx>
#include <Interface_Macros.hxx>
IGESBasic_ToolOrderedGroup::IGESBasic_ToolOrderedGroup () { }
void IGESBasic_ToolOrderedGroup::ReadOwnParams
(const Handle(IGESBasic_OrderedGroup)& ent,
const Handle(IGESData_IGESReaderData)& IR, IGESData_ParamReader& PR) const
{
//Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
Standard_Integer nbval = 0;
Handle(IGESData_HArray1OfIGESEntity) EntArray;
if (PR.ReadInteger( PR.Current(), "Count of Entities", nbval)) { //szv#4:S4163:12Mar99 `st=` not needed
PR.ReadEnts (IR,PR.CurrentList(nbval),"Entities",EntArray); //szv#4:S4163:12Mar99 `st=` not needed
/*
EntArray = new IGESData_HArray1OfIGESEntity(1,nbval);
for (Standard_Integer i = 1;i <= nbval;i++)
{
Handle(IGESData_IGESEntity) anent;
st = PR.ReadEntity (IR,PR.Current(),"Element of the Group",anent,Standard_True);
if (st) EntArray->SetValue(i,anent);
}
*/
}
DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
ent->Init(EntArray);
}
void IGESBasic_ToolOrderedGroup::WriteOwnParams
(const Handle(IGESBasic_OrderedGroup)& ent, IGESData_IGESWriter& IW) const
{
Standard_Integer upper = ent->NbEntities();
IW.Send(upper);
for (Standard_Integer i = 1; i <= upper;i++)
IW.Send(ent->Entity(i));
}
void IGESBasic_ToolOrderedGroup::OwnShared
(const Handle(IGESBasic_OrderedGroup)& ent, Interface_EntityIterator& iter) const
{
Standard_Integer upper = ent->NbEntities();
for (Standard_Integer i = 1; i <= upper;i++)
iter.GetOneItem(ent->Entity(i));
}
void IGESBasic_ToolOrderedGroup::OwnCopy
(const Handle(IGESBasic_OrderedGroup)& another,
const Handle(IGESBasic_OrderedGroup)& ent, Interface_CopyTool& TC) const
{
Standard_Integer lower,upper;
lower = 1;
upper = another->NbEntities();
Handle(IGESData_HArray1OfIGESEntity) EntArray = new
IGESData_HArray1OfIGESEntity(lower,upper);
for (Standard_Integer i = lower;i <= upper;i++)
{
DeclareAndCast
(IGESData_IGESEntity,myentity,TC.Transferred(another->Entity(i)));
EntArray->SetValue(i,myentity);
}
ent->Init(EntArray);
}
Standard_Boolean IGESBasic_ToolOrderedGroup::OwnCorrect
(const Handle(IGESBasic_OrderedGroup)& ent ) const
{
Standard_Integer ianul = 0;
Standard_Integer i, nbtrue = 0, nb = ent->NbEntities();
for (i = 1; i <= nb; i ++) {
Handle(IGESData_IGESEntity) val = ent->Entity(i);
if (val.IsNull()) ianul ++;
else if (val->TypeNumber() == 0) ianul ++;
}
if (ianul == 0) return Standard_False;
Handle(IGESData_HArray1OfIGESEntity) EntArray;
if (ianul < nb) EntArray = new IGESData_HArray1OfIGESEntity(1,nb-ianul);
for (i = 1; i <= nb; i ++) {
Handle(IGESData_IGESEntity) val = ent->Entity(i);
if (val.IsNull()) continue;
else if (val->TypeNumber() == 0) continue;
nbtrue ++;
EntArray->SetValue (nbtrue,ent->Entity(i));
}
ent->Init(EntArray);
return Standard_True;
}
IGESData_DirChecker IGESBasic_ToolOrderedGroup::DirChecker
(const Handle(IGESBasic_OrderedGroup)& /* ent */ ) const
{
IGESData_DirChecker DC(402,14); //TypeNo. 402, Form no. 14
DC.Structure(IGESData_DefVoid);
DC.GraphicsIgnored();
DC.BlankStatusIgnored();
DC.HierarchyStatusIgnored();
return DC;
}
void IGESBasic_ToolOrderedGroup::OwnCheck
(const Handle(IGESBasic_OrderedGroup)& ent,
const Interface_ShareTool& , Handle(Interface_Check)& ach) const
{
Standard_Boolean ianul = Standard_False;
Standard_Integer i, nb = ent->NbEntities();
for (i = 1; i <= nb; i ++) {
Handle(IGESData_IGESEntity) val = ent->Entity(i);
if (val.IsNull()) ianul = Standard_True;
else if (val->TypeNumber() == 0) ianul = Standard_True;
if (ianul) {
ach->AddWarning ("At least one element is Null");
break;
}
}
}
void IGESBasic_ToolOrderedGroup::OwnDump
(const Handle(IGESBasic_OrderedGroup)& ent, const IGESData_IGESDumper& dumper,
const Handle(Message_Messenger)& S, const Standard_Integer level) const
{
S << "IGESBasic_OrderedGroup" << endl;
S << "Entries in the Group : ";
IGESData_DumpEntities(S,dumper ,level,1, ent->NbEntities(),ent->Entity);
S << endl;
}