0022048: Visualization, AIS_InteractiveContext - single object selection should alway...
[occt.git] / src / BRepCheck / BRepCheck_Result.cxx
CommitLineData
b311480e 1// Created on: 1995-12-07
2// Created by: Jacques GOUSSARD
3// Copyright (c) 1995-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
7fd59977 17
42cf5bc1 18#include <BRepCheck.hxx>
19#include <BRepCheck_Result.hxx>
20#include <Standard_NoSuchObject.hxx>
21#include <Standard_Type.hxx>
22#include <TopoDS_Shape.hxx>
7fd59977 23
25e59720 24IMPLEMENT_STANDARD_RTTIEXT(BRepCheck_Result,Standard_Transient)
92efcf78 25
7fd59977 26//=======================================================================
27//function : BRepCheck_Result
28//purpose :
29//=======================================================================
7fd59977 30BRepCheck_Result::BRepCheck_Result() :
31 myMin(Standard_False),myBlind(Standard_False)
32{
33}
34
35
36//=======================================================================
37//function : Init
38//purpose :
39//=======================================================================
40
41void BRepCheck_Result::Init(const TopoDS_Shape& S)
42{
43 myShape = S;
44 myMin = Standard_False;
45 myBlind = Standard_False;
46 myMap.Clear();
47 Minimum();
48}
49
50//=======================================================================
51//function : SetFailStatus
52//purpose :
53//=======================================================================
54void BRepCheck_Result::SetFailStatus(const TopoDS_Shape& S)
55{
56 if(!myMap.IsBound(S)) {
57 BRepCheck_ListOfStatus thelist;
58 myMap.Bind(S, thelist);
59 }
60 BRepCheck::Add(myMap(S), BRepCheck_CheckFail);
61}
62
63
64//=======================================================================
65//function : StatusOnShape
66//purpose :
67//=======================================================================
68
69const BRepCheck_ListOfStatus& BRepCheck_Result::StatusOnShape
70 (const TopoDS_Shape& S)
71{
72 if (!myMap.IsBound(S)) {
73 InContext(S);
74 }
75 return myMap(S);
76}
77
78
79//=======================================================================
80//function : InitContextIterator
81//purpose :
82//=======================================================================
83
84void BRepCheck_Result::InitContextIterator()
85{
86 myIter.Initialize(myMap);
0d969553 87 // At least 1 element : the Shape itself
7fd59977 88 if (myIter.Key().IsSame(myShape)) {
89 myIter.Next();
90 }
91}
92
93
94//=======================================================================
95//function : NextShapeInContext
96//purpose :
97//=======================================================================
98
99void BRepCheck_Result::NextShapeInContext()
100{
101 myIter.Next();
102 if (myIter.More() && myIter.Key().IsSame(myShape)) {
103 myIter.Next();
104 }
105}