0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / RWStepShape / RWStepShape_RWOrientedOpenShell.cxx
1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
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
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.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14
15 #include <Interface_Check.hxx>
16 #include <Interface_EntityIterator.hxx>
17 #include <RWStepShape_RWOrientedOpenShell.hxx>
18 #include <StepData_StepReaderData.hxx>
19 #include <StepData_StepWriter.hxx>
20 #include <StepShape_Face.hxx>
21 #include <StepShape_HArray1OfFace.hxx>
22 #include <StepShape_OpenShell.hxx>
23 #include <StepShape_OrientedOpenShell.hxx>
24
25 RWStepShape_RWOrientedOpenShell::RWStepShape_RWOrientedOpenShell () {}
26
27 void RWStepShape_RWOrientedOpenShell::ReadStep
28         (const Handle(StepData_StepReaderData)& data,
29          const Standard_Integer num,
30          Handle(Interface_Check)& ach,
31          const Handle(StepShape_OrientedOpenShell)& ent) const
32 {
33
34
35         // --- Number of Parameter Control ---
36
37         if (!data->CheckNbParams(num,4,ach,"oriented_open_shell")) 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 : cfsFaces ---
46         // --- this field is redefined ---
47         //szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
48         data->CheckDerived(num,2,"cfs_faces",ach,Standard_False);
49
50         // --- own field : openShellElement ---
51
52         Handle(StepShape_OpenShell) aOpenShellElement;
53         //szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
54         data->ReadEntity(num, 3,"open_shell_element", ach, STANDARD_TYPE(StepShape_OpenShell), aOpenShellElement);
55
56         // --- own field : orientation ---
57
58         Standard_Boolean aOrientation;
59         //szv#4:S4163:12Mar99 `Standard_Boolean stat4 =` not needed
60         data->ReadBoolean (num,4,"orientation",ach,aOrientation);
61
62         //--- Initialisation of the read entity ---
63
64
65         ent->Init(aName, aOpenShellElement, aOrientation);
66 }
67
68
69 void RWStepShape_RWOrientedOpenShell::WriteStep
70         (StepData_StepWriter& SW,
71          const Handle(StepShape_OrientedOpenShell)& ent) const
72 {
73
74         // --- inherited field name ---
75
76         SW.Send(ent->Name());
77
78         // --- inherited field cfsFaces ---
79
80         SW.SendDerived();
81
82         // --- own field : openShellElement ---
83
84         SW.Send(ent->OpenShellElement());
85
86         // --- own field : orientation ---
87
88         SW.SendBoolean(ent->Orientation());
89 }
90
91
92 void RWStepShape_RWOrientedOpenShell::Share(const Handle(StepShape_OrientedOpenShell)& ent, Interface_EntityIterator& iter) const
93 {
94
95         iter.GetOneItem(ent->OpenShellElement());
96 }
97