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
195
196
197
198
199
200
|
#include <IGESSelect_SelectBasicGeom.ixx>
#include <IGESData_IGESEntity.hxx>
#include <IGESGeom_Plane.hxx>
#include <IGESGeom_CompositeCurve.hxx>
#include <IGESGeom_CurveOnSurface.hxx>
#include <IGESGeom_TrimmedSurface.hxx>
#include <IGESGeom_BoundedSurface.hxx>
#include <IGESGeom_Boundary.hxx>
#include <IGESBasic_SingleParent.hxx>
#include <IGESBasic_Group.hxx>
#include <IGESSolid_ManifoldSolid.hxx>
#include <IGESSolid_Shell.hxx>
#include <IGESSolid_Face.hxx>
#include <IGESSolid_Loop.hxx>
#include <IGESSolid_EdgeList.hxx>
#include <Interface_Macros.hxx>
IGESSelect_SelectBasicGeom::IGESSelect_SelectBasicGeom
(const Standard_Integer mode)
: IFSelect_SelectExplore (-1) { thegeom = mode; }
Standard_Boolean IGESSelect_SelectBasicGeom::Explore
(const Standard_Integer level, const Handle(Standard_Transient)& ent,
const Interface_Graph& G, Interface_EntityIterator& explored) const
{
// thegeom > 0 : curves3d < 0 : surfaces == 0 : curves3d + surfaces libres
DeclareAndCast(IGESData_IGESEntity,igesent,ent);
if (igesent.IsNull()) return Standard_False;
Standard_Integer igt = igesent->TypeNumber();
// CompositeCurve : a decomposer ?
if (igt == 102 && thegeom == 2) {
DeclareAndCast(IGESGeom_CompositeCurve,cmc,ent);
Standard_Integer i, nb = cmc->NbCurves();
for (i = 1; i <= nb; i ++) explored.AddItem (cmc->Curve(i));
return Standard_True;
}
// Lignes en general. Attention CopiousData, aux variantes "habillage"
if (igt == 106) return (igesent->FormNumber() < 20);
if ( (igt >= 100 && igt <= 106) || igt == 110 || igt == 112 || igt == 116 ||
igt == 126 || igt == 130) return (thegeom >= 0);
// Surfaces LIBRES, car il n y a pas d autre moyen de les reperer
// (l ideal serait de prendre les bords naturels)
// Ou surfaces debarassees de leurs contours
if (igt == 114 || igt == 118 || igt == 120 || igt == 122 || igt == 128 || igt == 140 || igt == 190)
return (thegeom <= 0);
// Plan 108
// mode surface : on retourne tout le Plane sinon c est inexploitable
if (igt == 108) {
DeclareAndCast(IGESGeom_Plane,pln,ent);
if (thegeom >= 0) explored.AddItem(pln->BoundingCurve());
return pln->HasBoundingCurve();
}
if (igt == 116) return (thegeom >= 0); // on point, ca va bien ...
// TrimmedSurface 144
if (igt == 144) {
DeclareAndCast(IGESGeom_TrimmedSurface,trs,ent);
if (thegeom >= 0) {
explored.AddItem(trs->OuterContour());
Standard_Integer i, nb = trs->NbInnerContours();
for (i = 1; i <= nb; i ++) explored.AddItem (trs->InnerContour(i));
}
else explored.AddItem (trs->Surface());
return Standard_True;
}
// CurveOnSurface 142
if (igt == 142 && thegeom >= 0) {
DeclareAndCast(IGESGeom_CurveOnSurface,crf,ent);
explored.AddItem(crf->Curve3D());
return Standard_True;
}
// Boundary 141
if (igt == 141 && thegeom >= 0) {
DeclareAndCast(IGESGeom_Boundary,bnd,ent);
Standard_Integer i, nb = bnd->NbModelSpaceCurves();
for (i = 1; i <= nb; i ++) explored.AddItem (bnd->ModelSpaceCurve(i));
return (nb > 0);
}
// BoundedSurface 143
if (igt == 143) {
DeclareAndCast(IGESGeom_BoundedSurface,bns,ent);
Standard_Integer i, nb = 0;
if (thegeom >= 0) {
nb = bns->NbBoundaries();
for (i = 1; i <= nb; i ++) explored.AddItem (bns->Boundary(i));
return (nb != 0);
}
else explored.AddItem (bns->Surface());
return Standard_True;
}
// SingleParent
if (igt == 402 && igesent->FormNumber() == 9) {
DeclareAndCast(IGESBasic_SingleParent,sp,ent);
if (sp.IsNull()) return Standard_False;
explored.AddItem (sp->SingleParent());
Standard_Integer i,nb = sp->NbChildren();
for (i = 1; i <= nb; i ++) explored.AddItem (sp->Child(i));
return Standard_True;
}
// Groups ... en dernier de la serie 402
if (igt == 402) {
DeclareAndCast(IGESBasic_Group,gr,ent);
if (gr.IsNull()) return Standard_False;
Standard_Integer i, nb = gr->NbEntities();
for (i = 1; i <= nb; i ++) explored.AddItem (gr->Entity(i));
return Standard_True;
}
// ManifoldSolid 186 -> Shells
if (igt == 186) {
DeclareAndCast(IGESSolid_ManifoldSolid,msb,ent);
explored.AddItem (msb->Shell());
Standard_Integer i, nb = msb->NbVoidShells();
for (i = 1; i <= nb; i ++) explored.AddItem (msb->VoidShell(i));
return Standard_True;
}
// Shell 514 -> Faces
if (igt == 514) {
DeclareAndCast(IGESSolid_Shell,sh,ent);
Standard_Integer i, nb = sh->NbFaces();
for (i = 1; i <= nb; i ++) explored.AddItem (sh->Face(i));
return Standard_True;
}
// Face 510 -> Loops
if (igt == 510) {
DeclareAndCast(IGESSolid_Face,fc,ent);
if (thegeom >= 0) {
Standard_Integer i, nb = fc->NbLoops();
for (i = 1; i <= nb; i ++) explored.AddItem (fc->Loop(i));
}
else explored.AddItem (fc->Surface());
return Standard_True;
}
// Loop 508 -> Curves 3D (enfin !) mais via EdgeList ...
if (igt == 508 && thegeom >= 0) {
DeclareAndCast(IGESSolid_Loop,lp,ent);
Standard_Integer i, nb = lp->NbEdges();
for (i = 1; i <= nb; i ++) {
DeclareAndCast(IGESSolid_EdgeList,edl,lp->Edge(i));
Standard_Integer ind = lp->ListIndex(i);
if (edl.IsNull()) continue;
explored.AddItem(edl->Curve(ind));
}
return Standard_True;
}
// Pas trouve
return Standard_False;
}
TCollection_AsciiString IGESSelect_SelectBasicGeom::ExploreLabel () const
{
if (thegeom == 2) return TCollection_AsciiString ("Basic Curves 3d");
else if (thegeom > 0) return TCollection_AsciiString ("Curves 3d");
else if (thegeom < 0) return TCollection_AsciiString ("Surfaces");
else return TCollection_AsciiString ("Basic Geometry");
}
Standard_Boolean IGESSelect_SelectBasicGeom::SubCurves
(const Handle(IGESData_IGESEntity)& ent,
Interface_EntityIterator& explored)
{
if (ent.IsNull()) return Standard_False;
Standard_Integer igt = ent->TypeNumber();
// CompositeCurve : a decomposer ?
if (igt == 102) {
DeclareAndCast(IGESGeom_CompositeCurve,cmc,ent);
Standard_Integer i, nb = cmc->NbCurves();
for (i = 1; i <= nb; i ++) explored.AddItem (cmc->Curve(i));
return Standard_True;
}
// Lignes en general. Attention CopiousData, aux variantes "habillage"
if (igt == 106) return (ent->FormNumber() < 20);
if ( (igt >= 100 && igt <= 106) || igt == 110 || igt == 112 || igt == 116 ||
igt == 126 || igt == 130) return Standard_True;
// Sinon
return Standard_False;
}
|