173 lines
7.8 KiB
C++
173 lines
7.8 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2013 Valentina project All Rights Reserved.
|
|
**
|
|
** This file is part of Valentina.
|
|
**
|
|
** Tox 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, either version 3 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** Tox 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.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "vmodelingpointofcontact.h"
|
|
|
|
VModelingPointOfContact::VModelingPointOfContact(VDomDocument *doc, VContainer *data, const qint64 &id,
|
|
const QString &radius, const qint64 ¢er,
|
|
const qint64 &firstPointId, const qint64 &secondPointId,
|
|
Tool::Enum typeCreation, QGraphicsItem *parent)
|
|
: VModelingPoint(doc, data, id, parent), radius(radius), center(center), firstPointId(firstPointId),
|
|
secondPointId(secondPointId), dialogPointOfContact(QSharedPointer<DialogPointOfContact>()){
|
|
|
|
if(typeCreation == Tool::FromGui){
|
|
AddToFile();
|
|
}
|
|
}
|
|
|
|
void VModelingPointOfContact::setDialog(){
|
|
Q_ASSERT(!dialogPointOfContact.isNull());
|
|
if(!dialogPointOfContact.isNull()){
|
|
VPointF p = VAbstractTool::data.GetModelingPoint(id);
|
|
dialogPointOfContact->setRadius(radius);
|
|
dialogPointOfContact->setCenter(center, id);
|
|
dialogPointOfContact->setFirstPoint(firstPointId, id);
|
|
dialogPointOfContact->setSecondPoint(secondPointId, id);
|
|
dialogPointOfContact->setPointName(p.name());
|
|
}
|
|
}
|
|
|
|
QPointF VModelingPointOfContact::FindPoint(const qreal &radius, const QPointF ¢er, const QPointF &firstPoint,
|
|
const QPointF &secondPoint){
|
|
QPointF pArc;
|
|
qreal s = 0.0, s_x, s_y, step = 0.01, distans;
|
|
while( s < 1){
|
|
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();
|
|
if(ceil(distans*10) == ceil(radius*10)){
|
|
pArc.rx() = s_x;
|
|
pArc.ry() = s_y;
|
|
break;
|
|
}
|
|
if(distans<radius){
|
|
pArc.rx() = s_x;
|
|
pArc.ry() = s_y;
|
|
}
|
|
s = s + step;
|
|
}
|
|
return pArc;
|
|
}
|
|
|
|
VModelingPointOfContact *VModelingPointOfContact::Create(QSharedPointer<DialogPointOfContact> &dialog,
|
|
VDomDocument *doc, VContainer *data){
|
|
QString radius = dialog->getRadius();
|
|
qint64 center = dialog->getCenter();
|
|
qint64 firstPointId = dialog->getFirstPoint();
|
|
qint64 secondPointId = dialog->getSecondPoint();
|
|
QString pointName = dialog->getPointName();
|
|
return Create(0, radius, center, firstPointId, secondPointId, pointName, 5, 10, doc, data,
|
|
Document::FullParse, Tool::FromGui);
|
|
}
|
|
|
|
VModelingPointOfContact *VModelingPointOfContact::Create(const qint64 _id, const QString &radius,
|
|
const qint64 ¢er, const qint64 &firstPointId,
|
|
const qint64 &secondPointId,
|
|
const QString &pointName, const qreal &mx,
|
|
const qreal &my, VDomDocument *doc,
|
|
VContainer *data, Document::Enum parse,
|
|
Tool::Enum typeCreation){
|
|
VModelingPointOfContact *point = 0;
|
|
VPointF centerP = data->GetModelingPoint(center);
|
|
VPointF firstP = data->GetModelingPoint(firstPointId);
|
|
VPointF secondP = data->GetModelingPoint(secondPointId);
|
|
|
|
Calculator cal(data);
|
|
QString errorMsg;
|
|
qreal result = cal.eval(radius, &errorMsg);
|
|
if(errorMsg.isEmpty()){
|
|
QPointF fPoint = VModelingPointOfContact::FindPoint(result*PrintDPI/25.4, centerP.toQPointF(),
|
|
firstP.toQPointF(), secondP.toQPointF());
|
|
qint64 id = _id;
|
|
if(typeCreation == Tool::FromGui){
|
|
id = data->AddModelingPoint(VPointF(fPoint.x(), fPoint.y(), pointName, mx, my));
|
|
} else {
|
|
data->UpdateModelingPoint(id, VPointF(fPoint.x(), fPoint.y(), pointName, mx, my));
|
|
if(parse != Document::FullParse){
|
|
QMap<qint64, VDataTool*>* tools = doc->getTools();
|
|
VDataTool *tool = tools->value(id);
|
|
if(tool != 0){
|
|
tool->VDataTool::setData(data);
|
|
data->IncrementReferens(id, Scene::Point, Draw::Modeling);
|
|
}
|
|
}
|
|
}
|
|
data->IncrementReferens(center, Scene::Point, Draw::Modeling);
|
|
data->IncrementReferens(firstPointId, Scene::Point, Draw::Modeling);
|
|
data->IncrementReferens(secondPointId, Scene::Point, Draw::Modeling);
|
|
if(parse == Document::FullParse){
|
|
point = new VModelingPointOfContact(doc, data, id, radius, center, firstPointId, secondPointId,
|
|
typeCreation);
|
|
QMap<qint64, VDataTool*>* tools = doc->getTools();
|
|
tools->insert(id,point);
|
|
}
|
|
}
|
|
return point;
|
|
}
|
|
|
|
void VModelingPointOfContact::FullUpdateFromFile(){
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
if(domElement.isElement()){
|
|
radius = domElement.attribute("radius", "");
|
|
center = domElement.attribute("center", "").toLongLong();
|
|
firstPointId = domElement.attribute("firstPoint", "").toLongLong();
|
|
secondPointId = domElement.attribute("secondPoint", "").toLongLong();
|
|
}
|
|
RefreshPointGeometry(VAbstractTool::data.GetModelingPoint(id));
|
|
}
|
|
|
|
void VModelingPointOfContact::FullUpdateFromGui(int result){
|
|
if(result == QDialog::Accepted){
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
if(domElement.isElement()){
|
|
domElement.setAttribute("name", dialogPointOfContact->getPointName());
|
|
domElement.setAttribute("radius", dialogPointOfContact->getRadius());
|
|
domElement.setAttribute("center", QString().setNum(dialogPointOfContact->getCenter()));
|
|
domElement.setAttribute("firstPoint", QString().setNum(dialogPointOfContact->getFirstPoint()));
|
|
domElement.setAttribute("secondPoint", QString().setNum(dialogPointOfContact->getSecondPoint()));
|
|
emit FullUpdateTree();
|
|
}
|
|
}
|
|
dialogPointOfContact.clear();
|
|
}
|
|
|
|
void VModelingPointOfContact::contextMenuEvent(QGraphicsSceneContextMenuEvent *event){
|
|
ContextMenu(dialogPointOfContact, this, event);
|
|
}
|
|
|
|
void VModelingPointOfContact::AddToFile(){
|
|
VPointF point = VAbstractTool::data.GetModelingPoint(id);
|
|
QDomElement domElement = doc->createElement("point");
|
|
|
|
AddAttribute(domElement, "id", id);
|
|
AddAttribute(domElement, "type", "pointOfContact");
|
|
AddAttribute(domElement, "name", point.name());
|
|
AddAttribute(domElement, "mx", point.mx()/PrintDPI*25.4);
|
|
AddAttribute(domElement, "my", point.my()/PrintDPI*25.4);
|
|
|
|
AddAttribute(domElement, "radius", radius);
|
|
AddAttribute(domElement, "center", center);
|
|
AddAttribute(domElement, "firstPoint", firstPointId);
|
|
AddAttribute(domElement, "secondPoint", secondPointId);
|
|
|
|
AddToModeling(domElement);
|
|
}
|