0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / RWStepShape / RWStepShape_RWEdgeBasedWireframeModel.cxx
1 // Created on: 2001-12-28
2 // Created by: Andrey BETENEV
3 // Copyright (c) 2001-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.1
17
18 #include <Interface_Check.hxx>
19 #include <Interface_EntityIterator.hxx>
20 #include <RWStepShape_RWEdgeBasedWireframeModel.hxx>
21 #include <StepData_StepReaderData.hxx>
22 #include <StepData_StepWriter.hxx>
23 #include <StepShape_ConnectedEdgeSet.hxx>
24 #include <StepShape_EdgeBasedWireframeModel.hxx>
25 #include <StepShape_HArray1OfConnectedEdgeSet.hxx>
26
27 //=======================================================================
28 //function : RWStepShape_RWEdgeBasedWireframeModel
29 //purpose  : 
30 //=======================================================================
31 RWStepShape_RWEdgeBasedWireframeModel::RWStepShape_RWEdgeBasedWireframeModel ()
32 {
33 }
34
35 //=======================================================================
36 //function : ReadStep
37 //purpose  : 
38 //=======================================================================
39
40 void RWStepShape_RWEdgeBasedWireframeModel::ReadStep (const Handle(StepData_StepReaderData)& data,
41                                                       const Standard_Integer num,
42                                                       Handle(Interface_Check)& ach,
43                                                       const Handle(StepShape_EdgeBasedWireframeModel) &ent) const
44 {
45   // Check number of parameters
46   if ( ! data->CheckNbParams(num,2,ach,"edge_based_wireframe_model") ) return;
47
48   // Inherited fields of RepresentationItem
49
50   Handle(TCollection_HAsciiString) aRepresentationItem_Name;
51   data->ReadString (num, 1, "representation_item.name", ach, aRepresentationItem_Name);
52
53   // Own fields of EdgeBasedWireframeModel
54
55   Handle(StepShape_HArray1OfConnectedEdgeSet) aEbwmBoundary;
56   Standard_Integer sub2 = 0;
57   if ( data->ReadSubList (num, 2, "ebwm_boundary", ach, sub2) ) {
58     Standard_Integer num2 = sub2;
59     Standard_Integer nb0 = data->NbParams(num2);
60     aEbwmBoundary = new StepShape_HArray1OfConnectedEdgeSet (1, nb0);
61     for ( Standard_Integer i0=1; i0 <= nb0; i0++ ) {
62       Handle(StepShape_ConnectedEdgeSet) anIt0;
63       data->ReadEntity (num2, i0, "ebwm_boundary", ach, STANDARD_TYPE(StepShape_ConnectedEdgeSet), anIt0);
64       aEbwmBoundary->SetValue(i0, anIt0);
65     }
66   }
67
68   // Initialize entity
69   ent->Init(aRepresentationItem_Name,
70             aEbwmBoundary);
71 }
72
73 //=======================================================================
74 //function : WriteStep
75 //purpose  : 
76 //=======================================================================
77
78 void RWStepShape_RWEdgeBasedWireframeModel::WriteStep (StepData_StepWriter& SW,
79                                                        const Handle(StepShape_EdgeBasedWireframeModel) &ent) const
80 {
81
82   // Inherited fields of RepresentationItem
83
84   SW.Send (ent->StepRepr_RepresentationItem::Name());
85
86   // Own fields of EdgeBasedWireframeModel
87
88   SW.OpenSub();
89   for (Standard_Integer i1=1; i1 <= ent->EbwmBoundary()->Length(); i1++ ) {
90     Handle(StepShape_ConnectedEdgeSet) Var0 = ent->EbwmBoundary()->Value(i1);
91     SW.Send (Var0);
92   }
93   SW.CloseSub();
94 }
95
96 //=======================================================================
97 //function : Share
98 //purpose  : 
99 //=======================================================================
100
101 void RWStepShape_RWEdgeBasedWireframeModel::Share (const Handle(StepShape_EdgeBasedWireframeModel) &ent,
102                                                    Interface_EntityIterator& iter) const
103 {
104
105   // Inherited fields of RepresentationItem
106
107   // Own fields of EdgeBasedWireframeModel
108
109   for (Standard_Integer i1=1; i1 <= ent->EbwmBoundary()->Length(); i1++ ) {
110     Handle(StepShape_ConnectedEdgeSet) Var0 = ent->EbwmBoundary()->Value(i1);
111     iter.AddItem (Var0);
112   }
113 }