1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/src/IGESGeom/IGESGeom_ToolCompositeCurve.cxx
abv 0ebe5b0a7f 0031501: Foundation Classes, Message_Printer - remove theToPutEndl argument -- preparation
Operators << for Handle(Message_Messenger) are removed; their use is replaced by use of Message_Messenger::StreamBuffer
Message_Messenger has been replaced by Standard_OStream within Interface_InterfaceModel,IFSelect,IGES,STEP dump interfaces.
2020-05-09 17:22:13 +03:00

131 lines
4.4 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 <IGESData_DirChecker.hxx>
#include <IGESData_Dump.hxx>
#include <IGESData_HArray1OfIGESEntity.hxx>
#include <IGESData_IGESDumper.hxx>
#include <IGESData_IGESEntity.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_IGESWriter.hxx>
#include <IGESData_ParamCursor.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESGeom_CompositeCurve.hxx>
#include <IGESGeom_ToolCompositeCurve.hxx>
#include <Interface_Check.hxx>
#include <Interface_CopyTool.hxx>
#include <Interface_EntityIterator.hxx>
#include <Interface_Macros.hxx>
#include <Interface_ShareTool.hxx>
#include <Message_Messenger.hxx>
#include <Message_Msg.hxx>
#include <Standard_DomainError.hxx>
// MGE 28/07/98
IGESGeom_ToolCompositeCurve::IGESGeom_ToolCompositeCurve () { }
void IGESGeom_ToolCompositeCurve::ReadOwnParams
(const Handle(IGESGeom_CompositeCurve)& ent,
const Handle(IGESData_IGESReaderData)& IR, IGESData_ParamReader& PR) const
{
// MGE 28/07/98
// Building of messages
//Standard_Boolean st; //szv#4:S4163:12Mar99 moved down
Handle(IGESData_HArray1OfIGESEntity) tempEntities;
Standard_Integer num; //szv#4:S4163:12Mar99 i not needed
Standard_Boolean st = PR.ReadInteger(PR.Current(), num);
// st = PR.ReadInteger(PR.Current(), "Number of Components", num);
if (st && (num > 0)){
Message_Msg Msg80("XSTEP_80");
PR.ReadEnts (IR,PR.CurrentList(num),Msg80,tempEntities); //szv#4:S4163:12Mar99 `st=` not needed
//else st = PR.ReadEnts (IR,PR.CurrentList(num),"List of Components",tempEntities);
}
//if (st && num <= 0) PR.SendFail(Msg79);
else{
Message_Msg Msg79("XSTEP_79");
PR.SendFail(Msg79);
}
DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
ent->Init(tempEntities);
}
void IGESGeom_ToolCompositeCurve::WriteOwnParams
(const Handle(IGESGeom_CompositeCurve)& ent, IGESData_IGESWriter& IW) const
{
Standard_Integer num = ent->NbCurves(); Standard_Integer i;
IW.Send(num);
for ( num = ent->NbCurves(), i = 1; i <= num; i++ )
IW.Send(ent->Curve(i));
}
void IGESGeom_ToolCompositeCurve::OwnShared
(const Handle(IGESGeom_CompositeCurve)& ent, Interface_EntityIterator& iter) const
{
Standard_Integer num = ent->NbCurves();
for ( Standard_Integer i = 1; i <= num; i++ )
iter.GetOneItem(ent->Curve(i));
}
void IGESGeom_ToolCompositeCurve::OwnCopy
(const Handle(IGESGeom_CompositeCurve)& another,
const Handle(IGESGeom_CompositeCurve)& ent, Interface_CopyTool& TC) const
{
Standard_Integer i, num = another->NbCurves();
Handle(IGESData_HArray1OfIGESEntity) tempEntities =
new IGESData_HArray1OfIGESEntity(1, num);
for ( i = 1; i <= num; i++ )
{
DeclareAndCast(IGESData_IGESEntity, new_ent,
TC.Transferred(another->Curve(i)));
tempEntities->SetValue(i, new_ent);
}
ent->Init(tempEntities);
}
IGESData_DirChecker IGESGeom_ToolCompositeCurve::DirChecker
(const Handle(IGESGeom_CompositeCurve)& /* ent */ ) const
{
IGESData_DirChecker DC(102, 0);
DC.Structure(IGESData_DefVoid);
DC.GraphicsIgnored();
DC.LineFont(IGESData_DefAny);
// DC.LineWeight(IGESData_DefValue);
DC.Color(IGESData_DefAny);
return DC;
}
void IGESGeom_ToolCompositeCurve::OwnCheck
(const Handle(IGESGeom_CompositeCurve)& /* ent */,
const Interface_ShareTool& , Handle(Interface_Check)& /* ach */) const
{
}
void IGESGeom_ToolCompositeCurve::OwnDump
(const Handle(IGESGeom_CompositeCurve)& ent, const IGESData_IGESDumper& dumper,
Standard_OStream& S, const Standard_Integer level) const
{
S << "IGESGeom_CompositeCurve\n"
<< "Curve Entities :\n";
IGESData_DumpEntities(S,dumper ,level,1, ent->NbCurves(),ent->Curve);
S << std::endl;
}