2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vtoolpointofcontact.cpp
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2013 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-08-21 10:03:53 +02:00
|
|
|
#include "vtoolpointofcontact.h"
|
2013-11-06 16:49:07 +01:00
|
|
|
#include "../../container/calculator.h"
|
2014-02-21 14:04:39 +01:00
|
|
|
#include "../../dialogs/tools/dialogpointofcontact.h"
|
2013-08-21 10:03:53 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VToolPointOfContact::ToolType = QStringLiteral("pointOfContact");
|
|
|
|
|
2014-02-25 15:40:24 +01:00
|
|
|
VToolPointOfContact::VToolPointOfContact(VPattern *doc, VContainer *data, const quint32 &id,
|
|
|
|
const QString &radius, const quint32 ¢er,
|
|
|
|
const quint32 &firstPointId, const quint32 &secondPointId,
|
2014-03-11 12:43:24 +01:00
|
|
|
const Valentina::Sources &typeCreation, QGraphicsItem *parent)
|
2014-01-27 16:48:11 +01:00
|
|
|
: VToolPoint(doc, data, id, parent), arcRadius(radius), center(center), firstPointId(firstPointId),
|
2014-02-06 14:57:23 +01:00
|
|
|
secondPointId(secondPointId)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-03-11 12:43:24 +01:00
|
|
|
if (typeCreation == Valentina::FromGui)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
AddToFile();
|
|
|
|
}
|
2013-12-24 12:24:29 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshDataInFile();
|
|
|
|
}
|
2013-08-21 10:03:53 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolPointOfContact::setDialog()
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogPointOfContact *dialogTool = qobject_cast<DialogPointOfContact*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *p = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
2014-02-06 14:57:23 +01:00
|
|
|
dialogTool->setRadius(arcRadius);
|
|
|
|
dialogTool->setCenter(center, id);
|
|
|
|
dialogTool->setFirstPoint(firstPointId, id);
|
|
|
|
dialogTool->setSecondPoint(secondPointId, id);
|
|
|
|
dialogTool->setPointName(p->name());
|
2013-08-21 10:03:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QPointF VToolPointOfContact::FindPoint(const qreal &radius, const QPointF ¢er, const QPointF &firstPoint,
|
2013-11-04 21:35:15 +01:00
|
|
|
const QPointF &secondPoint)
|
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
QPointF pArc;
|
|
|
|
qreal s = 0.0, s_x, s_y, step = 0.01, distans;
|
2013-11-04 21:35:15 +01:00
|
|
|
while ( s < 1)
|
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
s_x = secondPoint.x()-(qAbs(secondPoint.x()-firstPoint.x()))*s;
|
|
|
|
s_y = secondPoint.y()-(qAbs(secondPoint.y()-firstPoint.y()))*s;
|
|
|
|
distans = QLineF(center.x(), center.y(), s_x, s_y).length();
|
2013-11-12 19:29:03 +01:00
|
|
|
if (fabs(distans*10 - radius*10) < 0.1)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
pArc.rx() = s_x;
|
|
|
|
pArc.ry() = s_y;
|
|
|
|
break;
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (distans<radius)
|
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
pArc.rx() = s_x;
|
|
|
|
pArc.ry() = s_y;
|
|
|
|
}
|
|
|
|
s = s + step;
|
|
|
|
}
|
|
|
|
return pArc;
|
|
|
|
}
|
|
|
|
|
2014-02-25 15:02:09 +01:00
|
|
|
void VToolPointOfContact::Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc, VContainer *data)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogPointOfContact *dialogTool = qobject_cast<DialogPointOfContact*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
|
|
|
QString radius = dialogTool->getRadius();
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 center = dialogTool->getCenter();
|
|
|
|
quint32 firstPointId = dialogTool->getFirstPoint();
|
|
|
|
quint32 secondPointId = dialogTool->getSecondPoint();
|
2014-02-06 14:57:23 +01:00
|
|
|
QString pointName = dialogTool->getPointName();
|
2013-08-21 10:03:53 +02:00
|
|
|
Create(0, radius, center, firstPointId, secondPointId, pointName, 5, 10, scene, doc, data,
|
2014-03-11 12:43:24 +01:00
|
|
|
Document::FullParse, Valentina::FromGui);
|
2013-08-21 10:03:53 +02:00
|
|
|
}
|
|
|
|
|
2014-02-25 15:40:24 +01:00
|
|
|
void VToolPointOfContact::Create(const quint32 _id, const QString &radius, const quint32 ¢er,
|
|
|
|
const quint32 &firstPointId, const quint32 &secondPointId,
|
2013-08-21 10:03:53 +02:00
|
|
|
const QString &pointName, const qreal &mx, const qreal &my,
|
2014-02-25 15:02:09 +01:00
|
|
|
VMainGraphicsScene *scene, VPattern *doc, VContainer *data,
|
2014-03-11 12:43:24 +01:00
|
|
|
const Document::Documents &parse, const Valentina::Sources &typeCreation)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *centerP = data->GeometricObject<const VPointF *>(center);
|
|
|
|
const VPointF *firstP = data->GeometricObject<const VPointF *>(firstPointId);
|
|
|
|
const VPointF *secondP = data->GeometricObject<const VPointF *>(secondPointId);
|
2013-08-21 10:03:53 +02:00
|
|
|
|
|
|
|
Calculator cal(data);
|
|
|
|
QString errorMsg;
|
|
|
|
qreal result = cal.eval(radius, &errorMsg);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (errorMsg.isEmpty())
|
|
|
|
{
|
2014-03-19 19:27:11 +01:00
|
|
|
QPointF fPoint = VToolPointOfContact::FindPoint(qApp->toPixel(result), centerP->toQPointF(),
|
2013-12-29 17:48:57 +01:00
|
|
|
firstP->toQPointF(), secondP->toQPointF());
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 id = _id;
|
2014-03-11 12:43:24 +01:00
|
|
|
if (typeCreation == Valentina::FromGui)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
id = data->AddGObject(new VPointF(fPoint.x(), fPoint.y(), pointName, mx, my));
|
2013-10-10 20:45:58 +02:00
|
|
|
data->AddLine(firstPointId, id);
|
|
|
|
data->AddLine(secondPointId, id);
|
|
|
|
data->AddLine(center, id);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
data->UpdateGObject(id, new VPointF(fPoint.x(), fPoint.y(), pointName, mx, my));
|
2013-10-10 20:45:58 +02:00
|
|
|
data->AddLine(firstPointId, id);
|
|
|
|
data->AddLine(secondPointId, id);
|
|
|
|
data->AddLine(center, id);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse != Document::FullParse)
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->UpdateToolData(id, data);
|
2013-08-21 10:03:53 +02:00
|
|
|
}
|
|
|
|
}
|
2014-03-11 12:43:24 +01:00
|
|
|
VDrawTool::AddRecord(id, Valentina::PointOfContact, doc);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
VToolPointOfContact *point = new VToolPointOfContact(doc, data, id, radius, center,
|
2013-08-21 10:03:53 +02:00
|
|
|
firstPointId, secondPointId, typeCreation);
|
|
|
|
scene->addItem(point);
|
|
|
|
connect(point, &VToolPointOfContact::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
2013-10-16 11:17:34 +02:00
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, point, &VToolPointOfContact::SetFactor);
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->AddTool(id, point);
|
|
|
|
doc->IncrementReferens(center);
|
|
|
|
doc->IncrementReferens(firstPointId);
|
|
|
|
doc->IncrementReferens(secondPointId);
|
2013-08-21 10:03:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolPointOfContact::FullUpdateFromFile()
|
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-01-27 16:48:11 +01:00
|
|
|
arcRadius = domElement.attribute(AttrRadius, "");
|
2014-02-25 15:55:02 +01:00
|
|
|
center = domElement.attribute(AttrCenter, "").toUInt();
|
|
|
|
firstPointId = domElement.attribute(AttrFirstPoint, "").toUInt();
|
|
|
|
secondPointId = domElement.attribute(AttrSecondPoint, "").toUInt();
|
2013-08-21 10:03:53 +02:00
|
|
|
}
|
2013-12-29 17:48:57 +01:00
|
|
|
RefreshPointGeometry(*VAbstractTool::data.GeometricObject<const VPointF *>(id));
|
2013-08-21 10:03:53 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolPointOfContact::SetFactor(qreal factor)
|
|
|
|
{
|
2013-10-16 11:17:34 +02:00
|
|
|
VDrawTool::SetFactor(factor);
|
2013-12-29 17:48:57 +01:00
|
|
|
RefreshPointGeometry(*VAbstractTool::data.GeometricObject<const VPointF *>(id));
|
2013-10-16 11:17:34 +02:00
|
|
|
}
|
|
|
|
|
2014-01-09 13:51:09 +01:00
|
|
|
void VToolPointOfContact::ShowContextMenu(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogPointOfContact>(this, event);
|
2014-01-09 13:51:09 +01:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolPointOfContact::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2014-02-06 14:57:23 +01:00
|
|
|
ContextMenu<DialogPointOfContact>(this, event);
|
2013-08-21 10:03:53 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolPointOfContact::AddToFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
2013-10-29 14:45:07 +01:00
|
|
|
QDomElement domElement = doc->createElement(TagName);
|
|
|
|
|
2014-03-21 11:08:29 +01:00
|
|
|
doc->SetAttribute(domElement, VDomDocument::AttrId, id);
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrType, ToolType);
|
|
|
|
doc->SetAttribute(domElement, AttrName, point->name());
|
2014-03-19 19:27:11 +01:00
|
|
|
doc->SetAttribute(domElement, AttrMx, qApp->fromPixel(point->mx()));
|
|
|
|
doc->SetAttribute(domElement, AttrMy, qApp->fromPixel(point->my()));
|
2013-10-29 14:45:07 +01:00
|
|
|
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrRadius, arcRadius);
|
|
|
|
doc->SetAttribute(domElement, AttrCenter, center);
|
|
|
|
doc->SetAttribute(domElement, AttrFirstPoint, firstPointId);
|
|
|
|
doc->SetAttribute(domElement, AttrSecondPoint, secondPointId);
|
2013-08-21 10:03:53 +02:00
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
AddToCalculation(domElement);
|
2013-08-21 10:03:53 +02:00
|
|
|
}
|
2013-09-30 18:29:03 +02:00
|
|
|
|
2013-12-24 12:24:29 +01:00
|
|
|
void VToolPointOfContact::RefreshDataInFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
2013-12-24 12:24:29 +01:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrName, point->name());
|
2014-03-19 19:27:11 +01:00
|
|
|
doc->SetAttribute(domElement, AttrMx, qApp->fromPixel(point->mx()));
|
|
|
|
doc->SetAttribute(domElement, AttrMy, qApp->fromPixel(point->my()));
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrRadius, arcRadius);
|
|
|
|
doc->SetAttribute(domElement, AttrCenter, center);
|
|
|
|
doc->SetAttribute(domElement, AttrFirstPoint, firstPointId);
|
|
|
|
doc->SetAttribute(domElement, AttrSecondPoint, secondPointId);
|
2013-12-24 12:24:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolPointOfContact::RemoveReferens()
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->DecrementReferens(center);
|
|
|
|
doc->DecrementReferens(firstPointId);
|
|
|
|
doc->DecrementReferens(secondPointId);
|
|
|
|
}
|
2014-02-06 14:57:23 +01:00
|
|
|
|
|
|
|
void VToolPointOfContact::SaveDialog(QDomElement &domElement)
|
|
|
|
{
|
|
|
|
Q_CHECK_PTR(dialog);
|
|
|
|
DialogPointOfContact *dialogTool = qobject_cast<DialogPointOfContact*>(dialog);
|
|
|
|
Q_CHECK_PTR(dialogTool);
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrName, dialogTool->getPointName());
|
|
|
|
doc->SetAttribute(domElement, AttrRadius, dialogTool->getRadius());
|
|
|
|
doc->SetAttribute(domElement, AttrCenter, QString().setNum(dialogTool->getCenter()));
|
|
|
|
doc->SetAttribute(domElement, AttrFirstPoint, QString().setNum(dialogTool->getFirstPoint()));
|
|
|
|
doc->SetAttribute(domElement, AttrSecondPoint, QString().setNum(dialogTool->getSecondPoint()));
|
2014-02-06 14:57:23 +01:00
|
|
|
}
|