mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-18 15:00:33 +08:00
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.
184 lines
7.0 KiB
C++
184 lines
7.0 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 <gp_XYZ.hxx>
|
|
#include <IGESData_DirChecker.hxx>
|
|
#include <IGESData_Dump.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 <IGESDraw_CircArraySubfigure.hxx>
|
|
#include <IGESDraw_ToolCircArraySubfigure.hxx>
|
|
#include <Interface_Check.hxx>
|
|
#include <Interface_CopyTool.hxx>
|
|
#include <Interface_EntityIterator.hxx>
|
|
#include <Interface_Macros.hxx>
|
|
#include <Interface_ShareTool.hxx>
|
|
#include <Standard_DomainError.hxx>
|
|
#include <TColStd_HArray1OfInteger.hxx>
|
|
|
|
IGESDraw_ToolCircArraySubfigure::IGESDraw_ToolCircArraySubfigure () { }
|
|
|
|
|
|
void IGESDraw_ToolCircArraySubfigure::ReadOwnParams
|
|
(const Handle(IGESDraw_CircArraySubfigure)& ent,
|
|
const Handle(IGESData_IGESReaderData)& IR, IGESData_ParamReader& PR) const
|
|
{
|
|
//Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
|
|
|
|
gp_XYZ tempCenter;
|
|
Handle(IGESData_IGESEntity) tempBase;
|
|
Standard_Real tempRadius, tempStAngle, tempDelAngle;
|
|
Standard_Integer tempNumLocs, tempFlag, tempListCount;
|
|
Handle(TColStd_HArray1OfInteger) tempNumPos;
|
|
|
|
//szv#4:S4163:12Mar99 `st=` not needed
|
|
PR.ReadEntity(IR, PR.Current(), "Base Entity", tempBase);
|
|
PR.ReadInteger(PR.Current(), "Number Of Instance Locations", tempNumLocs);
|
|
PR.ReadXYZ(PR.CurrentList(1, 3), "Imaginary Circle Center Coordinate", tempCenter);
|
|
PR.ReadReal(PR.Current(), "Radius Of Imaginary Circle", tempRadius);
|
|
PR.ReadReal(PR.Current(), "Start Angle in Radians", tempStAngle);
|
|
PR.ReadReal(PR.Current(), "Delta Angle in Radians", tempDelAngle);
|
|
|
|
//st = PR.ReadInteger(PR.Current(), "DO-DONT List Count", tempListCount); //szv#4:S4163:12Mar99 moved in if
|
|
if (PR.ReadInteger(PR.Current(), "DO-DONT List Count", tempListCount)) {
|
|
// Initialise HArray1 only if there is no error reading its Length
|
|
if (tempListCount > 0)
|
|
tempNumPos = new TColStd_HArray1OfInteger(1, tempListCount);
|
|
else if (tempListCount < 0)
|
|
PR.AddFail("DO-DONT List Count : Less than Zero");
|
|
}
|
|
|
|
PR.ReadInteger(PR.Current(), "DO-DONT Flag", tempFlag); //szv#4:S4163:12Mar99 `st=` not needed
|
|
|
|
// Read the HArray1 only if its Length was read without any Error
|
|
if (! tempNumPos.IsNull()) {
|
|
Standard_Integer I;
|
|
for (I = 1; I <= tempListCount; I++) {
|
|
Standard_Integer tempPosition;
|
|
//st = PR.ReadInteger(PR.Current(), "Number Of Position To Process",
|
|
//tempPosition); //szv#4:S4163:12Mar99 moved in if
|
|
if (PR.ReadInteger(PR.Current(), "Number Of Position To Process", tempPosition))
|
|
tempNumPos->SetValue(I, tempPosition);
|
|
}
|
|
}
|
|
|
|
DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
|
|
ent->Init
|
|
(tempBase, tempNumLocs, tempCenter, tempRadius,
|
|
tempStAngle,tempDelAngle, tempFlag, tempNumPos);
|
|
}
|
|
|
|
void IGESDraw_ToolCircArraySubfigure::WriteOwnParams
|
|
(const Handle(IGESDraw_CircArraySubfigure)& ent, IGESData_IGESWriter& IW) const
|
|
{
|
|
IW.Send(ent->BaseEntity());
|
|
IW.Send(ent->NbLocations());
|
|
IW.Send(ent->CenterPoint().X());
|
|
IW.Send(ent->CenterPoint().Y());
|
|
IW.Send(ent->CenterPoint().Z());
|
|
IW.Send(ent->CircleRadius());
|
|
IW.Send(ent->StartAngle());
|
|
IW.Send(ent->DeltaAngle());
|
|
IW.Send(ent->ListCount());
|
|
IW.SendBoolean(ent->DoDontFlag());
|
|
// Send the HArray1 only if it is not empty (i.e. Null)
|
|
Standard_Integer I;
|
|
Standard_Integer up = ent->ListCount();
|
|
for (I = 1; I <= up; I++)
|
|
IW.Send(ent->ListPosition(I));
|
|
}
|
|
|
|
void IGESDraw_ToolCircArraySubfigure::OwnShared
|
|
(const Handle(IGESDraw_CircArraySubfigure)& /*ent*/, Interface_EntityIterator& /*iter*/) const
|
|
{
|
|
}
|
|
|
|
void IGESDraw_ToolCircArraySubfigure::OwnCopy
|
|
(const Handle(IGESDraw_CircArraySubfigure)& another,
|
|
const Handle(IGESDraw_CircArraySubfigure)& ent, Interface_CopyTool& TC) const
|
|
{
|
|
DeclareAndCast(IGESData_IGESEntity, tempBase,
|
|
TC.Transferred(another->BaseEntity()));
|
|
Standard_Integer tempNumLocs = another->NbLocations();
|
|
gp_XYZ tempCenter = (another->CenterPoint()).XYZ();
|
|
Standard_Real tempRadius = another->CircleRadius();
|
|
Standard_Real tempStAngle = another->StartAngle();
|
|
Standard_Real tempDelAngle = another->DeltaAngle();
|
|
Standard_Integer tempListCount = another->ListCount();
|
|
Standard_Integer tempFlag = another->DoDontFlag();
|
|
Handle(TColStd_HArray1OfInteger) tempNumPos;
|
|
if (! another->DisplayFlag()) {
|
|
tempNumPos = new TColStd_HArray1OfInteger(1, tempListCount);
|
|
Standard_Integer I;
|
|
for (I = 1; I <= tempListCount; I++) {
|
|
Standard_Integer tempPosition = another->ListPosition(I);
|
|
tempNumPos->SetValue(I, tempPosition);
|
|
}
|
|
}
|
|
|
|
ent->Init(tempBase, tempNumLocs, tempCenter, tempRadius,
|
|
tempStAngle, tempDelAngle, tempFlag, tempNumPos);
|
|
}
|
|
|
|
IGESData_DirChecker IGESDraw_ToolCircArraySubfigure::DirChecker
|
|
(const Handle(IGESDraw_CircArraySubfigure)& /*ent*/) const
|
|
{
|
|
IGESData_DirChecker DC(414, 0);
|
|
DC.Structure(IGESData_DefVoid);
|
|
DC.LineFont(IGESData_DefAny);
|
|
DC.LineWeight(IGESData_DefValue);
|
|
DC.Color(IGESData_DefAny);
|
|
DC.GraphicsIgnored(1);
|
|
|
|
return DC;
|
|
}
|
|
|
|
void IGESDraw_ToolCircArraySubfigure::OwnCheck
|
|
(const Handle(IGESDraw_CircArraySubfigure)& /*ent*/,
|
|
const Interface_ShareTool& , Handle(Interface_Check)& /*ach*/) const
|
|
{
|
|
}
|
|
|
|
void IGESDraw_ToolCircArraySubfigure::OwnDump
|
|
(const Handle(IGESDraw_CircArraySubfigure)& ent, const IGESData_IGESDumper& dumper,
|
|
Standard_OStream& S, const Standard_Integer level) const
|
|
{
|
|
Standard_Integer tempSubLevel = (level <= 4) ? 0 : 1;
|
|
|
|
S << "IGESDraw_CircArraySubfigure\n"
|
|
<< "Base Entity : ";
|
|
dumper.Dump(ent->BaseEntity(),S, tempSubLevel);
|
|
S << "\n"
|
|
<< "Total Number Of Possible Instance Locations : " << ent->NbLocations()
|
|
<< "\n"
|
|
<< "Imaginary Circle. Radius : " << ent->CircleRadius() << " Center : ";
|
|
IGESData_DumpXYZL(S, level, ent->CenterPoint(), ent->Location()); S << "\n";
|
|
S << "Start Angle (in radians) : " << ent->StartAngle() << " "
|
|
<< "Delta Angle (in radians) : " << ent->DeltaAngle() << "\n"
|
|
<< "Do-Dont Flag : ";
|
|
if (ent->DoDontFlag()) S << "Dont\n";
|
|
else S << "Do\n";
|
|
S << "The Do-Dont List : ";
|
|
IGESData_DumpVals(S,level,1, ent->ListCount(),ent->ListPosition);
|
|
S << std::endl;
|
|
}
|