valentina/src/libs/vpatterndb/variables/vmeasurement.cpp

385 lines
13 KiB
C++
Raw Normal View History

/************************************************************************
**
** @file vstandardtablecell.cpp
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date November 15, 2013
**
** @brief
** @copyright
** This source code is part of the Valentina project, a pattern making
** program, whose allow create and modeling patterns of clothing.
** Copyright (C) 2013-2015 Valentina project
** <https://gitlab.com/smart-pattern/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/>.
**
*************************************************************************/
#include "vmeasurement.h"
2013-07-17 13:38:11 +02:00
#include <QMap>
#include <QMessageLogger>
#include <QtDebug>
#include "../ifc/ifcdef.h"
#include "vvariable.h"
#include "vmeasurement_p.h"
2022-02-05 14:00:22 +01:00
//---------------------------------------------------------------------------------------------------------------------
VMeasurement::VMeasurement(quint32 index, const QString &name)
:VVariable(name),
d(new VMeasurementData(index, MeasurementType::Separator))
{
SetType(VarType::MeasurementSeparator);
VInternalVariable::SetValue(0);
}
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief VMeasurement create measurement for multisize table
* @param name measurement's name
2020-10-03 17:52:31 +02:00
* @param base measurement's base value
*/
2020-10-03 17:52:31 +02:00
VMeasurement::VMeasurement(quint32 index, const QString &name, qreal baseA, qreal baseB, qreal baseC, qreal base)
:VVariable(name),
d(new VMeasurementData(index, baseA, baseB, baseC, base))
{
SetType(VarType::Measurement);
2020-10-03 17:52:31 +02:00
VInternalVariable::SetValue(d->shiftBase);
}
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief VMeasurement create measurement for individual table
2020-10-03 17:52:31 +02:00
* @param name measurement's base value
* @param base value in base size and height
*/
VMeasurement::VMeasurement(VContainer *data, quint32 index, const QString &name, const qreal &base,
2020-10-03 17:52:31 +02:00
const QString &formula, bool ok)
:VVariable(name), d(new VMeasurementData(data, index, formula, ok, base))
{
SetType(VarType::Measurement);
VInternalVariable::SetValue(base);
}
//---------------------------------------------------------------------------------------------------------------------
VMeasurement::VMeasurement(const VMeasurement &m)
:VVariable(m), d(m.d)
{}
//---------------------------------------------------------------------------------------------------------------------
VMeasurement &VMeasurement::operator=(const VMeasurement &m)
{
if ( &m == this )
{
return *this;
}
VVariable::operator=(m);
d = m.d;
return *this;
}
#ifdef Q_COMPILER_RVALUE_REFS
//---------------------------------------------------------------------------------------------------------------------
VMeasurement::VMeasurement(const VMeasurement &&m) Q_DECL_NOTHROW
:VVariable(m), d(m.d)
{}
//---------------------------------------------------------------------------------------------------------------------
VMeasurement &VMeasurement::operator=(VMeasurement &&m) Q_DECL_NOTHROW
{
VVariable::operator=(m);
std::swap(d, m.d);
return *this;
}
#endif
//---------------------------------------------------------------------------------------------------------------------
VMeasurement::~VMeasurement()
{}
2020-10-03 17:52:31 +02:00
//---------------------------------------------------------------------------------------------------------------------
QString VMeasurement::CorrectionHash(qreal baseA, qreal baseB, qreal baseC)
{
QStringList hashBlocks{QString::number(baseA)};
if (baseB > 0)
{
hashBlocks.append(QString::number(baseB));
}
if (baseC > 0)
{
hashBlocks.append(QString::number(baseC));
}
return hashBlocks.join(';');
2020-10-03 17:52:31 +02:00
}
//---------------------------------------------------------------------------------------------------------------------
qreal VMeasurement::CalcValue() const
{
2020-10-03 17:52:31 +02:00
if (qFuzzyIsNull(d->currentBaseA))
{
return VInternalVariable::GetValue();
}
2020-10-03 17:52:31 +02:00
// Formula for calculation gradation
const qreal kA = d->stepA > 0 ? (d->currentBaseA - d->baseA) / d->stepA : 0;
const qreal kB = d->stepB > 0 ? (d->currentBaseB - d->baseB) / d->stepB : 0;
const qreal kC = d->stepC > 0 ? (d->currentBaseC - d->baseC) / d->stepC : 0;
return d->shiftBase + kA * d->shiftA + kB * d->shiftB + kC * d->shiftC + Correction();
}
//---------------------------------------------------------------------------------------------------------------------
qreal VMeasurement::Correction() const
{
const QString hash = CorrectionHash(d->currentBaseA, d->currentBaseB, d->currentBaseC);
if (d->corrections.contains(hash))
{
2020-10-03 17:52:31 +02:00
return d->corrections.value(hash);
}
2020-10-03 17:52:31 +02:00
return 0;
}
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief GetGuiText measurement name for tooltip
* @return measurement name
*/
QString VMeasurement::GetGuiText() const
{
return d->gui_text;
}
//---------------------------------------------------------------------------------------------------------------------
2020-10-03 17:52:31 +02:00
void VMeasurement::SetGuiText(const QString &guiText)
{
2020-10-03 17:52:31 +02:00
d->gui_text = guiText;
}
//---------------------------------------------------------------------------------------------------------------------
QString VMeasurement::GetFormula() const
{
return d->formula;
}
//---------------------------------------------------------------------------------------------------------------------
bool VMeasurement::IsCustom() const
{
return GetName().indexOf(CustomMSign) == 0;
}
//---------------------------------------------------------------------------------------------------------------------
int VMeasurement::Index() const
{
return static_cast<int>(d->index);
}
//---------------------------------------------------------------------------------------------------------------------
bool VMeasurement::IsFormulaOk() const
{
return d->formulaOk;
}
2022-02-05 14:00:22 +01:00
//---------------------------------------------------------------------------------------------------------------------
MeasurementType VMeasurement::GetMeasurementType() const
{
return d->varType;
}
//---------------------------------------------------------------------------------------------------------------------
bool VMeasurement::IsNotUsed() const
{
2020-10-03 17:52:31 +02:00
return qFuzzyIsNull(d->shiftBase) && qFuzzyIsNull(d->shiftB) && qFuzzyIsNull(d->shiftA);
}
//---------------------------------------------------------------------------------------------------------------------
qreal VMeasurement::GetValue() const
{
return CalcValue();
}
//---------------------------------------------------------------------------------------------------------------------
qreal *VMeasurement::GetValue()
{
VInternalVariable::SetValue(CalcValue());
return VInternalVariable::GetValue();
}
//---------------------------------------------------------------------------------------------------------------------
VContainer *VMeasurement::GetData()
{
return d->data.data();
}
//---------------------------------------------------------------------------------------------------------------------
2020-10-03 17:52:31 +02:00
void VMeasurement::SetBaseA(qreal base)
{
2020-10-03 17:52:31 +02:00
d->currentBaseA = base;
}
//---------------------------------------------------------------------------------------------------------------------
2020-10-03 17:52:31 +02:00
void VMeasurement::SetBaseB(qreal base)
{
2020-10-03 17:52:31 +02:00
d->currentBaseB = base;
}
//---------------------------------------------------------------------------------------------------------------------
2020-10-03 17:52:31 +02:00
void VMeasurement::SetBaseC(qreal base)
{
2020-10-03 17:52:31 +02:00
d->currentBaseC = base;
}
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief GetBase return value in base size and height
* @return value
*/
qreal VMeasurement::GetBase() const
{
2020-10-03 17:52:31 +02:00
return d->shiftBase;
}
//---------------------------------------------------------------------------------------------------------------------
2020-10-03 17:52:31 +02:00
void VMeasurement::SetBase(qreal value)
{
2020-10-03 17:52:31 +02:00
d->shiftBase = value;
}
//---------------------------------------------------------------------------------------------------------------------
/**
2020-10-03 17:52:31 +02:00
* @brief GetKheight return increment in heights
* @return increment
*/
2020-10-03 17:52:31 +02:00
qreal VMeasurement::GetShiftA() const
{
2020-10-03 17:52:31 +02:00
return d->shiftA;
}
//---------------------------------------------------------------------------------------------------------------------
// cppcheck-suppress unusedFunction
2020-10-03 17:52:31 +02:00
void VMeasurement::SetShiftA(qreal value)
{
2020-10-03 17:52:31 +02:00
d->shiftA = value;
}
//---------------------------------------------------------------------------------------------------------------------
/**
2020-10-03 17:52:31 +02:00
* @brief GetKsize return increment in sizes
* @return increment
*/
2020-10-03 17:52:31 +02:00
qreal VMeasurement::GetShiftB() const
{
2020-10-03 17:52:31 +02:00
return d->shiftB;
}
//---------------------------------------------------------------------------------------------------------------------
// cppcheck-suppress unusedFunction
2020-10-03 17:52:31 +02:00
void VMeasurement::SetShiftB(qreal value)
{
d->shiftB = value;
}
//---------------------------------------------------------------------------------------------------------------------
qreal VMeasurement::GetShiftC() const
{
return d->shiftC;
}
//---------------------------------------------------------------------------------------------------------------------
void VMeasurement::SetShiftC(qreal value)
{
d->shiftC = value;
}
//---------------------------------------------------------------------------------------------------------------------
qreal VMeasurement::GetStepA() const
{
return d->shiftA;
}
//---------------------------------------------------------------------------------------------------------------------
void VMeasurement::SetStepA(qreal value)
{
d->stepA = value;
}
//---------------------------------------------------------------------------------------------------------------------
qreal VMeasurement::GetStepB() const
{
return d->stepB;
}
//---------------------------------------------------------------------------------------------------------------------
void VMeasurement::SetStepB(qreal value)
{
d->stepB = value;
}
//---------------------------------------------------------------------------------------------------------------------
qreal VMeasurement::GetStepC() const
{
return d->stepC;
}
//---------------------------------------------------------------------------------------------------------------------
void VMeasurement::SetStepC(qreal value)
{
d->stepC = value;
}
//---------------------------------------------------------------------------------------------------------------------
bool VMeasurement::IsSpecialUnits() const
{
return d->specialUnits;
}
//---------------------------------------------------------------------------------------------------------------------
void VMeasurement::SetSpecialUnits(bool special)
{
d->specialUnits = special;
}
//---------------------------------------------------------------------------------------------------------------------
IMD VMeasurement::GetDimension() const
{
return d->dimension;
}
//---------------------------------------------------------------------------------------------------------------------
void VMeasurement::SetDimension(IMD type)
{
d->dimension = type;
}
2020-10-03 17:52:31 +02:00
//---------------------------------------------------------------------------------------------------------------------
qreal VMeasurement::GetCorrection(qreal baseA, qreal baseB, qreal baseC) const
2020-10-03 17:52:31 +02:00
{
return d->corrections.value(VMeasurement::CorrectionHash(baseA, baseB, baseC), 0);
}
//---------------------------------------------------------------------------------------------------------------------
QMap<QString, qreal> VMeasurement::GetCorrections() const
{
return d->corrections;
}
//---------------------------------------------------------------------------------------------------------------------
void VMeasurement::SetCorrections(const QMap<QString, qreal> &corrections)
{
2020-10-03 17:52:31 +02:00
d->corrections = corrections;
}