2016-11-03 16:59: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 16:59: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 16:59: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 VPIECE_H
|
|
|
|
#define VPIECE_H
|
|
|
|
|
|
|
|
#include <QtGlobal>
|
|
|
|
#include <QSharedDataPointer>
|
|
|
|
|
2016-11-03 19:15:53 +01:00
|
|
|
#include "../vlayout/vabstractpiece.h"
|
|
|
|
|
2016-11-03 16:59:53 +01:00
|
|
|
class VPieceData;
|
|
|
|
class VPieceNode;
|
2016-11-23 11:54:46 +01:00
|
|
|
class VPiecePath;
|
2017-02-23 10:26:25 +01:00
|
|
|
class VPatternLabelData;
|
2017-02-23 10:19:27 +01:00
|
|
|
class VPieceLabelData;
|
2017-02-23 10:33:17 +01:00
|
|
|
class VGrainlineData;
|
2017-02-18 10:22:59 +01:00
|
|
|
class VContainer;
|
|
|
|
class QPainterPath;
|
|
|
|
class VPointF;
|
2019-05-08 14:19:03 +02:00
|
|
|
class VPassmark;
|
2019-01-09 16:46:02 +01:00
|
|
|
|
2016-11-03 19:15:53 +01:00
|
|
|
class VPiece : public VAbstractPiece
|
2016-11-03 16:59:53 +01:00
|
|
|
{
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(VPiece) // NOLINT
|
2016-11-03 16:59:53 +01:00
|
|
|
public:
|
|
|
|
VPiece();
|
|
|
|
VPiece(const VPiece &piece);
|
2017-04-19 12:27:17 +02:00
|
|
|
|
2016-11-03 16:59:53 +01:00
|
|
|
virtual ~VPiece();
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto operator=(const VPiece &piece) -> VPiece &;
|
2017-04-19 12:27:17 +02:00
|
|
|
#ifdef Q_COMPILER_RVALUE_REFS
|
2022-08-12 17:50:13 +02:00
|
|
|
VPiece(VPiece &&piece) Q_DECL_NOTHROW;
|
2023-05-03 13:07:02 +02:00
|
|
|
auto operator=(VPiece &&piece) Q_DECL_NOTHROW->VPiece &;
|
2017-04-19 12:27:17 +02:00
|
|
|
#endif
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetPath() const -> VPiecePath;
|
|
|
|
auto GetPath() -> VPiecePath &;
|
2016-11-23 11:54:46 +01:00
|
|
|
void SetPath(const VPiecePath &path);
|
2016-11-03 19:15:53 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto MainPathPoints(const VContainer *data) const -> QVector<VLayoutPoint>;
|
|
|
|
auto UniteMainPathPoints(const VContainer *data) const -> QVector<VLayoutPoint>;
|
|
|
|
auto MainPathNodePoints(const VContainer *data, bool showExcluded = false) const -> QVector<VPointF>;
|
|
|
|
auto SeamAllowancePoints(const VContainer *data) const -> QVector<VLayoutPoint>;
|
|
|
|
auto CuttingPathPoints(const VContainer *data) const -> QVector<QPointF>;
|
|
|
|
auto PassmarksLines(const VContainer *data) const -> QVector<QLineF>;
|
2019-05-08 14:19:03 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto Passmarks(const VContainer *data) const -> QVector<VPassmark>;
|
2016-11-05 09:56:44 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto CurvesPainterPath(const VContainer *data) const -> QVector<QPainterPath>;
|
2018-04-02 15:49:53 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto MainPathPath(const VContainer *data) const -> QPainterPath;
|
|
|
|
static auto MainPathPath(const QVector<QPointF> &points) -> QPainterPath;
|
2018-04-02 16:05:53 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto SeamAllowancePath(const VContainer *data) const -> QPainterPath;
|
|
|
|
template <class T> auto SeamAllowancePath(const QVector<T> &points) const -> QPainterPath;
|
|
|
|
auto PassmarksPath(const VContainer *data) const -> QPainterPath;
|
|
|
|
auto PlaceLabelPath(const VContainer *data) const -> QPainterPath;
|
2016-11-03 19:15:53 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto IsSeamAllowanceValid(const VContainer *data) const -> bool;
|
2019-02-23 17:43:06 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto IsInLayout() const -> bool;
|
2016-11-09 14:53:22 +01:00
|
|
|
void SetInLayout(bool inLayout);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto IsUnited() const -> bool;
|
2016-11-23 17:40:27 +01:00
|
|
|
void SetUnited(bool united);
|
|
|
|
|
2022-11-10 10:30:08 +01:00
|
|
|
auto GetShortName() const -> QString;
|
|
|
|
void SetShortName(const QString &value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetFormulaSAWidth() const -> QString;
|
2017-01-21 14:24:40 +01:00
|
|
|
void SetFormulaSAWidth(const QString &formula, qreal value);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetInternalPaths() const -> QVector<quint32>;
|
|
|
|
auto GetInternalPaths() -> QVector<quint32> &;
|
2016-12-03 17:01:39 +01:00
|
|
|
void SetInternalPaths(const QVector<quint32> &iPaths);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetCustomSARecords() const -> QVector<CustomSARecord>;
|
|
|
|
auto GetCustomSARecords() -> QVector<CustomSARecord> &;
|
2016-11-25 13:19:44 +01:00
|
|
|
void SetCustomSARecords(const QVector<CustomSARecord> &records);
|
2017-01-31 15:26:28 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetPins() const -> QVector<quint32>;
|
|
|
|
auto GetPins() -> QVector<quint32> &;
|
2017-01-31 15:26:28 +01:00
|
|
|
void SetPins(const QVector<quint32> &pins);
|
2016-11-25 13:19:44 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetPlaceLabels() const -> QVector<quint32>;
|
|
|
|
auto GetPlaceLabels() -> QVector<quint32> &;
|
2017-10-15 11:25:20 +02:00
|
|
|
void SetPlaceLabels(const QVector<quint32> &labels);
|
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto Dependencies() const -> QList<quint32>;
|
|
|
|
auto MissingNodes(const VPiece &det) const -> QVector<quint32>;
|
|
|
|
auto MissingCSAPath(const VPiece &det) const -> QVector<quint32>;
|
|
|
|
auto MissingInternalPaths(const VPiece &det) const -> QVector<quint32>;
|
|
|
|
auto MissingPins(const VPiece &det) const -> QVector<quint32>;
|
|
|
|
auto MissingPlaceLabels(const VPiece &det) const -> QVector<quint32>;
|
2016-11-09 13:11:58 +01:00
|
|
|
|
2023-01-16 14:50:53 +01:00
|
|
|
void SetPieceLabelData(const VPieceLabelData &data);
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetPieceLabelData() -> VPieceLabelData &;
|
|
|
|
auto GetPieceLabelData() const -> const VPieceLabelData &;
|
2017-01-12 14:51:08 +01:00
|
|
|
|
2023-01-16 14:50:53 +01:00
|
|
|
void SetPatternLabelData(const VPatternLabelData &info);
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetPatternLabelData() -> VPatternLabelData &;
|
|
|
|
auto GetPatternLabelData() const -> const VPatternLabelData &;
|
2017-01-12 14:51:08 +01:00
|
|
|
|
2018-01-25 22:53:53 +01:00
|
|
|
void SetGrainlineGeometry(const VGrainlineData &data);
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetGrainlineGeometry() -> VGrainlineData &;
|
|
|
|
auto GetGrainlineGeometry() const -> const VGrainlineData &;
|
2017-01-12 14:51:08 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetUnitedPath(const VContainer *data) const -> QVector<VPieceNode>;
|
2019-02-11 14:00:32 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto SeamAllowancePointsWithRotation(const VContainer *data, vsizetype makeFirst) const -> QVector<VLayoutPoint>;
|
2019-08-29 14:01:27 +02:00
|
|
|
|
2021-08-31 11:07:26 +02:00
|
|
|
void SetGradationLabel(const QString &label);
|
|
|
|
auto GetGradationLabel() const -> QString;
|
|
|
|
|
2021-09-24 11:51:39 +02:00
|
|
|
static void DumpPiece(const VPiece &piece, const VContainer *data, const QString &templateName=QString());
|
2022-11-10 10:30:08 +01:00
|
|
|
|
|
|
|
void TestInternalPaths(const VContainer *data) const;
|
|
|
|
|
|
|
|
static auto ShortNameRegExp() -> QString;
|
2022-12-31 13:46:01 +01:00
|
|
|
auto ExternalArea(const VContainer *data) const -> qreal;
|
|
|
|
auto SeamLineArea(const VContainer *data) const -> qreal;
|
2016-11-03 16:59:53 +01:00
|
|
|
private:
|
|
|
|
QSharedDataPointer<VPieceData> d;
|
2016-11-03 19:15:53 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetValidRecords() const -> QVector<CustomSARecord>;
|
|
|
|
auto FilterRecords(QVector<CustomSARecord> records) const -> QVector<CustomSARecord>;
|
2016-11-29 13:10:53 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetNodeSAPoints(const QVector<VPieceNode> &path, vsizetype index, const VContainer *data) const
|
|
|
|
-> QVector<VSAPoint>;
|
2017-03-28 12:09:00 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GetPassmarkSAPoint(const QVector<VPieceNode> &path, vsizetype index, const VContainer *data,
|
|
|
|
VSAPoint &point) const -> bool;
|
|
|
|
auto GetPassmarkPreviousSAPoints(const QVector<VPieceNode> &path, vsizetype index, const VSAPoint &passmarkSAPoint,
|
|
|
|
const VContainer *data, VSAPoint &point, vsizetype passmarkIndex) const -> bool;
|
|
|
|
auto GetPassmarkNextSAPoints(const QVector<VPieceNode> &path, vsizetype index, const VSAPoint &passmarkSAPoint,
|
|
|
|
const VContainer *data, VSAPoint &point, vsizetype passmarkIndex) const -> bool;
|
2017-03-28 12:09:00 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto IsPassmarkVisible(const QVector<VPieceNode> &path, vsizetype passmarkIndex) const -> bool;
|
2017-03-28 12:09:00 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto CreatePassmark(const QVector<VPieceNode> &path, vsizetype previousIndex, vsizetype passmarkIndex,
|
|
|
|
vsizetype nextIndex, const VContainer *data) const -> VPassmark;
|
2017-03-28 12:09:00 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
static auto IsCSAStart(const QVector<CustomSARecord> &records, quint32 id) -> int;
|
2019-08-29 14:01:27 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto MainPathToJson() const -> QJsonObject;
|
|
|
|
auto DBToJson(const VContainer *data) const -> QJsonObject;
|
2021-05-10 15:39:17 +02:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
auto GlobalPassmarkLength(const VContainer *data) const -> qreal;
|
2022-11-10 10:30:08 +01:00
|
|
|
|
|
|
|
void TestInternalPathCuttingPathIntersection(const VContainer *data) const;
|
|
|
|
void TestInternalPathsIntersections(const VContainer *data) const;
|
2022-12-31 13:46:01 +01:00
|
|
|
|
|
|
|
auto Area(const QVector<QPointF> &shape, const VContainer *data) const -> qreal;
|
2016-11-03 16:59:53 +01:00
|
|
|
};
|
|
|
|
|
2022-08-12 17:50:13 +02:00
|
|
|
Q_DECLARE_TYPEINFO(VPiece, Q_MOVABLE_TYPE); // NOLINT
|
2016-11-03 16:59:53 +01:00
|
|
|
|
2022-10-28 15:16:02 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2023-05-03 13:07:02 +02:00
|
|
|
template <class T> inline auto VPiece::SeamAllowancePath(const QVector<T> &points) const -> QPainterPath
|
2022-10-28 15:16:02 +02:00
|
|
|
{
|
|
|
|
QPainterPath ekv;
|
|
|
|
|
|
|
|
// seam allowence
|
|
|
|
if (IsSeamAllowance() && not IsSeamAllowanceBuiltIn())
|
|
|
|
{
|
|
|
|
if (not points.isEmpty())
|
|
|
|
{
|
|
|
|
ekv.moveTo(points.at(0));
|
|
|
|
for (qint32 i = 1; i < points.count(); ++i)
|
|
|
|
{
|
|
|
|
ekv.lineTo(points.at(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !defined(V_NO_ASSERT)
|
|
|
|
// uncomment for debug
|
|
|
|
// QFont font;
|
|
|
|
// font.setPixelSize(1);
|
|
|
|
// for (qint32 i = 0; i < points.count(); ++i)
|
|
|
|
// {
|
|
|
|
// ekv.addEllipse(points.at(i).x()-accuracyPointOnLine, points.at(i).y()-accuracyPointOnLine,
|
|
|
|
// accuracyPointOnLine*2., accuracyPointOnLine*2.);
|
|
|
|
// ekv.addText(points.at(i).x()-accuracyPointOnLine, points.at(i).y()-accuracyPointOnLine, font,
|
|
|
|
// QString::number(i+1));
|
2023-04-12 20:05:29 +02:00
|
|
|
// if (i > 250)
|
|
|
|
// {
|
|
|
|
// break;
|
|
|
|
// }
|
2022-10-28 15:16:02 +02:00
|
|
|
// }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ekv.setFillRule(Qt::WindingFill);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ekv;
|
|
|
|
}
|
|
|
|
|
2016-11-03 16:59:53 +01:00
|
|
|
#endif // VPIECE_H
|