9a898a7c99
--HG-- branch : develop
270 lines
12 KiB
C++
270 lines
12 KiB
C++
/************************************************************************
|
|
**
|
|
** @file vtoolpointofintersectionarcs.cpp
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date 25 5, 2015
|
|
**
|
|
** @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) 2015 Valentina project
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
**
|
|
** Valentina 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.
|
|
**
|
|
** Valentina 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 "vtoolpointofintersectionarcs.h"
|
|
#include "../../dialogs/tools/dialogpointofintersectionarcs.h"
|
|
#include "../../libs/vgeometry/vpointf.h"
|
|
#include "../../libs/vgeometry/varc.h"
|
|
#include "../../visualization/vistoolpointofintersectionarcs.h"
|
|
|
|
const QString VToolPointOfIntersectionArcs::ToolType = QStringLiteral("pointOfIntersectionArcs");
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
VToolPointOfIntersectionArcs::VToolPointOfIntersectionArcs(VPattern *doc, VContainer *data, const quint32 &id,
|
|
const quint32 &firstArcId, const quint32 &secondArcId,
|
|
CrossArcsPoint pType, const Source &typeCreation,
|
|
QGraphicsItem *parent)
|
|
:VToolPoint(doc, data, id, parent), firstArcId(firstArcId), secondArcId(secondArcId), crossPoint(pType)
|
|
{
|
|
ToolCreation(typeCreation);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolPointOfIntersectionArcs::setDialog()
|
|
{
|
|
SCASSERT(dialog != nullptr);
|
|
DialogPointOfIntersectionArcs *dialogTool = qobject_cast<DialogPointOfIntersectionArcs*>(dialog);
|
|
SCASSERT(dialogTool != nullptr);
|
|
const QSharedPointer<VPointF> p = VAbstractTool::data.GeometricObject<VPointF>(id);
|
|
dialogTool->SetFirstArcId(firstArcId);
|
|
dialogTool->SetSecondArcId(secondArcId);
|
|
dialogTool->SetCrossArcPoint(crossPoint);
|
|
dialogTool->SetPointName(p->name());
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
VToolPointOfIntersectionArcs *VToolPointOfIntersectionArcs::Create(DialogTool *dialog, VMainGraphicsScene *scene,
|
|
VPattern *doc, VContainer *data)
|
|
{
|
|
SCASSERT(dialog != nullptr);
|
|
DialogPointOfIntersectionArcs *dialogTool = qobject_cast<DialogPointOfIntersectionArcs*>(dialog);
|
|
SCASSERT(dialogTool != nullptr);
|
|
const quint32 firstArcId = dialogTool->GetFirstArcId();
|
|
const quint32 secondArcId = dialogTool->GetSecondArcId();
|
|
const CrossArcsPoint pType = dialogTool->GetCrossArcPoint();
|
|
const QString pointName = dialogTool->getPointName();
|
|
VToolPointOfIntersectionArcs *point = nullptr;
|
|
point = Create(0, pointName, firstArcId, secondArcId, pType, 5, 10, scene, doc, data, Document::FullParse,
|
|
Source::FromGui);
|
|
if (point != nullptr)
|
|
{
|
|
point->dialog=dialogTool;
|
|
}
|
|
return point;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
VToolPointOfIntersectionArcs *VToolPointOfIntersectionArcs::Create(const quint32 _id, const QString &pointName,
|
|
const quint32 &firstArcId,
|
|
const quint32 &secondArcId, CrossArcsPoint pType,
|
|
const qreal &mx, const qreal &my,
|
|
VMainGraphicsScene *scene, VPattern *doc,
|
|
VContainer *data, const Document &parse,
|
|
const Source &typeCreation)
|
|
{
|
|
const QSharedPointer<VArc> firstArc = data->GeometricObject<VArc>(firstArcId);
|
|
const QSharedPointer<VArc> secondArc = data->GeometricObject<VArc>(secondArcId);
|
|
|
|
const QPointF point = FindPoint(firstArc.data(), secondArc.data(), pType);
|
|
quint32 id = _id;
|
|
if (typeCreation == Source::FromGui)
|
|
{
|
|
id = data->AddGObject(new VPointF(point, pointName, mx, my));
|
|
}
|
|
else
|
|
{
|
|
data->UpdateGObject(id, new VPointF(point, pointName, mx, my));
|
|
if (parse != Document::FullParse)
|
|
{
|
|
doc->UpdateToolData(id, data);
|
|
}
|
|
}
|
|
VDrawTool::AddRecord(id, Tool::PointOfIntersectionArcs, doc);
|
|
if (parse == Document::FullParse)
|
|
{
|
|
VToolPointOfIntersectionArcs *point = new VToolPointOfIntersectionArcs(doc, data, id, firstArcId,
|
|
secondArcId, pType, typeCreation);
|
|
scene->addItem(point);
|
|
connect(point, &VToolPointOfIntersectionArcs::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
|
connect(scene, &VMainGraphicsScene::NewFactor, point, &VToolPointOfIntersectionArcs::SetFactor);
|
|
connect(scene, &VMainGraphicsScene::DisableItem, point, &VToolPointOfIntersectionArcs::Disable);
|
|
connect(scene, &VMainGraphicsScene::EnableToolMove, point, &VToolPointOfIntersectionArcs::EnableToolMove);
|
|
doc->AddTool(id, point);
|
|
doc->IncrementReferens(firstArcId);
|
|
doc->IncrementReferens(secondArcId);
|
|
return point;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QPointF VToolPointOfIntersectionArcs::FindPoint(const VArc *arc1, const VArc *arc2, const CrossArcsPoint pType)
|
|
{
|
|
QPointF p1, p2;
|
|
const int res = VGObject::IntersectionCircles(arc1->GetCenter().toQPointF(), arc1->GetRadius(),
|
|
arc2->GetCenter().toQPointF(), arc2->GetRadius(), p1, p2);
|
|
|
|
switch(res)
|
|
{
|
|
case 2:
|
|
if (pType == CrossArcsPoint::FirstPoint)
|
|
{
|
|
return p1;
|
|
}
|
|
else
|
|
{
|
|
return p2;
|
|
}
|
|
break;
|
|
case 1:
|
|
return p1;
|
|
break;
|
|
case 3:
|
|
case 0:
|
|
default:
|
|
return QPointF(0, 0);
|
|
break;
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
quint32 VToolPointOfIntersectionArcs::GetFirstArcId() const
|
|
{
|
|
return firstArcId;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolPointOfIntersectionArcs::SetFirstArcId(const quint32 &value)
|
|
{
|
|
if (value != NULL_ID)
|
|
{
|
|
firstArcId = value;
|
|
|
|
QSharedPointer<VGObject> obj = VAbstractTool::data.GetGObject(id);
|
|
SaveOption(obj);
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
quint32 VToolPointOfIntersectionArcs::GetSecondArcId() const
|
|
{
|
|
return secondArcId;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolPointOfIntersectionArcs::SetSecondArcId(const quint32 &value)
|
|
{
|
|
if (value != NULL_ID)
|
|
{
|
|
secondArcId = value;
|
|
|
|
QSharedPointer<VGObject> obj = VAbstractTool::data.GetGObject(id);
|
|
SaveOption(obj);
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
CrossArcsPoint VToolPointOfIntersectionArcs::GetCrossArcsPoint() const
|
|
{
|
|
return crossPoint;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolPointOfIntersectionArcs::SetCrossArcsPoint(CrossArcsPoint &value)
|
|
{
|
|
crossPoint = value;
|
|
|
|
QSharedPointer<VGObject> obj = VAbstractTool::data.GetGObject(id);
|
|
SaveOption(obj);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolPointOfIntersectionArcs::ShowVisualization(bool show)
|
|
{
|
|
ShowToolVisualization<VisToolPointOfIntersectionArcs>(show);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolPointOfIntersectionArcs::RemoveReferens()
|
|
{
|
|
doc->DecrementReferens(firstArcId);
|
|
doc->DecrementReferens(secondArcId);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolPointOfIntersectionArcs::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
{
|
|
ContextMenu<DialogPointOfIntersectionArcs>(this, event);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolPointOfIntersectionArcs::SaveDialog(QDomElement &domElement)
|
|
{
|
|
SCASSERT(dialog != nullptr);
|
|
DialogPointOfIntersectionArcs *dialogTool = qobject_cast<DialogPointOfIntersectionArcs*>(dialog);
|
|
SCASSERT(dialogTool != nullptr);
|
|
doc->SetAttribute(domElement, AttrName, dialogTool->getPointName());
|
|
doc->SetAttribute(domElement, AttrFirstArc, QString().setNum(dialogTool->GetFirstArcId()));
|
|
doc->SetAttribute(domElement, AttrSecondArc, QString().setNum(dialogTool->GetSecondArcId()));
|
|
doc->SetAttribute(domElement, AttrCrossPoint, QString().setNum(static_cast<int>(dialogTool->GetCrossArcPoint())));
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolPointOfIntersectionArcs::SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj)
|
|
{
|
|
VToolPoint::SaveOptions(tag, obj);
|
|
|
|
doc->SetAttribute(tag, AttrType, ToolType);
|
|
doc->SetAttribute(tag, AttrFirstArc, firstArcId);
|
|
doc->SetAttribute(tag, AttrSecondArc, secondArcId);
|
|
doc->SetAttribute(tag, AttrCrossPoint, static_cast<int>(crossPoint));
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolPointOfIntersectionArcs::ReadToolAttributes(const QDomElement &domElement)
|
|
{
|
|
firstArcId = doc->GetParametrUInt(domElement, AttrFirstArc, NULL_ID_STR);
|
|
secondArcId = doc->GetParametrUInt(domElement, AttrSecondArc, NULL_ID_STR);
|
|
crossPoint = static_cast<CrossArcsPoint>(doc->GetParametrUInt(domElement, AttrCrossPoint, "1"));
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolPointOfIntersectionArcs::SetVisualization()
|
|
{
|
|
if (vis != nullptr)
|
|
{
|
|
VisToolPointOfIntersectionArcs *visual = qobject_cast<VisToolPointOfIntersectionArcs *>(vis);
|
|
SCASSERT(visual != nullptr);
|
|
|
|
visual->setArc1Id(firstArcId);
|
|
visual->setArc2Id(secondArcId);
|
|
visual->setCrossPoint(crossPoint);
|
|
visual->RefreshGeometry();
|
|
}
|
|
}
|