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 VPIECENODE_P_H
|
|
|
|
#define VPIECENODE_P_H
|
|
|
|
|
2019-07-01 12:25:03 +02:00
|
|
|
#include <QCoreApplication>
|
2023-07-13 16:49:20 +02:00
|
|
|
#include <QDataStream>
|
|
|
|
#include <QSharedData>
|
2019-07-01 12:25:03 +02:00
|
|
|
|
|
|
|
#include "../ifc/exception/vexception.h"
|
2023-07-13 16:49:20 +02:00
|
|
|
#include "../ifc/ifcdef.h"
|
2020-01-07 13:21:47 +01:00
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0)
|
2023-07-13 16:49:20 +02:00
|
|
|
#include "../vmisc/vdatastreamenum.h"
|
2020-01-07 08:45:26 +01:00
|
|
|
#endif
|
2016-11-03 16:59:53 +01:00
|
|
|
|
|
|
|
QT_WARNING_PUSH
|
|
|
|
QT_WARNING_DISABLE_GCC("-Weffc++")
|
2017-05-30 17:44:16 +02:00
|
|
|
QT_WARNING_DISABLE_GCC("-Wnon-virtual-dtor")
|
2016-11-03 16:59:53 +01:00
|
|
|
|
|
|
|
class VPieceNodeData : public QSharedData
|
|
|
|
{
|
|
|
|
public:
|
2023-07-13 16:49:20 +02:00
|
|
|
VPieceNodeData() = default;
|
|
|
|
VPieceNodeData(quint32 id, Tool typeTool, bool reverse);
|
|
|
|
VPieceNodeData(const VPieceNodeData &node) = default;
|
2022-08-22 15:36:01 +02:00
|
|
|
~VPieceNodeData() = default;
|
2016-11-12 11:41:04 +01:00
|
|
|
|
2023-05-03 13:07:02 +02:00
|
|
|
friend auto operator<<(QDataStream &out, const VPieceNodeData &p) -> QDataStream &;
|
|
|
|
friend auto operator>>(QDataStream &in, VPieceNodeData &p) -> QDataStream &;
|
2017-03-28 11:08:33 +02:00
|
|
|
|
2016-11-12 11:41:04 +01:00
|
|
|
/** @brief id object id. */
|
2023-05-08 16:50:22 +02:00
|
|
|
quint32 m_id{NULL_ID}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2016-11-12 11:41:04 +01:00
|
|
|
|
|
|
|
/** @brief typeTool type of tool */
|
2023-05-08 16:50:22 +02:00
|
|
|
Tool m_typeTool{Tool::NodePoint}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2016-11-12 11:41:04 +01:00
|
|
|
|
|
|
|
/** @brief reverse true if need reverse points list for node. */
|
2023-05-08 16:50:22 +02:00
|
|
|
bool m_reverse{false}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2016-11-12 11:41:04 +01:00
|
|
|
|
2017-03-21 16:18:48 +01:00
|
|
|
/** @brief m_excluded true if item excluded from main path. Excluded item is not visible and also will not has
|
|
|
|
* affect on main path. Also include to exist path items automatically setted excluded. */
|
2023-05-08 16:50:22 +02:00
|
|
|
bool m_excluded{false}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-03-21 16:18:48 +01:00
|
|
|
|
2017-03-24 12:08:16 +01:00
|
|
|
/** @brief m_isPassmark has sense only for points. If true to seam allowance should be added a passmark. */
|
2023-05-08 16:50:22 +02:00
|
|
|
bool m_isPassmark{false}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-03-24 12:08:16 +01:00
|
|
|
|
2017-04-05 12:22:33 +02:00
|
|
|
/** @brief m_isMainPathNode need fin know if allowed for this passmakr to be double. */
|
2023-05-08 16:50:22 +02:00
|
|
|
bool m_isMainPathNode{true}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-04-05 12:22:33 +02:00
|
|
|
|
2023-05-08 16:50:22 +02:00
|
|
|
QString m_formulaWidthBefore{currentSeamAllowance}; // NOLINT(misc-non-private-member-variables-in-classes)
|
|
|
|
QString m_formulaWidthAfter{currentSeamAllowance}; // NOLINT(misc-non-private-member-variables-in-classes)
|
|
|
|
QString m_formulaPassmarkLength{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2023-05-06 19:01:15 +02:00
|
|
|
QString m_formulaPassmarkWidth{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
|
|
|
QString m_formulaPassmarkAngle{}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-01-21 14:24:40 +01:00
|
|
|
|
2023-05-08 16:50:22 +02:00
|
|
|
PieceNodeAngle m_angleType{PieceNodeAngle::ByLength}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2016-11-19 12:44:12 +01:00
|
|
|
|
2023-05-08 16:50:22 +02:00
|
|
|
PassmarkLineType m_passmarkLineType{// NOLINT(misc-non-private-member-variables-in-classes)
|
|
|
|
PassmarkLineType::OneLine};
|
|
|
|
PassmarkAngleType m_passmarkAngleType{// NOLINT(misc-non-private-member-variables-in-classes)
|
|
|
|
PassmarkAngleType::Straightforward};
|
2017-03-24 12:08:16 +01:00
|
|
|
|
2023-05-06 19:01:15 +02:00
|
|
|
bool m_isShowSecondPassmark{true}; // NOLINT(misc-non-private-member-variables-in-classes)
|
|
|
|
bool m_isPassmarkClockwiseOpening{false}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2017-04-26 10:22:42 +02:00
|
|
|
|
2018-03-05 11:05:59 +01:00
|
|
|
/** @brief m_checkUniqueness need in cases where different points have the same coordinates, become one point.
|
|
|
|
* By default the check enabled. Disable it only if in a path cannot be used just one point. For example if
|
|
|
|
* gradation change a piece shape and the seond point should be remaind.*/
|
2023-05-08 16:50:22 +02:00
|
|
|
bool m_checkUniqueness{true}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2018-03-05 11:05:59 +01:00
|
|
|
|
2023-05-08 16:50:22 +02:00
|
|
|
bool m_manualPassmarkLength{false}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2023-05-06 19:01:15 +02:00
|
|
|
bool m_manualPassmarkWidth{false}; // NOLINT(misc-non-private-member-variables-in-classes)
|
|
|
|
bool m_manualPassmarkAngle{false}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2019-04-17 12:02:22 +02:00
|
|
|
|
2023-05-08 16:50:22 +02:00
|
|
|
bool m_turnPoint{true}; // NOLINT(misc-non-private-member-variables-in-classes)
|
2022-10-28 15:16:02 +02:00
|
|
|
|
2016-11-03 16:59:53 +01:00
|
|
|
private:
|
2023-05-02 16:38:30 +02:00
|
|
|
Q_DISABLE_ASSIGN_MOVE(VPieceNodeData) // NOLINT
|
2019-07-01 12:25:03 +02:00
|
|
|
|
2022-10-28 15:16:02 +02:00
|
|
|
static constexpr quint32 streamHeader = 0x2198CBC8; // CRC-32Q string "VPieceNodeData"
|
2023-05-06 19:01:15 +02:00
|
|
|
static constexpr quint16 classVersion = 3;
|
2016-11-03 16:59:53 +01:00
|
|
|
};
|
|
|
|
|
2022-11-21 07:55:32 +01:00
|
|
|
// See https://stackoverflow.com/a/46719572/3045403
|
2023-07-13 16:49:20 +02:00
|
|
|
#if __cplusplus < 201703L // C++17
|
|
|
|
constexpr quint32 VPieceNodeData::streamHeader; // NOLINT(readability-redundant-declaration)
|
|
|
|
constexpr quint16 VPieceNodeData::classVersion; // NOLINT(readability-redundant-declaration)
|
2022-11-21 07:55:32 +01:00
|
|
|
#endif
|
|
|
|
|
2023-07-13 16:49:20 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
inline VPieceNodeData::VPieceNodeData(quint32 id, Tool typeTool, bool reverse)
|
|
|
|
: m_id(id),
|
|
|
|
m_typeTool(typeTool),
|
|
|
|
m_reverse(reverse)
|
|
|
|
{
|
|
|
|
if (m_typeTool == Tool::NodePoint)
|
|
|
|
{
|
|
|
|
m_reverse = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-28 11:08:33 +02:00
|
|
|
// Friend functions
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2023-05-08 16:50:22 +02:00
|
|
|
inline auto operator<<(QDataStream &out, const VPieceNodeData &p) -> QDataStream &
|
2017-03-28 11:08:33 +02:00
|
|
|
{
|
2019-07-01 12:25:03 +02:00
|
|
|
out << VPieceNodeData::streamHeader << VPieceNodeData::classVersion;
|
|
|
|
|
2023-05-08 16:50:22 +02:00
|
|
|
out << p.m_id << p.m_typeTool << p.m_reverse << p.m_excluded << p.m_isPassmark << p.m_formulaWidthBefore
|
|
|
|
<< p.m_formulaWidthAfter << p.m_formulaPassmarkLength << p.m_angleType << p.m_passmarkLineType
|
|
|
|
<< p.m_passmarkAngleType << p.m_isShowSecondPassmark << p.m_checkUniqueness << p.m_manualPassmarkLength
|
2023-05-06 19:01:15 +02:00
|
|
|
<< p.m_turnPoint << p.m_formulaPassmarkWidth << p.m_formulaPassmarkAngle << p.m_manualPassmarkWidth
|
|
|
|
<< p.m_manualPassmarkAngle << p.m_isPassmarkClockwiseOpening;
|
2022-10-28 15:16:02 +02:00
|
|
|
|
2017-03-28 11:08:33 +02:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2023-05-08 16:50:22 +02:00
|
|
|
inline auto operator>>(QDataStream &in, VPieceNodeData &p) -> QDataStream &
|
2017-03-28 11:08:33 +02:00
|
|
|
{
|
2019-07-01 12:25:03 +02:00
|
|
|
quint32 actualStreamHeader = 0;
|
|
|
|
in >> actualStreamHeader;
|
|
|
|
|
|
|
|
if (actualStreamHeader != VPieceNodeData::streamHeader)
|
|
|
|
{
|
|
|
|
QString message = QCoreApplication::tr("VPieceNodeData prefix mismatch error: actualStreamHeader = 0x%1 "
|
|
|
|
"and streamHeader = 0x%2")
|
2023-07-13 16:49:20 +02:00
|
|
|
.arg(actualStreamHeader, 8, 0x10, QChar('0'))
|
|
|
|
.arg(VPieceNodeData::streamHeader, 8, 0x10, QChar('0'));
|
2019-07-01 12:25:03 +02:00
|
|
|
throw VException(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
quint16 actualClassVersion = 0;
|
|
|
|
in >> actualClassVersion;
|
|
|
|
|
|
|
|
if (actualClassVersion > VPieceNodeData::classVersion)
|
|
|
|
{
|
|
|
|
QString message = QCoreApplication::tr("VPieceNodeData compatibility error: actualClassVersion = %1 and "
|
|
|
|
"classVersion = %2")
|
2023-07-13 16:49:20 +02:00
|
|
|
.arg(actualClassVersion)
|
|
|
|
.arg(VPieceNodeData::classVersion);
|
2019-07-01 12:25:03 +02:00
|
|
|
throw VException(message);
|
|
|
|
}
|
|
|
|
|
2023-07-13 16:49:20 +02:00
|
|
|
in >> p.m_id >> p.m_typeTool >> p.m_reverse >> p.m_excluded >> p.m_isPassmark >> p.m_formulaWidthBefore >>
|
|
|
|
p.m_formulaWidthAfter >> p.m_formulaPassmarkLength >> p.m_angleType >> p.m_passmarkLineType >>
|
|
|
|
p.m_passmarkAngleType >> p.m_isShowSecondPassmark >> p.m_checkUniqueness >> p.m_manualPassmarkLength;
|
2019-07-01 12:25:03 +02:00
|
|
|
|
2022-10-28 15:16:02 +02:00
|
|
|
if (actualClassVersion >= 2)
|
|
|
|
{
|
|
|
|
in >> p.m_turnPoint;
|
|
|
|
}
|
2019-07-01 12:25:03 +02:00
|
|
|
|
2023-05-06 19:01:15 +02:00
|
|
|
if (actualClassVersion >= 3)
|
|
|
|
{
|
|
|
|
in >> p.m_formulaPassmarkWidth >> p.m_formulaPassmarkAngle >> p.m_manualPassmarkWidth >>
|
|
|
|
p.m_manualPassmarkAngle >> p.m_isPassmarkClockwiseOpening;
|
|
|
|
}
|
|
|
|
|
2017-03-28 11:08:33 +02:00
|
|
|
return in;
|
|
|
|
}
|
|
|
|
|
2016-11-03 16:59:53 +01:00
|
|
|
QT_WARNING_POP
|
|
|
|
|
|
|
|
#endif // VPIECENODE_P_H
|