2015-01-21 19:56:59 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vbestsquare.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 21 1, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2015-01-21 19:56:59 +01:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2015-01-21 19:56:59 +01:00
|
|
|
** <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 "vbestsquare.h"
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QMatrix>
|
|
|
|
|
2015-01-21 19:56:59 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-05-08 12:10:56 +02:00
|
|
|
VBestSquare::VBestSquare(const QSizeF &sheetSize, bool saveLength)
|
|
|
|
:resI(0), resJ(0), resMatrix(QMatrix()), bestSize(QSizeF(sheetSize.width()+10, sheetSize.height()+10)),
|
|
|
|
sheetWidth(sheetSize.width()), valideResult(false), resMirror(false), type (BestFrom::Rotation),
|
|
|
|
saveLength(saveLength)
|
2015-01-21 19:56:59 +01:00
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-05-08 12:10:56 +02:00
|
|
|
void VBestSquare::NewResult(const QSizeF &candidate, int i, int j, const QTransform &matrix, bool mirror, BestFrom type)
|
2015-01-21 19:56:59 +01:00
|
|
|
{
|
2015-05-08 12:10:56 +02:00
|
|
|
if (saveLength)
|
2015-01-21 19:56:59 +01:00
|
|
|
{
|
2015-05-08 12:10:56 +02:00
|
|
|
const QSizeF saveLengthSize(sheetWidth, candidate.height());
|
|
|
|
if (Square(saveLengthSize) <= Square(bestSize) && Square(saveLengthSize) > 0 && type >= this->type)
|
|
|
|
{
|
|
|
|
bestSize = saveLengthSize;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2015-01-21 19:56:59 +01:00
|
|
|
}
|
2015-05-08 12:10:56 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (Square(candidate) <= Square(bestSize) && Square(candidate) > 0 && type >= this->type)
|
|
|
|
{
|
|
|
|
bestSize = candidate;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resI = i;
|
|
|
|
resJ = j;
|
|
|
|
resMatrix = matrix;
|
|
|
|
valideResult = true;
|
|
|
|
resMirror = mirror;
|
|
|
|
this->type = type;
|
2015-01-21 19:56:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VBestSquare::NewResult(const VBestSquare &best)
|
|
|
|
{
|
2015-05-08 12:10:56 +02:00
|
|
|
if (best.ValidResult() && saveLength == best.IsSaveLength())
|
2015-01-21 19:56:59 +01:00
|
|
|
{
|
2015-05-08 12:10:56 +02:00
|
|
|
NewResult(best.BestSize(), best.GContourEdge(), best.DetailEdge(), best.Matrix(), best.Mirror(), best.Type());
|
2015-01-21 19:56:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-05-08 12:10:56 +02:00
|
|
|
QSizeF VBestSquare::BestSize() const
|
2015-01-21 19:56:59 +01:00
|
|
|
{
|
2015-05-08 12:10:56 +02:00
|
|
|
return bestSize;
|
2015-01-21 19:56:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int VBestSquare::GContourEdge() const
|
|
|
|
{
|
|
|
|
return resI;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int VBestSquare::DetailEdge() const
|
|
|
|
{
|
|
|
|
return resJ;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QTransform VBestSquare::Matrix() const
|
|
|
|
{
|
|
|
|
return resMatrix;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-05-06 16:11:12 +02:00
|
|
|
bool VBestSquare::ValidResult() const
|
2015-01-21 19:56:59 +01:00
|
|
|
{
|
|
|
|
return valideResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool VBestSquare::Mirror() const
|
|
|
|
{
|
|
|
|
return resMirror;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
BestFrom VBestSquare::Type() const
|
|
|
|
{
|
|
|
|
return type;
|
|
|
|
}
|
2015-05-08 12:10:56 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool VBestSquare::IsSaveLength() const
|
|
|
|
{
|
|
|
|
return saveLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
qint64 VBestSquare::Square(const QSizeF &size)
|
|
|
|
{
|
|
|
|
return static_cast<qint64>(size.width()*size.height());
|
|
|
|
}
|