1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-07-30 13:05:50 +03:00
occt/src/IGESDraw/IGESDraw_ToolView.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

175 lines
6.6 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_IGESDumper.hxx>
#include <IGESData_IGESReaderData.hxx>
#include <IGESData_IGESWriter.hxx>
#include <IGESData_ParamCursor.hxx>
#include <IGESData_ParamReader.hxx>
#include <IGESData_TransfEntity.hxx>
#include <IGESDraw_ToolView.hxx>
#include <IGESDraw_View.hxx>
#include <IGESGeom_Plane.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>
IGESDraw_ToolView::IGESDraw_ToolView () { }
void IGESDraw_ToolView::ReadOwnParams
(const Handle(IGESDraw_View)& ent,
const Handle(IGESData_IGESReaderData)& IR, IGESData_ParamReader& PR) const
{
//Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
Standard_Integer tempViewNumber;
Standard_Real tempScaleFactor;
Handle(IGESGeom_Plane) tempLeftPlane, tempTopPlane, tempRightPlane;
Handle(IGESGeom_Plane) tempBottomPlane, tempBackPlane, tempFrontPlane;
PR.ReadInteger(PR.Current(), "View Number", tempViewNumber); //szv#4:S4163:12Mar99 `st=` not needed
if (PR.DefinedElseSkip())
PR.ReadReal(PR.Current(), "Scale Factor", tempScaleFactor); //szv#4:S4163:12Mar99 `st=` not needed
else
tempScaleFactor = 1.0; // Setting to default value of 1.0
PR.ReadEntity(IR, PR.Current(), "Left Side Of View Volume",
STANDARD_TYPE(IGESGeom_Plane), tempLeftPlane, Standard_True); //szv#4:S4163:12Mar99 `st=` not needed
PR.ReadEntity(IR, PR.Current(), "Top Side Of View Volume",
STANDARD_TYPE(IGESGeom_Plane), tempTopPlane, Standard_True); //szv#4:S4163:12Mar99 `st=` not needed
PR.ReadEntity(IR, PR.Current(), "Right Side Of View Volume",
STANDARD_TYPE(IGESGeom_Plane), tempRightPlane, Standard_True); //szv#4:S4163:12Mar99 `st=` not needed
PR.ReadEntity(IR, PR.Current(), "Bottom Side Of View Volume",
STANDARD_TYPE(IGESGeom_Plane), tempBottomPlane, Standard_True); //szv#4:S4163:12Mar99 `st=` not needed
PR.ReadEntity(IR, PR.Current(), "Back Side Of View Volume",
STANDARD_TYPE(IGESGeom_Plane), tempBackPlane, Standard_True); //szv#4:S4163:12Mar99 `st=` not needed
PR.ReadEntity(IR, PR.Current(), "Front Side Of View Volume",
STANDARD_TYPE(IGESGeom_Plane), tempFrontPlane, Standard_True); //szv#4:S4163:12Mar99 `st=` not needed
DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
ent->Init
(tempViewNumber, tempScaleFactor, tempLeftPlane, tempTopPlane,
tempRightPlane, tempBottomPlane, tempBackPlane, tempFrontPlane);
}
void IGESDraw_ToolView::WriteOwnParams
(const Handle(IGESDraw_View)& ent, IGESData_IGESWriter& IW) const
{
IW.Send(ent->ViewNumber());
IW.Send(ent->ScaleFactor());
IW.Send(ent->LeftPlane());
IW.Send(ent->TopPlane());
IW.Send(ent->RightPlane());
IW.Send(ent->BottomPlane());
IW.Send(ent->BackPlane());
IW.Send(ent->FrontPlane());
}
void IGESDraw_ToolView::OwnShared
(const Handle(IGESDraw_View)& ent, Interface_EntityIterator& iter) const
{
iter.GetOneItem(ent->LeftPlane());
iter.GetOneItem(ent->TopPlane());
iter.GetOneItem(ent->RightPlane());
iter.GetOneItem(ent->BottomPlane());
iter.GetOneItem(ent->BackPlane());
iter.GetOneItem(ent->FrontPlane());
}
void IGESDraw_ToolView::OwnCopy
(const Handle(IGESDraw_View)& another,
const Handle(IGESDraw_View)& ent, Interface_CopyTool& TC) const
{
Standard_Integer tempViewNumber = another->ViewNumber();
Standard_Real tempScaleFactor = another->ScaleFactor();
DeclareAndCast(IGESGeom_Plane, tempLeftPlane,
TC.Transferred(another->LeftPlane()));
DeclareAndCast(IGESGeom_Plane, tempTopPlane,
TC.Transferred(another->TopPlane()));
DeclareAndCast(IGESGeom_Plane, tempRightPlane,
TC.Transferred(another->RightPlane()));
DeclareAndCast(IGESGeom_Plane, tempBottomPlane,
TC.Transferred(another->BottomPlane()));
DeclareAndCast(IGESGeom_Plane, tempBackPlane,
TC.Transferred(another->BackPlane()));
DeclareAndCast(IGESGeom_Plane, tempFrontPlane,
TC.Transferred(another->FrontPlane()));
ent->Init(tempViewNumber, tempScaleFactor, tempLeftPlane, tempTopPlane,
tempRightPlane, tempBottomPlane, tempBackPlane, tempFrontPlane);
}
IGESData_DirChecker IGESDraw_ToolView::DirChecker
(const Handle(IGESDraw_View)& /*ent*/) const
{
IGESData_DirChecker DC(410, 0);
DC.Structure(IGESData_DefVoid);
DC.LineFont(IGESData_DefVoid);
DC.LineWeight(IGESData_DefVoid);
DC.Color(IGESData_DefVoid);
DC.BlankStatusIgnored();
DC.UseFlagRequired(1);
DC.HierarchyStatusIgnored();
return DC;
}
void IGESDraw_ToolView::OwnCheck
(const Handle(IGESDraw_View)& ent,
const Interface_ShareTool& , Handle(Interface_Check)& ach) const
{
if (ent->HasTransf()) {
if (ent->Transf()->FormNumber() != 0)
ach->AddFail("Associated Matrix has not Form Number 0");
}
}
void IGESDraw_ToolView::OwnDump
(const Handle(IGESDraw_View)& ent, const IGESData_IGESDumper& dumper,
Standard_OStream& S, const Standard_Integer level) const
{
Standard_Integer tempSubLevel = (level <= 4) ? 0 : 1;
S << "IGESDraw_View\n"
<< "View Number : " << ent->ViewNumber() << "\n"
<< "Scale Factor : " << ent->ScaleFactor() << "\n"
<< "Left Plane Of View Volume : ";
dumper.Dump(ent->LeftPlane(),S, tempSubLevel); S << "\n";
S << "Top Plane Of View Volume : ";
dumper.Dump(ent->TopPlane(),S, tempSubLevel); S << "\n";
S << "Right Plane Of View Volume : ";
dumper.Dump(ent->RightPlane(),S, tempSubLevel); S << "\n";
S << "Bottom Plane Of View Volume : ";
dumper.Dump(ent->BottomPlane(),S, tempSubLevel); S << "\n";
S << "Back Plane Of View Volume : ";
dumper.Dump(ent->BackPlane(),S, tempSubLevel); S << "\n";
S << "Front Plane Of View Volume : ";
dumper.Dump(ent->FrontPlane(),S, tempSubLevel); S << std::endl;
}