13161312c16a5000334bc96cb7b77765bacf2539
[occt.git] / src / RWStepVisual / RWStepVisual_RWDraughtingModel.cxx
1 // Created on: 2000-01-13
2 // Created by: Andrey BETENEV
3 // Copyright (c) 2000-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
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
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.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 // Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.0
17
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>
23 #include <StepRepr_HArray1OfRepresentationItem.hxx>
24 #include <StepRepr_RepresentationContext.hxx>
25 #include <StepRepr_RepresentationItem.hxx>
26 #include <StepVisual_DraughtingModel.hxx>
27
28 //=======================================================================
29 //function : RWStepVisual_RWDraughtingModel
30 //purpose  : 
31 //=======================================================================
32 RWStepVisual_RWDraughtingModel::RWStepVisual_RWDraughtingModel ()
33 {
34 }
35
36 //=======================================================================
37 //function : ReadStep
38 //purpose  : 
39 //=======================================================================
40
41 void 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);
59     aRepresentation_Items = new StepRepr_HArray1OfRepresentationItem (1, nb0);
60     for ( Standard_Integer i0=1; i0 <= nb0; i0++ ) {
61       Handle(StepRepr_RepresentationItem) anIt0;
62       data->ReadEntity (num2, i0, "representation.items", ach, STANDARD_TYPE(StepRepr_RepresentationItem), anIt0);
63       aRepresentation_Items->SetValue(i0, anIt0);
64     }
65   }
66
67   Handle(StepRepr_RepresentationContext) aRepresentation_ContextOfItems;
68   data->ReadEntity (num, 3, "representation.context_of_items", ach, STANDARD_TYPE(StepRepr_RepresentationContext), aRepresentation_ContextOfItems);
69
70   // Initialize entity
71   ent->Init(aRepresentation_Name,
72             aRepresentation_Items,
73             aRepresentation_ContextOfItems);
74 }
75
76 //=======================================================================
77 //function : WriteStep
78 //purpose  : 
79 //=======================================================================
80
81 void RWStepVisual_RWDraughtingModel::WriteStep (StepData_StepWriter& SW,
82                                                 const Handle(StepVisual_DraughtingModel) &ent) const
83 {
84
85   // Inherited fields of Representation
86
87   SW.Send (ent->StepRepr_Representation::Name());
88
89   SW.OpenSub();
90   for (Standard_Integer i1=1; i1 <= ent->StepRepr_Representation::NbItems(); i1++ ) {
91     Handle(StepRepr_RepresentationItem) Var0 = ent->StepRepr_Representation::Items()->Value(i1);
92     SW.Send (Var0);
93   }
94   SW.CloseSub();
95
96   SW.Send (ent->StepRepr_Representation::ContextOfItems());
97 }
98
99 //=======================================================================
100 //function : Share
101 //purpose  : 
102 //=======================================================================
103
104 void RWStepVisual_RWDraughtingModel::Share (const Handle(StepVisual_DraughtingModel) &ent,
105                                             Interface_EntityIterator& iter) const
106 {
107
108   // Inherited fields of Representation
109
110   for (Standard_Integer i1=1; i1 <= ent->StepRepr_Representation::NbItems(); i1++ ) {
111     Handle(StepRepr_RepresentationItem) Var0 = ent->StepRepr_Representation::Items()->Value(i1);
112     iter.AddItem (Var0);
113   }
114
115   iter.AddItem (ent->StepRepr_Representation::ContextOfItems());
116 }