/************************************************************************ ** ** @file vtoolcutsplinepath.cpp ** @author Roman Telezhynskyi ** @date 15 12, 2013 ** ** @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-2015 Valentina project ** 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 . ** *************************************************************************/ #include "vtoolcutsplinepath.h" #include "../vpatterndb/calculator.h" #include "../vpatterndb/vtranslatevars.h" #include "../../../../../dialogs/tools/dialogcutsplinepath.h" #include "../vgeometry/vpointf.h" #include "../../../../../visualization/vistoolcutsplinepath.h" #include "../vgeometry/vsplinepath.h" const QString VToolCutSplinePath::ToolType = QStringLiteral("cutSplinePath"); const QString VToolCutSplinePath::AttrSplinePath = QStringLiteral("splinePath"); //--------------------------------------------------------------------------------------------------------------------- /** * @brief VToolCutSplinePath constructor. * @param doc dom document container. * @param data container with variables. * @param id object id in container. * @param formula string with formula length first splinePath. * @param splinePathId id splinePath (we cut this splinePath) in data container. * @param splPath1id id first splinePath after cutting. * @param splPath2id id second splinePath after cutting. * @param typeCreation way we create this tool. * @param parent parent object. */ VToolCutSplinePath::VToolCutSplinePath(VAbstractPattern *doc, VContainer *data, const quint32 &id, const QString &formula, const quint32 &splinePathId, const quint32 &splPath1id, const quint32 &splPath2id, const QString &color, const Source &typeCreation, QGraphicsItem *parent) :VToolCut(doc, data, id, formula, splinePathId, splPath1id, splPath2id, color, parent) { ToolCreation(typeCreation); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief setDialog set dialog when user want change tool option. */ void VToolCutSplinePath::setDialog() { SCASSERT(dialog != nullptr); DialogCutSplinePath *dialogTool = qobject_cast(dialog); SCASSERT(dialogTool != nullptr); const QSharedPointer point = VAbstractTool::data.GeometricObject(id); dialogTool->SetChildrenId(curve1id, curve2id); dialogTool->SetFormula(formula); dialogTool->setSplinePathId(curveCutId); dialogTool->SetPointName(point->name()); dialogTool->SetColor(lineColor); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief Create help create tool form GUI. * @param dialog dialog. * @param scene pointer to scene. * @param doc dom document container. * @param data container with variables. */ VToolCutSplinePath* VToolCutSplinePath::Create(DialogTool *dialog, VMainGraphicsScene *scene, VAbstractPattern *doc, VContainer *data) { SCASSERT(dialog != nullptr); DialogCutSplinePath *dialogTool = qobject_cast(dialog); SCASSERT(dialogTool != nullptr); const QString pointName = dialogTool->getPointName(); QString formula = dialogTool->GetFormula(); const quint32 splinePathId = dialogTool->getSplinePathId(); const QString color = dialogTool->GetColor(); VToolCutSplinePath* point = Create(0, pointName, formula, splinePathId, 5, 10, color, scene, doc, data, Document::FullParse, Source::FromGui); if (point != nullptr) { point->dialog=dialogTool; } return point; } //--------------------------------------------------------------------------------------------------------------------- /** * @brief Create help create tool. * @param _id tool id, 0 if tool doesn't exist yet. * @param pointName point name. * @param formula string with formula length first splinePath. * @param splinePathId id of splinePath in data container. * @param mx label bias x axis. * @param my label bias y axis. * @param scene pointer to scene. * @param doc dom document container. * @param data container with variables. * @param parse parser file mode. * @param typeCreation way we create this tool. */ VToolCutSplinePath* VToolCutSplinePath::Create(const quint32 _id, const QString &pointName, QString &formula, const quint32 &splinePathId, const qreal &mx, const qreal &my, const QString &color, VMainGraphicsScene *scene, VAbstractPattern *doc, VContainer *data, const Document &parse, const Source &typeCreation) { const QSharedPointer splPath = data->GeometricObject(splinePathId); SCASSERT(splPath != nullptr); const qreal result = CheckFormula(_id, formula, data); quint32 id = _id; QPointF spl1p2, spl1p3, spl2p2, spl2p3; qint32 p1 = 0, p2 = 0; const QPointF point = splPath->CutSplinePath(qApp->toPixel(result), p1, p2, spl1p2, spl1p3, spl2p2, spl2p3); VPointF *p = new VPointF(point, pointName, mx, my); if (typeCreation == Source::FromGui) { id = data->AddGObject(p); } else { data->UpdateGObject(id, p); } quint32 splPath1id = id + 1; quint32 splPath2id = id + 2; VSplinePoint splP1 = splPath->at(p1); VSplinePoint splP2 = splPath->at(p2); const VSpline spl1 = VSpline(splP1.P(), spl1p2, spl1p3, *p); const VSpline spl2 = VSpline(*p, spl2p2, spl2p3, splP2.P()); VSplinePath *splPath1 = new VSplinePath(); VSplinePath *splPath2 = new VSplinePath(); for (qint32 i = 0; i < splPath->CountPoint(); i++) { if (i <= p1 && i < p2) { if (i == p1) { const qreal angle1 = spl1.GetStartAngle()+180; const QString angle1F = QString().number(angle1); splPath1->append(VSplinePoint(splP1.P(), angle1, angle1F, spl1.GetStartAngle(), spl1.GetStartAngleFormula(), splP1.Length1(), splP1.Length1Formula(), spl1.GetC1Length(), spl1.GetC1LengthFormula())); const qreal angle2 = spl1.GetEndAngle()+180; const QString angle2F = QString().number(angle2); const auto cutPoint = VSplinePoint(*p, spl1.GetEndAngle(), spl1.GetEndAngleFormula(), angle2, angle2F, spl1.GetC2Length(), spl1.GetC2LengthFormula(), spl2.GetC1Length(), spl2.GetC1LengthFormula()); splPath1->append(cutPoint); continue; } splPath1->append(splPath->at(i)); } else { if (i == p2) { const qreal angle1 = spl2.GetStartAngle()+180; const QString angle1F = QString().number(angle1); const auto cutPoint = VSplinePoint(*p, angle1, angle1F, spl2.GetStartAngle(), spl2.GetStartAngleFormula(), spl1.GetC2Length(), spl1.GetC2LengthFormula(), spl2.GetC1Length(), spl2.GetC1LengthFormula()); splPath2->append(cutPoint); const qreal angle2 = spl2.GetEndAngle()+180; const QString angle2F = QString().number(angle2); splPath2->append(VSplinePoint(splP2.P(), spl2.GetEndAngle(), spl2.GetEndAngleFormula(), angle2, angle2F, spl2.GetC2Length(), spl2.GetC2LengthFormula(), splP2.Length2(), splP2.Length2Formula())); continue; } splPath2->append(splPath->at(i)); } } if (typeCreation == Source::FromGui) { splPath1id = data->AddGObject(splPath1); data->AddCurve(splPath1id, id); splPath2id = data->AddGObject(splPath2); data->AddCurve(splPath2id, id); } else { data->UpdateGObject(splPath1id, splPath1); data->AddCurve(splPath1id, id); data->UpdateGObject(splPath2id, splPath2); data->AddCurve(splPath2id, id); if (parse != Document::FullParse) { doc->UpdateToolData(id, data); } } VDrawTool::AddRecord(id, Tool::CutSplinePath, doc); if (parse == Document::FullParse) { VToolCutSplinePath *point = new VToolCutSplinePath(doc, data, id, formula, splinePathId, splPath1id, splPath2id, color, typeCreation); scene->addItem(point); connect(point, &VToolSinglePoint::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem); connect(scene, &VMainGraphicsScene::NewFactor, point, &VToolCutSplinePath::SetFactor); connect(scene, &VMainGraphicsScene::DisableItem, point, &VToolCutSplinePath::Disable); connect(scene, &VMainGraphicsScene::EnableToolMove, point, &VToolCutSplinePath::EnableToolMove); connect(scene, &VMainGraphicsScene::CurveDetailsMode, point, &VToolCutSplinePath::DetailsMode); doc->AddTool(id, point); doc->AddTool(splPath1id, point); doc->AddTool(splPath2id, point); doc->IncrementReferens(splPath->getIdTool()); return point; } return nullptr; } //--------------------------------------------------------------------------------------------------------------------- void VToolCutSplinePath::ShowVisualization(bool show) { ShowToolVisualization(show); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief contextMenuEvent handle context menu events. * @param event context menu event. */ void VToolCutSplinePath::contextMenuEvent(QGraphicsSceneContextMenuEvent *event) { try { ContextMenu(this, event); } catch(const VExceptionToolWasDeleted &e) { Q_UNUSED(e); return;//Leave this method immediately!!! } } //--------------------------------------------------------------------------------------------------------------------- /** * @brief SaveDialog save options into file after change in dialog. */ void VToolCutSplinePath::SaveDialog(QDomElement &domElement) { SCASSERT(dialog != nullptr); DialogCutSplinePath *dialogTool = qobject_cast(dialog); SCASSERT(dialogTool != nullptr); doc->SetAttribute(domElement, AttrName, dialogTool->getPointName()); doc->SetAttribute(domElement, AttrLength, dialogTool->GetFormula()); doc->SetAttribute(domElement, AttrSplinePath, QString().setNum(dialogTool->getSplinePathId())); doc->SetAttribute(domElement, AttrColor, dialogTool->GetColor()); } //--------------------------------------------------------------------------------------------------------------------- void VToolCutSplinePath::SaveOptions(QDomElement &tag, QSharedPointer &obj) { VToolCut::SaveOptions(tag, obj); doc->SetAttribute(tag, AttrType, ToolType); doc->SetAttribute(tag, AttrLength, formula); doc->SetAttribute(tag, AttrSplinePath, curveCutId); } //--------------------------------------------------------------------------------------------------------------------- void VToolCutSplinePath::ReadToolAttributes(const QDomElement &domElement) { formula = doc->GetParametrString(domElement, AttrLength, ""); curveCutId = doc->GetParametrUInt(domElement, AttrSplinePath, NULL_ID_STR); lineColor = doc->GetParametrString(domElement, AttrColor, ColorBlack); } //--------------------------------------------------------------------------------------------------------------------- void VToolCutSplinePath::SetVisualization() { if (vis != nullptr) { VisToolCutSplinePath *visual = qobject_cast(vis); SCASSERT(visual != nullptr); visual->setObject1Id(curveCutId); visual->setLength(qApp->TrVars()->FormulaToUser(formula)); visual->RefreshGeometry(); } }