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
|
//##########################################################################
//# #
//# CLOUDCOMPARE #
//# #
//# This program is free software; you can redistribute it and/or modify #
//# it under the terms of the GNU General Public License as published by #
//# the Free Software Foundation; version 2 or later of the License. #
//# #
//# This program is distributed in the hope that it will be useful, #
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
//# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
//# GNU General Public License for more details. #
//# #
//# COPYRIGHT: CloudCompare project #
//# #
//##########################################################################
#include "ccPickingHub.h"
//Qt
#include <QMdiSubWindow>
ccPickingHub::ccPickingHub(ccMainAppInterface* app, QObject* parent/*=0*/)
: QObject(parent)
, m_app(app)
, m_activeGLWindow(nullptr)
, m_pickingMode(ccGLWindow::POINT_OR_TRIANGLE_PICKING)
, m_autoEnableOnActivatedWindow(true)
, m_exclusive(false)
{
}
//void ccPickingHub::setPickingMode(ccGLWindow::PICKING_MODE mode, bool autoEnableOnActivatedWindow/*=true*/)
//{
// m_pickingMode = mode;
// m_autoEnableOnActivatedWindow = autoEnableOnActivatedWindow;
//}
void ccPickingHub::togglePickingMode(bool state)
{
if (m_activeGLWindow)
{
m_activeGLWindow->setPickingMode(state ? m_pickingMode : ccGLWindow::DEFAULT_PICKING);
}
}
void ccPickingHub::onActiveWindowChanged(QMdiSubWindow* mdiSubWindow)
{
ccGLWindow* glWindow = (mdiSubWindow ? GLWindowFromWidget(mdiSubWindow->widget()) : nullptr);
if (m_activeGLWindow == glWindow)
{
//nothing to do
return;
}
if (m_activeGLWindow)
{
//take care of the previously linked window
togglePickingMode(false);
disconnect(m_activeGLWindow);
m_activeGLWindow = nullptr;
}
if (glWindow)
{
//link this new window
connect(glWindow, &ccGLWindow::itemPicked, this, &ccPickingHub::processPickedItem, Qt::UniqueConnection);
connect(glWindow, &QObject::destroyed, this, &ccPickingHub::onActiveWindowDeleted);
m_activeGLWindow = glWindow;
if (m_autoEnableOnActivatedWindow && !m_listeners.empty())
{
togglePickingMode(true);
}
}
}
void ccPickingHub::onActiveWindowDeleted(QObject*)
{
m_activeGLWindow = nullptr;
}
void ccPickingHub::processPickedItem(ccHObject* entity, unsigned itemIndex, int x, int y, const CCVector3& P3D)
{
if (m_listeners.empty())
{
return;
}
ccPickingListener::PickedItem item;
{
item.clickPoint = QPoint(x, y);
item.entity = entity;
item.itemIndex = itemIndex;
item.P3D = P3D;
}
//copy the list of listeners, in case the user call 'removeListener' in 'onItemPicked'
std::set< ccPickingListener* > listeners = m_listeners;
for (ccPickingListener* l : listeners)
{
if (l)
{
l->onItemPicked(item);
}
}
}
bool ccPickingHub::addListener( ccPickingListener* listener,
bool exclusive/*=false*/,
bool autoStartPicking/*=true*/,
ccGLWindow::PICKING_MODE mode/*=ccGLWindow::POINT_OR_TRIANGLE_PICKING*/)
{
if (!listener)
{
assert(false);
return false;
}
//if listeners are already registered
if (!m_listeners.empty())
{
if (m_exclusive) //a previous listener is exclusive
{
assert(m_listeners.size() == 1);
if (m_listeners.find(listener) == m_listeners.end())
{
ccLog::Warning("[ccPickingHub::addListener] Exclusive listener already registered: stop the other tool relying on point picking first");
return false;
}
}
else if (exclusive) //this new listener is exclusive
{
if (m_listeners.size() > 1 || m_listeners.find(listener) == m_listeners.end())
{
ccLog::Warning("[ccPickingHub::addListener] Attempt to register an exclusive listener while other listeners are already registered");
return false;
}
}
else if (mode != m_pickingMode)
{
if (m_listeners.size() > 1 || m_listeners.find(listener) == m_listeners.end())
{
ccLog::Warning("[ccPickingHub::addListener] Other listeners are already registered with a different picking mode");
return false;
}
}
}
try
{
m_listeners.insert(listener);
}
catch (const std::bad_alloc&)
{
//not enough memory
ccLog::Warning("[ccPickingHub::addListener] Not enough memory");
return false;
}
m_exclusive = exclusive;
m_pickingMode = mode;
if (autoStartPicking)
{
togglePickingMode(true);
}
return true;
}
void ccPickingHub::removeListener(ccPickingListener* listener, bool autoStopPickingIfLast/*=true*/)
{
m_listeners.erase(listener);
if (m_listeners.empty())
{
m_exclusive = false; //auto drop the 'exclusive' flag
togglePickingMode(false);
}
}
|