mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-06 21:07:36 +08:00
58 lines
1.9 KiB
C++
Executable File
58 lines
1.9 KiB
C++
Executable File
#include <IFSelect_SelectSent.ixx>
|
|
#include <stdio.h>
|
|
|
|
|
|
IFSelect_SelectSent::IFSelect_SelectSent
|
|
(const Standard_Integer sentcount, const Standard_Boolean atleast)
|
|
{ thecnt = sentcount; thelst = atleast; }
|
|
|
|
Standard_Integer IFSelect_SelectSent::SentCount () const
|
|
{ return thecnt; }
|
|
|
|
Standard_Boolean IFSelect_SelectSent::AtLeast () const
|
|
{ return thelst; }
|
|
|
|
Interface_EntityIterator IFSelect_SelectSent::RootResult
|
|
(const Interface_Graph& G) const
|
|
{
|
|
Standard_Boolean direct = IsDirect();
|
|
Interface_EntityIterator res;
|
|
Interface_EntityIterator inp = InputResult(G);
|
|
|
|
for (inp.Start(); inp.More(); inp.Next()) {
|
|
Standard_Integer num = G.EntityNumber(inp.Value());
|
|
if (num == 0) continue;
|
|
Standard_Integer nb = G.Status(num); // nb sent
|
|
Standard_Boolean ok;
|
|
if (thecnt == 0) ok = (nb == 0);
|
|
else if (thelst) ok = (nb >= thecnt);
|
|
else ok = (nb == thecnt);
|
|
if (ok == direct) res.AddItem (G.Entity(num));
|
|
}
|
|
return res;
|
|
}
|
|
|
|
Standard_Boolean IFSelect_SelectSent::Sort
|
|
(const Standard_Integer ,
|
|
const Handle(Standard_Transient)&,
|
|
const Handle(Interface_InterfaceModel)& ) const
|
|
{ return Standard_False; }
|
|
|
|
|
|
TCollection_AsciiString IFSelect_SelectSent::ExtractLabel () const
|
|
{
|
|
char lb[80];
|
|
TCollection_AsciiString lab;
|
|
if (thecnt == 0) lab.AssignCat ("Remaining (non-sent) entities");
|
|
if (thecnt == 1 && thelst) lab.AssignCat ("Sent entities");
|
|
if (thecnt == 1 && !thelst) lab.AssignCat ("Sent once (non-duplicated) entities");
|
|
if (thecnt == 2 && thelst) lab.AssignCat ("Sent several times entities");
|
|
if (thecnt == 2 && !thelst) lab.AssignCat ("Sent just twice entities");
|
|
if (thecnt > 2) {
|
|
if (thelst) sprintf (lb,"Sent at least %d times entities", thecnt);
|
|
else sprintf (lb,"Sent just %d times entities", thecnt);
|
|
lab.AssignCat (lb);
|
|
}
|
|
return lab;
|
|
}
|