summaryrefslogtreecommitdiff
path: root/src/IGESSolid/IGESSolid_ToolVertexList.cxx
blob: cc5c4fe9fc4c53ca7e1626c0e83941ae1cce00fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
//--------------------------------------------------------------------
//
//  File Name : IGESSolid_VertexList.cxx
//  Date      :
//  Author    : CKY / Contract Toubro-Larsen
//  Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------

#include <IGESSolid_ToolVertexList.ixx>
#include <IGESData_ParamCursor.hxx>
#include <gp_XYZ.hxx>
#include <gp_Pnt.hxx>
#include <TColgp_HArray1OfXYZ.hxx>
#include <IGESData_Dump.hxx>
#include <Interface_Macros.hxx>

// MGE 03/08/98
#include <Message_Msg.hxx>


//=======================================================================
//function : IGESSolid_ToolVertexList
//purpose  : 
//=======================================================================

IGESSolid_ToolVertexList::IGESSolid_ToolVertexList ()
{
}


//=======================================================================
//function : ReadOwnParams
//purpose  : 
//=======================================================================

void IGESSolid_ToolVertexList::ReadOwnParams(const Handle(IGESSolid_VertexList)& ent,
                                             const Handle(IGESData_IGESReaderData)& /* IR */,
                                             IGESData_ParamReader& PR) const
{
  // MGE 03/08/98
  // Building of messages
  //========================================
//  Message_Msg Msg182("XSTEP_182");
//  Message_Msg Msg183("XSTEP_183");
  //========================================

  //Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
  Standard_Integer nbitems = 0; //szv#4:S4163:12Mar99 `i` moved in for
  //gp_XYZ anXYZ; //szv#4:S4163:12Mar99 moved down
  Handle(TColgp_HArray1OfXYZ) tempVertices;

  //st = PR.ReadInteger(PR.Current(), Msg182, nbitems); //szv#4:S4163:12Mar99 moved in if
  //st = PR.ReadInteger(PR.Current(), "Number of Vertices", nbitems);
  Standard_Boolean sb = PR.ReadInteger(PR.Current(), nbitems);
  if (sb && (nbitems > 0)) {
    
    Message_Msg Msg183("XSTEP_183");
    
    tempVertices = new TColgp_HArray1OfXYZ(1, nbitems);
    
    gp_XYZ anXYZ;
    for (Standard_Integer i = 1; i <= nbitems; i++)
      {
	//st = PR.ReadXYZ(PR.CurrentList(1, 3), Msg183, anXYZ); //szv#4:S4163:12Mar99 moved in if
	//st = PR.ReadXYZ(PR.CurrentList(1, 3), "Vertices", anXYZ);
	if (PR.ReadXYZ(PR.CurrentList(1, 3), Msg183, anXYZ))
	  tempVertices->SetValue(i, anXYZ);
      }
  }
  else {
    Message_Msg Msg182("XSTEP_182");
    PR.SendFail(Msg182);
  }

  DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
  if (nbitems > 0) ent->Init (tempVertices);
}


//=======================================================================
//function : WriteOwnParams
//purpose  : 
//=======================================================================

void IGESSolid_ToolVertexList::WriteOwnParams(const Handle(IGESSolid_VertexList)& ent,
                                              IGESData_IGESWriter& IW) const
{
  Standard_Integer nbitems = ent->NbVertices();
  Standard_Integer i;

  IW.Send(nbitems);
  for (i = 1; i <= nbitems; i ++)
    {
      IW.Send(ent->Vertex(i).X());
      IW.Send(ent->Vertex(i).Y());
      IW.Send(ent->Vertex(i).Z());
    }
}


//=======================================================================
//function : OwnShared
//purpose  : 
//=======================================================================

void IGESSolid_ToolVertexList::OwnShared(const Handle(IGESSolid_VertexList)& /* ent */,
                                         Interface_EntityIterator& /* iter */) const
{
}


//=======================================================================
//function : OwnCopy
//purpose  : 
//=======================================================================

void IGESSolid_ToolVertexList::OwnCopy(const Handle(IGESSolid_VertexList)& another,
                                       const Handle(IGESSolid_VertexList)& ent,
                                       Interface_CopyTool& /* TC */) const
{
  Standard_Integer nbitems, i;

  nbitems = another->NbVertices();
  Handle(TColgp_HArray1OfXYZ) tempVertices = new
    TColgp_HArray1OfXYZ(1, nbitems);

  for (i=1; i<=nbitems; i++)
    {
      tempVertices->SetValue(i, another->Vertex(i).XYZ());
    }
  ent->Init(tempVertices);
}


//=======================================================================
//function : DirChecker
//purpose  : 
//=======================================================================

IGESData_DirChecker IGESSolid_ToolVertexList::DirChecker
  (const Handle(IGESSolid_VertexList)& /* ent */ ) const
{
  IGESData_DirChecker DC(502, 1);

  DC.Structure  (IGESData_DefVoid);
  DC.LineFont   (IGESData_DefVoid);
  DC.LineWeight (IGESData_DefVoid);
  DC.Color      (IGESData_DefAny);

  DC.SubordinateStatusRequired (1);
  DC.HierarchyStatusIgnored ();
  return DC;
}


//=======================================================================
//function : OwnCheck
//purpose  : 
//=======================================================================

void IGESSolid_ToolVertexList::OwnCheck(const Handle(IGESSolid_VertexList)& ent,
                                        const Interface_ShareTool&,
                                        Handle(Interface_Check)& ach) const
{
  // MGE 03/08/98
  // Building of messages
  //========================================
  //Message_Msg Msg182("XSTEP_182");
  //========================================

  if (ent->NbVertices() <= 0) {
    Message_Msg Msg182("XSTEP_182");
    ach->SendFail(Msg182);
  }
}


//=======================================================================
//function : OwnDump
//purpose  : 
//=======================================================================

void IGESSolid_ToolVertexList::OwnDump(const Handle(IGESSolid_VertexList)& ent,
                                       const IGESData_IGESDumper& /* dumper */,
                                       const Handle(Message_Messenger)& S,
                                       const Standard_Integer level) const
{
  S << "IGESSolid_VertexList" << endl;

  S << "Vertices : ";
  IGESData_DumpListXYZL(S ,level,1, ent->NbVertices(),ent->Vertex,ent->Location());
  S << endl;
}