2015-07-16 11:38:54 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file VVSTConverter.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 15 7, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2015-07-16 11:38:54 +02:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2015 Valentina project
|
2020-01-31 07:00:05 +01:00
|
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
2015-07-16 11:38:54 +02: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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#include "vvstconverter.h"
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QDomNode>
|
|
|
|
#include <QDomNodeList>
|
|
|
|
#include <QDomText>
|
2015-07-16 11:38:54 +02:00
|
|
|
#include <QFile>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QLatin1String>
|
|
|
|
#include <QList>
|
|
|
|
#include <QMap>
|
|
|
|
#include <QMultiMap>
|
|
|
|
#include <QStaticStringData>
|
|
|
|
#include <QStringData>
|
|
|
|
#include <QStringDataPtr>
|
2018-03-14 14:39:15 +01:00
|
|
|
#include <QGlobalStatic>
|
2016-08-08 13:44:49 +02:00
|
|
|
|
|
|
|
#include "../exception/vexception.h"
|
|
|
|
#include "../vmisc/def.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "vabstractmconverter.h"
|
2015-07-16 11:38:54 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Version rules:
|
|
|
|
* 1. Version have three parts "major.minor.patch";
|
|
|
|
* 2. major part only for stable releases;
|
|
|
|
* 3. minor - 10 or more patch changes, or one big change;
|
|
|
|
* 4. patch - little change.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const QString VVSTConverter::MeasurementMinVerStr = QStringLiteral("0.3.0");
|
2021-01-15 10:14:21 +01:00
|
|
|
const QString VVSTConverter::MeasurementMaxVerStr = QStringLiteral("0.5.1");
|
|
|
|
const QString VVSTConverter::CurrentSchema = QStringLiteral("://schema/multisize_measurements/v0.5.1.xsd");
|
2015-07-16 11:38:54 +02:00
|
|
|
|
2016-08-05 12:17:05 +02:00
|
|
|
//VVSTConverter::MeasurementMinVer; // <== DON'T FORGET TO UPDATE TOO!!!!
|
|
|
|
//VVSTConverter::MeasurementMaxVer; // <== DON'T FORGET TO UPDATE TOO!!!!
|
2016-07-07 17:04:26 +02:00
|
|
|
|
2018-03-14 14:39:15 +01:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
Q_GLOBAL_STATIC_WITH_ARGS(const QString, strTagRead_Only, (QLatin1String("read-only")))
|
|
|
|
}
|
2017-02-04 12:28:47 +01:00
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VVSTConverter::VVSTConverter(const QString &fileName)
|
2015-09-07 13:51:21 +02:00
|
|
|
:VAbstractMConverter(fileName)
|
2015-07-16 11:38:54 +02:00
|
|
|
{
|
2016-01-19 16:25:46 +01:00
|
|
|
ValidateInputFile(CurrentSchema);
|
2015-07-16 11:38:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VVSTConverter::XSDSchema(int ver) const
|
|
|
|
{
|
2020-10-01 18:09:05 +02:00
|
|
|
QHash <int, QString> schemas =
|
2015-07-16 11:38:54 +02:00
|
|
|
{
|
2020-10-13 08:43:19 +02:00
|
|
|
std::make_pair(FORMAT_VERSION(0, 3, 0), QStringLiteral("://schema/multisize_measurements/v0.3.0.xsd")),
|
|
|
|
std::make_pair(FORMAT_VERSION(0, 4, 0), QStringLiteral("://schema/multisize_measurements/v0.4.0.xsd")),
|
|
|
|
std::make_pair(FORMAT_VERSION(0, 4, 1), QStringLiteral("://schema/multisize_measurements/v0.4.1.xsd")),
|
|
|
|
std::make_pair(FORMAT_VERSION(0, 4, 2), QStringLiteral("://schema/multisize_measurements/v0.4.2.xsd")),
|
|
|
|
std::make_pair(FORMAT_VERSION(0, 4, 3), QStringLiteral("://schema/multisize_measurements/v0.4.3.xsd")),
|
|
|
|
std::make_pair(FORMAT_VERSION(0, 4, 4), QStringLiteral("://schema/multisize_measurements/v0.4.4.xsd")),
|
2021-01-15 10:14:21 +01:00
|
|
|
std::make_pair(FORMAT_VERSION(0, 5, 0), QStringLiteral("://schema/multisize_measurements/v0.5.0.xsd")),
|
|
|
|
std::make_pair(FORMAT_VERSION(0, 5, 1), CurrentSchema),
|
2020-10-01 18:09:05 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if (schemas.contains(ver))
|
|
|
|
{
|
|
|
|
return schemas.value(ver);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
InvalidVersion(ver);
|
2015-07-16 11:38:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::ApplyPatches()
|
|
|
|
{
|
2017-02-04 12:28:47 +01:00
|
|
|
switch (m_ver)
|
2015-07-16 11:38:54 +02:00
|
|
|
{
|
2020-10-01 18:09:05 +02:00
|
|
|
case (FORMAT_VERSION(0, 3, 0)):
|
2017-02-04 12:28:47 +01:00
|
|
|
ToV0_4_0();
|
2020-10-01 18:09:05 +02:00
|
|
|
ValidateXML(XSDSchema(FORMAT_VERSION(0, 4, 0)));
|
2019-03-16 11:22:09 +01:00
|
|
|
Q_FALLTHROUGH();
|
2020-10-01 18:09:05 +02:00
|
|
|
case (FORMAT_VERSION(0, 4, 0)):
|
2017-02-04 12:28:47 +01:00
|
|
|
ToV0_4_1();
|
2020-10-01 18:09:05 +02:00
|
|
|
ValidateXML(XSDSchema(FORMAT_VERSION(0, 4, 1)));
|
2019-03-16 11:22:09 +01:00
|
|
|
Q_FALLTHROUGH();
|
2020-10-01 18:09:05 +02:00
|
|
|
case (FORMAT_VERSION(0, 4, 1)):
|
2017-02-04 12:28:47 +01:00
|
|
|
ToV0_4_2();
|
2020-10-01 18:09:05 +02:00
|
|
|
ValidateXML(XSDSchema(FORMAT_VERSION(0, 4, 2)));
|
2019-03-16 11:22:09 +01:00
|
|
|
Q_FALLTHROUGH();
|
2020-10-01 18:09:05 +02:00
|
|
|
case (FORMAT_VERSION(0, 4, 2)):
|
2017-02-04 12:28:47 +01:00
|
|
|
ToV0_4_3();
|
2020-10-01 18:09:05 +02:00
|
|
|
ValidateXML(XSDSchema(FORMAT_VERSION(0, 4, 3)));
|
2019-03-16 11:22:09 +01:00
|
|
|
Q_FALLTHROUGH();
|
2020-10-01 18:09:05 +02:00
|
|
|
case (FORMAT_VERSION(0, 4, 3)):
|
2017-03-10 10:39:20 +01:00
|
|
|
ToV0_4_4();
|
2020-10-01 18:09:05 +02:00
|
|
|
ValidateXML(XSDSchema(FORMAT_VERSION(0, 4, 4)));
|
|
|
|
Q_FALLTHROUGH();
|
|
|
|
case (FORMAT_VERSION(0, 4, 4)):
|
|
|
|
ToV0_5_0();
|
|
|
|
ValidateXML(XSDSchema(FORMAT_VERSION(0, 5, 0)));
|
2019-03-16 11:22:09 +01:00
|
|
|
Q_FALLTHROUGH();
|
2020-10-01 18:09:05 +02:00
|
|
|
case (FORMAT_VERSION(0, 5, 0)):
|
2021-01-15 10:14:21 +01:00
|
|
|
ToV0_5_1();
|
|
|
|
ValidateXML(XSDSchema(FORMAT_VERSION(0, 5, 1)));
|
|
|
|
Q_FALLTHROUGH();
|
|
|
|
case (FORMAT_VERSION(0, 5, 1)):
|
2017-02-04 12:28:47 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
InvalidVersion(m_ver);
|
|
|
|
break;
|
2015-07-16 11:38:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-07 14:29:31 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-01-19 16:25:46 +01:00
|
|
|
void VVSTConverter::DowngradeToCurrentMaxVersion()
|
|
|
|
{
|
|
|
|
SetVersion(MeasurementMaxVerStr);
|
|
|
|
Save();
|
|
|
|
}
|
|
|
|
|
2017-02-04 12:28:47 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool VVSTConverter::IsReadOnly() const
|
|
|
|
{
|
|
|
|
// Check if attribute read-only was not changed in file format
|
2021-01-15 10:14:21 +01:00
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMaxVer == FORMAT_VERSION(0, 5, 1),
|
2017-02-04 12:28:47 +01:00
|
|
|
"Check attribute read-only.");
|
|
|
|
|
|
|
|
// Possibly in future attribute read-only will change position etc.
|
|
|
|
// For now position is the same for all supported format versions.
|
|
|
|
// But don't forget to keep all versions of attribute until we support that format versions
|
|
|
|
|
2018-03-14 14:39:15 +01:00
|
|
|
return UniqueTagText(*strTagRead_Only, falseStr) == trueStr;
|
2017-02-04 12:28:47 +01:00
|
|
|
}
|
|
|
|
|
2016-01-19 16:25:46 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-09-07 14:29:31 +02:00
|
|
|
void VVSTConverter::AddNewTagsForV0_4_0()
|
|
|
|
{
|
2016-11-08 16:07:16 +01:00
|
|
|
// TODO. Delete if minimal supported version is 0.4.0
|
2018-07-26 20:21:08 +02:00
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 4, 0),
|
2016-11-08 16:07:16 +01:00
|
|
|
"Time to refactor the code.");
|
|
|
|
|
2015-09-07 14:29:31 +02:00
|
|
|
QDomElement rootElement = this->documentElement();
|
2019-07-10 12:07:29 +02:00
|
|
|
QDomNode refChild = rootElement.firstChildElement(QStringLiteral("version"));
|
2015-09-07 14:29:31 +02:00
|
|
|
|
2019-07-10 12:07:29 +02:00
|
|
|
refChild = rootElement.insertAfter(CreateElementWithText(QStringLiteral("read-only"), falseStr), refChild);
|
2015-09-07 14:29:31 +02:00
|
|
|
|
2019-07-10 12:07:29 +02:00
|
|
|
rootElement.insertAfter(CreateElementWithText(QStringLiteral("notes"),
|
|
|
|
UniqueTagText(QStringLiteral("description"))), refChild);
|
2015-09-07 14:29:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::RemoveTagsForV0_4_0()
|
|
|
|
{
|
2016-11-08 16:07:16 +01:00
|
|
|
// TODO. Delete if minimal supported version is 0.4.0
|
2018-07-26 20:21:08 +02:00
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 4, 0),
|
2016-11-08 16:07:16 +01:00
|
|
|
"Time to refactor the code.");
|
|
|
|
|
2015-09-07 14:29:31 +02:00
|
|
|
QDomElement rootElement = this->documentElement();
|
|
|
|
|
|
|
|
{
|
|
|
|
const QDomNodeList nodeList = this->elementsByTagName(QStringLiteral("description"));
|
|
|
|
if (not nodeList.isEmpty())
|
|
|
|
{
|
|
|
|
rootElement.removeChild(nodeList.at(0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const QDomNodeList nodeList = this->elementsByTagName(QStringLiteral("id"));
|
|
|
|
if (not nodeList.isEmpty())
|
|
|
|
{
|
|
|
|
rootElement.removeChild(nodeList.at(0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::ConvertMeasurementsToV0_4_0()
|
|
|
|
{
|
2016-11-08 16:07:16 +01:00
|
|
|
// TODO. Delete if minimal supported version is 0.4.0
|
2018-07-26 20:21:08 +02:00
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 4, 0),
|
2016-11-08 16:07:16 +01:00
|
|
|
"Time to refactor the code.");
|
|
|
|
|
2015-09-07 14:29:31 +02:00
|
|
|
const QString tagBM = QStringLiteral("body-measurements");
|
|
|
|
|
|
|
|
QDomElement bm = createElement(tagBM);
|
|
|
|
|
2015-10-01 19:19:19 +02:00
|
|
|
const QMultiMap<QString, QString> names = OldNamesToNewNames_InV0_3_0();
|
|
|
|
const QList<QString> keys = names.uniqueKeys();
|
2018-04-03 13:36:38 +02:00
|
|
|
for (auto &key : keys)
|
2015-09-07 14:29:31 +02:00
|
|
|
{
|
|
|
|
qreal resValue = 0;
|
|
|
|
qreal resSizeIncrease = 0;
|
|
|
|
qreal resHeightIncrease = 0;
|
|
|
|
|
|
|
|
// This has the same effect as a .values(), just isn't as elegant
|
2018-04-03 13:36:38 +02:00
|
|
|
const QList<QString> list = names.values( key );
|
2018-04-03 10:15:58 +02:00
|
|
|
for(const auto &val : list)
|
2015-09-07 14:29:31 +02:00
|
|
|
{
|
|
|
|
const QDomNodeList nodeList = this->elementsByTagName(val);
|
|
|
|
if (nodeList.isEmpty())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
QDomElement m = nodeList.at(0).toElement();
|
|
|
|
const qreal value = GetParametrDouble(m, QStringLiteral("value"), "0.0");
|
|
|
|
const qreal size_increase = GetParametrDouble(m, QStringLiteral("size_increase"), "0.0");
|
|
|
|
const qreal height_increase = GetParametrDouble(m, QStringLiteral("height_increase"), "0.0");
|
|
|
|
|
|
|
|
if (not qFuzzyIsNull(value))
|
|
|
|
{
|
|
|
|
resValue = value;
|
|
|
|
resSizeIncrease = size_increase;
|
|
|
|
resHeightIncrease = height_increase;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-03 13:36:38 +02:00
|
|
|
bm.appendChild(AddMV0_4_0(key, resValue, resSizeIncrease, resHeightIncrease));
|
2015-09-07 14:29:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QDomElement rootElement = this->documentElement();
|
|
|
|
const QDomNodeList listBM = elementsByTagName(tagBM);
|
|
|
|
rootElement.replaceChild(bm, listBM.at(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QDomElement VVSTConverter::AddMV0_4_0(const QString &name, qreal value, qreal sizeIncrease, qreal heightIncrease)
|
|
|
|
{
|
2016-11-08 16:07:16 +01:00
|
|
|
// TODO. Delete if minimal supported version is 0.4.0
|
2018-07-26 20:21:08 +02:00
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 4, 0),
|
2016-11-08 16:07:16 +01:00
|
|
|
"Time to refactor the code.");
|
|
|
|
|
2015-09-07 14:29:31 +02:00
|
|
|
QDomElement element = createElement(QStringLiteral("m"));
|
|
|
|
|
|
|
|
SetAttribute(element, QStringLiteral("name"), name);
|
|
|
|
SetAttribute(element, QStringLiteral("base"), QString().setNum(value));
|
|
|
|
SetAttribute(element, QStringLiteral("size_increase"), QString().setNum(sizeIncrease));
|
|
|
|
SetAttribute(element, QStringLiteral("height_increase"), QString().setNum(heightIncrease));
|
2018-03-14 15:01:24 +01:00
|
|
|
SetAttribute(element, QStringLiteral("description"),QString());
|
|
|
|
SetAttribute(element, QStringLiteral("full_name"), QString());
|
2015-09-07 14:29:31 +02:00
|
|
|
|
|
|
|
return element;
|
|
|
|
}
|
|
|
|
|
2015-10-16 19:26:05 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::PM_SystemV0_4_1()
|
|
|
|
{
|
2016-11-08 16:07:16 +01:00
|
|
|
// TODO. Delete if minimal supported version is 0.4.1
|
2018-07-26 20:21:08 +02:00
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 4, 1),
|
2016-11-08 16:07:16 +01:00
|
|
|
"Time to refactor the code.");
|
|
|
|
|
2015-10-16 19:26:05 +02:00
|
|
|
const QDomNodeList nodeList = this->elementsByTagName(QStringLiteral("size"));
|
|
|
|
QDomElement personal = nodeList.at(0).toElement();
|
|
|
|
|
|
|
|
QDomElement parent = personal.parentNode().toElement();
|
2019-07-10 12:07:29 +02:00
|
|
|
parent.insertBefore(CreateElementWithText(QStringLiteral("pm_system"), QStringLiteral("998")), personal);
|
2015-10-16 19:26:05 +02:00
|
|
|
}
|
|
|
|
|
2015-11-11 15:26:48 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::ConvertMeasurementsToV0_4_2()
|
|
|
|
{
|
2016-11-08 16:07:16 +01:00
|
|
|
// TODO. Delete if minimal supported version is 0.4.2
|
2018-07-26 20:21:08 +02:00
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 4, 2),
|
2016-11-08 16:07:16 +01:00
|
|
|
"Time to refactor the code.");
|
|
|
|
|
2015-11-11 15:26:48 +01:00
|
|
|
const QMap<QString, QString> names = OldNamesToNewNames_InV0_3_3();
|
|
|
|
auto i = names.constBegin();
|
|
|
|
while (i != names.constEnd())
|
|
|
|
{
|
|
|
|
const QDomNodeList nodeList = this->elementsByTagName(QStringLiteral("m"));
|
|
|
|
if (nodeList.isEmpty())
|
|
|
|
{
|
2015-11-11 19:53:23 +01:00
|
|
|
++i;
|
2015-11-11 15:26:48 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int ii = 0; ii < nodeList.size(); ++ii)
|
|
|
|
{
|
|
|
|
const QString attrName = QStringLiteral("name");
|
|
|
|
QDomElement element = nodeList.at(ii).toElement();
|
|
|
|
const QString name = GetParametrString(element, attrName);
|
|
|
|
if (name == i.value())
|
|
|
|
{
|
|
|
|
SetAttribute(element, attrName, i.key());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-05 09:17:39 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::AddNewTagsForV0_5_0()
|
|
|
|
{
|
|
|
|
// TODO. Delete if minimal supported version is 0.5.0
|
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 5, 0),
|
|
|
|
"Time to refactor the code.");
|
|
|
|
|
|
|
|
QDomElement root = documentElement();
|
|
|
|
const QDomElement pmSystemTag = root.firstChildElement(QStringLiteral("pm_system"));
|
|
|
|
if (pmSystemTag.isNull())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QDomElement dimensionsTag = createElement(QStringLiteral("dimensions"));
|
|
|
|
|
|
|
|
auto Base = [this](const QString &base)
|
|
|
|
{
|
|
|
|
const QDomElement root = documentElement();
|
|
|
|
const QDomElement baseTag = root.firstChildElement(base);
|
|
|
|
if (baseTag.isNull())
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GetParametrInt(baseTag, QStringLiteral("base"), QChar('0'));
|
|
|
|
};
|
|
|
|
|
|
|
|
const Unit units = MUnit();
|
|
|
|
|
|
|
|
{
|
|
|
|
const int step = static_cast<int>(UnitConvertor(6, Unit::Cm, units));
|
|
|
|
const int min = static_cast<int>(UnitConvertor(50, Unit::Cm, units));
|
|
|
|
const int max = static_cast<int>(UnitConvertor(200, Unit::Cm, units));
|
|
|
|
|
|
|
|
QDomElement dimensionX = createElement(QStringLiteral("dimension"));
|
|
|
|
SetAttribute(dimensionX, QStringLiteral("type"), QChar('x'));
|
|
|
|
SetAttribute(dimensionX, QStringLiteral("step"), step);
|
|
|
|
SetAttribute(dimensionX, QStringLiteral("min"), min);
|
|
|
|
SetAttribute(dimensionX, QStringLiteral("max"), max);
|
|
|
|
SetAttribute(dimensionX, QStringLiteral("base"), Base(QStringLiteral("height")));
|
|
|
|
dimensionsTag.appendChild(dimensionX);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const int step = static_cast<int>(UnitConvertor(2, Unit::Cm, units));
|
|
|
|
const int min = static_cast<int>(UnitConvertor(22, Unit::Cm, units));
|
|
|
|
const int max = static_cast<int>(UnitConvertor(72, Unit::Cm, units));
|
|
|
|
|
|
|
|
QDomElement dimensionY = createElement(QStringLiteral("dimension"));
|
|
|
|
SetAttribute(dimensionY, QStringLiteral("type"), QChar('y'));
|
|
|
|
SetAttribute(dimensionY, QStringLiteral("step"), step);
|
|
|
|
SetAttribute(dimensionY, QStringLiteral("min"), min);
|
|
|
|
SetAttribute(dimensionY, QStringLiteral("max"), max);
|
|
|
|
SetAttribute(dimensionY, QStringLiteral("base"), Base(QStringLiteral("size")));
|
|
|
|
SetAttribute(dimensionY, QStringLiteral("circumference"), true);
|
|
|
|
dimensionsTag.appendChild(dimensionY);
|
|
|
|
}
|
|
|
|
|
|
|
|
root.insertAfter(dimensionsTag, pmSystemTag);
|
|
|
|
|
|
|
|
root.insertAfter(createElement(QStringLiteral("restrictions")), dimensionsTag);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::RemoveTagsForV0_5_0()
|
|
|
|
{
|
|
|
|
// TODO. Delete if minimal supported version is 0.5.0
|
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 5, 0),
|
|
|
|
"Time to refactor the code.");
|
|
|
|
|
|
|
|
QDomElement root = documentElement();
|
|
|
|
|
|
|
|
const QDomElement sizeTag = root.firstChildElement(QStringLiteral("size"));
|
|
|
|
if (not sizeTag.isNull())
|
|
|
|
{
|
|
|
|
root.removeChild(sizeTag);
|
|
|
|
}
|
|
|
|
|
|
|
|
const QDomElement heightTag = root.firstChildElement(QStringLiteral("height"));
|
|
|
|
if (not heightTag.isNull())
|
|
|
|
{
|
|
|
|
root.removeChild(heightTag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::ConvertMeasurementsToV0_5_0()
|
|
|
|
{
|
|
|
|
// TODO. Delete if minimal supported version is 0.5.0
|
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 5, 0),
|
|
|
|
"Time to refactor the code.");
|
|
|
|
|
|
|
|
const QDomNodeList measurements = elementsByTagName(QStringLiteral("m"));
|
|
|
|
for (int i = 0; i < measurements.size(); ++i)
|
|
|
|
{
|
|
|
|
QDomElement m = measurements.at(i).toElement();
|
|
|
|
|
|
|
|
SetAttribute(m, QStringLiteral("shiftA"), GetParametrString(m, QStringLiteral("height_increase")));
|
|
|
|
m.removeAttribute(QStringLiteral("height_increase"));
|
|
|
|
|
|
|
|
SetAttribute(m, QStringLiteral("shiftB"), GetParametrString(m, QStringLiteral("size_increase")));
|
|
|
|
m.removeAttribute(QStringLiteral("size_increase"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-16 11:38:54 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::ToV0_4_0()
|
|
|
|
{
|
2016-11-08 16:07:16 +01:00
|
|
|
// TODO. Delete if minimal supported version is 0.4.0
|
2018-07-26 20:21:08 +02:00
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 4, 0),
|
2016-11-08 16:07:16 +01:00
|
|
|
"Time to refactor the code.");
|
|
|
|
|
2015-09-07 14:29:31 +02:00
|
|
|
AddRootComment();
|
2015-07-16 11:38:54 +02:00
|
|
|
SetVersion(QStringLiteral("0.4.0"));
|
2015-09-07 14:29:31 +02:00
|
|
|
AddNewTagsForV0_4_0();
|
|
|
|
RemoveTagsForV0_4_0();
|
|
|
|
ConvertMeasurementsToV0_4_0();
|
2015-07-16 11:38:54 +02:00
|
|
|
Save();
|
|
|
|
}
|
2015-10-16 19:26:05 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::ToV0_4_1()
|
|
|
|
{
|
2016-11-08 16:07:16 +01:00
|
|
|
// TODO. Delete if minimal supported version is 0.4.1
|
2018-07-26 20:21:08 +02:00
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 4, 1),
|
2016-11-08 16:07:16 +01:00
|
|
|
"Time to refactor the code.");
|
|
|
|
|
2015-10-16 19:26:05 +02:00
|
|
|
SetVersion(QStringLiteral("0.4.1"));
|
|
|
|
PM_SystemV0_4_1();
|
|
|
|
Save();
|
|
|
|
}
|
2015-11-11 15:26:48 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::ToV0_4_2()
|
|
|
|
{
|
2016-11-08 16:07:16 +01:00
|
|
|
// TODO. Delete if minimal supported version is 0.4.2
|
2018-07-26 20:21:08 +02:00
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 4, 2),
|
2016-11-08 16:07:16 +01:00
|
|
|
"Time to refactor the code.");
|
|
|
|
|
2015-11-11 15:26:48 +01:00
|
|
|
SetVersion(QStringLiteral("0.4.2"));
|
|
|
|
ConvertMeasurementsToV0_4_2();
|
|
|
|
Save();
|
|
|
|
}
|
2016-10-26 13:49:09 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::ToV0_4_3()
|
|
|
|
{
|
2016-11-08 16:07:16 +01:00
|
|
|
// TODO. Delete if minimal supported version is 0.4.3
|
2018-07-26 20:21:08 +02:00
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 4, 3),
|
2016-11-08 16:07:16 +01:00
|
|
|
"Time to refactor the code.");
|
|
|
|
|
2016-10-26 13:49:09 +02:00
|
|
|
SetVersion(QStringLiteral("0.4.3"));
|
|
|
|
Save();
|
|
|
|
}
|
2017-03-10 10:39:20 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::ToV0_4_4()
|
|
|
|
{
|
|
|
|
// TODO. Delete if minimal supported version is 0.4.4
|
2018-07-26 20:21:08 +02:00
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 4, 4),
|
2017-03-10 10:39:20 +01:00
|
|
|
"Time to refactor the code.");
|
|
|
|
|
|
|
|
SetVersion(QStringLiteral("0.4.4"));
|
|
|
|
Save();
|
|
|
|
}
|
2020-10-01 18:09:05 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::ToV0_5_0()
|
|
|
|
{
|
|
|
|
// TODO. Delete if minimal supported version is 0.5.0
|
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 5, 0),
|
|
|
|
"Time to refactor the code.");
|
|
|
|
|
|
|
|
SetVersion(QStringLiteral("0.5.0"));
|
2020-10-05 09:17:39 +02:00
|
|
|
AddNewTagsForV0_5_0();
|
|
|
|
RemoveTagsForV0_5_0();
|
|
|
|
ConvertMeasurementsToV0_5_0();
|
2020-10-01 18:09:05 +02:00
|
|
|
Save();
|
|
|
|
}
|
2021-01-15 10:14:21 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VVSTConverter::ToV0_5_1()
|
|
|
|
{
|
|
|
|
// TODO. Delete if minimal supported version is 0.5.1
|
|
|
|
Q_STATIC_ASSERT_X(VVSTConverter::MeasurementMinVer < FORMAT_VERSION(0, 5, 1),
|
|
|
|
"Time to refactor the code.");
|
|
|
|
|
|
|
|
SetVersion(QStringLiteral("0.5.1"));
|
|
|
|
Save();
|
|
|
|
}
|