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
|
|
|
|
** <https://bitbucket.org/dismine/valentina> 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 <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VPIECENODE_P_H
|
|
|
|
#define VPIECENODE_P_H
|
|
|
|
|
|
|
|
#include <QSharedData>
|
2017-04-04 07:20:49 +02:00
|
|
|
#include <QDataStream>
|
2019-07-01 12:25:03 +02:00
|
|
|
#include <QCoreApplication>
|
|
|
|
|
2016-11-03 16:59:53 +01:00
|
|
|
#include "../ifc/ifcdef.h"
|
2019-07-01 12:25:03 +02:00
|
|
|
#include "../ifc/exception/vexception.h"
|
2016-11-03 16:59:53 +01:00
|
|
|
#include "../vmisc/diagnostic.h"
|
2020-01-07 08:45:26 +01:00
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5, 11, 0)
|
|
|
|
# include "../vmisc/vdatastreamenum.h"
|
|
|
|
#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:
|
2016-11-12 11:41:04 +01:00
|
|
|
VPieceNodeData()
|
|
|
|
{}
|
|
|
|
|
|
|
|
VPieceNodeData(quint32 id, Tool typeTool, bool reverse)
|
|
|
|
: m_id(id),
|
|
|
|
m_typeTool(typeTool),
|
2019-05-08 14:17:34 +02:00
|
|
|
m_reverse(reverse)
|
2016-11-12 11:41:04 +01:00
|
|
|
{
|
|
|
|
if (m_typeTool == Tool::NodePoint)
|
|
|
|
{
|
|
|
|
m_reverse = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
VPieceNodeData (const VPieceNodeData& node)
|
|
|
|
: QSharedData(node),
|
|
|
|
m_id(node.m_id),
|
|
|
|
m_typeTool(node.m_typeTool),
|
|
|
|
m_reverse(node.m_reverse),
|
2017-03-21 16:18:48 +01:00
|
|
|
m_excluded(node.m_excluded),
|
2017-03-24 12:08:16 +01:00
|
|
|
m_isPassmark(node.m_isPassmark),
|
2017-04-05 12:22:33 +02:00
|
|
|
m_isMainPathNode(node.m_isMainPathNode),
|
2017-01-21 14:24:40 +01:00
|
|
|
m_formulaWidthBefore(node.m_formulaWidthBefore),
|
|
|
|
m_formulaWidthAfter(node.m_formulaWidthAfter),
|
2019-04-17 12:02:22 +02:00
|
|
|
m_formulaPassmarkLength(node.m_formulaPassmarkLength),
|
2017-03-24 12:08:16 +01:00
|
|
|
m_angleType(node.m_angleType),
|
|
|
|
m_passmarkLineType(node.m_passmarkLineType),
|
2017-04-26 10:22:42 +02:00
|
|
|
m_passmarkAngleType(node.m_passmarkAngleType),
|
2018-03-05 11:05:59 +01:00
|
|
|
m_isShowSecondPassmark(node.m_isShowSecondPassmark),
|
2019-04-17 12:02:22 +02:00
|
|
|
m_checkUniqueness(node.m_checkUniqueness),
|
|
|
|
m_manualPassmarkLength(node.m_manualPassmarkLength)
|
2016-11-12 11:41:04 +01:00
|
|
|
{}
|
|
|
|
|
2017-04-26 10:22:42 +02:00
|
|
|
~VPieceNodeData() Q_DECL_EQ_DEFAULT;
|
2016-11-12 11:41:04 +01:00
|
|
|
|
2017-03-28 11:08:33 +02:00
|
|
|
friend QDataStream& operator<<(QDataStream& out, const VPieceNodeData& p);
|
|
|
|
friend QDataStream& operator>>(QDataStream& in, VPieceNodeData& p);
|
|
|
|
|
2016-11-12 11:41:04 +01:00
|
|
|
/** @brief id object id. */
|
2019-05-08 14:17:34 +02:00
|
|
|
quint32 m_id{NULL_ID};
|
2016-11-12 11:41:04 +01:00
|
|
|
|
|
|
|
/** @brief typeTool type of tool */
|
2019-05-08 14:17:34 +02:00
|
|
|
Tool m_typeTool{Tool::NodePoint};
|
2016-11-12 11:41:04 +01:00
|
|
|
|
|
|
|
/** @brief reverse true if need reverse points list for node. */
|
2019-05-08 14:17:34 +02:00
|
|
|
bool m_reverse{false};
|
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. */
|
2019-05-08 14:17:34 +02:00
|
|
|
bool m_excluded{false};
|
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. */
|
2019-05-08 14:17:34 +02:00
|
|
|
bool m_isPassmark{false};
|
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. */
|
2019-05-08 14:17:34 +02:00
|
|
|
bool m_isMainPathNode{true};
|
2017-04-05 12:22:33 +02:00
|
|
|
|
2019-05-08 14:17:34 +02:00
|
|
|
QString m_formulaWidthBefore{currentSeamAllowance};
|
|
|
|
QString m_formulaWidthAfter{currentSeamAllowance};
|
2019-04-17 12:02:22 +02:00
|
|
|
QString m_formulaPassmarkLength{};
|
2017-01-21 14:24:40 +01:00
|
|
|
|
2019-05-08 14:17:34 +02:00
|
|
|
PieceNodeAngle m_angleType{PieceNodeAngle::ByLength};
|
2016-11-19 12:44:12 +01:00
|
|
|
|
2019-05-08 14:17:34 +02:00
|
|
|
PassmarkLineType m_passmarkLineType{PassmarkLineType::OneLine};
|
|
|
|
PassmarkAngleType m_passmarkAngleType{PassmarkAngleType::Straightforward};
|
2017-03-24 12:08:16 +01:00
|
|
|
|
2019-05-08 14:17:34 +02:00
|
|
|
bool m_isShowSecondPassmark{true};
|
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.*/
|
2019-05-08 14:17:34 +02:00
|
|
|
bool m_checkUniqueness{true};
|
2018-03-05 11:05:59 +01:00
|
|
|
|
2019-04-17 12:02:22 +02:00
|
|
|
bool m_manualPassmarkLength{false};
|
|
|
|
|
2016-11-03 16:59:53 +01:00
|
|
|
private:
|
2019-07-01 10:33:29 +02:00
|
|
|
Q_DISABLE_ASSIGN(VPieceNodeData)
|
2019-07-01 12:25:03 +02:00
|
|
|
|
|
|
|
static const quint32 streamHeader;
|
|
|
|
static const quint16 classVersion;
|
2016-11-03 16:59:53 +01:00
|
|
|
};
|
|
|
|
|
2017-03-28 11:08:33 +02:00
|
|
|
// Friend functions
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QDataStream &operator<<(QDataStream &out, const VPieceNodeData &p)
|
|
|
|
{
|
2019-07-01 12:25:03 +02:00
|
|
|
out << VPieceNodeData::streamHeader << VPieceNodeData::classVersion;
|
|
|
|
|
|
|
|
// Added in classVersion = 1
|
2017-03-28 11:08:33 +02:00
|
|
|
out << p.m_id
|
2018-12-21 12:01:32 +01:00
|
|
|
<< p.m_typeTool
|
2017-03-28 11:08:33 +02:00
|
|
|
<< p.m_reverse
|
|
|
|
<< p.m_excluded
|
|
|
|
<< p.m_isPassmark
|
|
|
|
<< p.m_formulaWidthBefore
|
|
|
|
<< p.m_formulaWidthAfter
|
2019-05-08 14:18:16 +02:00
|
|
|
<< p.m_formulaPassmarkLength
|
2018-12-21 12:01:32 +01:00
|
|
|
<< p.m_angleType
|
|
|
|
<< p.m_passmarkLineType
|
|
|
|
<< p.m_passmarkAngleType
|
2019-05-08 14:18:16 +02:00
|
|
|
<< p.m_isShowSecondPassmark
|
|
|
|
<< p.m_checkUniqueness
|
|
|
|
<< p.m_manualPassmarkLength;
|
2019-07-01 12:25:03 +02:00
|
|
|
|
|
|
|
// Added in classVersion = 2
|
|
|
|
|
2017-03-28 11:08:33 +02:00
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QDataStream &operator>>(QDataStream &in, VPieceNodeData &p)
|
|
|
|
{
|
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")
|
|
|
|
.arg(actualStreamHeader, 8, 0x10, QChar('0'))
|
|
|
|
.arg(VPieceNodeData::streamHeader, 8, 0x10, QChar('0'));
|
|
|
|
throw VException(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
quint16 actualClassVersion = 0;
|
|
|
|
in >> actualClassVersion;
|
|
|
|
|
|
|
|
if (actualClassVersion > VPieceNodeData::classVersion)
|
|
|
|
{
|
|
|
|
QString message = QCoreApplication::tr("VPieceNodeData compatibility error: actualClassVersion = %1 and "
|
|
|
|
"classVersion = %2")
|
|
|
|
.arg(actualClassVersion).arg(VPieceNodeData::classVersion);
|
|
|
|
throw VException(message);
|
|
|
|
}
|
|
|
|
|
2017-03-28 11:08:33 +02:00
|
|
|
in >> p.m_id
|
2018-12-21 12:01:32 +01:00
|
|
|
>> p.m_typeTool
|
2017-03-28 11:08:33 +02:00
|
|
|
>> p.m_reverse
|
|
|
|
>> p.m_excluded
|
|
|
|
>> p.m_isPassmark
|
|
|
|
>> p.m_formulaWidthBefore
|
|
|
|
>> p.m_formulaWidthAfter
|
2019-05-08 14:18:16 +02:00
|
|
|
>> p.m_formulaPassmarkLength
|
2018-12-21 12:01:32 +01:00
|
|
|
>> p.m_angleType
|
|
|
|
>> p.m_passmarkLineType
|
|
|
|
>> p.m_passmarkAngleType
|
2019-05-08 14:18:16 +02:00
|
|
|
>> p.m_isShowSecondPassmark
|
|
|
|
>> p.m_checkUniqueness
|
|
|
|
>> p.m_manualPassmarkLength;
|
2019-07-01 12:25:03 +02:00
|
|
|
|
|
|
|
// if (actualClassVersion >= 2)
|
|
|
|
// {
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
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
|
|
|
|
|