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 vsplinepath.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-09 08:49:34 +02:00
|
|
|
#include "vsplinepath.h"
|
2014-08-20 16:05:19 +02:00
|
|
|
#include "vsplinepath_p.h"
|
2013-11-06 16:49:07 +01:00
|
|
|
#include "../exception/vexception.h"
|
2013-08-09 08:49:34 +02:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-12 09:22:29 +02:00
|
|
|
VSplinePath::VSplinePath(qreal kCurve, quint32 idObject, Draw mode)
|
2014-08-20 16:05:19 +02:00
|
|
|
: VAbstractCurve(GOType::SplinePath, idObject, mode), d(new VSplinePathData(kCurve))
|
2014-05-02 13:11:30 +02:00
|
|
|
{}
|
2013-08-20 12:26:02 +02:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
VSplinePath::VSplinePath(const VSplinePath &splPath)
|
2014-08-20 16:05:19 +02:00
|
|
|
: VAbstractCurve(splPath), d(splPath.d)
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VSplinePath::~VSplinePath()
|
2014-05-02 13:11:30 +02:00
|
|
|
{}
|
2013-08-28 10:55:11 +02:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-07 15:40:39 +01:00
|
|
|
void VSplinePath::append(const VSplinePoint &point)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
d->path.append(point);
|
2014-08-20 14:01:35 +02:00
|
|
|
QString name = splPath;
|
2014-08-20 16:05:19 +02:00
|
|
|
name.append(QString("_%1").arg(d->path.first().P().name()));
|
|
|
|
if (d->path.size() > 1)
|
2013-11-12 13:48:45 +01:00
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
name.append(QString("_%1").arg(d->path.last().P().name()));
|
2013-11-12 13:48:45 +01:00
|
|
|
}
|
2014-08-20 14:01:35 +02:00
|
|
|
setName(name);
|
2013-08-09 08:49:34 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
qint32 VSplinePath::Count() const
|
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
if (d->path.size() == 0)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-09 08:49:34 +02:00
|
|
|
return 0;
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
return d->path.size() - 1;
|
2013-08-09 08:49:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
VSpline VSplinePath::GetSpline(qint32 index) const
|
|
|
|
{
|
|
|
|
if (Count()<1)
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
throw VException(tr("Not enough points to create the spline."));
|
2013-08-09 08:49:34 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (index < 1 || index > Count())
|
|
|
|
{
|
2013-12-19 15:30:11 +01:00
|
|
|
throw VException(tr("This spline does not exist."));
|
2013-08-09 08:49:34 +02:00
|
|
|
}
|
2014-08-20 16:05:19 +02:00
|
|
|
VSpline spl(d->path.at(index-1).P(), d->path.at(index).P(), d->path.at(index-1).Angle2(),
|
|
|
|
d->path.at(index).Angle1(), d->path.at(index-1).KAsm2(), d->path.at(index).KAsm1(), d->kCurve);
|
2013-08-09 08:49:34 +02:00
|
|
|
return spl;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-08-17 16:22:30 +02:00
|
|
|
QPainterPath VSplinePath::GetPath(PathDirection direction) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-09 08:49:34 +02:00
|
|
|
QPainterPath painterPath;
|
2013-11-04 21:35:15 +01:00
|
|
|
for (qint32 i = 1; i <= Count(); ++i)
|
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
VSpline spl(d->path.at(i-1).P(), d->path.at(i).P(), d->path.at(i-1).Angle2(), d->path.at(i).Angle1(),
|
|
|
|
d->path.at(i-1).KAsm2(), d->path.at(i).KAsm1(), d->kCurve);
|
2014-08-17 16:22:30 +02:00
|
|
|
painterPath.addPath(spl.GetPath(direction));
|
2013-08-09 08:49:34 +02:00
|
|
|
}
|
|
|
|
return painterPath;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-25 16:08:12 +02:00
|
|
|
QVector<QPointF> VSplinePath::GetPoints() const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-28 10:55:11 +02:00
|
|
|
QVector<QPointF> pathPoints;
|
2013-11-04 21:35:15 +01:00
|
|
|
for (qint32 i = 1; i <= Count(); ++i)
|
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
VSpline spl(d->path.at(i-1).P(), d->path.at(i).P(), d->path.at(i-1).Angle2(), d->path.at(i).Angle1(),
|
|
|
|
d->path.at(i-1).KAsm2(), d->path.at(i).KAsm1(), d->kCurve);
|
2014-01-29 09:53:01 +01:00
|
|
|
pathPoints += spl.GetPoints();
|
2013-08-28 10:55:11 +02:00
|
|
|
}
|
|
|
|
return pathPoints;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
qreal VSplinePath::GetLength() const
|
|
|
|
{
|
2013-08-09 08:49:34 +02:00
|
|
|
qreal length = 0;
|
2013-11-04 21:35:15 +01:00
|
|
|
for (qint32 i = 1; i <= Count(); ++i)
|
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
VSpline spl(d->path.at(i-1).P(), d->path.at(i).P(), d->path.at(i-1).Angle2(), d->path.at(i).Angle1(),
|
|
|
|
d->path.at(i-1).KAsm2(), d->path.at(i).KAsm1(), d->kCurve);
|
2013-08-09 08:49:34 +02:00
|
|
|
length += spl.GetLength();
|
|
|
|
}
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-12 09:22:29 +02:00
|
|
|
void VSplinePath::UpdatePoint(qint32 indexSpline, const SplinePointPosition &pos, const VSplinePoint &point)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
if (indexSpline < 1 || indexSpline > Count())
|
|
|
|
{
|
2013-12-19 15:30:11 +01:00
|
|
|
throw VException(tr("This spline does not exist."));
|
2013-08-09 08:49:34 +02:00
|
|
|
}
|
2014-06-12 09:22:29 +02:00
|
|
|
if (pos == SplinePointPosition::FirstPoint)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
d->path[indexSpline-1] = point;
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
d->path[indexSpline] = point;
|
2013-08-09 08:49:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-12 09:22:29 +02:00
|
|
|
VSplinePoint VSplinePath::GetSplinePoint(qint32 indexSpline, SplinePointPosition pos) const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
if (indexSpline < 1 || indexSpline > Count())
|
|
|
|
{
|
2013-12-19 15:30:11 +01:00
|
|
|
throw VException(tr("This spline does not exist."));
|
2013-08-09 08:49:34 +02:00
|
|
|
}
|
2014-06-12 09:22:29 +02:00
|
|
|
if (pos == SplinePointPosition::FirstPoint)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
return d->path.at(indexSpline-1);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
return d->path.at(indexSpline);
|
2013-08-09 08:49:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
VSplinePath &VSplinePath::operator =(const VSplinePath &path)
|
|
|
|
{
|
2014-07-27 14:30:28 +02:00
|
|
|
if ( &path == this )
|
|
|
|
{
|
|
|
|
return *this;
|
|
|
|
}
|
2014-06-25 16:08:12 +02:00
|
|
|
VAbstractCurve::operator=(path);
|
2014-08-20 16:05:19 +02:00
|
|
|
d = path.d;
|
2013-08-09 08:49:34 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-06 20:27:43 +01:00
|
|
|
VSplinePoint & VSplinePath::operator[](ptrdiff_t indx)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
return d->path[indx];
|
2013-08-09 08:49:34 +02:00
|
|
|
}
|
2013-12-18 12:13:32 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-12-29 17:48:57 +01:00
|
|
|
const VSplinePoint &VSplinePath::at(ptrdiff_t indx) const
|
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
return d->path[indx];
|
2013-12-29 17:48:57 +01:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-12-20 14:35:14 +01:00
|
|
|
QPointF VSplinePath::CutSplinePath(qreal length, qint32 &p1, qint32 &p2, QPointF &spl1p2, QPointF &spl1p3,
|
|
|
|
QPointF &spl2p2, QPointF &spl2p3) const
|
2013-12-18 12:13:32 +01:00
|
|
|
{
|
2013-12-31 09:44:54 +01:00
|
|
|
if (Count() < 2)
|
2013-12-18 12:13:32 +01:00
|
|
|
{
|
|
|
|
throw VException(tr("Can't cut spline path with one point"));
|
|
|
|
}
|
|
|
|
|
|
|
|
//Always need return two spline paths, so we must correct wrong length.
|
|
|
|
qreal fullLength = GetLength();
|
2013-12-31 09:44:54 +01:00
|
|
|
if (length < fullLength * 0.02)
|
2013-12-18 12:13:32 +01:00
|
|
|
{
|
|
|
|
length = fullLength * 0.02;
|
|
|
|
}
|
|
|
|
else if ( length > fullLength * 0.98)
|
|
|
|
{
|
|
|
|
length = fullLength * 0.98;
|
|
|
|
}
|
|
|
|
|
|
|
|
fullLength = 0;
|
|
|
|
for (qint32 i = 1; i <= Count(); ++i)
|
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
VSpline spl = VSpline(d->path.at(i-1).P(), d->path.at(i).P(), d->path.at(i-1).Angle2(), d->path.at(i).Angle1(),
|
|
|
|
d->path.at(i-1).KAsm2(), d->path.at(i).KAsm1(), d->kCurve);
|
2013-12-18 12:13:32 +01:00
|
|
|
fullLength += spl.GetLength();
|
2013-12-31 09:44:54 +01:00
|
|
|
if (fullLength > length)
|
2013-12-18 12:13:32 +01:00
|
|
|
{
|
|
|
|
p1 = i-1;
|
|
|
|
p2 = i;
|
|
|
|
return spl.CutSpline(length - (fullLength - spl.GetLength()), spl1p2, spl1p3, spl2p2, spl2p3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QPointF();
|
|
|
|
}
|
2014-05-02 13:11:30 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-01-08 21:23:08 +01:00
|
|
|
qint32 VSplinePath::getMaxCountPoints() const
|
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
return d->maxCountPoints;
|
2014-01-08 21:23:08 +01:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-01-08 21:23:08 +01:00
|
|
|
void VSplinePath::setMaxCountPoints(const qint32 &value)
|
|
|
|
{
|
2014-08-20 16:05:19 +02:00
|
|
|
d->maxCountPoints = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
qint32 VSplinePath::CountPoint() const
|
|
|
|
{
|
|
|
|
return d->path.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QVector<VSplinePoint> VSplinePath::GetSplinePath() const
|
|
|
|
{
|
|
|
|
return d->path;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VSplinePath::Clear()
|
|
|
|
{
|
|
|
|
d->path.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
qreal VSplinePath::getKCurve() const
|
|
|
|
{
|
|
|
|
return d->kCurve;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VSplinePath::setKCurve(const qreal &value)
|
|
|
|
{
|
2014-09-03 13:10:51 +02:00
|
|
|
if (value > 0)
|
|
|
|
{
|
|
|
|
d->kCurve = value;
|
|
|
|
}
|
2014-08-20 16:05:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
const QVector<VSplinePoint> *VSplinePath::GetPoint() const
|
|
|
|
{
|
|
|
|
return &d->path;
|
2014-01-08 21:23:08 +01:00
|
|
|
}
|