blob: 541d4157ffd53b5afb21877de8f0ee078bc8f020 (
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
|
// File Aspect_TypeMap.cxx
// Created Septembre 1993
// Author GG
//-Copyright MatraDatavision 1991,1992
//-Version
//-Design Declaration des variables specifiques aux Ensembles
// de Type de traits
//-Warning Une TypeMap est definie par un ensemble de TypeMapEntries
//-References
//-Language C++ 2.0
//-Declarations
// for the class
#include <Aspect_TypeMap.ixx>
//-Aliases
//-Global data definitions
// mydata : SequenceOfTypeMapEntry from Aspect is protected
//-Constructors
//-Destructors
//-Methods, in order
Aspect_TypeMap::Aspect_TypeMap( ) {
Aspect_TypeMapEntry theDefaultEntry;
AddEntry(theDefaultEntry);
}
void Aspect_TypeMap::AddEntry (const Aspect_TypeMapEntry& AnEntry) {
Standard_Integer i,index = AnEntry.Index();
Aspect_TypeMapEntry theEntry;
for( i=1 ; i<=mydata.Length() ; i++ ) {
theEntry = mydata.Value(i);
if( index == theEntry.Index() ) break;
}
if( i > mydata.Length() ) {
mydata.Append( AnEntry );
} else {
mydata.SetValue(i,AnEntry);
}
}
Standard_Integer Aspect_TypeMap::AddEntry (const Aspect_LineStyle &aStyle) {
Aspect_TypeMapEntry theEntry ;
Standard_Integer i,maxindex = 0 ;
for( i=1 ; i<=mydata.Length() ; i++ ) {
theEntry = mydata.Value(i) ;
maxindex = Max(maxindex,theEntry.Index()) ;
if( theEntry.Type() == aStyle ) return theEntry.Index() ;
}
maxindex++ ;
theEntry.SetValue(maxindex,aStyle) ;
mydata.Append( theEntry ) ;
return maxindex ;
}
Standard_Integer Aspect_TypeMap::Size() const {
return mydata.Length() ;
}
Standard_Integer Aspect_TypeMap::Index(const Standard_Integer anIndex) const {
if( anIndex < 1 || anIndex > Size() ) {
Aspect_BadAccess::Raise ("Undefined typemap Index");
}
Aspect_TypeMapEntry theEntry = mydata.Value(anIndex) ;
return theEntry.Index() ;
}
const Aspect_TypeMapEntry& Aspect_TypeMap::Entry (const Standard_Integer AnIndex) const {
if( AnIndex < 1 || AnIndex > mydata.Length() )
Aspect_BadAccess::Raise ("Aspect_TypeMap::Entry Bad Index");
return mydata.Value(AnIndex);
}
void Aspect_TypeMap::Dump () const {
Standard_Integer i ;
cout << "Typemap Dump-->\n" ;
for ( i = 1 ; i <= Size() ; i++ ) (Entry(i)).Dump() ;
cout << "<--End Typemap Dump\n" ;
}
|