0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / RWStepVisual / RWStepVisual_RWDraughtingModel.cxx
CommitLineData
b311480e 1// Created on: 2000-01-13
2// Created by: Andrey BETENEV
973c2be1 3// Copyright (c) 2000-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
7fd59977 16// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
7fd59977 17
42cf5bc1 18#include <Interface_Check.hxx>
19#include <Interface_EntityIterator.hxx>
20#include <RWStepVisual_RWDraughtingModel.hxx>
21#include <StepData_StepReaderData.hxx>
22#include <StepData_StepWriter.hxx>
7fd59977 23#include <StepRepr_HArray1OfRepresentationItem.hxx>
ec357c5c 24#include <StepRepr_RepresentationContext.hxx>
42cf5bc1 25#include <StepRepr_RepresentationItem.hxx>
26#include <StepVisual_DraughtingModel.hxx>
7fd59977 27
28//=======================================================================
29//function : RWStepVisual_RWDraughtingModel
30//purpose :
31//=======================================================================
7fd59977 32RWStepVisual_RWDraughtingModel::RWStepVisual_RWDraughtingModel ()
33{
34}
35
36//=======================================================================
37//function : ReadStep
38//purpose :
39//=======================================================================
40
41void RWStepVisual_RWDraughtingModel::ReadStep (const Handle(StepData_StepReaderData)& data,
42 const Standard_Integer num,
43 Handle(Interface_Check)& ach,
44 const Handle(StepVisual_DraughtingModel) &ent) const
45{
46 // Check number of parameters
47 if ( ! data->CheckNbParams(num,3,ach,"draughting_model") ) return;
48
49 // Inherited fields of Representation
50
51 Handle(TCollection_HAsciiString) aRepresentation_Name;
52 data->ReadString (num, 1, "representation.name", ach, aRepresentation_Name);
53
54 Handle(StepRepr_HArray1OfRepresentationItem) aRepresentation_Items;
55 Standard_Integer sub2 = 0;
56 if ( data->ReadSubList (num, 2, "representation.items", ach, sub2) ) {
57 Standard_Integer num2 = sub2;
58 Standard_Integer nb0 = data->NbParams(num2);
9063f1e0 59 if (nb0 > 0)
60 {
61 aRepresentation_Items = new StepRepr_HArray1OfRepresentationItem (1, nb0);
62 for ( Standard_Integer i0=1; i0 <= nb0; i0++ ) {
63 Handle(StepRepr_RepresentationItem) anIt0;
64 data->ReadEntity (num2, i0, "representation.items", ach, STANDARD_TYPE(StepRepr_RepresentationItem), anIt0);
65 aRepresentation_Items->SetValue(i0, anIt0);
66 }
7fd59977 67 }
68 }
69
70 Handle(StepRepr_RepresentationContext) aRepresentation_ContextOfItems;
71 data->ReadEntity (num, 3, "representation.context_of_items", ach, STANDARD_TYPE(StepRepr_RepresentationContext), aRepresentation_ContextOfItems);
72
73 // Initialize entity
74 ent->Init(aRepresentation_Name,
75 aRepresentation_Items,
76 aRepresentation_ContextOfItems);
77}
78
79//=======================================================================
80//function : WriteStep
81//purpose :
82//=======================================================================
83
84void RWStepVisual_RWDraughtingModel::WriteStep (StepData_StepWriter& SW,
85 const Handle(StepVisual_DraughtingModel) &ent) const
86{
87
88 // Inherited fields of Representation
89
90 SW.Send (ent->StepRepr_Representation::Name());
91
92 SW.OpenSub();
0df4bbd6 93 for (Standard_Integer i1=1; i1 <= ent->StepRepr_Representation::NbItems(); i1++ ) {
7fd59977 94 Handle(StepRepr_RepresentationItem) Var0 = ent->StepRepr_Representation::Items()->Value(i1);
95 SW.Send (Var0);
96 }
97 SW.CloseSub();
98
99 SW.Send (ent->StepRepr_Representation::ContextOfItems());
100}
101
102//=======================================================================
103//function : Share
104//purpose :
105//=======================================================================
106
107void RWStepVisual_RWDraughtingModel::Share (const Handle(StepVisual_DraughtingModel) &ent,
108 Interface_EntityIterator& iter) const
109{
110
111 // Inherited fields of Representation
112
0df4bbd6 113 for (Standard_Integer i1=1; i1 <= ent->StepRepr_Representation::NbItems(); i1++ ) {
7fd59977 114 Handle(StepRepr_RepresentationItem) Var0 = ent->StepRepr_Representation::Items()->Value(i1);
115 iter.AddItem (Var0);
116 }
117
118 iter.AddItem (ent->StepRepr_Representation::ContextOfItems());
119}