mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-21 10:55:33 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
148 lines
5.2 KiB
C++
148 lines
5.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 <IGESDefs_ToolMacroDef.ixx>
|
|
#include <IGESData_ParamCursor.hxx>
|
|
#include <TCollection_HAsciiString.hxx>
|
|
#include <Interface_HArray1OfHAsciiString.hxx>
|
|
#include <IGESData_Dump.hxx>
|
|
#include <Interface_Macros.hxx>
|
|
|
|
|
|
IGESDefs_ToolMacroDef::IGESDefs_ToolMacroDef () { }
|
|
|
|
|
|
void IGESDefs_ToolMacroDef::ReadOwnParams
|
|
(const Handle(IGESDefs_MacroDef)& ent,
|
|
const Handle(IGESData_IGESReaderData)& /* IR */, IGESData_ParamReader& PR) const
|
|
{
|
|
//Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
|
|
|
|
Handle(TCollection_HAsciiString) macro;
|
|
Standard_Integer entityTypeID;
|
|
Handle(Interface_HArray1OfHAsciiString) langStatements;
|
|
Handle(TCollection_HAsciiString) endMacro;
|
|
|
|
PR.ReadText(PR.Current(), "MACRO", macro); //szv#4:S4163:12Mar99 `st=` not needed
|
|
|
|
PR.ReadInteger(PR.Current(), "Entity Type ID", entityTypeID); //szv#4:S4163:12Mar99 `st=` not needed
|
|
|
|
Standard_Integer tempCurrent = PR.CurrentNumber();
|
|
// Counting the no. of language statements.
|
|
Standard_Integer nbval; // svv Jan 10 2000 : porting on DEC
|
|
for (nbval = 0; PR.CurrentNumber() != PR.NbParams();
|
|
nbval++, PR.SetCurrentNumber(PR.CurrentNumber() + 1));
|
|
|
|
PR.SetCurrentNumber(tempCurrent);
|
|
if (nbval > 0) langStatements =
|
|
new Interface_HArray1OfHAsciiString(1, nbval);
|
|
else PR.AddFail("Number of Lang. Stats. : Not Positive");
|
|
|
|
if (! langStatements.IsNull())
|
|
{
|
|
for (Standard_Integer i = 1; i <= nbval; i++)
|
|
{
|
|
Handle(TCollection_HAsciiString) langStat;
|
|
//st = PR.ReadText(PR.Current(), "Language Statement", langStat); //szv#4:S4163:12Mar99 moved in if
|
|
if (PR.ReadText(PR.Current(), "Language Statement", langStat))
|
|
langStatements->SetValue(i, langStat);
|
|
}
|
|
}
|
|
|
|
PR.ReadText(PR.Current(), "END MACRO", endMacro); //szv#4:S4163:12Mar99 `st=` not needed
|
|
|
|
DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
|
|
ent->Init (macro, entityTypeID, langStatements, endMacro);
|
|
}
|
|
|
|
void IGESDefs_ToolMacroDef::WriteOwnParams
|
|
(const Handle(IGESDefs_MacroDef)& ent, IGESData_IGESWriter& IW) const
|
|
{
|
|
IW.Send(ent->MACRO());
|
|
IW.Send(ent->EntityTypeID());
|
|
Standard_Integer upper = ent->NbStatements();
|
|
for (Standard_Integer i = 1; i <= upper; i++)
|
|
IW.Send(ent->LanguageStatement(i));
|
|
IW.Send(ent->ENDMACRO());
|
|
}
|
|
|
|
void IGESDefs_ToolMacroDef::OwnShared
|
|
(const Handle(IGESDefs_MacroDef)& /* ent */, Interface_EntityIterator& /* iter */) const
|
|
{
|
|
}
|
|
|
|
void IGESDefs_ToolMacroDef::OwnCopy
|
|
(const Handle(IGESDefs_MacroDef)& another,
|
|
const Handle(IGESDefs_MacroDef)& ent, Interface_CopyTool& /* TC */) const
|
|
{
|
|
|
|
Handle(TCollection_HAsciiString) macro =
|
|
new TCollection_HAsciiString(another->MACRO());
|
|
Standard_Integer entityTypeID = another->EntityTypeID();
|
|
Handle(TCollection_HAsciiString) endMacro =
|
|
new TCollection_HAsciiString(another->ENDMACRO());
|
|
Handle(Interface_HArray1OfHAsciiString) langStatements;
|
|
Standard_Integer nbval = another->NbStatements();
|
|
langStatements = new Interface_HArray1OfHAsciiString(1, nbval);
|
|
|
|
for (Standard_Integer i = 1; i <= nbval; i++)
|
|
{
|
|
Handle(TCollection_HAsciiString) langStat =
|
|
new TCollection_HAsciiString(another->LanguageStatement(i));
|
|
langStatements->SetValue(i, langStat);
|
|
}
|
|
ent->Init(macro, entityTypeID, langStatements, endMacro);
|
|
}
|
|
|
|
IGESData_DirChecker IGESDefs_ToolMacroDef::DirChecker
|
|
(const Handle(IGESDefs_MacroDef)& /* ent */ ) const
|
|
{
|
|
IGESData_DirChecker DC (306, 0);
|
|
DC.Structure(IGESData_DefVoid);
|
|
DC.LineFont(IGESData_DefVoid);
|
|
DC.LineWeight(IGESData_DefVoid);
|
|
DC.Color(IGESData_DefVoid);
|
|
DC.BlankStatusIgnored();
|
|
DC.SubordinateStatusRequired(0);
|
|
DC.UseFlagRequired(2);
|
|
DC.HierarchyStatusIgnored();
|
|
return DC;
|
|
}
|
|
|
|
void IGESDefs_ToolMacroDef::OwnCheck
|
|
(const Handle(IGESDefs_MacroDef)& /* ent */,
|
|
const Interface_ShareTool& , Handle(Interface_Check)& /* ach */) const
|
|
{
|
|
}
|
|
|
|
void IGESDefs_ToolMacroDef::OwnDump
|
|
(const Handle(IGESDefs_MacroDef)& ent, const IGESData_IGESDumper& /* dumper */,
|
|
const Handle(Message_Messenger)& S, const Standard_Integer level) const
|
|
{
|
|
S << "IGESDefs_MacroDef" << endl;
|
|
S << "MACRO : ";
|
|
IGESData_DumpString(S,ent->MACRO());
|
|
S << endl;
|
|
S << "Entity Type ID : " << ent->EntityTypeID() << endl;
|
|
S << "Language Statement : ";
|
|
IGESData_DumpStrings(S ,level,1, ent->NbStatements(),ent->LanguageStatement);
|
|
S << "END MACRO : ";
|
|
IGESData_DumpString(S,ent->ENDMACRO());
|
|
S << endl;
|
|
}
|