2016-11-03 19:15:53 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 3 11, 2016
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2016-11-03 19:15:53 +01:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2016 Valentina project
|
2020-01-31 07:00:05 +01:00
|
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
2016-11-03 19:15:53 +01:00
|
|
|
**
|
|
|
|
** 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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VABSTRACTPIECE_H
|
|
|
|
#define VABSTRACTPIECE_H
|
|
|
|
|
|
|
|
#include <QtGlobal>
|
2016-11-09 14:53:22 +01:00
|
|
|
#include <QSharedDataPointer>
|
2016-11-11 11:54:17 +01:00
|
|
|
#include <QPointF>
|
2016-11-11 16:55:02 +01:00
|
|
|
#include <QDebug>
|
2019-09-10 15:57:31 +02:00
|
|
|
#include <QCoreApplication>
|
2016-11-11 11:54:17 +01:00
|
|
|
|
|
|
|
#include "../vmisc/diagnostic.h"
|
2016-11-19 14:29:54 +01:00
|
|
|
#include "../vmisc/def.h"
|
2020-08-01 10:55:56 +02:00
|
|
|
#include "../vmisc/compatibility.h"
|
2016-11-11 16:55:02 +01:00
|
|
|
#include "../vgeometry/vgobject.h"
|
2019-09-01 11:58:54 +02:00
|
|
|
#include "vsapoint.h"
|
|
|
|
#include "testpath.h"
|
2016-11-11 11:54:17 +01:00
|
|
|
|
2016-11-09 14:53:22 +01:00
|
|
|
class VAbstractPieceData;
|
2017-10-15 11:25:20 +02:00
|
|
|
class QPainterPath;
|
2019-01-28 19:35:10 +01:00
|
|
|
class VGrainlineData;
|
|
|
|
class VContainer;
|
2019-11-03 09:01:32 +01:00
|
|
|
class VRawSAPoint;
|
2016-11-03 19:15:53 +01:00
|
|
|
|
|
|
|
class VAbstractPiece
|
|
|
|
{
|
2019-09-10 15:57:31 +02:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(VAbstractPiece)
|
2016-11-03 19:15:53 +01:00
|
|
|
public:
|
|
|
|
VAbstractPiece();
|
|
|
|
VAbstractPiece(const VAbstractPiece &piece);
|
|
|
|
virtual ~VAbstractPiece();
|
|
|
|
|
2017-04-19 12:27:17 +02:00
|
|
|
VAbstractPiece &operator=(const VAbstractPiece &piece);
|
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
2019-12-30 16:13:18 +01:00
|
|
|
VAbstractPiece(const VAbstractPiece &&piece) Q_DECL_NOTHROW;
|
2019-12-30 12:00:57 +01:00
|
|
|
VAbstractPiece &operator=(VAbstractPiece &&piece) Q_DECL_NOTHROW;
|
2017-04-19 12:27:17 +02:00
|
|
|
#endif
|
|
|
|
|
2016-11-09 14:53:22 +01:00
|
|
|
QString GetName() const;
|
|
|
|
void SetName(const QString &value);
|
|
|
|
|
2016-11-10 10:56:40 +01:00
|
|
|
bool IsForbidFlipping() const;
|
|
|
|
void SetForbidFlipping(bool value);
|
|
|
|
|
2017-12-17 14:06:46 +01:00
|
|
|
bool IsForceFlipping() const;
|
|
|
|
void SetForceFlipping(bool value);
|
|
|
|
|
2016-11-10 11:53:02 +01:00
|
|
|
bool IsSeamAllowance() const;
|
|
|
|
void SetSeamAllowance(bool value);
|
|
|
|
|
2017-04-05 12:22:33 +02:00
|
|
|
bool IsSeamAllowanceBuiltIn() const;
|
|
|
|
void SetSeamAllowanceBuiltIn(bool value);
|
|
|
|
|
2017-05-16 14:16:50 +02:00
|
|
|
bool IsHideMainPath() const;
|
|
|
|
void SetHideMainPath(bool value);
|
|
|
|
|
2016-11-10 11:53:02 +01:00
|
|
|
qreal GetSAWidth() const;
|
|
|
|
void SetSAWidth(qreal value);
|
|
|
|
|
2017-07-09 21:27:54 +02:00
|
|
|
qreal GetMx() const;
|
|
|
|
void SetMx(qreal value);
|
|
|
|
|
|
|
|
qreal GetMy() const;
|
|
|
|
void SetMy(qreal value);
|
2019-07-19 09:45:57 +02:00
|
|
|
|
|
|
|
uint GetPriority() const;
|
|
|
|
void SetPriority(uint value);
|
2017-07-09 21:27:54 +02:00
|
|
|
|
2020-04-22 13:32:25 +02:00
|
|
|
QUuid GetUUID() const;
|
|
|
|
void SetUUID(const QUuid &uuid);
|
|
|
|
void SetUUID(const QString &uuid);
|
|
|
|
|
2021-08-18 19:33:47 +02:00
|
|
|
/**
|
|
|
|
* @brief GetUniqueID returns unique piece id. Combines UUID and gradation label.
|
|
|
|
* @return unique piece id.
|
|
|
|
*/
|
2021-08-31 11:07:26 +02:00
|
|
|
virtual QString GetUniqueID() const;
|
2021-08-18 19:33:47 +02:00
|
|
|
|
2018-10-22 13:43:06 +02:00
|
|
|
static QVector<QPointF> Equidistant(QVector<VSAPoint> points, qreal width, const QString &name);
|
2016-11-03 19:15:53 +01:00
|
|
|
static qreal SumTrapezoids(const QVector<QPointF> &points);
|
|
|
|
static QVector<QPointF> CheckLoops(const QVector<QPointF> &points);
|
2019-11-03 09:01:32 +01:00
|
|
|
static QVector<QPointF> CheckLoops(const QVector<VRawSAPoint> &points);
|
|
|
|
static QVector<VRawSAPoint> EkvPoint(QVector<VRawSAPoint> points, const VSAPoint &p1Line1, const VSAPoint &p2Line1,
|
|
|
|
const VSAPoint &p1Line2, const VSAPoint &p2Line2, qreal width,
|
|
|
|
bool *needRollback = nullptr);
|
2017-03-28 12:09:00 +02:00
|
|
|
static QLineF ParallelLine(const VSAPoint &p1, const VSAPoint &p2, qreal width);
|
2019-02-23 17:43:06 +01:00
|
|
|
static bool IsAllowanceValid(const QVector<QPointF> &base, const QVector<QPointF> &allowance);
|
2020-08-01 10:55:56 +02:00
|
|
|
template <class T>
|
|
|
|
static bool IsInsidePolygon(const QVector<T> &path, const QVector<T> &polygon,
|
|
|
|
qreal accuracy = accuracyPointOnLine);
|
2016-11-11 16:55:02 +01:00
|
|
|
|
|
|
|
template <class T>
|
|
|
|
static QVector<T> CorrectEquidistantPoints(const QVector<T> &points, bool removeFirstAndLast = true);
|
2016-11-03 19:15:53 +01:00
|
|
|
|
2019-11-03 09:01:32 +01:00
|
|
|
static QVector<VRawSAPoint> RollbackSeamAllowance(QVector<VRawSAPoint> points, const QLineF &cuttingEdge,
|
|
|
|
bool *success);
|
2019-01-09 16:46:02 +01:00
|
|
|
|
2019-01-28 19:35:10 +01:00
|
|
|
static QVector<QPointF> GrainlinePoints(const VGrainlineData &geom, const VContainer *pattern,
|
|
|
|
const QRectF &boundingRect, qreal &dAng);
|
|
|
|
|
2021-01-23 14:24:44 +01:00
|
|
|
static QPainterPath PainterPath(const QVector<QPointF> &points);
|
|
|
|
|
2019-07-01 11:26:08 +02:00
|
|
|
friend QDataStream& operator<< (QDataStream& dataStream, const VAbstractPiece& piece);
|
|
|
|
friend QDataStream& operator>> (QDataStream& dataStream, VAbstractPiece& piece);
|
|
|
|
|
2016-11-03 19:15:53 +01:00
|
|
|
protected:
|
2016-11-11 16:55:02 +01:00
|
|
|
template <class T>
|
|
|
|
static QVector<T> RemoveDublicates(const QVector<T> &points, bool removeFirstAndLast = true);
|
2017-04-27 17:19:23 +02:00
|
|
|
static bool IsEkvPointOnLine(const QPointF &iPoint, const QPointF &prevPoint, const QPointF &nextPoint);
|
2017-04-18 20:39:13 +02:00
|
|
|
static bool IsEkvPointOnLine(const VSAPoint &iPoint, const VSAPoint &prevPoint, const VSAPoint &nextPoint);
|
2016-11-09 14:53:22 +01:00
|
|
|
|
2019-01-28 19:35:10 +01:00
|
|
|
static bool IsItemContained(const QRectF &parentBoundingRect, const QVector<QPointF> &shape, qreal &dX,
|
|
|
|
qreal &dY);
|
|
|
|
static QVector<QPointF> CorrectPosition(const QRectF &parentBoundingRect, QVector<QPointF> points);
|
|
|
|
static bool FindGrainlineGeometry(const VGrainlineData& geom, const VContainer *pattern, qreal &length,
|
|
|
|
qreal &rotationAngle, QPointF &pos);
|
2016-11-09 14:53:22 +01:00
|
|
|
private:
|
|
|
|
QSharedDataPointer<VAbstractPieceData> d;
|
2016-11-03 19:15:53 +01:00
|
|
|
};
|
|
|
|
|
2017-01-22 09:50:23 +01:00
|
|
|
Q_DECLARE_TYPEINFO(VAbstractPiece, Q_MOVABLE_TYPE);
|
|
|
|
|
2016-11-11 16:55:02 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief CorrectEquidistantPoints clear equivalent points and remove point on line from equdistant.
|
|
|
|
* @param points list of points equdistant.
|
|
|
|
* @return corrected list.
|
|
|
|
*/
|
|
|
|
template <class T>
|
|
|
|
QVector<T> VAbstractPiece::CorrectEquidistantPoints(const QVector<T> &points, bool removeFirstAndLast)
|
|
|
|
{
|
2019-09-01 12:02:19 +02:00
|
|
|
// DumpVector(points, QStringLiteral("input.json.XXXXXX")); // Uncomment for dumping test data
|
2016-11-11 16:55:02 +01:00
|
|
|
if (points.size()<4)//Better don't check if only three points. We can destroy equidistant.
|
|
|
|
{
|
|
|
|
qDebug()<<"Only three points.";
|
|
|
|
return points;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Clear equivalent points
|
2016-12-10 19:09:03 +01:00
|
|
|
QVector<T> buf1 = RemoveDublicates(points, removeFirstAndLast);
|
2016-11-11 16:55:02 +01:00
|
|
|
|
2016-12-10 19:09:03 +01:00
|
|
|
if (buf1.size()<3)
|
2016-11-11 16:55:02 +01:00
|
|
|
{
|
2016-12-10 19:09:03 +01:00
|
|
|
return buf1;
|
2016-11-11 16:55:02 +01:00
|
|
|
}
|
|
|
|
|
2017-03-20 07:16:35 +01:00
|
|
|
int prev = -1;
|
2019-08-29 14:14:17 +02:00
|
|
|
int next = -1;
|
2017-03-20 07:16:35 +01:00
|
|
|
|
2016-12-10 19:09:03 +01:00
|
|
|
QVector<T> buf2;
|
2016-11-11 16:55:02 +01:00
|
|
|
//Remove point on line
|
2016-12-10 19:09:03 +01:00
|
|
|
for (qint32 i = 0; i < buf1.size(); ++i)
|
2016-11-11 16:55:02 +01:00
|
|
|
{// In this case we alwayse will have bounded intersection, so all is need is to check if point i is on line.
|
|
|
|
// Unfortunatelly QLineF::intersect can't be used in this case because of the floating-point accuraccy problem.
|
2017-03-20 07:16:35 +01:00
|
|
|
if (prev == -1)
|
2016-11-11 16:55:02 +01:00
|
|
|
{
|
2019-08-29 14:14:17 +02:00
|
|
|
if (i == 0)
|
|
|
|
{
|
|
|
|
prev = buf1.size() - 1;
|
|
|
|
const T &prevPoint = buf1.at(prev);
|
|
|
|
const T &iPoint = buf1.at(i);
|
|
|
|
if (iPoint == prevPoint)
|
|
|
|
{
|
|
|
|
prev = buf1.size() - 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
prev = i-1;
|
|
|
|
}
|
2016-12-10 19:09:03 +01:00
|
|
|
}
|
2017-03-20 07:16:35 +01:00
|
|
|
|
2019-08-29 14:14:17 +02:00
|
|
|
if (i == buf1.size() - 1)
|
|
|
|
{
|
|
|
|
next = 0;
|
|
|
|
const T &nextPoint = buf1.at(next);
|
|
|
|
const T &iPoint = buf1.at(i);
|
|
|
|
if (iPoint == nextPoint)
|
|
|
|
{
|
|
|
|
next = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
next = i+1;
|
|
|
|
}
|
2016-12-10 19:09:03 +01:00
|
|
|
|
2017-03-30 10:06:47 +02:00
|
|
|
const T &iPoint = buf1.at(i);
|
|
|
|
const T &prevPoint = buf1.at(prev);
|
|
|
|
const T &nextPoint = buf1.at(next);
|
2016-12-10 19:09:03 +01:00
|
|
|
|
2019-08-29 14:14:17 +02:00
|
|
|
if (not IsEkvPointOnLine(iPoint, prevPoint, nextPoint))
|
2016-12-10 19:09:03 +01:00
|
|
|
{
|
2017-03-30 10:06:47 +02:00
|
|
|
buf2.append(iPoint);
|
2017-03-20 07:16:35 +01:00
|
|
|
prev = -1;
|
2016-11-11 16:55:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-09 17:49:59 +02:00
|
|
|
if (not buf2.isEmpty() && buf2.first() != buf2.last())
|
2019-08-29 14:14:17 +02:00
|
|
|
{
|
|
|
|
buf2.append(buf2.first());
|
|
|
|
}
|
|
|
|
|
2016-12-10 19:09:03 +01:00
|
|
|
buf2 = RemoveDublicates(buf2, false);
|
|
|
|
|
2019-09-01 12:02:19 +02:00
|
|
|
// DumpVector(buf2, QStringLiteral("output.json.XXXXXX")); // Uncomment for dumping test data
|
2016-12-10 19:09:03 +01:00
|
|
|
return buf2;
|
2016-11-11 16:55:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
template <class T>
|
|
|
|
QVector<T> VAbstractPiece::RemoveDublicates(const QVector<T> &points, bool removeFirstAndLast)
|
|
|
|
{
|
|
|
|
QVector<T> p = points;
|
|
|
|
|
|
|
|
if (removeFirstAndLast)
|
|
|
|
{
|
|
|
|
if (not p.isEmpty() && p.size() > 1)
|
|
|
|
{
|
|
|
|
// Path can't be closed
|
2017-05-18 14:10:05 +02:00
|
|
|
// See issue #686
|
2018-09-27 13:52:21 +02:00
|
|
|
if (VFuzzyComparePoints(p.first(), p.last()))
|
2016-11-11 16:55:02 +01:00
|
|
|
{
|
|
|
|
p.removeLast();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < p.size()-1; ++i)
|
|
|
|
{
|
2018-09-27 13:52:21 +02:00
|
|
|
if (VFuzzyComparePoints(p.at(i), p.at(i+1)))
|
2016-11-11 16:55:02 +01:00
|
|
|
{
|
2021-04-07 19:41:57 +02:00
|
|
|
if (not removeFirstAndLast && (i == p.size()-2))
|
2016-11-11 16:55:02 +01:00
|
|
|
{
|
2021-04-07 19:41:57 +02:00
|
|
|
p.erase(p.begin() + i);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p.erase(p.begin() + i + 1);
|
2016-11-11 16:55:02 +01:00
|
|
|
}
|
|
|
|
--i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2020-08-01 10:55:56 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
template <class T>
|
|
|
|
bool VAbstractPiece::IsInsidePolygon(const QVector<T> &path, const QVector<T> &polygon, qreal accuracy)
|
|
|
|
{
|
|
|
|
// Edges must not intersect
|
|
|
|
for (auto i = 0; i < path.count(); ++i)
|
|
|
|
{
|
|
|
|
int nextI = -1;
|
|
|
|
if (i < path.count()-1)
|
|
|
|
{
|
|
|
|
nextI = i + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nextI = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
QLineF baseSegment(path.at(i), path.at(nextI));
|
|
|
|
if (baseSegment.isNull())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto j = 0; j < polygon.count(); ++j)
|
|
|
|
{
|
|
|
|
int nextJ = -1;
|
|
|
|
if (j < polygon.count()-1)
|
|
|
|
{
|
|
|
|
nextJ = j + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
nextJ = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
QLineF allowanceSegment(polygon.at(j), polygon.at(nextJ));
|
|
|
|
if (allowanceSegment.isNull())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
QPointF crosPoint;
|
|
|
|
const auto type = Intersects(baseSegment, allowanceSegment, &crosPoint);
|
|
|
|
|
|
|
|
if (type == QLineF::BoundedIntersection
|
|
|
|
&& not VFuzzyComparePoints(baseSegment.p1(), crosPoint, accuracy)
|
|
|
|
&& not VFuzzyComparePoints(baseSegment.p2(), crosPoint, accuracy)
|
|
|
|
&& not VGObject::IsPointOnLineviaPDP(allowanceSegment.p1(), baseSegment.p1(), baseSegment.p2(),
|
|
|
|
accuracy)
|
|
|
|
&& not VGObject::IsPointOnLineviaPDP(allowanceSegment.p2(), baseSegment.p1(), baseSegment.p2(),
|
|
|
|
accuracy))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Just instersection edges is not enough. The base must be inside of the allowance.
|
|
|
|
QPolygonF allowancePolygon(polygon);
|
|
|
|
|
|
|
|
for (auto &point : path)
|
|
|
|
{
|
|
|
|
if (not allowancePolygon.containsPoint(point, Qt::WindingFill))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-11-03 19:15:53 +01:00
|
|
|
#endif // VABSTRACTPIECE_H
|