-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathvtkFeatureLayer.cxx
More file actions
163 lines (135 loc) · 4.4 KB
/
vtkFeatureLayer.cxx
File metadata and controls
163 lines (135 loc) · 4.4 KB
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
/*=========================================================================
Program: Visualization Toolkit
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkFeatureLayer.h"
#include "vtkFeature.h"
#include <vtkCollection.h>
#include <vtkObjectFactory.h>
#include <vtkSetGet.h>
#include <vtkSmartPointer.h>
#include <algorithm>
#include <iterator>
#include <vector>
vtkStandardNewMacro(vtkFeatureLayer);
//----------------------------------------------------------------------------
class vtkFeatureLayer::vtkInternal
{
public:
std::vector<vtkSmartPointer<vtkFeature>> Features;
vtkSmartPointer<vtkCollection> FeatureCollection;
vtkInternal()
{
this->FeatureCollection = vtkSmartPointer<vtkCollection>::New();
}
};
//----------------------------------------------------------------------------
vtkFeatureLayer::vtkFeatureLayer()
: Impl(new vtkInternal())
{
}
//----------------------------------------------------------------------------
vtkFeatureLayer::~vtkFeatureLayer() {}
//----------------------------------------------------------------------------
void vtkFeatureLayer::PrintSelf(std::ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "vtkFeatureLayer"
<< "\n"
<< indent << "Number Of Features: " << this->Impl->Features.size()
<< std::endl;
}
//----------------------------------------------------------------------------
void vtkFeatureLayer::UnRegister(vtkObjectBase* o)
{
if (this->GetReferenceCount() > 1)
{
this->Superclass::UnRegister(o);
return;
}
// (else) Delete features before calling superclass Delete() method
this->Impl->FeatureCollection->RemoveAllItems();
const std::size_t size = this->Impl->Features.size();
for (std::size_t i = 0; i < size; ++i)
{
//invoke delete on each vtk class in the vector
if (this->Impl->Features[i])
{
this->Impl->Features[i]->CleanUp();
}
}
delete this->Impl;
this->Superclass::UnRegister(o);
}
//----------------------------------------------------------------------------
void vtkFeatureLayer::AddFeature(vtkSmartPointer<vtkFeature> feature)
{
if (!feature)
{
return;
}
if (!this->Renderer)
{
vtkWarningMacro("Cannot add vtkFeature to vtkFeatureLayer"
<< " because vtkFeatureLayer has not been initialized correctly."
<< " Make sure this layer has been added to vtkMap"
<< " *before* adding features."
<< " Also make sure renderer has been set on the vtkMap.");
return;
}
auto itr = std::find(
this->Impl->Features.begin(), this->Impl->Features.end(), feature);
if (itr == this->Impl->Features.end())
{
feature->SetLayer(this);
this->Impl->Features.push_back(feature);
}
feature->Init();
// Notify the map
this->Map->FeatureAdded(feature.GetPointer());
this->Modified();
}
//----------------------------------------------------------------------------
void vtkFeatureLayer::RemoveFeature(vtkSmartPointer<vtkFeature> feature)
{
if (!feature)
{
return;
}
auto found_iter = std::find(
this->Impl->Features.begin(), this->Impl->Features.end(), feature);
if (found_iter != this->Impl->Features.end())
{
// Notify the map first
this->Map->ReleaseFeature(feature.GetPointer());
feature->CleanUp();
this->Impl->Features.erase(found_iter);
}
}
//----------------------------------------------------------------------------
vtkCollection* vtkFeatureLayer::GetFeatures()
{
// The internal feature collection could be cached, but for,
// we'll rebuild it every time.
this->Impl->FeatureCollection->RemoveAllItems();
auto iter = this->Impl->Features.begin();
for (; iter != this->Impl->Features.end(); iter++)
{
vtkFeature* const feature = iter->GetPointer();
this->Impl->FeatureCollection->AddItem(feature);
}
return this->Impl->FeatureCollection;
}
//----------------------------------------------------------------------------
void vtkFeatureLayer::Update()
{
for (size_t i = 0; i < this->Impl->Features.size(); i += 1)
{
this->Impl->Features[i]->Update();
}
}