valentina/src/libs/vlayout/vbank.cpp

695 lines
20 KiB
C++
Raw Normal View History

/************************************************************************
**
** @file vbank.cpp
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 11 1, 2015
**
** @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://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/>.
**
*************************************************************************/
#include "vbank.h"
#include <climits>
#include "../vmisc/diagnostic.h"
#include "../vmisc/vabstractapplication.h"
#include "vlayoutpiece.h"
#include "vlayoutdef.h"
#include "../ifc/exception/vexception.h"
#include "../vpatterndb/floatItemData/floatitemdef.h"
QT_WARNING_PUSH
QT_WARNING_DISABLE_CLANG("-Wmissing-prototypes")
QT_WARNING_DISABLE_INTEL(1418)
Q_LOGGING_CATEGORY(lBank, "layout.bank")
QT_WARNING_POP
// An annoying char define, from the Windows team in <rpcndr.h>
// #define small char
// http://stuartjames.info/Journal/c--visual-studio-2012-vs2012--win8--converting-projects-up-some-conflicts-i-found.aspx
#if defined (Q_OS_WIN) && defined (Q_CC_MSVC)
#pragma push_macro("small")
#undef small
#endif
namespace
{
//---------------------------------------------------------------------------------------------------------------------
QVector<VLayoutPiece> PrepareQuantity(const QVector<VLayoutPiece> &details)
{
QVector<VLayoutPiece> withQuantity;
withQuantity.reserve(details.size());
for(auto &piece : details)
{
for (int i = 0; i < piece.GetQuantity(); ++i)
{
withQuantity.append(piece);
}
}
return withQuantity;
}
//---------------------------------------------------------------------------------------------------------------------
void Insert(QMap<uint, QHash<int, qint64>> &container, uint key, int valKey, qint64 valValue)
{
QHash<int, qint64> containerSequence = container.value(key);
containerSequence.insert(valKey, valValue);
container.insert(key, containerSequence);
}
//---------------------------------------------------------------------------------------------------------------------
template <typename T>
int CountDetails(const T &container)
{
int count = 0;
auto i = container.constBegin();
while (i != container.constEnd())
{
count += i.value().count();
++i;
}
return count;
}
//---------------------------------------------------------------------------------------------------------------------
bool NotArrangedDetail(QMap<uint, QHash<int, qint64>> &container, QMap<uint, QHash<int, qint64>> &unsorted, int i)
{
QMutableMapIterator<uint, QHash<int, qint64>> iterator(container);
while (iterator.hasNext())
{
iterator.next();
auto containerGroup = container.value(iterator.key());
if (containerGroup.contains(i))
{
Insert(unsorted, iterator.key(), i, containerGroup.value(i));
containerGroup.remove(i);
if (not containerGroup.isEmpty())
{
container.insert(iterator.key(), containerGroup);
}
else
{
container.remove(iterator.key());
}
return true;
}
}
return false;
}
//---------------------------------------------------------------------------------------------------------------------
bool NotArrangedDetail(QMap<uint, QMultiMap<qint64, int>> &container, QMap<uint, QHash<int, qint64>> &unsorted, int i)
{
QMutableMapIterator<uint, QMultiMap<qint64, int>> iterator(container);
while (iterator.hasNext())
{
iterator.next();
auto containerGroup = container.value(iterator.key());
auto detailIterator = std::find(containerGroup.cbegin(), containerGroup.cend(), i);
if (detailIterator != containerGroup.cend())
{
Insert(unsorted, iterator.key(), i, detailIterator.key());
containerGroup.remove(detailIterator.key());
if (not containerGroup.isEmpty())
{
container.insert(iterator.key(), containerGroup);
}
else
{
container.remove(iterator.key());
}
return true;
}
++i;
}
return false;
}
//---------------------------------------------------------------------------------------------------------------------
int TakeFirstForPriority(const QMap<uint, QHash<int, qint64>> &container, uint priority)
{
const QHash<int, qint64> priorityGroup = container.value(priority);
if (not priorityGroup.isEmpty())
{
return priorityGroup.constBegin().key();
}
return -1;
}
}
//---------------------------------------------------------------------------------------------------------------------
VBank::VBank()
2019-03-26 16:47:27 +01:00
: details(),
unsorted(),
big(),
middle(),
small(),
desc(),
groups(),
arranged(),
2019-03-26 16:47:27 +01:00
layoutWidth(0),
caseType(Cases::CaseDesc),
prepare(false),
diagonal(0)
{}
//---------------------------------------------------------------------------------------------------------------------
qreal VBank::GetLayoutWidth() const
{
return layoutWidth;
}
//---------------------------------------------------------------------------------------------------------------------
2019-03-26 16:47:27 +01:00
void VBank::SetLayoutWidth(qreal value)
{
layoutWidth = value;
Reset();
}
//---------------------------------------------------------------------------------------------------------------------
bool VBank::GetManualPriority() const
{
return m_manualPriority;
}
//---------------------------------------------------------------------------------------------------------------------
void VBank::SetManualPriority(bool value)
{
m_manualPriority = value;
}
//---------------------------------------------------------------------------------------------------------------------
bool VBank::IsNestQuantity() const
{
return m_nestQuantity;
}
//---------------------------------------------------------------------------------------------------------------------
void VBank::SetNestQuantity(bool value)
{
m_nestQuantity = value;
}
//---------------------------------------------------------------------------------------------------------------------
void VBank::SetDetails(const QVector<VLayoutPiece> &details)
{
this->details = details;
Reset();
}
//---------------------------------------------------------------------------------------------------------------------
2019-03-26 16:47:27 +01:00
int VBank::GetNext()
{
if (not prepare)
{
return -1;
}
2019-03-26 16:47:27 +01:00
if (LeftToArrange() == 0)
{
if (CountDetails(unsorted) == 0)
{
return -1;
}
else
{
PrepareGroup();
}
}
auto GetNextInGroup = [this](uint group)
{
switch (caseType)
{
case Cases::CaseThreeGroup:
return GetNextThreeGroups(group);
case Cases::CaseTwoGroup:
return GetNextTwoGroups(group);
case Cases::CaseDesc:
return GetNextDescGroup(group);
default:
return -1;
}
};
for (auto &group: groups)
{
int next = -1;
if (group != 0) // Group 0 must go last
{
next = GetNextInGroup(group);
}
if (next != -1)
{
return next;
}
}
if (groups.contains(0U))
{
return GetNextInGroup(0);
}
return -1;
}
//---------------------------------------------------------------------------------------------------------------------
VLayoutPiece VBank::GetDetail(int i) const
{
if (i >= 0 && i < details.size())
{
return details.at(i);
}
else
{
return VLayoutPiece();
}
}
//---------------------------------------------------------------------------------------------------------------------
void VBank::Arranged(int i)
{
if (ArrangedDetail(big, i))
{
return;
}
if (ArrangedDetail(middle, i))
{
return;
}
if (ArrangedDetail(small, i))
{
return;
}
ArrangedDetail(desc, i);
}
//---------------------------------------------------------------------------------------------------------------------
void VBank::NotArranged(int i)
{
if (NotArrangedDetail(big, unsorted, i))
{
return;
}
if (NotArrangedDetail(middle, unsorted, i))
{
return;
}
if (NotArrangedDetail(small, unsorted, i))
{
return;
}
NotArrangedDetail(desc, unsorted, i);
}
//---------------------------------------------------------------------------------------------------------------------
bool VBank::PrepareUnsorted()
{
QSet<uint> uniqueGroup;
for (int i=0; i < details.size(); ++i)
{
const qint64 square = details.at(i).Square();
if (square <= 0)
{
qCCritical(lBank, "Preparing data for layout error: Detail '%s' square <= 0",
qUtf8Printable(details.at(i).GetName()));
prepare = false;
return prepare;
}
const uint group = m_manualPriority ? details.at(i).GetPriority() : 0;
uniqueGroup.insert(group);
Insert(unsorted, group, i, square);
}
groups = QVector<uint>::fromList(uniqueGroup.toList());
std::sort(groups.begin(), groups.end());
PrepareGroup();
prepare = true;
return prepare;
}
//---------------------------------------------------------------------------------------------------------------------
bool VBank::PrepareDetails()
{
if (layoutWidth <= 0)
{
qCCritical(lBank, "Preparing data for layout error: Layout paper sheet <= 0");
prepare = false;
return prepare;
}
if (details.isEmpty())
{
qCCritical(lBank, "Preparing data for layout error: List of details is empty");
prepare = false;
return prepare;
}
if (m_nestQuantity)
{
details = PrepareQuantity(details);
}
diagonal = 0;
for (int i=0; i < details.size(); ++i)
{
details[i].SetLayoutWidth(layoutWidth);
details[i].SetLayoutAllowancePoints();
if (not details.at(i).IsLayoutAllowanceValid())
{
const QString errorMsg = QObject::tr("Piece '%1' has invalid layout allowance. Please, check seam allowance"
" to check how seam allowance behave.").arg(details.at(i).GetName());
qApp->IsPedantic() ? throw VException(errorMsg) : qWarning() << errorMsg;
}
const qreal d = details.at(i).Diagonal();
if (d > diagonal)
{
diagonal = d;
}
}
prepare = true;
return prepare;
}
//---------------------------------------------------------------------------------------------------------------------
void VBank::Reset()
{
prepare = false;
unsorted.clear();
big.clear();
middle.clear();
small.clear();
desc.clear();
groups.clear();
arranged.clear();
diagonal = 0;
}
//---------------------------------------------------------------------------------------------------------------------
void VBank::SetCaseType(Cases caseType)
{
this->caseType = caseType;
}
//---------------------------------------------------------------------------------------------------------------------
int VBank::AllDetailsCount() const
{
return CountDetails(unsorted) + CountDetails(big) + CountDetails(middle) + CountDetails(small) + CountDetails(desc);
}
//---------------------------------------------------------------------------------------------------------------------
2019-03-26 16:47:27 +01:00
int VBank::LeftToArrange() const
{
return CountDetails(big) + CountDetails(middle) + CountDetails(small) + CountDetails(desc);
}
//---------------------------------------------------------------------------------------------------------------------
qreal VBank::GetBiggestDiagonal() const
{
return diagonal;
}
//---------------------------------------------------------------------------------------------------------------------
int VBank::ArrangedCount() const
{
return details.size() - AllDetailsCount();
}
//---------------------------------------------------------------------------------------------------------------------
void VBank::PrepareGroup()
{
QMutableMapIterator<uint, QHash<int, qint64>> i(unsorted);
while (i.hasNext())
{
i.next();
switch (caseType)
{
case Cases::CaseThreeGroup:
PrepareThreeGroups(i.key());
break;
case Cases::CaseTwoGroup:
PrepareTwoGroups(i.key());
break;
case Cases::CaseDesc:
PrepareDescGroup(i.key());
break;
default:
break;
}
}
}
//---------------------------------------------------------------------------------------------------------------------
void VBank::PrepareThreeGroups(uint priority)
{
qint64 sMax = LLONG_MIN;
qint64 sMin = LLONG_MAX;
SqMaxMin(sMax, sMin, priority);
const qint64 s1 = sMax - (sMax - sMin)/3;
const qint64 s2 = sMin + (sMax - sMin)/3;
const QHash<int, qint64> usortedGroup = unsorted.value(priority);
QHash<int, qint64>::const_iterator i = usortedGroup.constBegin();
while (i != usortedGroup.constEnd())
{
if (i.value() > s1)
{
Insert(big, priority, i.key(), i.value());
}
else if (s1 >= i.value() && i.value() > s2)
{
Insert(middle, priority, i.key(), i.value());
}
else
{
Insert(small, priority, i.key(), i.value());
}
++i;
}
unsorted.remove(priority);
}
//---------------------------------------------------------------------------------------------------------------------
void VBank::PrepareTwoGroups(uint priority)
{
qint64 sMax = LLONG_MIN;
qint64 sMin = LLONG_MAX;
SqMaxMin(sMax, sMin, priority);
const qint64 s = (sMax + sMin)/2;
const QHash<int, qint64> usortedGroup = unsorted.value(priority);
QHash<int, qint64>::const_iterator i = usortedGroup.constBegin();
while (i != usortedGroup.constEnd())
{
if (i.value() >= s)
{
Insert(big, priority, i.key(), i.value());
}
else
{
Insert(small, priority, i.key(), i.value());
}
++i;
}
unsorted.remove(priority);
}
//---------------------------------------------------------------------------------------------------------------------
void VBank::PrepareDescGroup(uint priority)
{
QMultiMap<qint64, int> descGroup;
const QHash<int, qint64> usortedGroup = unsorted.value(priority);
QHash<int, qint64>::const_iterator i = usortedGroup.constBegin();
while (i != usortedGroup.constEnd())
{
descGroup.insert(i.value(), i.key());
++i;
}
desc.insert(priority, descGroup);
unsorted.remove(priority);
}
//---------------------------------------------------------------------------------------------------------------------
int VBank::GetNextThreeGroups(uint priority) const
{
int next = TakeFirstForPriority(big, priority);
if (next != -1)
{
return next;
}
next = TakeFirstForPriority(middle, priority);
if (next != -1)
{
return next;
}
next = TakeFirstForPriority(small, priority);
return next;
}
//---------------------------------------------------------------------------------------------------------------------
int VBank::GetNextTwoGroups(uint priority) const
{
int next = TakeFirstForPriority(big, priority);
if (next != -1)
{
return next;
}
next = TakeFirstForPriority(small, priority);
return next;
}
//---------------------------------------------------------------------------------------------------------------------
int VBank::GetNextDescGroup(uint priority) const
{
auto descGroup = desc.value(priority);
QMapIterator<qint64, int> i(descGroup);
i.toBack();
if (i.hasPrevious())
{
return i.previous().value();
}
return -1;
}
//---------------------------------------------------------------------------------------------------------------------
void VBank::SqMaxMin(qint64 &sMax, qint64 &sMin, uint priority) const
{
sMax = LLONG_MIN;
sMin = LLONG_MAX;
const QHash<int, qint64> usortedGroup = unsorted.value(priority);
QHash<int, qint64>::const_iterator i = usortedGroup.constBegin();
while (i != usortedGroup.constEnd())
{
if (i.value() < sMin)
{
sMin = i.value();
}
if (i.value() > sMax)
{
sMax = i.value();
}
++i;
}
}
//---------------------------------------------------------------------------------------------------------------------
bool VBank::ArrangedDetail(QMap<uint, QHash<int, qint64>> &container, int i)
{
QMutableMapIterator<uint, QHash<int, qint64>> iterator(container);
while (iterator.hasNext())
{
iterator.next();
auto containerGroup = container.value(iterator.key());
if (containerGroup.contains(i))
{
arranged.append(details.at(i).GetId());
containerGroup.remove(i);
if (not containerGroup.isEmpty())
{
container.insert(iterator.key(), containerGroup);
}
else
{
container.remove(iterator.key());
}
return true;
}
}
return false;
}
//---------------------------------------------------------------------------------------------------------------------
bool VBank::ArrangedDetail(QMap<uint, QMultiMap<qint64, int>> &container, int i)
{
QMutableMapIterator<uint, QMultiMap<qint64, int>> iterator(container);
while (iterator.hasNext())
{
iterator.next();
auto containerGroup = container.value(iterator.key());
auto detailIterator = std::find(containerGroup.cbegin(), containerGroup.cend(), i);
if (detailIterator != containerGroup.cend())
{
arranged.append(details.at(detailIterator.value()).GetId());
containerGroup.remove(detailIterator.key(), detailIterator.value());
if (not containerGroup.isEmpty())
{
container.insert(iterator.key(), containerGroup);
}
else
{
container.remove(iterator.key());
}
return true;
}
}
return false;
}
//---------------------------------------------------------------------------------------------------------------------
bool VBank::IsRotationNeeded() const
{
for(auto &piece : details)
{
if (not piece.IsGrainlineEnabled())
{
return true;
}
}
return false;
}
#if defined (Q_OS_WIN) && defined (Q_CC_MSVC)
#pragma pop_macro("small")
#endif