1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/src/IGESDraw/IGESDraw_ToolLabelDisplay.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

242 lines
9.2 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_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 <IGESData_ViewKindEntity.hxx>
#include <IGESDimen_HArray1OfLeaderArrow.hxx>
#include <IGESDimen_LeaderArrow.hxx>
#include <IGESDraw_HArray1OfViewKindEntity.hxx>
#include <IGESDraw_LabelDisplay.hxx>
#include <IGESDraw_PerspectiveView.hxx>
#include <IGESDraw_ToolLabelDisplay.hxx>
#include <IGESDraw_View.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 <Standard_DomainError.hxx>
#include <TColgp_HArray1OfXYZ.hxx>
#include <TColStd_HArray1OfInteger.hxx>
IGESDraw_ToolLabelDisplay::IGESDraw_ToolLabelDisplay () { }
void IGESDraw_ToolLabelDisplay::ReadOwnParams
(const Handle(IGESDraw_LabelDisplay)& ent,
const Handle(IGESData_IGESReaderData)& IR, IGESData_ParamReader& PR) const
{
//Standard_Boolean st; //szv#4:S4163:12Mar99 moved down
Standard_Integer nbval;
Handle(IGESDraw_HArray1OfViewKindEntity) views;
Handle(TColgp_HArray1OfXYZ) textLocations;
Handle(IGESDimen_HArray1OfLeaderArrow) leaderEntities;
Handle(TColStd_HArray1OfInteger) labelLevels;
Handle(IGESData_HArray1OfIGESEntity) displayedEntities;
// Reading nbval(No. of Label placements)
Standard_Boolean st = PR.ReadInteger(PR.Current(), "No. of Label placements", nbval);
if (st && nbval > 0)
{
views = new IGESDraw_HArray1OfViewKindEntity(1, nbval);
textLocations = new TColgp_HArray1OfXYZ(1, nbval);
leaderEntities = new IGESDimen_HArray1OfLeaderArrow(1, nbval);
labelLevels = new TColStd_HArray1OfInteger(1, nbval);
displayedEntities = new IGESData_HArray1OfIGESEntity(1, nbval);
Handle(IGESData_ViewKindEntity) tempView;
gp_XYZ tempXYZ;
Handle(IGESDimen_LeaderArrow) tempLeaderArrow;
Standard_Integer tempLabel;
Handle(IGESData_IGESEntity) tempDisplayedEntity;
for (Standard_Integer i = 1; i <= nbval; i++)
{
// Reading views(HArray1OfView)
//st = PR.ReadEntity (IR, PR.Current(), "Instance of views",
//STANDARD_TYPE(IGESData_ViewKindEntity), tempView); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadEntity (IR, PR.Current(), "Instance of views",
STANDARD_TYPE(IGESData_ViewKindEntity), tempView))
views->SetValue(i, tempView);
// Reading textLocations(HArray1OfXYZ)
//st = PR.ReadXYZ(PR.CurrentList(1, 3), "array textLocations", tempXYZ); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadXYZ(PR.CurrentList(1, 3), "array textLocations", tempXYZ))
textLocations->SetValue(i, tempXYZ);
// Reading leaderEntities(HArray1OfLeaderArrow)
//st = PR.ReadEntity (IR, PR.Current(), "Instance of LeaderArrow",
//STANDARD_TYPE(IGESDimen_LeaderArrow), tempLeaderArrow); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadEntity (IR, PR.Current(), "Instance of LeaderArrow",
STANDARD_TYPE(IGESDimen_LeaderArrow), tempLeaderArrow))
leaderEntities->SetValue(i, tempLeaderArrow);
// Reading labelLevels(HArray1OfInteger)
//st = PR.ReadInteger(PR.Current(), "array labelLevels", tempLabel); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadInteger(PR.Current(), "array labelLevels", tempLabel))
labelLevels->SetValue(i, tempLabel);
// Reading displayedEntities(HArray1OfIGESEntity)
//st = PR.ReadEntity (IR, PR.Current(), "displayedEntities entity",
//tempDisplayedEntity); //szv#4:S4163:12Mar99 moved in if
if (PR.ReadEntity (IR, PR.Current(), "displayedEntities entity", tempDisplayedEntity))
displayedEntities->SetValue(i, tempDisplayedEntity);
}
}
else PR.AddFail("No. of Label placements : Not Positive");
DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
ent->Init
(views, textLocations, leaderEntities, labelLevels, displayedEntities);
}
void IGESDraw_ToolLabelDisplay::WriteOwnParams
(const Handle(IGESDraw_LabelDisplay)& ent, IGESData_IGESWriter& IW) const
{
Standard_Integer Up = ent->NbLabels();
IW.Send( Up );
for ( Standard_Integer i = 1; i <= Up; i++)
{
IW.Send( ent->ViewItem(i) );
IW.Send( (ent->TextLocation(i)).X() );
IW.Send( (ent->TextLocation(i)).Y() );
IW.Send( (ent->TextLocation(i)).Z() );
IW.Send( ent->LeaderEntity(i) );
IW.Send( ent->LabelLevel(i) );
IW.Send( ent->DisplayedEntity(i) );
}
}
void IGESDraw_ToolLabelDisplay::OwnShared
(const Handle(IGESDraw_LabelDisplay)& ent, Interface_EntityIterator& iter) const
{
Standard_Integer Up = ent->NbLabels();
for ( Standard_Integer i = 1; i <= Up; i++)
{
iter.GetOneItem( ent->ViewItem(i) );
iter.GetOneItem( ent->LeaderEntity(i) );
iter.GetOneItem( ent->DisplayedEntity(i) );
}
}
void IGESDraw_ToolLabelDisplay::OwnCopy
(const Handle(IGESDraw_LabelDisplay)& another,
const Handle(IGESDraw_LabelDisplay)& ent, Interface_CopyTool& TC) const
{
Standard_Integer nbval;
Handle(IGESDraw_HArray1OfViewKindEntity) views;
Handle(TColgp_HArray1OfXYZ) textLocations;
Handle(IGESDimen_HArray1OfLeaderArrow) leaderEntities;
Handle(TColStd_HArray1OfInteger) labelLevels;
Handle(IGESData_HArray1OfIGESEntity) displayedEntities;
nbval = another->NbLabels();
views = new IGESDraw_HArray1OfViewKindEntity(1, nbval);
textLocations = new TColgp_HArray1OfXYZ(1, nbval);
leaderEntities = new IGESDimen_HArray1OfLeaderArrow(1, nbval);
labelLevels = new TColStd_HArray1OfInteger(1, nbval);
displayedEntities = new IGESData_HArray1OfIGESEntity(1, nbval);
for (Standard_Integer i = 1; i <= nbval; i++)
{
DeclareAndCast(IGESData_ViewKindEntity, tempView,
TC.Transferred(another->ViewItem(i)));
views->SetValue( i, tempView );
textLocations->SetValue( i, (another->TextLocation(i)).XYZ() );
DeclareAndCast(IGESDimen_LeaderArrow, tempArrow,
TC.Transferred(another->LeaderEntity(i)));
leaderEntities->SetValue( i, tempArrow );
labelLevels->SetValue( i, another->LabelLevel(i) );
DeclareAndCast(IGESData_IGESEntity, tempEntity,
TC.Transferred(another->DisplayedEntity(i)));
displayedEntities->SetValue( i, tempEntity );
}
ent->Init(views, textLocations, leaderEntities,
labelLevels, displayedEntities);
}
IGESData_DirChecker IGESDraw_ToolLabelDisplay::DirChecker
(const Handle(IGESDraw_LabelDisplay)& /*ent*/) const
{
IGESData_DirChecker DC (402, 5);
DC.Structure(IGESData_DefVoid);
DC.HierarchyStatusIgnored();
DC.BlankStatusIgnored();
return DC;
}
void IGESDraw_ToolLabelDisplay::OwnCheck
(const Handle(IGESDraw_LabelDisplay)& /*ent*/,
const Interface_ShareTool& , Handle(Interface_Check)& /*ach*/) const
{
}
void IGESDraw_ToolLabelDisplay::OwnDump
(const Handle(IGESDraw_LabelDisplay)& ent, const IGESData_IGESDumper& dumper,
Standard_OStream& S, const Standard_Integer level) const
{
Standard_Integer sublevel = (level <= 4) ? 0 : 1;
S << "IGESDraw_LabelDisplay\n"
<< "View Entities :\n"
<< "Text Locations :\n"
<< "Leader Entities :\n"
<< "Label Level Numbers :\n"
<< "Displayed Entities : "
<< "Count = " << ent->NbLabels() << "\n";
if (level > 4) // Level = 4 : no Dump. Level = 5 & 6 : same Dump
{
Standard_Integer I;
Standard_Integer up = ent->NbLabels();
for (I = 1; I <= up; I ++)
{
S << "[" << I << "]:\n"
<< "View Entity : ";
dumper.Dump (ent->ViewItem(I),S, sublevel);
S << "\n"
<< "Text Location in View : ";
IGESData_DumpXYZL(S,level, ent->TextLocation(I), ent->Location());
S << " Leader Entity in View : ";
dumper.Dump (ent->LeaderEntity(I),S, sublevel);
S << "\n"
<< "Entity Label Level Number : "
<< ent->LabelLevel(I) << " "
<< "Displayed Entity : ";
dumper.Dump (ent->DisplayedEntity(I),S, sublevel);
S << "\n";
}
}
S << std::endl;
}