-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvombat.cpp
487 lines (369 loc) · 11.9 KB
/
vombat.cpp
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
#include "vombat.h"
#include <ccSpcScalarFieldProvider.h>
#include <ccPointCloud.h>
#include <ccSPCElementShell.h>
#include "BaseFilter.h"
#include <AttitudeToModel.h>
#include <Edit.h>
#include <FitAttitude.h>
#include <LoadSPCElement.h>
#include <SaveSPCElement.h>
#include <EvaluateDynamicScalarFieldGenerator.h>
#include <Properties.h>
#include <PropertiesQt.h>
#include <Analyzer.h>
#include <ccDBRoot.h>
#include <CloudToPlanarSelection.h>
//#include <SetUpNewSeries.h>
//#include <split_point_cloud.h>
#include <OpenPlots2DDialog.h>
#include <OpenPlotsDialog.h>
//#include <ExportToAscii.h>
#include <ApplyCorrection.h>
#include <CreateOutcrop.h>
#include <CreateStratigraphicConstrain.h>
#include <FlipModel.h>
#include <LinkModelToRubberband.h>
#include <NewRoi.h>
#include <AddSample.h>
#include <Cropper.h>
#include <AutoComputeTimeSeries.h>
#include <CreateTimeSeriesFromScalarFields.h>
//#include <ComputeCalibrationDB.h>
//#include <test.h>
//#include <ComputeSmoothedTimeSeriesXY.h>
#include <SendTo2DPlot.h>
#include <PlotterDlg.h>
//#include <CalibrateDevice.h>
#ifdef SPC_WITH_PCL
#include <GaussianFilter.h>
#endif
#include <Properties.h>
#include <spc/methods/TimeSeriesGenerator.h>
#include <ccVombatObjectsFactory.h>
#include <boost/foreach.hpp>
#include <LoadCloudDataSource.h>
static vombat* qgeo_instance = 0;
INITIALIZE_EASYLOGGINGPP
vombat::vombat()
{
#ifndef NDEBUG
el::Loggers::reconfigureAllLoggers(el::ConfigurationType::Format, "%level -> %msg -> %fbase:%line");
#endif
el::Loggers::addFlag(el::LoggingFlag::ColoredTerminalOutput); //ColoredTerminalOutput
// google::InitGoogleLogging("vombat");
DLOG(WARNING) << "Logging started";
qgeo_instance = this;
m_factory = new ccVombatObjectsFactory("vombat");
DLOG(INFO) << "Vombat plugin created";
}
vombat::~vombat()
{
while (!m_filters.empty()) {
delete m_filters.back();
m_filters.pop_back();
}
}
void vombat::handleNewEntity(ccHObject* entity)
{
assert(entity && m_app);
m_app->addToDB(entity);
}
void vombat::handleEntityChange(ccHObject* entity)
{
assert(entity && m_app);
entity->prepareDisplayForRefresh_recursive();
m_app->refreshAll();
m_app->updateUI();
}
void vombat::handleErrorMessage(QString message)
{
assert(m_app);
m_app->dispToConsole(qPrintable(message),
ccMainAppInterface::ERR_CONSOLE_MESSAGE);
}
QList<QAction*> vombat::getActions()
{
QList<QAction*> group;
if (m_filters.empty()) {
// ADD FILTERS
addFilter(new CreateOutcrop(this));
addFilter(new FitAttitude(this));
addFilter(new AttitudeToModel(this));
addFilter(new FlipModel(this));
// addFilter(new LinkModelToRubberband(this));
addFilter(new EvaluateDynamicScalarFieldGenerator(this));
// addFilter(new Edit(this));
// addFilter(new OpenPlotsDialog(this));
addFilter(new OpenPlots2DDialog(this));
addFilter(new CreateTimeSeriesFromScalarFields(this));
addFilter(new SendTo2DPlot(this));
// m_plotter = openPlot->getPlotterDlg();
// addFilter(new ComputeSmoothedTimeSeriesXY(this));
// addFilter(new SetUpNewSeries(this));
// addFilter(new Test(this));
// addFilter(new ComputeCalibrationDB(this));
// addFilter(new CalibrateDevice(this));
addFilter(new ApplyCorrection(this));
addFilter(new AddSample(this));
// addFilter( new ComputeStratigraphicPosition(this) );
// addFilter( new ComputeTimeSeries(this));
// addFilter(new SplitPointCloud(this));
// addFilter(new EvaluateStratigraphicPosition(this));
// addFilter(new Properties(this));
addFilter(new CloudToPlanarSelection(this));
// addFilter(new NewRoi(this));
#ifdef SPC_WITH_PCL
addFilter(new GaussianFilter(this));
#endif
addFilter(new CreateStratigraphicConstrain(this));
addFilter(new Cropper(this));
// addFilter(new Properties(this));
addFilter(new PropertiesQt(this));
addFilter(new SaveSPCElement(this));
addFilter(new LoadSPCElement(this));
#ifdef VOMBAT_EX_TOOLS
addFilter(new LoadCloudDataSource(this));
addFilter(new AutoComputeTimeSeries(this));
addFilter(new Analyzer(this));
#endif
}
for (std::vector<BaseFilter*>::const_iterator it = m_filters.begin();
it != m_filters.end(); ++it)
group.append((*it)->getAction());
return group;
}
int vombat::addFilter(BaseFilter* filter)
{
assert(filter);
filter->setMainAppInterface(m_app);
QAction* action = filter->getAction();
if (!action)
return 0;
// filter already inserted?
if (std::find(m_filters.begin(), m_filters.end(), filter) != m_filters.end())
return 0;
m_filters.push_back(filter);
// connect signals
connect(filter, SIGNAL(newEntity(ccHObject*)), this,
SLOT(handleNewEntity(ccHObject*)));
connect(filter, SIGNAL(entityHasChanged(ccHObject*)), this,
SLOT(handleEntityChange(ccHObject*)));
connect(filter, SIGNAL(newErrorMessage(QString)), this,
SLOT(handleErrorMessage(QString)));
return 1;
}
ccHObject::Container vombat::getSelected() const { return m_selected; }
ccHObject::Container
vombat::getSelectedThatHaveMetaData(const QString key) const
{
ccHObject::Container new_sel;
for (ccHObject* obj : m_selected) {
if (obj->hasMetaData(key))
new_sel.push_back(obj);
}
return new_sel;
}
ccHObject::Container vombat::getSelectedThatAre(CC_CLASS_ENUM ThisType) const
{
ccHObject::Container sel = getSelected(); // all selected
ccHObject::Container out = vombat::filterObjectsByType(sel, ThisType);
return out;
}
ccHObject::Container vombat::getSelectedKindOf(CC_CLASS_ENUM ThisType)
{
ccHObject::Container sel = getSelected(); // all selected
ccHObject::Container out = vombat::filterObjectsByKind(sel, ThisType);
return out;
}
ccHObject::Container vombat::filterObjectsByType(const ccHObject::Container& in,
const CC_CLASS_ENUM ThisType)
{
if (in.empty())
return in;
ccHObject::Container out;
for (ccHObject* obj : in) {
if (obj->isA(ThisType)) {
out.push_back(obj);
}
}
return out;
}
ccHObject::Container vombat::filterObjectsByKind(const ccHObject::Container& in,
const CC_CLASS_ENUM ThisType)
{
if (in.empty())
return in;
ccHObject::Container out;
for (ccHObject* obj : in) {
if (obj->isKindOf(ThisType)) {
out.push_back(obj);
}
}
return out;
}
ccHObject::Container vombat::getAllObjectsInTreeThatHaveMetaData(
const QString key, const QString value /*= QString() */)
{
ccHObject::Container all = this->getAllObjectsInTree();
return vombat::filterObjectsByMetaData(all, key, value);
}
ccHObject::Container
vombat::getAllObjectsInTreeThatAre(CC_CLASS_ENUM ThisType)
{
ccHObject::Container all = getAllObjectsInTree();
// std::cout << "in tree " << all.size() << std::endl;
return vombat::filterObjectsByType(all, ThisType);
}
ccHObject::Container vombat::getAllDirectChildrenOfType(const int parent_id,
CC_CLASS_ENUM ThisType)
{
ccHObject* parent = this->getMainAppInterface()->dbRootObject()->find(parent_id);
ccHObject::Container out;
if (!parent) {
LOG(WARNING) << "no parent found with given id " << parent_id;
return out;
}
LOG(INFO) << "parent name " << parent->getName().toStdString();
unsigned i = parent->filterChildren(out, false, ThisType, true);
LOG(INFO) << "after filtering: " << i << " for parent " << parent_id;
return out;
}
ccHObject* vombat::getObjectFromElement(const ElementBase::Ptr el)
{
ccHObject* root = this->theInstance()->getMainAppInterface()->dbRootObject();
std::stack<ccHObject*> tocheck;
tocheck.push(root);
while (!tocheck.empty()) {
ccHObject* obj = tocheck.top();
tocheck.pop();
ccSPCElementShell* asmine = dynamic_cast<ccSPCElementShell*>(obj);
if (asmine != NULL) {
if (asmine->getSPCElement() == el)
return asmine;
}
for (int i = 0; i < obj->getChildrenNumber(); ++i) {
tocheck.push(obj->getChild(i));
}
}
// if we are here nothing was found
return NULL;
}
ccHObject::Container vombat::getAllChildren(ccHObject* object)
{
int n = object->getChildrenNumber();
ccHObject::Container cont;
for (int i = 0; i < n; ++i) {
cont.push_back(object->getChild(i));
}
return cont;
}
ccHObject::Container
vombat::filterObjectsByMetaData(const ccHObject::Container& in,
const QString key,
const QString value /*= QString()*/)
{
ccHObject::Container out;
for (ccHObject* obj : in) {
if (obj->hasMetaData(key)) {
if (value.isEmpty())
out.push_back(obj);
else {
if (obj->getMetaData(key) == value)
out.push_back(obj);
}
}
}
return out;
}
ccHObject::Container vombat::getAllObjectsInTree()
{
// ccHObject::Container cont;
ccHObject* dbroot = this->getMainAppInterface()->dbRootObject();
ccHObject::Container tovisit;
tovisit.push_back(dbroot);
ccHObject::Container out;
while (!tovisit.empty()) {
ccHObject* last = tovisit.back();
tovisit.pop_back();
out.push_back(last);
ccHObject::Container sons = getAllChildren(last);
for (ccHObject* obj : sons) {
tovisit.push_back(obj);
}
}
return out;
}
ccHObject::Container
vombat::getAllObjectsInTreeBySPCDti(const DtiClassType* dti)
{
ccHObject::Container all = getAllObjectsInTree();
ccHObject::Container out;
for (ccHObject* obj : all) {
ccSPCElementShell* asvombat = dynamic_cast<ccSPCElementShell*>(obj);
if (asvombat != NULL) {
// isa vomabt object
if (asvombat->getSPCElement()->isA(dti))
out.push_back(obj);
}
}
return out;
}
ccHObject::Container
vombat::getAllObjectsSelectedBySPCDti(const DtiClassType* dti)
{
ccHObject::Container all = getSelected();
ccHObject::Container out;
for (ccHObject* obj : all) {
ccSPCElementShell* asvombat = dynamic_cast<ccSPCElementShell*>(obj);
if (asvombat != NULL) {
// isa vomabt object
if (asvombat->getSPCElement()->isA(dti))
out.push_back(obj);
}
}
return out;
}
void vombat::onNewSelection(const ccHObject::Container& selectedEntities)
{
//! always substitute m_selected with the new selection,
//! before to notify the plugins. Some plugins get access to the
//! current selection from vombat::theInstance()->...
m_selected = selectedEntities;
for (unsigned i = 0; i < m_filters.size(); ++i)
m_filters[i]->updateSelectedEntities(selectedEntities);
emit selectionChanged(m_selected);
}
QIcon vombat::getIcon() const
{
return QIcon(QString::fromUtf8(":plugin/icons/vombat.png"));
}
vombat* vombat::theInstance() { return qgeo_instance; }
QMainWindow* vombat::getMainWindow()
{
return getMainAppInterface()->getMainWindow();
}
PlotterDlg* vombat::getPlotterDlg()
{
for (BaseFilter* f : m_filters) {
if (typeid(*f) == typeid(OpenPlotsDialog)) {
PlotterDlg* plotterdlg = static_cast<OpenPlotsDialog*>(f)->getPlotterDlg();
return plotterdlg;
}
}
return 0;
}
Plotter2DDlg* vombat::getPlotter2DDlg()
{
for (BaseFilter* f : m_filters) {
if (typeid(*f) == typeid(OpenPlots2DDialog)) {
Plotter2DDlg* plotterdlg = static_cast<OpenPlots2DDialog*>(f)->getPlotterDlg();
if (plotterdlg)
return plotterdlg;
}
}
return 0;
}
#ifndef CC_QT5
Q_EXPORT_PLUGIN2(vombat, vombat);
#endif