Warnings on vc14 were eliminated
[occt.git] / src / RWStepShape / RWStepShape_RWFaceSurface.cxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
d5f74e42 5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
7fd59977 13
7fd59977 14
42cf5bc1 15#include <Interface_Check.hxx>
7fd59977 16#include <Interface_EntityIterator.hxx>
42cf5bc1 17#include <RWStepShape_RWFaceSurface.hxx>
18#include <StepData_StepReaderData.hxx>
19#include <StepData_StepWriter.hxx>
20#include <StepGeom_Surface.hxx>
21#include <StepShape_FaceBound.hxx>
7fd59977 22#include <StepShape_FaceSurface.hxx>
42cf5bc1 23#include <StepShape_HArray1OfFaceBound.hxx>
7fd59977 24
25RWStepShape_RWFaceSurface::RWStepShape_RWFaceSurface () {}
26
27void RWStepShape_RWFaceSurface::ReadStep
28 (const Handle(StepData_StepReaderData)& data,
29 const Standard_Integer num,
30 Handle(Interface_Check)& ach,
31 const Handle(StepShape_FaceSurface)& ent) const
32{
33
34
35 // --- Number of Parameter Control ---
36
37 if (!data->CheckNbParams(num,4,ach,"face_surface")) return;
38
39 // --- inherited field : name ---
40
41 Handle(TCollection_HAsciiString) aName;
42 //szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
43 data->ReadString (num,1,"name",ach,aName);
44
45 // --- inherited field : bounds ---
46
47 Handle(StepShape_HArray1OfFaceBound) aBounds;
48 Handle(StepShape_FaceBound) anent2;
49 Standard_Integer nsub2;
50 if (data->ReadSubList (num,2,"bounds",ach,nsub2)) {
51 Standard_Integer nb2 = data->NbParams(nsub2);
52 aBounds = new StepShape_HArray1OfFaceBound (1, nb2);
53 for (Standard_Integer i2 = 1; i2 <= nb2; i2 ++) {
54 //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
55 if (data->ReadEntity (nsub2, i2,"face_bound", ach, STANDARD_TYPE(StepShape_FaceBound), anent2))
56 aBounds->SetValue(i2, anent2);
57 }
58 }
59
60 // --- own field : faceGeometry ---
61
62 Handle(StepGeom_Surface) aFaceGeometry;
63 //szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
64 data->ReadEntity(num, 3,"face_geometry", ach, STANDARD_TYPE(StepGeom_Surface), aFaceGeometry);
65
66 // --- own field : sameSense ---
67
68 Standard_Boolean aSameSense;
69 //szv#4:S4163:12Mar99 `Standard_Boolean stat4 =` not needed
70 data->ReadBoolean (num,4,"same_sense",ach,aSameSense);
71
72 //--- Initialisation of the read entity ---
73
74
75 ent->Init(aName, aBounds, aFaceGeometry, aSameSense);
76}
77
78
79void RWStepShape_RWFaceSurface::WriteStep
80 (StepData_StepWriter& SW,
81 const Handle(StepShape_FaceSurface)& ent) const
82{
83
84 // --- inherited field name ---
85
86 SW.Send(ent->Name());
87
88 // --- inherited field bounds ---
89
90 SW.OpenSub();
91 for (Standard_Integer i2 = 1; i2 <= ent->NbBounds(); i2 ++) {
92 SW.Send(ent->BoundsValue(i2));
93 }
94 SW.CloseSub();
95
96 // --- own field : faceGeometry ---
97
98 SW.Send(ent->FaceGeometry());
99
100 // --- own field : sameSense ---
101
102 SW.SendBoolean(ent->SameSense());
103}
104
105
106void RWStepShape_RWFaceSurface::Share(const Handle(StepShape_FaceSurface)& ent, Interface_EntityIterator& iter) const
107{
108
109 Standard_Integer nbElem1 = ent->NbBounds();
110 for (Standard_Integer is1=1; is1<=nbElem1; is1 ++) {
111 iter.GetOneItem(ent->BoundsValue(is1));
112 }
113
114
115
116 iter.GetOneItem(ent->FaceGeometry());
117}
118