// 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include IGESAppli_ToolPWBArtworkStackup::IGESAppli_ToolPWBArtworkStackup () { } void IGESAppli_ToolPWBArtworkStackup::ReadOwnParams (const Handle(IGESAppli_PWBArtworkStackup)& ent, const Handle(IGESData_IGESReaderData)& /* IR */, IGESData_ParamReader& PR) const { //Standard_Boolean st; //szv#4:S4163:12Mar99 not needed Standard_Integer num; Standard_Integer tempNbPropertyValues; Handle(TCollection_HAsciiString) tempArtworkStackupIdent; Handle(TColStd_HArray1OfInteger) tempLevelNumbers; //szv#4:S4163:12Mar99 `st=` not needed PR.ReadInteger(PR.Current(), "Number of property values", tempNbPropertyValues); PR.ReadText(PR.Current(), "Artwork Stackup Identification", tempArtworkStackupIdent); if (!PR.ReadInteger(PR.Current(), "Number of level numbers", num)) num = 0; if (num > 0) tempLevelNumbers = new TColStd_HArray1OfInteger(1, num); else PR.AddFail("Number of level numbers: Not Positive"); if (!tempLevelNumbers.IsNull()) PR.ReadInts(PR.CurrentList(num), "Level Numbers", tempLevelNumbers); DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent); ent->Init (tempNbPropertyValues, tempArtworkStackupIdent, tempLevelNumbers); } void IGESAppli_ToolPWBArtworkStackup::WriteOwnParams (const Handle(IGESAppli_PWBArtworkStackup)& ent, IGESData_IGESWriter& IW) const { Standard_Integer i, num; IW.Send(ent->NbPropertyValues()); IW.Send(ent->Identification()); IW.Send(ent->NbLevelNumbers()); for ( num = ent->NbLevelNumbers(), i = 1; i <= num; i++ ) IW.Send(ent->LevelNumber(i)); } void IGESAppli_ToolPWBArtworkStackup::OwnShared (const Handle(IGESAppli_PWBArtworkStackup)& /* ent */, Interface_EntityIterator& /* iter */) const { } void IGESAppli_ToolPWBArtworkStackup::OwnCopy (const Handle(IGESAppli_PWBArtworkStackup)& another, const Handle(IGESAppli_PWBArtworkStackup)& ent, Interface_CopyTool& /* TC */) const { Standard_Integer num = another->NbLevelNumbers(); Standard_Integer tempNbPropertyValues = another->NbPropertyValues(); Handle(TCollection_HAsciiString) tempArtworkStackupIdent = new TCollection_HAsciiString(another->Identification()); Handle(TColStd_HArray1OfInteger) tempLevelNumbers = new TColStd_HArray1OfInteger(1, num); for ( Standard_Integer i = 1; i <= num; i++ ) tempLevelNumbers->SetValue(i, another->LevelNumber(i)); ent->Init(tempNbPropertyValues, tempArtworkStackupIdent, tempLevelNumbers); } IGESData_DirChecker IGESAppli_ToolPWBArtworkStackup::DirChecker (const Handle(IGESAppli_PWBArtworkStackup)& /* ent */ ) const { IGESData_DirChecker DC(406, 25); DC.Structure(IGESData_DefVoid); DC.GraphicsIgnored(); DC.LineFont(IGESData_DefVoid); DC.LineWeight(IGESData_DefVoid); DC.Color(IGESData_DefVoid); DC.BlankStatusIgnored(); DC.UseFlagIgnored(); DC.HierarchyStatusIgnored(); return DC; } void IGESAppli_ToolPWBArtworkStackup::OwnCheck (const Handle(IGESAppli_PWBArtworkStackup)& /* ent */, const Interface_ShareTool& , Handle(Interface_Check)& /* ach */) const { } void IGESAppli_ToolPWBArtworkStackup::OwnDump (const Handle(IGESAppli_PWBArtworkStackup)& ent, const IGESData_IGESDumper& /* dumper */, const Handle(Message_Messenger)& S, const Standard_Integer level) const { S << "IGESAppli_PWBArtworkStackup" << endl; S << "Number of property values : " << ent->NbPropertyValues() << endl; S << "Artwork Stackup Identification : "; IGESData_DumpString(S,ent->Identification()); S << endl; S << "Level Numbers : "; IGESData_DumpVals(S ,level,1, ent->NbLevelNumbers(),ent->LevelNumber); S << endl; }