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
|
//##########################################################################
//# #
//# 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: EDF R&D / TELECOM ParisTech (ENST-TSI) #
//# #
//##########################################################################
#include "ccApplyTransformationDlg.h"
//Local
#include "ccPersistentSettings.h"
#include "ccAskTwoDoubleValuesDlg.h"
#include "mainwindow.h"
#include "ui_dipDirTransformationDlg.h"
//qCC_db
#include <ccFileUtils.h>
#include <ccNormalVectors.h>
//Qt
#include <QMessageBox>
#include <QSettings>
#include <QFileDialog>
#include <QFileInfo>
#include <QClipboard>
//CCLib
#include <CCConst.h>
static QString s_lastMatrix("1.00000000 0.00000000 0.00000000 0.00000000\n0.00000000 1.00000000 0.00000000 0.00000000\n0.00000000 0.00000000 1.00000000 0.00000000\n0.00000000 0.00000000 0.00000000 1.00000000");
static bool s_inverseMatrix = false;
static int s_currentFormIndex = 0;
//! Dialog to define a dip / dip dir. transformation
class DipDirTransformationDialog : public QDialog, public Ui::DipDirTransformationDialog
{
Q_OBJECT
public:
DipDirTransformationDialog(QWidget* parent = nullptr) : QDialog(parent) { setupUi(this); }
};
ccApplyTransformationDlg::ccApplyTransformationDlg(QWidget* parent/*=0*/)
: QDialog(parent)
, Ui::ApplyTransformationDialog()
{
setupUi(this);
helpTextEdit->setVisible(false);
//restore last state
matrixTextEdit->setPlainText(s_lastMatrix);
inverseCheckBox->setChecked(s_inverseMatrix);
onMatrixTextChange(); //provoke the update of the other forms
tabWidget->setCurrentIndex(s_currentFormIndex);
connect(buttonBox, &QDialogButtonBox::accepted, this, &ccApplyTransformationDlg::checkMatrixValidityAndAccept);
connect(buttonBox, &QDialogButtonBox::clicked, this, &ccApplyTransformationDlg::buttonClicked);
connect(matrixTextEdit, &QPlainTextEdit::textChanged, this, &ccApplyTransformationDlg::onMatrixTextChange);
connect(fromFileToolButton, &QToolButton::clicked, this, &ccApplyTransformationDlg::loadFromASCIIFile);
connect(fromClipboardToolButton, &QToolButton::clicked, this, &ccApplyTransformationDlg::loadFromClipboard);
connect(fromDipDipDirToolButton, &QToolButton::clicked, this, &ccApplyTransformationDlg::initFromDipAndDipDir);
connect(rxAxisDoubleSpinBox, static_cast<void (QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &ccApplyTransformationDlg::onRotAngleValueChanged);
connect(ryAxisDoubleSpinBox, static_cast<void (QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &ccApplyTransformationDlg::onRotAngleValueChanged);
connect(rzAxisDoubleSpinBox, static_cast<void (QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &ccApplyTransformationDlg::onRotAngleValueChanged);
connect(rAngleDoubleSpinBox, static_cast<void (QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &ccApplyTransformationDlg::onRotAngleValueChanged);
connect(txAxisDoubleSpinBox, static_cast<void (QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &ccApplyTransformationDlg::onRotAngleValueChanged);
connect(tyAxisDoubleSpinBox, static_cast<void (QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &ccApplyTransformationDlg::onRotAngleValueChanged);
connect(tzAxisDoubleSpinBox, static_cast<void (QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &ccApplyTransformationDlg::onRotAngleValueChanged);
connect(ePhiDoubleSpinBox, static_cast<void (QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &ccApplyTransformationDlg::onEulerValueChanged);
connect(eThetaDoubleSpinBox, static_cast<void (QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &ccApplyTransformationDlg::onEulerValueChanged);
connect(ePsiDoubleSpinBox, static_cast<void (QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &ccApplyTransformationDlg::onEulerValueChanged);
connect(etxAxisDoubleSpinBox, static_cast<void (QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &ccApplyTransformationDlg::onEulerValueChanged);
connect(etyAxisDoubleSpinBox, static_cast<void (QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &ccApplyTransformationDlg::onEulerValueChanged);
connect(etzAxisDoubleSpinBox, static_cast<void (QDoubleSpinBox::*)(double)>(&QDoubleSpinBox::valueChanged), this, &ccApplyTransformationDlg::onEulerValueChanged);
}
void ccApplyTransformationDlg::onMatrixTextChange()
{
QString text = matrixTextEdit->toPlainText();
if (text.contains("["))
{
//automatically remove anything between square brackets
static const QRegExp squareBracketsFilter("\\[([^]]+)\\]");
text.replace(squareBracketsFilter,"");
matrixTextEdit->blockSignals(true);
matrixTextEdit->setPlainText(text);
matrixTextEdit->blockSignals(false);
}
bool valid = false;
ccGLMatrix mat = ccGLMatrix::FromString(text,valid);
if (valid)
updateAll(mat, false, true, true); //no need to update the current form
}
void ccApplyTransformationDlg::onRotAngleValueChanged(double)
{
PointCoordinateType alpha = 0;
CCVector3 axis;
CCVector3 t;
axis.x = static_cast<PointCoordinateType>(rxAxisDoubleSpinBox->value());
axis.y = static_cast<PointCoordinateType>(ryAxisDoubleSpinBox->value());
axis.z = static_cast<PointCoordinateType>(rzAxisDoubleSpinBox->value());
alpha = static_cast<PointCoordinateType>(rAngleDoubleSpinBox->value() * CC_DEG_TO_RAD);
t.x = static_cast<PointCoordinateType>(txAxisDoubleSpinBox->value());
t.y = static_cast<PointCoordinateType>(tyAxisDoubleSpinBox->value());
t.z = static_cast<PointCoordinateType>(tzAxisDoubleSpinBox->value());
ccGLMatrix mat;
mat.initFromParameters(alpha,axis,t);
updateAll(mat, true, false, true); //no need to update the current form
}
void ccApplyTransformationDlg::onEulerValueChanged(double)
{
PointCoordinateType phi = 0;
PointCoordinateType theta = 0;
PointCoordinateType psi = 0;
CCVector3 t;
phi = static_cast<PointCoordinateType>(ePhiDoubleSpinBox->value() * CC_DEG_TO_RAD);
theta = static_cast<PointCoordinateType>(eThetaDoubleSpinBox->value() * CC_DEG_TO_RAD);
psi = static_cast<PointCoordinateType>(ePsiDoubleSpinBox->value() * CC_DEG_TO_RAD);
t.x = static_cast<PointCoordinateType>(etxAxisDoubleSpinBox->value());
t.y = static_cast<PointCoordinateType>(etyAxisDoubleSpinBox->value());
t.z = static_cast<PointCoordinateType>(etzAxisDoubleSpinBox->value());
ccGLMatrix mat;
mat.initFromParameters(phi,theta,psi,t);
updateAll(mat, true, true, false); //no need to update the current form
}
void ccApplyTransformationDlg::updateAll(const ccGLMatrix& mat, bool textForm/*=true*/, bool axisAngleForm/*=true*/, bool eulerForm/*=true*/)
{
if (textForm)
{
QString matText = mat.toString();
matrixTextEdit->blockSignals(true);
matrixTextEdit->setPlainText(matText);
matrixTextEdit->blockSignals(false);
}
if (axisAngleForm)
{
rxAxisDoubleSpinBox->blockSignals(true);
ryAxisDoubleSpinBox->blockSignals(true);
rzAxisDoubleSpinBox->blockSignals(true);
rAngleDoubleSpinBox->blockSignals(true);
txAxisDoubleSpinBox->blockSignals(true);
tyAxisDoubleSpinBox->blockSignals(true);
tzAxisDoubleSpinBox->blockSignals(true);
PointCoordinateType alpha = 0;
CCVector3 axis;
CCVector3 t;
mat.getParameters(alpha,axis,t);
rxAxisDoubleSpinBox->setValue(axis.x);
ryAxisDoubleSpinBox->setValue(axis.y);
rzAxisDoubleSpinBox->setValue(axis.z);
rAngleDoubleSpinBox->setValue(alpha * CC_RAD_TO_DEG);
txAxisDoubleSpinBox->setValue(t.x);
tyAxisDoubleSpinBox->setValue(t.y);
tzAxisDoubleSpinBox->setValue(t.z);
rxAxisDoubleSpinBox->blockSignals(false);
ryAxisDoubleSpinBox->blockSignals(false);
rzAxisDoubleSpinBox->blockSignals(false);
rAngleDoubleSpinBox->blockSignals(false);
txAxisDoubleSpinBox->blockSignals(false);
tyAxisDoubleSpinBox->blockSignals(false);
tzAxisDoubleSpinBox->blockSignals(false);
}
if (eulerForm)
{
ePhiDoubleSpinBox ->blockSignals(true);
eThetaDoubleSpinBox ->blockSignals(true);
ePsiDoubleSpinBox ->blockSignals(true);
etxAxisDoubleSpinBox->blockSignals(true);
etyAxisDoubleSpinBox->blockSignals(true);
etzAxisDoubleSpinBox->blockSignals(true);
PointCoordinateType phi = 0;
PointCoordinateType theta = 0;
PointCoordinateType psi = 0;
CCVector3 t;
mat.getParameters(phi,theta,psi,t);
ePhiDoubleSpinBox ->setValue(phi * CC_RAD_TO_DEG);
eThetaDoubleSpinBox ->setValue(theta * CC_RAD_TO_DEG);
ePsiDoubleSpinBox ->setValue(psi * CC_RAD_TO_DEG);
etxAxisDoubleSpinBox->setValue(t.x);
etyAxisDoubleSpinBox->setValue(t.y);
etzAxisDoubleSpinBox->setValue(t.z);
ePhiDoubleSpinBox ->blockSignals(false);
eThetaDoubleSpinBox ->blockSignals(false);
ePsiDoubleSpinBox ->blockSignals(false);
etxAxisDoubleSpinBox->blockSignals(false);
etyAxisDoubleSpinBox->blockSignals(false);
etzAxisDoubleSpinBox->blockSignals(false);
}
}
ccGLMatrixd ccApplyTransformationDlg::getTransformation() const
{
//get current input matrix text
QString matText = matrixTextEdit->toPlainText();
//convert it to a ccGLMatrix
bool valid = false;
ccGLMatrixd mat = ccGLMatrixd::FromString(matText,valid);
assert(valid);
//eventually invert it if necessary
if (inverseCheckBox->isChecked())
{
mat.invert();
}
return mat;
}
void ccApplyTransformationDlg::checkMatrixValidityAndAccept()
{
//get current input matrix text
QString matText = matrixTextEdit->toPlainText();
//convert it to a ccGLMatrix
bool valid = false;
ccGLMatrix mat = ccGLMatrix::FromString(matText,valid);
if (!valid)
{
QMessageBox::warning(this, "Invalid matrix", "Matrix is invalid. Make sure to only use white spaces or tabulations between the 16 elements");
return;
}
accept();
s_lastMatrix = matrixTextEdit->toPlainText();
s_inverseMatrix = inverseCheckBox->isChecked();
s_currentFormIndex = tabWidget->currentIndex();
}
void ccApplyTransformationDlg::loadFromASCIIFile()
{
//persistent settings
QSettings settings;
settings.beginGroup(ccPS::LoadFile());
QString currentPath = settings.value(ccPS::CurrentPath(), ccFileUtils::defaultDocPath()).toString();
QString inputFilename = QFileDialog::getOpenFileName(this, "Select input file", currentPath, "*.txt");
if (inputFilename.isEmpty())
return;
ccGLMatrixd mat;
if (mat.fromAsciiFile(inputFilename))
{
matrixTextEdit->setPlainText(mat.toString());
}
else
{
ccLog::Error(QString("Failed to load file '%1'").arg(inputFilename));
}
//save last loading location
settings.setValue(ccPS::CurrentPath(), QFileInfo(inputFilename).absolutePath());
settings.endGroup();
}
void ccApplyTransformationDlg::loadFromClipboard()
{
QClipboard* clipboard = QApplication::clipboard();
if (clipboard)
{
QString clipText = clipboard->text();
if (!clipText.isEmpty())
matrixTextEdit->setPlainText(clipText);
else
ccLog::Warning("[ccApplyTransformationDlg] Clipboard is empty");
}
}
void ccApplyTransformationDlg::initFromDipAndDipDir()
{
static double s_dip_deg = 0.0;
static double s_dipDir_deg = 0.0;
static bool s_rotateAboutCenter = false;
DipDirTransformationDialog dddDlg(this);
dddDlg.dipDoubleSpinBox->setValue(s_dip_deg);
dddDlg.dipDirDoubleSpinBox->setValue(s_dipDir_deg);
dddDlg.rotateAboutCenterCheckBox->setChecked(s_rotateAboutCenter);
if (!dddDlg.exec())
{
return;
}
s_dip_deg = dddDlg.dipDoubleSpinBox->value();
s_dipDir_deg = dddDlg.dipDirDoubleSpinBox->value();
s_rotateAboutCenter = dddDlg.rotateAboutCenterCheckBox->isChecked();
//resulting normal vector
CCVector3 Nd = ccNormalVectors::ConvertDipAndDipDirToNormal(static_cast<PointCoordinateType>(s_dip_deg), static_cast<PointCoordinateType>(s_dipDir_deg));
//corresponding rotation (assuming we start from (0, 0, 1))
ccGLMatrix trans = ccGLMatrix::FromToRotation(CCVector3(0, 0, 1), Nd);
if (s_rotateAboutCenter && MainWindow::TheInstance())
{
const ccHObject::Container& selectedEntities = MainWindow::TheInstance()->getSelectedEntities();
ccBBox box;
for (ccHObject* obj : selectedEntities)
{
box += obj->getBB_recursive();
}
if (box.isValid())
{
CCVector3 C = box.getCenter();
ccGLMatrix shiftToCenter;
shiftToCenter.setTranslation(-C);
ccGLMatrix backToOrigin;
backToOrigin.setTranslation(C);
trans = backToOrigin * trans * shiftToCenter;
}
}
updateAll(trans, true, true, true);
}
void ccApplyTransformationDlg::buttonClicked(QAbstractButton* button)
{
if (buttonBox->buttonRole(button) == QDialogButtonBox::ResetRole)
{
updateAll(ccGLMatrix(), true, true, true);
inverseCheckBox->setChecked(false);
}
}
#include "ccApplyTransformationDlg.moc"
|